/*
* POLAR - Original Coming Soon Template
* Build Date: August 2016
* Last Update: August 2016
* Author: Madeon08
* Copyright (C) 2016 Madeon08
* This is a premium product available exclusively here : http://themeforest.net/user/Madeon08/portfolio
*/
/*  TABLE OF CONTENTS
    ---------------------------
    *. @Import & Reset
    1. Loading
    2. Generic styles
    3. COLUMN
    4. LEFT COLUMN
    5. CENTER COLUMN
    6. RIGHT COLUMN
    7. Navigation
    8. Portfolio
    9. Services
   10. Contact form
   11. Newsletter
   12. Photo gallery
   13. Media Queries
*/
/* ------------------------------------- */
/* *. @Import & Reset .................. */
/* ------------------------------------- */

/* custom CSS files */
@import url(font-awesome.min.css);
@import url(ionicons.min.css);
@import url(bootstrap.min.css);
@import url(animate.css);
@import url(photoswipe.css);
@import url(default-skin/dark-skin.css);
@import url(jquery.fullPage.css);
@import url(vegas.css);
/* Google Fonts */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");
@import url("https://fonts.googleapis.com/css?family=Oswald:400,300,700");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic");
/*
* http://meyerweb.com/eric/tools/css/reset/ 
* v2.0 | 20110126
* License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ------------------------------------- */
/* 1. Loading .......................... */
/* ------------------------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  position: fixed;
  z-index: 100000;
  /* ------------------------------------- */
  /* Circle preloader .................... */
  /* ------------------------------------- */
}
#loading .wrap-load {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading .wrap-load p {
  text-transform: uppercase;
  font-family: Oswald, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  margin-top: -5rem;
}
#loading .wrap-load .circles-loader {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#loading .wrap-load .circles-loader .square {
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  border: 2px solid rgba(137, 137, 137, 0.5);
  left: 3rem;
  top: 3rem;
  position: absolute;
  -webkit-border-radius: 10rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  border-radius: 10rem;
}
#loading .wrap-load .circles-loader .square.first_circle {
  -webkit-animation: first_circle_animate 0.8s infinite linear;
  -moz-animation: first_circle_animate 0.8s infinite linear;
  animation: first_circle_animate 0.8s infinite linear;
}
#loading .wrap-load .circles-loader .square.second_circle {
  -webkit-animation: second_circle 1.2s forwards, second_circle_animate 1.2s infinite linear;
  -moz-animation: second_circle 1.2s forwards, second_circle_animate 1.2s infinite linear;
  animation: second_circle 1.2s forwards, second_circle_animate 1.2s infinite linear;
  border-color: #9f8f68;
  width: 5rem;
  height: 5rem;
  left: 2rem;
  top: 2rem;
}
#loading .wrap-load .circles-loader .square.third_circle {
  -webkit-animation: third_circle 1.6s forwards, third_circle_animate 1.6s infinite linear;
  -moz-animation: third_circle 1.6s forwards, third_circle_animate 1.6s infinite linear;
  animation: third_circle 1.6s forwards, third_circle_animate 1.6s infinite linear;
  width: 7rem;
  height: 7rem;
  left: 1rem;
  top: 1rem;
}
@-webkit-keyframes first_circle_animate {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
  }
}
@-moz-keyframes first_circle_animate {
  0% {
    -moz-transform: perspective(100px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -moz-transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    -moz-transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
  }
}
@keyframes first_circle_animate {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg) rotateY(0deg);
    -moz-transform: perspective(100px) rotateX(0deg) rotateY(0deg);
    -ms-transform: perspective(100px) rotateX(0deg) rotateY(0deg);
    -o-transform: perspective(100px) rotateX(0deg) rotateY(0deg);
    transform: perspective(100px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
    -moz-transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
    -ms-transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
    -o-transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
    transform: perspective(100px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
    -moz-transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
    -ms-transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
    -o-transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
    transform: perspective(100px) rotateX(-180deg) rotateY(-180deg);
  }
}
@-webkit-keyframes second_circle_animate {
  0% {
    -webkit-transform: perspective(200px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(200px) rotateX(180deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(200px) rotateX(180deg) rotateY(180deg);
  }
}
@-moz-keyframes second_circle_animate {
  0% {
    -moz-transform: perspective(200px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -moz-transform: perspective(200px) rotateX(180deg) rotateY(0deg);
  }
  100% {
    -moz-transform: perspective(200px) rotateX(180deg) rotateY(180deg);
  }
}
@keyframes second_circle_animate {
  0% {
    -webkit-transform: perspective(200px) rotateX(0deg) rotateY(0deg);
    -moz-transform: perspective(200px) rotateX(0deg) rotateY(0deg);
    -ms-transform: perspective(200px) rotateX(0deg) rotateY(0deg);
    -o-transform: perspective(200px) rotateX(0deg) rotateY(0deg);
    transform: perspective(200px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(200px) rotateX(180deg) rotateY(0deg);
    -moz-transform: perspective(200px) rotateX(180deg) rotateY(0deg);
    -ms-transform: perspective(200px) rotateX(180deg) rotateY(0deg);
    -o-transform: perspective(200px) rotateX(180deg) rotateY(0deg);
    transform: perspective(200px) rotateX(180deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(200px) rotateX(180deg) rotateY(180deg);
    -moz-transform: perspective(200px) rotateX(180deg) rotateY(180deg);
    -ms-transform: perspective(200px) rotateX(180deg) rotateY(180deg);
    -o-transform: perspective(200px) rotateX(180deg) rotateY(180deg);
    transform: perspective(200px) rotateX(180deg) rotateY(180deg);
  }
}
@-webkit-keyframes third_circle_animate {
  0% {
    -webkit-transform: perspective(300px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
  }
}
@-moz-keyframes third_circle_animate {
  0% {
    -moz-transform: perspective(300px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -moz-transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    -moz-transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
  }
}
@keyframes third_circle_animate {
  0% {
    -webkit-transform: perspective(300px) rotateX(0deg) rotateY(0deg);
    -moz-transform: perspective(300px) rotateX(0deg) rotateY(0deg);
    -ms-transform: perspective(300px) rotateX(0deg) rotateY(0deg);
    -o-transform: perspective(300px) rotateX(0deg) rotateY(0deg);
    transform: perspective(300px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
    -moz-transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
    -ms-transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
    -o-transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
    transform: perspective(300px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
    -moz-transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
    -ms-transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
    -o-transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
    transform: perspective(300px) rotateX(-180deg) rotateY(-180deg);
  }
}
/* ------------------------------------- */
/* 2. Generic styles ................... */
/* ------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  background: #FFFFFF;
  font-family: "Noto Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0;
  position: absolute;
  height: 100%;
}

body, html {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}

body, input, select, textarea {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

section {
  padding-bottom: 4rem;
}

a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  color: #9f8f68;
}
a:hover {
  color: #c7bda6;
  text-decoration: none !important;
  outline: none !important;
}
a:active, a:focus {
  outline: none !important;
  text-decoration: none !important;
  color: #FFFFFF;
}

button {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
button:hover, button:active, button:focus {
  outline: none !important;
  text-decoration: none !important;
  color: #2B2D35;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

p {
  font-family: "Noto Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #666666;
  font-weight: 400;
}
p.subtitle {
  margin-bottom: 3rem;
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 1.5rem 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  color: inherit;
}

h1 {
  color: #FFFFFF;
  font-size: 5rem;
  font-family: "Noto Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
          /*Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;*/
  text-transform: uppercase;
  position: relative;
  text-align: center;
  margin-bottom: 0;
  /*-webkit-transform: skewX(-8deg);*/
  /*-moz-transform: skewX(-8deg);*/
  /*-ms-transform: skewX(-8deg);*/
  /*-o-transform: skewX(-8deg);*/
  /*transform: skewX(-8deg);*/
  /*text-shadow: -0.3rem -0.3rem 0 #9f8f68, 0.3rem 0.3rem 0 #000000;*/
  line-height: 1.5;
}
h1 span {
  font-size: 2.5rem;
  color: #666666;
  font-weight: 500;
}

h2 {
  font-size: 6rem;
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  text-align: center;
  margin-bottom: 4rem;
}
h2 small {
  color: #9f8f68;
  font-size: 2.2rem;
  font-family: Oswald, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  text-transform: uppercase;
}

h3 {
  font-size: 2.3rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.2rem;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

.clear {
  clear: both;
}

.display-none {
  display: none !important;
}

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

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

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

.no-margin-bottom {
  margin-bottom: 0;
}

.opacity-0 {
  opacity: 0 !important;
  visibility: hidden !important;
}

.opacity-03 {
  opacity: 0.3 !important;
}

.opacity-1 {
  opacity: 1 !important;
  visibility: visible !important;
}

.index-999 {
  z-index: -999 !important;
}

.top-bar, .bottom-bar {
  background: #FFFFFF;
  height: 3rem;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.top-bar {
  border-bottom: 1px solid #EFEFEF;
}

.bottom-bar {
  top: auto;
  bottom: 0;
  border-top: 1px solid #EFEFEF;
}

.header-section {
  margin-bottom: 3.5rem;
}
.header-section h2 {
  margin-bottom: 0;
}
.header-section p.subtitle {
  margin-top: 2rem;
  margin-bottom: 0;
}

.scroll-indicator {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 8rem;
  width: 100%;
  text-align: center;
  display: block;
}
.scroll-indicator a {
  opacity: 0.7;
  color: #FFFFFF;
  padding: 0 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.scroll-indicator a:hover {
  opacity: 1;
}

/* ------------------------------------- */
/* 3. COLUMN ........................... */
/* ------------------------------------- */
.left-column, .center-column, .right-column {
  height: 100vh;
}

/* ------------------------------------- */
/* 4. LEFT COLUMN ...................... */
/* ------------------------------------- */
.left-column {
  position: fixed;
  width: 25vw;
  z-index: 150;
  top: 0;
  left: 0;
  padding: 3rem;
}

.brand-logo {
  position: relative;
  max-width: 15rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.social-icons {
  position: absolute;
  left: 0;
  bottom: 3rem;
  margin-left: 0;
  margin-bottom: 0;
  display: block;
  width: 25vw;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
.social-icons i {
  color: #a5a5a5;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.social-icons a {
  color: #a5a5a5;
  width: 4rem;
  line-height: 4rem;
  letter-spacing: 0;
  background: transparent;
  font-size: 1.3rem;
  font-weight: 300;
  height: 4rem;
  display: inline-block;
  text-align: center;
  float: left;
  margin-right: 0;
  border: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.social-icons a:hover {
  color: #9f8f68;
}
.social-icons a:hover i {
  color: #9f8f68;
}

/* ------------------------------------- */
/* 5. CENTER COLUMN .................... */
/* ------------------------------------- */
.center-column {
  position: relative;
  width: 60vw;
  top: 0;
  left: 20vw;
}
.center-column .text-part {
  padding: 0 5rem;
}
.center-column .text-part p {
  color: #898989;
  text-align: center;
}
.center-column .text-part p.on-left {
  text-align: left;
}

#vegas-background {
  position: fixed;
  top: 0;
  left: -20vw;
  height: 100vh !important;
  width: 100vw;
  z-index: -1;
}

.global-overlay {
  position: fixed;
  top: 0;
  left: -20vw;
  height: 100vh;
  overflow: visible;
  background: rgba(20, 22, 24, 0.4);
  width: 100vw;
  z-index: -1;
}

/* ------------------------------------- */
/* 6. RIGHT COLUMN ..................... */
/* ------------------------------------- */
.right-column {
  position: fixed;
  width: 25vw;
  z-index: 150;
  top: 0;
  right: 0;
}

.info-launch {
  position: absolute;
  right: 0;
  top: 3rem;
  padding-right: 2.5rem;
  text-align: right;
  width: 25vw;
}
.info-launch p {
  font-family: Oswald, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #99b4e3;
          /*#9f8f68;*/
  font-size: 1.7rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 1.8rem;
}

#countdown {
  font-family: Oswald, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #99b4e3;
  text-transform: uppercase;
  display: block;
  margin-top: 1rem;
  font-size: 1.8rem;
}

.action-btn {
  background: transparent;
  font-weight: 400;
  color: #9f8f68;
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 2px solid rgba(159, 143, 104, 0.7);
  display: inline-block;
  overflow: hidden;
  width: 5rem;
  height: 5rem;
  margin-top: 2rem;
}
.action-btn:after {
  font-family: 'FontAwesome';
  content: '\f0a2';
  position: absolute;
  opacity: 1;
  top: 0.4rem;
  right: 1.35rem;
  font-size: 2rem;
}
.action-btn.before-click:after {
  -webkit-animation: ring 1.5s infinite linear;
  -moz-animation: ring 1.5s infinite linear;
  animation: ring 1.5s infinite linear;
}
@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotate(0deg);
  }
  6.25% {
    -webkit-transform: rotate(-2deg);
  }
  12.5% {
    -webkit-transform: rotate(5deg);
  }
  18.75% {
    -webkit-transform: rotate(-10deg);
  }
  25% {
    -webkit-transform: rotate(15deg);
  }
  31.25% {
    -webkit-transform: rotate(-20deg);
  }
  37.5% {
    -webkit-transform: rotate(25deg);
  }
  43.75% {
    -webkit-transform: rotate(-30deg);
  }
  50% {
    -webkit-transform: rotate(35deg);
  }
  56.25% {
    -webkit-transform: rotate(-30deg);
  }
  62.5% {
    -webkit-transform: rotate(25deg);
  }
  68.75% {
    -webkit-transform: rotate(-20deg);
  }
  75% {
    -webkit-transform: rotate(15deg);
  }
  81.25% {
    -webkit-transform: rotate(-10deg);
  }
  87.5% {
    -webkit-transform: rotate(5deg);
  }
  93.75% {
    -webkit-transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes ring {
  0% {
    -moz-transform: rotate(0deg);
  }
  6.25% {
    -moz-transform: rotate(-2deg);
  }
  12.5% {
    -moz-transform: rotate(5deg);
  }
  18.75% {
    -moz-transform: rotate(-10deg);
  }
  25% {
    -moz-transform: rotate(15deg);
  }
  31.25% {
    -moz-transform: rotate(-20deg);
  }
  37.5% {
    -moz-transform: rotate(25deg);
  }
  43.75% {
    -moz-transform: rotate(-30deg);
  }
  50% {
    -moz-transform: rotate(35deg);
  }
  56.25% {
    -moz-transform: rotate(-30deg);
  }
  62.5% {
    -moz-transform: rotate(25deg);
  }
  68.75% {
    -moz-transform: rotate(-20deg);
  }
  75% {
    -moz-transform: rotate(15deg);
  }
  81.25% {
    -moz-transform: rotate(-10deg);
  }
  87.5% {
    -moz-transform: rotate(5deg);
  }
  93.75% {
    -moz-transform: rotate(-2deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@keyframes ring {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  6.25% {
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  12.5% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  18.75% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  25% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  31.25% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }
  37.5% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  43.75% {
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  50% {
    -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    transform: rotate(35deg);
  }
  56.25% {
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  62.5% {
    -webkit-transform: rotate(25deg);
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -o-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  68.75% {
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
    transform: rotate(-20deg);
  }
  75% {
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  81.25% {
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  87.5% {
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  93.75% {
    -webkit-transform: rotate(-2deg);
    -moz-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.action-btn:hover {
  background: #9f8f68;
  color: #FFFFFF;
}

.copyright {
  position: absolute;
  bottom: 0.7rem;
  right: 0;
  padding-right: 1.6rem;
  font-size: 1rem;
}

/* ------------------------------------- */
/* 7. Navigation ....................... */
/* ------------------------------------- */
#fp-nav {
  position: fixed;
  display: table;
  z-index: 200;
  margin-top: 0 !important;
  top: 25vh;
  opacity: 1;
  height: 50vh;
  padding: 0 1rem;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: transparent;
}
#fp-nav.nav-on-right {
  right: 0.5rem;
}
#fp-nav.nav-on-right ul li .fp-tooltip {
  right: 4rem;
  padding: 3px 0 3px 10px;
}
#fp-nav.nav-on-left {
  left: 0.5rem;
}
#fp-nav.nav-on-left ul li .fp-tooltip {
  left: 4rem;
  padding: 3px 10px 3px 0;
}
#fp-nav ul {
  display: table-cell;
  vertical-align: middle;
}
#fp-nav ul li .fp-tooltip {
  font-family: Oswald, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  text-transform: uppercase;
  position: absolute;
  top: -1px;
  color: #cbcbcb;
  background: transparent;
  font-size: 1.3rem;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#fp-nav ul li .fp-tooltip.right {
  right: 20px;
}
#fp-nav ul li:hover .fp-tooltip {
  width: auto;
  color: #9f8f68;
}
#fp-nav.fp-show-active a.active + .fp-tooltip {
  width: auto;
  opacity: 1;
  color: #9f8f68;
  -webkit-transform: rotateX(360deg);
  -moz-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  -o-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 3rem;
  height: 2.5rem;
  position: relative;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
  background: #9f8f68;
}
#fp-nav ul li:hover #fp-nav ul li a.active span, #fp-slidesNav ul li:hover #fp-nav ul li a.active span, #fp-nav ul li:hover
.fp-slidesNav ul li a.active span, #fp-slidesNav ul li:hover
.fp-slidesNav ul li a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  position: absolute;
  z-index: 1;
  height: 0.8rem;
  width: 0.8rem;
  top: calc(50% - 0.4rem);
  left: calc(50% - 0.4rem);
  border: none;
  background: #d8d8d8;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  background: #9f8f68;
}

.fp-tableCell {
  padding: 0;
  text-align: center;
}

/* ------------------------------------- */
/* 8. Portfolio ........................ */
/* ------------------------------------- */
#portfolio .portfolio {
  overflow: hidden;
}
#portfolio .portfolio figure {
  padding: 0 !important;
  overflow: hidden;
  cursor: pointer;
}
#portfolio .portfolio figure:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  z-index: 0;
  opacity: 0;
  background: #141618;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#portfolio .portfolio figure .gallery-link {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#portfolio .portfolio figure .gallery-link .gallery-img {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#portfolio .portfolio figure figcaption {
  background: transparent;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
  top: 50%;
  opacity: 0;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  left: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#portfolio .portfolio figure figcaption .photo-details h4 {
  font-family: Oswald, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  text-transform: uppercase;
  color: #FFFFFF;
}
#portfolio .portfolio figure figcaption .photo-details h4 small {
  display: block;
  text-transform: none;
  margin-top: 0.8rem;
  color: #EFEFEF;
  font-style: italic;
}
#portfolio .portfolio figure figcaption .photo-details h5 {
  color: #9f8f68;
  margin-bottom: 0;
}
#portfolio .portfolio figure figcaption .photo-details i.icon {
  display: block;
  font-size: 3rem;
  position: absolute;
  left: calc(50% - 0.75rem);
  margin-top: 5rem;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#portfolio .portfolio figure figcaption .photo-details i.icon:hover {
  color: #ff3366;
}
#portfolio .portfolio figure figcaption .photo-details p {
  display: none;
}
#portfolio .portfolio figure:hover:after {
  opacity: 0.7;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#portfolio .portfolio figure:hover figcaption {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#portfolio .portfolio figure:hover figcaption i.icon {
  margin-top: 0;
}
#portfolio .portfolio figure:hover .gallery-img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
#portfolio .portfolio div {
  padding: 0;
  overflow: hidden;
}

/* ------------------------------------- */
/* 9. Services ......................... */
/* ------------------------------------- */
.services:last-child {
  padding-top: 3rem;
}
.services .box-info {
  padding-top: 0;
  text-align: left;
}
.services .service-box {
  background: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  text-align: center;
}
.services .service-box span.icon {
  color: #9f8f68;
  font-size: 6rem;
  line-height: 1.4;
  display: inline-block;
  padding: 2px;
}
.services .service-box span.icon.icon-clock {
  -webkit-animation: clocky 2s infinite linear;
  -moz-animation: clocky 2s infinite linear;
  animation: clocky 2s infinite linear;
}
.services .service-box h3 {
  font-weight: 500;
  font-family: Oswald, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
}
@-webkit-keyframes clocky {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes clocky {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@keyframes clocky {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* ------------------------------------- */
/* 10. Contact form .................... */
/* ------------------------------------- */
#contact-form {
  margin: 0 auto;
  max-width: 65rem;
}
#contact-form .form-control {
  background: #f6f6f6;
  border: none;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  border-radius: 0.3rem;
  box-shadow: none;
  font-weight: 400;
  outline: medium none;
  padding: 1.6rem 3rem;
  font-size: 1.4rem;
  line-height: 1.4;
  height: auto;
  width: 100%;
  color: #000000;
  margin-bottom: 2rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: left;
}
#contact-form .form-control:hover, #contact-form .form-control:focus {
  box-shadow: none;
  background: #F1F1F1;
}
#contact-form .form-control::-webkit-input-placeholder {
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #999999 !important;
}
#contact-form .form-control::-moz-placeholder {
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #999999 !important;
}
#contact-form .form-control:-moz-placeholder {
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #999999 !important;
}
#contact-form .form-control:-ms-input-placeholder {
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #999999 !important;
}
#contact-form textarea.form-control {
  min-height: 150px;
}
#contact-form span.sub-text {
  color: #898989;
  position: absolute;
  font-size: 0.9rem;
  right: 1.5rem;
  bottom: 0;
}
#contact-form button#valid-form {
  padding: 1.3rem 2.5rem;
  font-size: 1.4rem;
  display: block;
  margin: 0;
  background: #9f8f68;
  color: #FFFFFF;
  font-family: "Noto Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  width: auto;
  text-transform: uppercase;
}
#contact-form button#valid-form:hover {
  background: #c7bda6;
  color: #FFFFFF;
}

#block-answer {
  position: absolute;
  margin-top: 1rem;
  width: 100%;
  left: 0;
}

.success-message p {
  margin-top: 2rem;
  text-align: center;
}
.success-message .ion-checkmark-round {
  color: #27AE60;
}

.error-message p {
  text-align: center;
}
.error-message .ion-close-round {
  color: #FF1D4D;
}

/* ------------------------------------- */
/* 11. Newsletter ...................... */
/* ------------------------------------- */
.dialog,
.dialog__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.dialog {
  position: fixed;
  z-index: 999999;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  pointer-events: none;
}

.dialog__overlay {
  position: absolute;
  z-index: 1;
  background: rgba(20, 22, 24, 0.8);
  opacity: 0;
  transition: opacity 0.2s;
}

.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto;
}

.dialog__content {
  width: 50%;
  max-width: 50rem;
  min-width: 290px;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 5;
  opacity: 0;
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.4);
  background: #FFFFFF;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.dialog__content .header-picture {
  width: 100%;
  height: 18rem;
  background: url("../img/background-newsletter.jpg") center;
  background-size: cover;
}
.dialog__content .dialog-inner {
  padding: 5rem 5rem 0 5rem;
  overflow: hidden;
  background: #FFFFFF;
  background-size: cover;
}
.dialog__content .dialog-inner::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.dialog__content .dialog-inner h4 {
  color: #141618;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
}
.dialog__content .dialog-inner p {
  color: #898989;
}
.dialog__content .dialog-inner p.spam-news {
  margin-top: 6rem;
  margin-bottom: 2rem;
  color: #a5a5a5;
  font-size: 1rem;
}

.dialog--open .dialog__content {
  pointer-events: auto;
}

.dialog .close-newsletter {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  width: 50px;
  height: 50px;
  line-height: 0;
  color: #4d4d4d;
  font-size: 2rem;
  opacity: 1;
}
.dialog .close-newsletter i {
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.dialog .close-newsletter:hover i {
  color: #000000;
}

#subscribe #notifyMe {
  max-width: 450px;
  margin: auto;
  margin-top: 2em;
}
#subscribe #notifyMe .form-group {
  margin-bottom: 1em;
}
#subscribe #notifyMe .form-group .fa {
  color: #757A86;
  position: absolute;
  text-align: center;
  top: 15px;
  left: 15px;
}
#subscribe #notifyMe .form-group .form-control {
  background: #f6f6f6;
  border: none;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  border-radius: 0.3rem;
  box-shadow: none;
  font-weight: 400;
  outline: medium none;
  padding: 1.6rem 3rem;
  font-size: 1.4rem;
  line-height: 1.4;
  height: auto;
  width: 100%;
  color: #000000;
  margin-bottom: 2rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
}
#subscribe #notifyMe .form-group .form-control:hover, #subscribe #notifyMe .form-group .form-control:focus {
  box-shadow: none;
  background: #F1F1F1;
}
#subscribe #notifyMe .form-group .form-control::-webkit-input-placeholder {
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #999999 !important;
}
#subscribe #notifyMe .form-group .form-control::-moz-placeholder {
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #999999 !important;
}
#subscribe #notifyMe .form-group .form-control:-moz-placeholder {
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #999999 !important;
}
#subscribe #notifyMe .form-group .form-control:-ms-input-placeholder {
  font-family: "Playfair Display", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #999999 !important;
}
#subscribe #notifyMe .form-group button.submit {
  padding: 1.3rem 2.5rem;
  font-size: 1.4rem;
  display: block;
  margin: 0 auto;
  background: #9f8f68;
  color: #FFFFFF;
  font-family: "Noto Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  font-weight: 600;
  width: auto;
  text-transform: uppercase;
}
#subscribe #notifyMe .form-group button.submit:hover {
  background: #c7bda6;
  color: #FFFFFF;
}
#subscribe .block-message {
  min-height: 50px;
  position: absolute;
  bottom: -100px;
  width: 100%;
  left: 0;
  padding: 15px;
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#subscribe .block-message.show-block-error {
  bottom: 0;
  background: #FF1D4D;
}
#subscribe .block-message.show-block-valid {
  bottom: 0;
  background: #00c8aa;
}
#subscribe p.notify-valid {
  color: #FFFFFF;
}

.dialog__overlay {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.dialog.dialog--open .dialog__content,
.dialog.dialog--close .dialog__content {
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.dialog.dialog--open .dialog__content {
  -webkit-animation-name: anim-open;
  -moz-animation-name: anim-open;
  animation-name: anim-open;
}

.dialog.dialog--close .dialog__content {
  -webkit-animation-name: anim-close;
  -moz-animation-name: anim-close;
  animation-name: anim-close;
}

@-webkit-keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5rem, 0);
    -moz-transform: translate3d(0, -5rem, 0);
    -o-transform: translate3d(0, -5rem, 0);
    -ms-transform: translate3d(0, -5rem, 0);
    transform: translate3d(0, -5rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5rem, 0);
    -moz-transform: translate3d(0, -5rem, 0);
    -o-transform: translate3d(0, -5rem, 0);
    -ms-transform: translate3d(0, -5rem, 0);
    transform: translate3d(0, -5rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes anim-open {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -5rem, 0);
    -moz-transform: translate3d(0, -5rem, 0);
    -o-transform: translate3d(0, -5rem, 0);
    -ms-transform: translate3d(0, -5rem, 0);
    transform: translate3d(0, -5rem, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes anim-close {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5rem, 0);
    -moz-transform: translate3d(0, 5rem, 0);
    -o-transform: translate3d(0, 5rem, 0);
    -ms-transform: translate3d(0, 5rem, 0);
    transform: translate3d(0, 5rem, 0);
  }
}
@-moz-keyframes anim-close {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5rem, 0);
    -moz-transform: translate3d(0, 5rem, 0);
    -o-transform: translate3d(0, 5rem, 0);
    -ms-transform: translate3d(0, 5rem, 0);
    transform: translate3d(0, 5rem, 0);
  }
}
@keyframes anim-close {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 5rem, 0);
    -moz-transform: translate3d(0, 5rem, 0);
    -o-transform: translate3d(0, 5rem, 0);
    -ms-transform: translate3d(0, 5rem, 0);
    transform: translate3d(0, 5rem, 0);
  }
}
/* ------------------------------------- */
/* 12. Photo gallery ................... */
/* ------------------------------------- */
.pswp__counter {
  color: #141618;
}

.pswp__bg {
  background: #FFFFFF;
}

.pswp__top-bar {
  background: #FFFFFF !important;
  border-bottom: 1px solid rgba(137, 137, 137, 0.2);
}

.pswp__caption {
  border-top: 1px solid rgba(137, 137, 137, 0.2);
  background: #FFFFFF !important;
}
.pswp__caption h4 {
  font-family: Oswald, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  font-weight: 400;
  color: #141618;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}
.pswp__caption h4 small {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.4rem;
}
.pswp__caption h5 {
  color: #9f8f68;
}
.pswp__caption i.icon {
  display: none;
}
.pswp__caption p {
  color: #898989;
}

/* ------------------------------------- */
/* 13. Media Queries ................... */
/* ------------------------------------- */
/* Large Devices, Wide Screens @media only screen and (max-width: 1600px) */
/* Notebook devices @media only screen and (max-width: 1199px) */
@media only screen and (max-width: 1199px) {
  .services .service-box {
    padding: 0;
  }
  .services .service-box span.icon {
    font-size: 4rem;
  }

  h2 {
    font-size: 4rem;
  }
  h2 small {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.9rem;
  }

  p {
    font-size: 1.4rem;
  }
}
/* Medium Devices, Desktops @media only screen and (max-width: 1024px) */
@media only screen and (max-width: 1024px) {
  #fullpage {
    overflow: hidden;
  }

  .top-bar, .bottom-bar {
    display: none;
  }

  .left-column, .center-column, .right-column {
    background: #FFFFFF;
    position: relative;
    height: auto;
    width: 100vw;
    left: 0;
  }

  .left-column {
    padding: 3rem 3rem 1rem;
    width: 100%;
  }

  .right-column {
    padding: 0 0 3rem 0;
    width: 100%;
  }

  .fp-tableCell, .fp-section {
    height: auto !important;
  }

  #section0 {
    min-height: 80vh !important;
  }

  .info-launch p {
    margin-top: 0;
  }

  .fp-tableCell {
    padding: 4rem;
  }

  .annex-section {
    background: #FFFFFF;
    border-top: 1px solid #F1F1F1;
  }

  .brand-logo {
    position: relative;
    max-width: 15rem;
    display: block;
    margin: 0 auto 2rem;
  }

  .info-launch {
    position: relative;
    right: auto;
    top: auto;
    padding-right: 0;
    text-align: center;
    border-top: none;
    width: 100%;
  }

  #vegas-background {
    top: 0;
    left: 0;
    height: 100vh !important;
  }

  .global-overlay {
    top: 0;
    left: 0;
    height: 100vh;
  }

  #main-content {
    right: 0;
    width: 100vw;
  }

  #portfolio .portfolio figure {
    padding: 1rem !important;
  }
  #portfolio .portfolio figure:after {
    display: none;
  }
  #portfolio .portfolio figure .gallery-link {
    float: none;
  }
  #portfolio .portfolio figure figcaption {
    background: #FFFFFF;
    position: relative;
    border: 1px solid #F1F1F1;
    top: auto;
    bottom: 0;
    opacity: 1;
  }
  #portfolio .portfolio figure figcaption .photo-details {
    padding: 1.5rem;
    text-align: left;
  }
  #portfolio .portfolio figure figcaption .photo-details h4 {
    margin-bottom: 0.5rem;
    max-width: 90%;
    color: #141618;
  }
  #portfolio .portfolio figure figcaption .photo-details p {
    display: none;
  }
  #portfolio .portfolio figure:hover:after {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  #portfolio .portfolio figure:hover figcaption {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  #portfolio .portfolio figure:hover figcaption i.icon {
    margin-top: 0;
  }
  #portfolio .portfolio figure:hover .gallery-img {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  #contact-form {
    margin: 0 auto;
  }

  .social-icons {
    position: relative;
    width: 100%;
    text-align: center;
    bottom: auto;
  }

  .copyright {
    bottom: 1.2rem;
  }
}
/* Small Devices, Tablets @media only screen and (max-width: 768px) */
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 5rem;
  }

  p.text-intro {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .to-scroll {
    display: none;
  }

  .text-part {
    padding: 0 2rem;
  }

  .dialog__content {
    width: auto;
  }

  .services .box-info:last-child {
    padding-top: 3rem;
  }
}
/* Small Devices, Tablets @media only screen and (max-width: 767px) */
@media only screen and (max-width: 767px) {
  .space-top {
    margin-top: 3rem;
  }
}
/* Extra Small Devices, Phones @media only screen and (max-width: 480px) */
@media only screen and (max-width: 480px) {
  #home .content {
    padding: 0 2%;
    -webkit-transform: translateY(calc(-50% - 15px));
    -moz-transform: translateY(calc(-50% - 15px));
    -ms-transform: translateY(calc(-50% - 15px));
    -o-transform: translateY(calc(-50% - 15px));
    transform: translateY(calc(-50% - 15px));
  }
  #home #countdown {
    font-size: 3rem;
  }
  #home .social-icons {
    width: 100%;
  }
  #home .copyright {
    display: none;
  }

  #main-content .content {
    padding: 5rem 3rem;
  }

  .newsletter-part {
    margin-bottom: 3rem;
  }

  .dialog__content {
    width: 95%;
    max-width: 95%;
    min-width: 75%;
  }
  .dialog__content .header-picture {
    display: none;
  }

  .dialog .close-newsletter {
    top: 2px;
    right: 5px;
  }
  .dialog .dialog-inner {
    padding: 3rem 2rem 3rem 2rem;
  }
  .dialog .dialog-inner h4 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .dialog .dialog-inner p.spam-news {
    margin-top: 4rem;
    margin-bottom: 0;
  }

  #subscribe #notifyMe .form-group .form-control {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    float: none;
    width: 100%;
  }

  #subscribe #notifyMe .form-group button.submit {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    float: none;
    width: 100%;
    margin-top: 1rem;
  }

  .header-right .hero-info .brand-logo {
    max-width: 10rem;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  p.text-intro {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .bottom-info {
    padding: 5rem 3rem;
    margin-top: 4rem;
  }

  #contact-form button#valid-form {
    width: 100%;
  }

  .success-message {
    margin-top: -4rem;
  }

  .fp-tableCell {
    padding: 4rem 0;
  }

  .social-icons {
    border-bottom: none;
    margin-top: 1rem;
  }
  .social-icons a {
    float: none;
  }

  .copyright {
    position: relative;
    bottom: auto;
    right: auto;
    padding-right: 0;
    font-size: 1rem;
    text-align: center;
    margin: 1rem 0;
  }
  .scroll-indicator {
    bottom: 1rem;
  }
}
/* Phone ratio blocking the zoom effect when input is selected to write in @media only screen and (max-width: 480px) */
@media only screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 0) {
  select:focus,
  textarea:focus,
  input:focus {
    font-size: 16px;
  }
}
/* Only for tablet in landscape mode @media only screen and (max-device-width: 1024px) and (orientation: landscape) */
/* Only for phone in landscape mode @media screen and (max-device-width: 667px) and (orientation: landscape) */
@media screen and (max-device-width: 667px) and (orientation: landscape) {
  .scroll-indicator {
    display: none;
  }
}
