<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! ------------------------------------------------
 * Project Name: Peachy - Bright Coming Soon &amp; Landing Page Template
 * Project Description: Peachy - bright and stylish coming soon &amp; landing page template to kick-start your project. Feel summer vibes with Peachy!
 * Tags: mix_design, peachy, coming soon, under construction, template, coming soon page, landing page, one page, html5, css3
 * Version: 2.0.1
 * Build Date: June 2019
 * Last Update: November 2022
 * This product is available exclusively on Themeforest
 * Author: mix_design
 * Author URI: https://themeforest.net/user/mix_design
 * File name: main-demo.css
 * ------------------------------------------------
 *
 * ------------------------------------------------
 * Table of Contents
 * ------------------------------------------------
 *  1. Loader
 *  2. Fonts
 *  3. Base CSS Styles
 *  4. Typography
 *  5. Buttons &amp; Triggers
 *  6. Intro
 *  7. Preview Sections
 *  8. Sections Headline
 *  9. Preview Links
 *  10. Subscribe Section
 *  11. Footer
 * ------------------------------------------------
 * Table of Contents End
 * ------------------------------------------------ */
/* ------------------------------------------------*/
/* Loader Start */
/* ------------------------------------------------*/
/*! ------------------------------------------------
 * Project Name: Peachy - Bright Coming Soon &amp; Landing Page Template
 * Project Description: Peachy - bright and stylish coming soon &amp; landing page template to kick-start your project. Feel summer vibes with Peachy!
 * Tags: mix_design, peachy, coming soon, under construction, template, coming soon page, landing page, one page, html5, css3
 * Version: 2.0.1
 * Build Date: June 2019
 * Last Update: November 2022
 * This product is available exclusively on Themeforest
 * Author: mix_design
 * Author URI: https://themeforest.net/user/mix_design
 * File name: loader.css
 * ------------------------------------------------
 *
 * ------------------------------------------------
 * Table of Contents
 * ------------------------------------------------
 *  1. Loader Styles
 * ------------------------------------------------
 * Table of Contents End
 * ------------------------------------------------ */
/* ------------------------------------------------*/
/* Loader Styles Start */
/* ------------------------------------------------*/
.loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: transparent;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.loader.fade {
  background-color: transparent;
}
.loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader__slideleft,
.loader__slideright {
  width: 50%;
  height: 100%;
  background-color: #e5dede;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.loader__slideleft {
  position: absolute;
  top: 0;
  left: 0;
}

.loader__slideright {
  position: absolute;
  top: 0;
  right: 0;
}

.loader__content {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.loader__content .logo {
  width: auto;
}
.loader__content .logo img {
  display: block;
  width: 100%;
  height: auto;
}
.loader__content .caption {
  margin: 16px auto 0;
  text-align: center;
}
.loader__content .caption .loading-dots {
  position: relative;
  line-height: 1;
  display: inline-block;
  width: 36px;
  height: 10px;
  text-align: center;
  overflow: hidden;
}
.loader__content .caption .loading-dots::after {
  clear: both;
  content: "";
  display: table;
}
.loader__content .caption .loading-dots .dot {
  display: block;
  float: left;
  width: 6px;
  height: 6px;
  margin: 2px 3px 0 3px;
  background: #ffffff;
  opacity: 0;
  -moz-border-radius: 50%;
       border-radius: 50%;
  -webkit-animation: fade 1s infinite;
     -moz-animation: fade 1s infinite;
          animation: fade 1s infinite;
}
.loader__content .caption .loading-dots .dot:nth-of-type(1) {
  -webkit-animation-delay: 0s;
     -moz-animation-delay: 0s;
          animation-delay: 0s;
}
.loader__content .caption .loading-dots .dot:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
     -moz-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.loader__content .caption .loading-dots .dot:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
     -moz-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes slideInDown {
  from {
    -moz-transform: translate3d(0, -100%, 0);
         transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
       -moz-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation: 0.5s 1 both slideInDown;
     -moz-animation: 0.5s 1 both slideInDown;
          animation: 0.5s 1 both slideInDown;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes slideInUp {
  from {
    -moz-transform: translate3d(0, 100%, 0);
         transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
       -moz-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation: 0.5s 1 both slideInUp;
     -moz-animation: 0.5s 1 both slideInUp;
          animation: 0.5s 1 both slideInUp;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@-moz-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -moz-transform: translate3d(0, -100%, 0);
         transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
       -moz-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation: 0.5s 1 both fadeOutUp;
     -moz-animation: 0.5s 1 both fadeOutUp;
          animation: 0.5s 1 both fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

@-moz-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -moz-transform: translate3d(0, 100%, 0);
         transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
       -moz-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation: 0.5s 1 both fadeOutDown;
     -moz-animation: 0.5s 1 both fadeOutDown;
          animation: 0.5s 1 both fadeOutDown;
}


/* ------------------------------------------------*/
/* Loader Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Loader End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Fonts Start */
/* ------------------------------------------------*/
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Poppins-Light/Poppins-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Light/Poppins-Light.woff") format("woff"), url("../fonts/Poppins-Light/Poppins-Light.ttf") format("truetype"), url("../fonts/Poppins-Light/Poppins-Light.svg#Poppins") format("svg");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular/Poppins-Regular.ttf") format("truetype"), url("../fonts/Poppins-Regular/Poppins-Regular.svg#Poppins") format("svg");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Medium/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium/Poppins-Medium.ttf") format("truetype"), url("../fonts/Poppins-Medium/Poppins-Medium.svg#Poppins") format("svg");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Montserrat-Regular/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Regular/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular/Montserrat-Regular.ttf") format("truetype"), url("../fonts/Montserrat-Regular/Montserrat-Regular.svg#Montserrat") format("svg");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Montserrat-Medium/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Medium/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium/Montserrat-Medium.ttf") format("truetype"), url("../fonts/Montserrat-Medium/Montserrat-Medium.svg#Montserrat") format("svg");
}
@font-face {
  font-family: "Quentin";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/Quentin/Quentin.eot?#iefix") format("embedded-opentype"), url("../fonts/Quentin/Quentin.woff") format("woff"), url("../fonts/Quentin/Quentin.ttf") format("truetype"), url("../fonts/Quentin/Quentin.svg#Quentin") format("svg");
}
/* ------------------------------------------------*/
/* Fonts End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Base CSS Styles Start */
/* ------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

::-moz-selection {
  background-color: #e5dede;
  color: #ccbca8;
  text-shadow: none;
}

::selection {
  background-color: #e5dede;
  color: #ccbca8;
  text-shadow: none;
}

::-webkit-scrollbar {
  display: none;
  width: 5px;
  background: #e5dede;
}
@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

::-webkit-scrollbar-track {
  border-radius: 20px;
  background-color: #e5dede;
}

::-webkit-scrollbar-thumb {
  background-color: #ccbca8;
  border-radius: 10px;
}

html {
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  min-width: 320px;
  overflow-x: hidden !important;
  font: normal 400 1.6rem/1.7 "Montserrat", sans-serif;
  color: #444444;
  background-color: #ffffff;
}

section {
  position: relative;
  min-width: 320px;
}

a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

.color-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.color-layer-black-04 {
  background-color: rgba(0, 0, 0, 0.4);
}

/* ------------------------------------------------*/
/* Base CSS Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Typography Start */
/* ------------------------------------------------*/
h1 {
  font: normal 400 4.6rem/1.1 "Poppins", sans-serif;
  color: #232323;
  margin-top: 2rem;
}
h1 span {
  font: italic 400 6.0rem/0.6 "Quentin", italic;
  color: #ccbca8;
}
h1.light {
  color: #ffffff;
}
h1.no-color span {
  color: #ffffff;
}

h1.large {
  font-size: 4.6rem;
}
h1.large span {
  font-size: 5.8rem;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 6rem;
  }
  h1 span {
    font-size: 10rem;
  }
  h1.large {
    font-size: 8rem;
  }
  h1.large span {
    font-size: 10rem;
  }
}
@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 8rem;
    margin-top: 0;
  }
  h1 span {
    font-size: 12.5rem;
  }
  h1.large {
    font-size: 11rem;
  }
  h1.large span {
    font-size: 19.8rem;
  }
}

.headline__text {
  font: normal 400 1.6rem/1.7 "Montserrat", sans-serif;
  color: #444444;
  max-width: 520px;
  padding-left: 0.2rem;
  margin-top: 3.6rem;
}

.headline__btnholder {
  margin-top: 3.4rem;
}

h2 {
  font: normal 400 3rem/1.1 "Poppins", sans-serif;
  color: #232323;
}
h2.no-color{
  color: #ffffff;
}
h2 span {
  font: italic 400 4rem/0.6 "Quentin", italic;
  color: #ccbca8;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 4.2rem;
  }
  h2 span {
    font-size: 6.6rem;
  }
}
@media only screen and (min-width: 1400px) {
  h2 {
    font-size: 6rem;
  }
  h2 span {
    font-size: 6.6rem;
  }
}

.section-title__text {
  margin-top: 200px;
}

.content-block {
  position: relative;
  width: 100%;
  margin-bottom: 6rem;
  padding: 0 10%;
}

h3 {
  font: normal 500 2.0rem/1.2 "Poppins", sans-serif;
  color: #232323;
}
h3 small {
  display: block;
  margin-top: 0.4rem;
  font: normal 400 1.4rem/1.2 "Montserrat", sans-serif;
  color: #727272;
}

h4 {
  font: normal 500 1.5rem/1.2 "Poppins", sans-serif;
  color: #232323;
  margin-top: 30px;
}
h4 small {
  display: block;
  font: italic 400 3.2rem/1.2 "Quentin", italic;
  margin-bottom: 0.4rem;
  color: #ccbca8;
}
h4.light {
  color: #ffffff;
}

h5 {
  font: normal 500 1.6rem/1.2 "Poppins", sans-serif;
  color: #232323;
}

p {
  font: normal 400 1.0rem/1.0 "Montserrat", sans-serif;
  color: #444444;
}
p span {
  font-weight: 500;
  color: #232323;
}
p.no-color{
  color: #ffffff;
    margin-top: 30px;
    font-weight: 700;
}
p.small-text {
  font-size: 1.4rem;
}

a {
  color: #444444;
}

blockquote {
  display: block;
  position: relative;
}
blockquote::after {
  font-family: "Ionicons";
  content: "\f347";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 6rem;
  line-height: 1;
  color: rgba(35, 35, 35, 0.16);
}
blockquote p {
  font: normal 400 2rem/1.7 "Poppins", sans-serif;
  color: #232323;
  padding-top: 8.4rem;
}
blockquote p span {
  font: italic 400 3.8rem/0.6 "Quentin", italic;
  color: #ccbca8;
}
blockquote cite {
  display: block;
  font: normal 400 1.4rem/1.7 "Poppins", sans-serif;
  color: #444444;
  margin-top: 2rem;
}
blockquote cite span {
  display: block;
}
@media only screen and (min-width: 768px) {
  blockquote p {
    font-size: 2.4rem;
  }
}

.popup-title__title {
  font: normal 400 3rem/1.1 "Poppins", sans-serif;
  color: #232323;
}
.popup-title__title span {
  font: italic 400 5rem/0.6 "Quentin", italic;
  color: #ccbca8;
}
@media only screen and (min-width: 768px) {
  .popup-title__title {
    font-size: 4.2rem;
  }
  .popup-title__title span {
    font-size: 6.6rem;
  }
}

.popup-title__text {
  margin: 3rem 0 3.6rem 0;
}

.aside__text p {
  font: normal 400 1.1rem/1.5 "Montserrat", sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  padding-top: 0.3rem;
}
.aside__text p span {
  display: block;
  font: normal 400 1.1rem/1.5 "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #ffffff;
  margin-top: 0.3rem;
}
.aside__text a {
  color: #ffffff;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.no-touch .aside__text a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ------------------------------------------------*/
/* Typography End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Buttons &amp; Triggers Start */
/* ------------------------------------------------*/
.btn {
  position: relative;
  display: inline-block;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .btn {
    display: inline-block;
  }
}

.btn-light {
  padding: 0 0.6rem;
  font: normal 500 1.8rem/1.7 "Poppins", sans-serif;
  color: #ffffff;
}
.btn-light:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #ccbca8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.no-touch .btn-light:hover::after {
  width: 0%;
}

.btn-cart {
  width: 40px;
  height: 40px;
  line-height: 45px;
  padding: 0;
}
.btn-cart::after {
  display: none;
}
.btn-cart i {
  font-size: 2.2rem;
}
.btn-cart .btn-caption {
  display: none;
}
@media only screen and (min-width: 768px) {
  .btn-cart {
    width: auto;
    height: auto;
    line-height: 1.7;
    padding: 0 0.6rem;
  }
  .btn-cart::after {
    display: block;
  }
  .btn-cart i {
    display: none;
  }
  .btn-cart .btn-caption {
    display: block;
  }
}

.to-top {
  display: inline-block;
  width: 4.4rem;
  height: 4.4rem;
  line-height: 4.4rem;
  position: fixed;
  right: 20px;
  bottom: 20px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-color: #ccbca8;
  overflow: hidden;
  z-index: 3;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.no-touch .to-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
  opacity: 1;
  color: #ffffff;
}
.to-top.is-visible, .to-top.fade-out {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -o-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.to-top.is-visible {
  visibility: visible;
  opacity: 1;
}
.to-top.fade-out {
  opacity: 0.4;
}
@media only screen and (min-width: 768px) {
  .to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
  }
}

/* ------------------------------------------------*/
/* Buttons &amp; Triggers End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Buttons &amp; Controls Start */
/* ------------------------------------------------*/
.menu-btn {
  position: absolute;
  top: 3.4rem;
  right: 10%;
  width: 40px;
  height: 40px;
  z-index: 9;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.menu-btn.is-visible {
  opacity: 1;
}
@media only screen and (min-width: 1200px) {
  .menu-btn {
    position: fixed;
    right: 7rem;
  }
}

.menu-trigger {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
}
.menu-trigger::before, .menu-trigger::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-1px) rotate(0deg);
     -moz-transform: translateY(-1px) rotate(0deg);
      -ms-transform: translateY(-1px) rotate(0deg);
          transform: translateY(-1px) rotate(0deg);
  width: 40px;
  height: 2px;
  background-color: #000000;
}
.menu-trigger::before {
  -webkit-transform: translateY(-5px) rotate(0deg);
     -moz-transform: translateY(-5px) rotate(0deg);
      -ms-transform: translateY(-5px) rotate(0deg);
          transform: translateY(-5px) rotate(0deg);
}
.menu-trigger::after {
  -webkit-transform: translateY(5px) rotate(0deg);
     -moz-transform: translateY(5px) rotate(0deg);
      -ms-transform: translateY(5px) rotate(0deg);
          transform: translateY(5px) rotate(0deg);
}
.menu-trigger.light::before, .menu-trigger.light::after {
  background-color: #ccbca8;
}
.menu-trigger.section-active-dark::before, .menu-trigger.section-active-dark::after {
  background-color: #000000;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1200px) {
  .menu-trigger::before, .menu-trigger::after {
    background-color: #ccbca8;
  }
  .menu-trigger.section-active-dark::before, .menu-trigger.section-active-dark::after {
    background-color: #ccbca8;
  }
}

.section-close {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transform: scale3d(0, 0, 0);
     -moz-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}
.section-close::before, .section-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #999999;
}
.section-close::before {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section-close::after {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.section-close.is-scaled-up {
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.menu-close {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transform: scale3d(0, 0, 0);
     -moz-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}
.menu-close::before, .menu-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
}
.menu-close::before {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu-close::after {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu-close.is-scaled-up {
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transform: scale3d(0, 0, 0);
     -moz-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}
.popup-close::before, .popup-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
}
.popup-close::before {
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup-close::after {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.popup-close.is-scaled-up {
  -webkit-transform: scale3d(1, 1, 1);
     -moz-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.btn {
  position: relative;
  display: inline-block;
  border: none;
  outline: 0;
  padding: 0;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  text-align: center;
}

.btn-light {
  padding: 0 0.6rem;
  font: normal 500 1.8rem/1.7 "Poppins", sans-serif;
  color: #ffffff;
}
.btn-light:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #ccbca8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.no-touch .btn-light:hover::after {
  width: 0%;
}

.btn-dark {
  padding: 0 0.6rem;
  font: normal 500 1.8rem/1.7 "Poppins", sans-serif;
  color: #232323;
}
.btn-dark:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #ccbca8;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.no-touch .btn-dark:hover::after {
  width: 0%;
}

/* ------------------------------------------------*/
/* Buttons &amp; Controls End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Menu Start */
/* ------------------------------------------------*/
.menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background-color: #ccbca8;
  z-index: 10;
  overflow-y: auto;
  overflow-x: hidden;
}
@media only screen and (min-width: 1200px) {
  .menu {
    overflow: hidden;
  }
}

.menu__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10.8rem 0;
  min-height: 480px;
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .menu__container {
    padding: 0;
  }
}

.menu__controls {
  position: absolute;
  top: 0;
  right: 0;
  padding: 3.4rem 10%;
}
@media only screen and (min-width: 1200px) {
  .menu__controls {
    padding: 3.4rem 7rem;
  }
}

.menu__content {
  padding: 0 10%;
}
@media only screen and (min-width: 1200px) {
  .menu__content {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    padding: 0 7rem 4rem 7rem;
  }
}

.menu__caption {
  display: block;
  font: italic 400 4.2rem/4rem "Quentin", italic;
  color: rgba(255, 255, 255, 0.8);
  width: auto;
  margin-bottom: 3.4rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.menu__caption.is-visible {
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .menu__caption {
    display: inline-block;
    height: 4rem;
    padding-right: 1rem;
    margin-bottom: 0;
    -webkit-transform-origin: bottom left;
       -moz-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: rotate(-90deg) translate3d(-100%, 40px, 0);
       -moz-transform: rotate(-90deg) translate3d(-100%, 40px, 0);
            transform: rotate(-90deg) translate3d(-100%, 40px, 0);
  }
}

.menu__navigation {
  padding-left: 4rem;
}
.menu__navigation li {
  display: block;
  padding: 0 0 2rem 0;
}
.menu__navigation li a {
  font: normal 400 3rem/1 "Poppins", sans-serif;
  color: #ffffff;
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  -moz-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}
.no-touch .menu__navigation li:hover a {
  color: #e5dede;
}
@media only screen and (min-width: 768px) {
  .menu__navigation {
    padding-left: 15rem;
  }
  .menu__navigation li a {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .menu__navigation li a {
    font-size: 5rem;
  }
}

/* ------------------------------------------------*/
/* Menu End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Intro Start */
/* ------------------------------------------------*/
.intro {
  position: relative;
  background-color: #e5dede;
  background-image: url("../img/demo/bg-demo.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  -moz-background-size: cover;
       background-size: cover;
  padding-bottom: 160px;
}
.intro .color-layer {
  background-image: url("../img/demo/pattern.svg");
  background-repeat: repeat-x;
  background-position: left bottom;
  -moz-background-size: auto;
       background-size: auto;
}
@media only screen and (min-width: 768px) {
  .intro {
    padding-bottom: 350px;
  }
}
@media only screen and (min-width: 992px) {
  .intro {
    padding-bottom: 480px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro {
    padding-bottom: 660px;
  }
}

.intro__header {
  position: relative;
  padding: 3.4rem -moz-calc(10% - 1.5rem) 0 -moz-calc(10% - 1.5rem);
  padding: 3.4rem calc(10% - 1.5rem) 0 calc(10% - 1.5rem);
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .intro__header {
    padding: 5rem 8.5rem 0 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .intro__header {
    padding: 8rem 12.5rem 0 12.5rem;
  }
}

.header__logo {
  position: absolute;
  top: 3.4rem;
  left: 10%;
  z-index: 8;
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.header__logo img {
 width: 10vw;
}
@media only screen and (max-width: 800px) {
  .header__logo img{
    position: absolute;
    width: 30vw;
  }
}

@media only screen and (min-width: 1200px) {
  .header__logo{
    position: absolute;
    top: 3.4rem;
    left: 7rem;
  }
}

.header__buttons {
  position: relative;
  text-align: right;
}

.intro__content {
  position: relative;
  padding: 10rem -moz-calc(10% - 15px);
  padding: 10rem calc(10% - 15px);
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .intro__content {
    padding: 12rem -moz-calc(10% - 15px);
    padding: 12rem calc(10% - 15px);
  }
}
@media only screen and (min-width: 992px) {
  .intro__content {
    padding: 12rem 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .intro__content {
    padding: 15rem 12.5rem;
  }
}

.intro__illustrations {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 227px;
  overflow: hidden;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .intro__illustrations {
    height: 497px;
    bottom: -90px;
  }
}
@media only screen and (min-width: 992px) {
  .intro__illustrations {
    bottom: -114px;
    height: 671px;
  }
}
@media only screen and (min-width: 1400px) {
  .intro__illustrations {
    bottom: -170px;
    height: 941px;
  }
}

.illustration-1 {
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 320px;
  height: 227px;
  background-image: url("../img/demo/bg-3.png");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .illustration-1 {
    width: 700px;
    height: 497px;
  }
}
@media only screen and (min-width: 992px) {
  .illustration-1 {
    width: 946px;
    height: 671px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-1 {
    width: 1326px;
    height: 941px;
  }
}

.illustration-2, .illustration-3, .illustration-4, .illustration-5 {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .illustration-2, .illustration-3, .illustration-4, .illustration-5 {
    display: block;
  }
}

.illustration-2 {
  position: absolute;
  top: 200px;
  left: 66px;
  width: 516px;
  height: 290px;
  background-image: url("../img/demo/bg-4.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
     -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
@media only screen and (min-width: 1200px) {
  .illustration-2 {
    left: 38px;
    top: 140px;
    width: 360px;
    height: 202px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-2 {
    left: 50px;
    top: 196px;
    width: 516px;
    height: 290px;
  }
}

.illustration-3 {
  position: absolute;
  top: 414px;
  left: 118px;
  width: 300px;
  height: 225px;
  background-image: url("../img/demo/bg-5.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
     -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
@media only screen and (min-width: 1200px) {
  .illustration-3 {
    left: 90px;
    top: 286px;
    width: 208px;
    height: 194px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-3 {
    left: 120px;
    top: 406px;
    width: 300px;
    height: 281px;
  }
}

.illustration-4 {
  position: absolute;
  top: 240px;
  right: 60px;
  width: 516px;
  height: 290px;
  background-image: url("../img/demo/bg-7.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
     -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
@media only screen and (min-width: 1200px) {
  .illustration-4 {
    right: 60px;
    top: 160px;
    width: 360px;
    height: 202px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-4 {
    right: 60px;
    top: 220px;
    width: 516px;
    height: 290px;
  }
}

.illustration-5 {
  position: absolute;
  top: 420px;
  right: -120px;
  width: 516px;
  height: 290px;
  background-image: url("../img/demo/bg-6.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
     -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
@media only screen and (min-width: 1200px) {
  .illustration-5 {
    right: -80px;
    top: 290px;
    width: 360px;
    height: 202px;
  }
}
@media only screen and (min-width: 1400px) {
  .illustration-5 {
    right: -120px;
    top: 400px;
    width: 516px;
    height: 290px;
  }
}

/* ------------------------------------------------*/
/* Intro End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Preview Sections Start */
/* ------------------------------------------------*/
.demo {
  padding: 0;
}
.demo.first-section {
  padding: 5rem 0 0 0;
}
.demo.last-section {
  padding: 0 0 5rem 0;
}
@media only screen and (min-width: 768px) {
  .demo.first-section {
    padding-top: 7rem;
  }
}
@media only screen and (min-width: 992px) {
  .demo.first-section {
    padding-top: 8rem;
  }
}
@media only screen and (min-width: 1400px) {
  .demo.first-section {
    padding-top: 13rem;
  }
  .demo.last-section {
    padding-bottom: 6rem;
  }
}

/* ------------------------------------------------*/
/* Preview Sections End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Sections Headline Start */
/* ------------------------------------------------*/
.demo__title {
  position: relative;
  width: 100%;
  padding: 5rem -moz-calc(10% - 1.5rem);
  padding: 5rem calc(10% - 1.5rem);
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .demo__title {
    padding: 5rem 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .demo__title {
    padding: 6rem 12.5rem;
  }
}

/* ------------------------------------------------*/
/* Sections Headline End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Preview Links Start */
/* ------------------------------------------------*/
.demo__links {
  position: relative;
  padding: 0 -moz-calc(10% - 1.5rem);
  padding: 0 calc(10% - 1.5rem);
}
.demo__links a {
  display: block;
}
.no-touch .demo__links a:hover .links__image {
  -webkit-transform: translateY(-1.6rem);
     -moz-transform: translateY(-1.6rem);
      -ms-transform: translateY(-1.6rem);
          transform: translateY(-1.6rem);
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 1200px) {
  .demo__links {
    padding: 0 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .demo__links {
    padding: 0 12.5rem;
  }
}

.links__item {
  position: relative;
  margin-bottom: 5rem;
}
@media only screen and (min-width: 1200px) {
  .links__item.left {
    margin-right: 1.5rem;
  }
  .links__item.right {
    margin-left: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .links__item {
    margin-bottom: 6rem;
  }
}

.links__image {
  position: relative;
  width: 100%;
  -webkit-box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.06), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
     -moz-box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.06), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.06), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.5s cubic-bezier(0, 1.04, 0.68, 1.04);
  -o-transition: all 0.5s cubic-bezier(0, 1.04, 0.68, 1.04);
  -moz-transition: all 0.5s cubic-bezier(0, 1.04, 0.68, 1.04);
  transition: all 0.5s cubic-bezier(0, 1.04, 0.68, 1.04);
}

.links__caption {
  display: block;
  text-align: center;
}

/* ------------------------------------------------*/
/* Preview Links End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Subscribe Section Start */
/* ------------------------------------------------*/
.subscribe {
  position: relative;
  padding: 10rem -moz-calc(10% - 1.5rem);
  padding: 10rem calc(10% - 1.5rem);
  background-color: #e5dede;
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  background-attachment: fixed;
  background-image: url("../img/demo/bg-demo-subscribe.jpg");
}
.subscribe .color-layer {
  background-image: url("../img/demo/pattern.svg");
  background-repeat: repeat-x;
  background-position: left bottom;
  -moz-background-size: auto;
       background-size: auto;
}
@media only screen and (min-width: 1200px) {
  .subscribe {
    padding: 10rem 8.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .subscribe {
    padding: 12rem 12.5rem;
  }
}

.subscribe__container {
  position: relative;
  margin: 0 auto 6rem;
  text-align: center;
}

.subscribe__form {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.reply-group {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
     -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  text-align: center;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.reply-group.is-visible {
  opacity: 1;
}

.form {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.form.is-hidden {
  opacity: 0;
}

.form {
  position: relative;
  width: 100%;
}
.form input, .form textarea {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  padding: 1.2rem;
  font: normal 400 1.4rem/1.7 "Montserrat", sans-serif;
  -webkit-transition: border-bottom 0.6s;
  -o-transition: border-bottom 0.6s;
  -moz-transition: border-bottom 0.6s;
  transition: border-bottom 0.6s;
}
.form input {
  height: 4.6rem;
  margin: 0 0 2.4rem 0;
}

.form-light ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.form-light :-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.form-light ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.form-light :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.form-light input:focus:required:invalid,
.form-light textarea:focus:required:invalid {
  color: #ffffff;
}
.form-light input:required:valid,
.form-light textarea:required:valid {
  color: #ffffff;
}
.form-light input, .form-light textarea {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
.form-light input:focus, .form-light textarea:focus {
  border-bottom: 1px solid #ccbca8;
}

/* ------------------------------------------------*/
/* Subscribe Section End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Footer Start */
/* ------------------------------------------------*/
.footer {
  background-color: #ffffff;
  position: relative;
  padding: 4.6rem 10% 6rem 10%;
}
@media only screen and (min-width: 1200px) {
  .footer {
    padding: 4.6rem 8.5rem 6rem 8.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .footer {
    padding: 4.6rem 12.5rem 6rem 12.5rem;
  }
}

/* ------------------------------------------------*/
/* Footer End */
/* ------------------------------------------------*/</pre></body></html>