/*
* WAVE - Sliding Coming Soon Template
* Build Date: June 2016
* Last Update: June 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
    *. Loading overlay
    1. Generic styles
    2. Slider wrapper

        2.1 Slide colors

    3. Top info bar
    4. Slide content
    5. Newsletter
    6. Scroll Bar
    7. 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/default-skin.css);
@import url(jquery.mCustomScrollbar.css);
/* Google Fonts */
@import url("http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700");
/*
* 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;
}

/* ------------------------------------- */
/* Loading overlay ..................... */
/* ------------------------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  background: rgba(39, 46, 56, 0.7);
  position: fixed;
  z-index: 1000000;
  -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;
}
#loading.dark-back {
  background: #272e38;
}
#loading .loading-bar {
  position: relative;
  overflow: hidden;
  top: 0;
  height: 0.3rem;
  width: 100vw;
  background: rgba(39, 46, 56, 0.3);
}
#loading .loading-bar:after {
  content: '';
  position: fixed;
  top: 0;
  z-index: 10;
  background: #FFFFFF;
  height: 0.3rem;
  width: 30vw;
  -webkit-border-radius: 10rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  border-radius: 10rem;
  -webkit-animation: baranim 4s infinite linear;
  -moz-animation: baranim 4s infinite linear;
  animation: baranim 4s infinite linear;
}
#loading span {
  position: fixed;
  width: 100%;
  top: 49vh;
  z-index: 10;
  font-size: 1rem;
  letter-spacing: 0.5rem;
  text-align: center;
  text-transform: uppercase;
}

@-webkit-keyframes baranim {
  0% {
    -webkit-transform: translateX(-30vw);
  }
  100% {
    -webkit-transform: translateX(130vw);
  }
}
@-moz-keyframes baranim {
  0% {
    -moz-transform: translateX(-30vw);
  }
  100% {
    -moz-transform: translateX(130vw);
  }
}
@keyframes baranim {
  0% {
    -webkit-transform: translateX(-30vw);
    -moz-transform: translateX(-30vw);
    -ms-transform: translateX(-30vw);
    -o-transform: translateX(-30vw);
    transform: translateX(-30vw);
  }
  100% {
    -webkit-transform: translateX(130vw);
    -moz-transform: translateX(130vw);
    -ms-transform: translateX(130vw);
    -o-transform: translateX(130vw);
    transform: translateX(130vw);
  }
}
/* ------------------------------------- */
/* 1. Generic styles ................... */
/* ------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  background: #edf3f8;
  font-family: Montserrat, "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%;
}

.scroll-touch {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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;
}

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: #FFFFFF;
}
a:hover {
  color: #112289;
  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;
}

i {
  -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;
}

p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666666;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  color: #272e38;
  font-family: Montserrat, "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 {
  font-size: 7rem;
}

h2 {
  font-size: 5rem;
}

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;
}

.copyright {
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  font-size: 1rem;
  z-index: 200;
  font-family: Raleway, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
}
.copyright a {
  color: #1428a0;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}

/* ------------------------------------- */
/* 2. Slider wrapper ................... */
/* ------------------------------------- */
.sl-slider-wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sl-slider-wrapper .sl-slider {
  position: absolute;
  top: 0;
  left: 0;
  /* Slide wrapper and slides */
}
.sl-slider-wrapper .sl-slider .sl-slide,
.sl-slider-wrapper .sl-slider .sl-slides-wrapper,
.sl-slider-wrapper .sl-slider .sl-slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sl-slider-wrapper .sl-slider .sl-slide-inner {
  -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;
  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;
}
.sl-slider-wrapper .sl-slider .sl-slide-inner, .sl-slider-wrapper .sl-slider .sl-content-slice {
  background-size: cover;
}
.sl-slider-wrapper .sl-slider .sl-slide {
  z-index: 1;
}

/* ------------------------------------- */
/* 2.1 Slide colors .................... */
/* ------------------------------------- */
.bg-1 .sl-slide-inner, .bg-1 .sl-content-slice {
  background: transparent;
}

/* ------------------------------------- */
/* 3. Top info bar ..................... */
/* ------------------------------------- */
.info-bar {
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 1000;
}
.info-bar #countdown {
  color: #1428a0;
}
.info-bar p {
  color: #788291;
}
.info-bar .info-bar-right {
  text-align: right;
}
.info-bar .info-bar-right p.social-text a {
  margin: 0 0.4rem;
  color: #788291;
}
.info-bar .info-bar-right p.social-text a:hover {
  color: #1428a0;
}
.info-bar .info-bar-right p.social-text a:last-child {
  margin-right: 0;
}
.info-bar .info-bar-right p.social-icon a {
  color: #788291;
  width: 3rem;
  letter-spacing: 0;
  background: transparent;
  font-size: 1.5rem;
  display: inline-block;
  text-align: center;
  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;
}
.info-bar .info-bar-right p.social-icon a:hover {
  color: #1428a0;
}
.info-bar .info-bar-right p.social-icon a:hover i {
  color: #1428a0;
}

/* ------------------------------------- */
/* 4. Slide content .................... */
/* ------------------------------------- */
.content-slide {
  position: relative;
  z-index: 10;
  left: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-height: 100vh;
  padding: 0;
  -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;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
  visibility: visible;
}
.content-slide .container {
  padding: 13rem 10rem 20rem;
}
.content-slide .brand-logo {
  max-width: 14rem;
  margin-bottom: 2rem;
}
.content-slide h1 {
  text-transform: uppercase;
}
.content-slide h2 {
  margin-bottom: 3rem;
}
.content-slide p {
  font-family: Raleway, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  font-size: 1.7rem;
  color: #000000;
}
.content-slide p.resume {
  padding: 0 10rem;
}
.content-slide .action-btn {
  font-family: Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  background: #1428a0;
  font-weight: 400;
  padding: 1rem 2.5rem;
  color: #FFFFFF;
  position: relative;
  -webkit-border-radius: 10rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  border-radius: 10rem;
  border: 1px solid #1428a0;
  display: inline-block;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
}
.content-slide .action-btn:after {
  font-family: 'FontAwesome';
  content: '\f0a2';
  position: absolute;
  opacity: 0;
  top: 4px;
  right: -2rem;
  font-size: 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;
  -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);
  }
}
.content-slide .action-btn:hover {
  background: #1a33cd;
  color: #FFFFFF;
  border-color: #1428a0;
  padding-right: 4.5rem;
}
.content-slide .action-btn:hover:after {
  opacity: 1;
  right: 1.5rem;
}

/* ------------------------------------- */
/* 5. 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(39, 46, 56, 0.9);
  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;
  border: 1px solid #272e38;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.4);
  background: #FFFFFF;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}
.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: url("../img/background-newsletter-inner.jpg") center;
  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: #272e38;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
}
.dialog__content .dialog-inner p {
  color: #666666;
  font-size: 1.4rem;
}
.dialog__content .dialog-inner p.spam-news {
  margin-top: 6rem;
  margin-bottom: 2rem;
  color: #bebebe;
  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.5);
  -webkit-border-radius: 0 0 0 5px;
  -moz-border-radius: 0 0 0 5px;
  -ms-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
  width: 50px;
  height: 50px;
  line-height: 0;
  color: #667892;
  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: #272e38;
}

#subscribe p {
  font-weight: 400;
}
#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 {
  text-align: center;
  background: #ecedf3;
  border: 1px solid #F1F1F1;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none;
  height: 50px;
  font-weight: 600;
  outline: medium none;
  padding: 0 1em;
  width: 100%;
  margin: auto;
  color: #000000;
  -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 #notifyMe .form-group .form-control:hover, #subscribe #notifyMe .form-group .form-control:focus {
  box-shadow: none;
  background: #e2e4ed;
}
#subscribe #notifyMe .form-group .form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}
#subscribe #notifyMe .form-group .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}
#subscribe #notifyMe .form-group .form-control:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}
#subscribe #notifyMe .form-group .form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}
#subscribe #notifyMe .form-group button.submit {
  padding: 1.3rem 2.5rem;
  font-size: 1.4rem;
  display: block;
  margin: 2rem auto 0;
  background: #1428a0;
  color: #FFFFFF;
  -webkit-border-radius: 10rem;
  -moz-border-radius: 10rem;
  -ms-border-radius: 10rem;
  border-radius: 10rem;
  font-weight: 600;
  width: auto;
}
#subscribe #notifyMe .form-group button.submit:hover {
  background: #1a33cd;
  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;
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 600;
}

.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(-5rem, 0, 0);
    -moz-transform: translate3d(-5rem, 0, 0);
    -o-transform: translate3d(-5rem, 0, 0);
    -ms-transform: translate3d(-5rem, 0, 0);
    transform: translate3d(-5rem, 0, 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(-5rem, 0, 0);
    -moz-transform: translate3d(-5rem, 0, 0);
    -o-transform: translate3d(-5rem, 0, 0);
    -ms-transform: translate3d(-5rem, 0, 0);
    transform: translate3d(-5rem, 0, 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(-5rem, 0, 0);
    -moz-transform: translate3d(-5rem, 0, 0);
    -o-transform: translate3d(-5rem, 0, 0);
    -ms-transform: translate3d(-5rem, 0, 0);
    transform: translate3d(-5rem, 0, 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(5rem, 0, 0);
    -moz-transform: translate3d(5rem, 0, 0);
    -o-transform: translate3d(5rem, 0, 0);
    -ms-transform: translate3d(5rem, 0, 0);
    transform: translate3d(5rem, 0, 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(5rem, 0, 0);
    -moz-transform: translate3d(5rem, 0, 0);
    -o-transform: translate3d(5rem, 0, 0);
    -ms-transform: translate3d(5rem, 0, 0);
    transform: translate3d(5rem, 0, 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(5rem, 0, 0);
    -moz-transform: translate3d(5rem, 0, 0);
    -o-transform: translate3d(5rem, 0, 0);
    -ms-transform: translate3d(5rem, 0, 0);
    transform: translate3d(5rem, 0, 0);
  }
}
/* ------------------------------------- */
/* 6. Scroll Bar ....................... */
/* ------------------------------------- */
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: #FFFFFF;
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: #FFFFFF;
}

.mCSB_scrollTools {
  /* Scrollbar */
  position: absolute;
  width: 5px;
  left: auto;
  top: 10rem;
  right: 2rem;
  bottom: 0;
  z-index: 100000;
  height: calc(100% - 25rem);
  -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;
}
.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  border-radius: 5rem;
  background-color: rgba(39, 46, 56, 0.7);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  /* the dragger element */
  position: relative;
  width: 4px;
  right: 2px;
  height: 100%;
  margin: 0 auto;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  border-radius: 5rem;
  text-align: center;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(255, 255, 255, 0.5);
}

/* ------------------------------------- */
/* 7. Media Queries .................... */
/* ------------------------------------- */
/* Large Devices, Wide Screens @media only screen and (max-width: 1600px) */
/* Notebook devices @media only screen and (max-width: 1199px) */
/* Medium Devices, Desktops @media only screen and (max-width: 993px) */
/* Small Devices, Tablets @media only screen and (max-width: 768px) */
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 6rem;
  }

  .content-slide .container {
    padding: 13rem 6rem 20rem;
  }
  .content-slide .action-btn:after {
    display: none;
  }
  .content-slide .action-btn:hover {
    padding-right: 2.5rem;
  }

  .dialog__content {
    width: auto;
  }
}
/* Special media queries used for the width just under the tablet one */
@media only screen and (max-width: 767px) {
  .info-bar {
    padding: 1rem;
    text-align: center;
  }
  .info-bar .info-bar-right {
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }
}
/* Extra Small Devices, Phones @media only screen and (max-width: 480px) */
@media only screen and (max-width: 480px) {
  .content-slide .container {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 15rem;
  }
  .content-slide .container .brand-logo {
    max-width: 10rem;
  }
  .content-slide .container h1 {
    font-size: 3rem;
  }
  .content-slide .container p {
    font-size: 1.4rem;
  }

  .mCSB_scrollTools {
    right: 0;
    height: calc(100% - 19rem);
  }

  .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: 5rem 2rem 0 2rem;
  }
  .dialog .dialog-inner h4 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .dialog .dialog-inner p.spam-news {
    margin-top: 2rem;
  }

  #subscribe .block-message {
    padding: 5px 2px;
  }
  #subscribe p.notify-valid {
    font-size: 12px;
  }
}
/* Only for tablet in landscape mode @media only screen and (max-device-width: 1024px) and (orientation: landscape) */
@media only screen and (max-device-width: 1024px) and (orientation: landscape) {
  .dialog__content .header-picture {
    display: none;
  }
}
/* 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) {
  .dialog__content {
    width: 100%;
    max-width: 100%;
    min-width: 75%;
  }

  .dialog .close-newsletter {
    top: 2px;
    right: 5px;
  }
  .dialog .dialog-inner {
    padding: 40px 20px 50px;
  }
  .dialog .dialog-inner h4 {
    font-size: 25px;
    margin-bottom: 5px;
  }

  #subscribe #notifyMe {
    margin-top: 10px;
  }
  #subscribe #notifyMe .form-group .form-control {
    width: 70%;
    margin: 0;
    float: left;
  }
  #subscribe #notifyMe .form-group button.submit {
    width: 30%;
    margin: 0;
    float: left;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    height: 50px;
  }
  #subscribe .block-message {
    padding: 5px 2px;
  }
  #subscribe p.notify-valid {
    font-size: 12px;
  }
}
