/*  TABLE OF CONTENTS
    ---------------------------
    *. @Import & Reset
    1. Generic styles
    2. Home
    3. More Informations
    4. Newsletter
    5. Contact
    6. Social Icons
    7. Footer/Copyright
    8. 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(default-skin/default-skin.css);
@import url(jquery.mCustomScrollbar.css);
@import url(vegas.css);
/* Google Fonts */
@import url("http://fonts.googleapis.com/css?family=Montserrat:400,700");
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,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: 18px;
	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; }

/* ------------------------------------- */
/* Preloader styles .................... */
/* ------------------------------------- */
#loading {
	width: 100vw;
	height: 100vh;
	background: #ffffff;
	position: fixed;
	z-index: 999;
}
  #loading #preloader {
    position: relative;
    width: 100%;
    height: 80px;
    top: calc(50% - 50px);
    text-align: center;
    margin: 0 auto; }
    #loading #preloader:after {
      content: "Website van Natasja Froger is aan het laden";
      /* Text under the circles */
      position: absolute;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 400;
      color: #999999;
      letter-spacing: 1px;
      font-family: "Open Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
      top: 90px;
      width: 100%;
      left: 0;
      right: 0;
      height: 1px;
      text-align: center; }
    #loading #preloader span {
      position: absolute;
      border: 8px solid #999999;
      border-top: 8px solid transparent;
      border-radius: 999px; }
      #loading #preloader span:nth-child(1) {
        width: 80px;
        height: 80px;
        left: calc(50% - 40px);
        -webkit-animation: spin-1 1s infinite ease;
        -moz-animation: spin-1 1s infinite ease;
        animation: spin-1 1s infinite ease; }
      #loading #preloader span:nth-child(2) {
        top: 20px;
        left: calc(50% - 20px);
        width: 40px;
        height: 40px;
        -webkit-animation: spin-2 1s infinite ease;
        -moz-animation: spin-2 1s infinite ease;
        animation: spin-2 1s infinite ease; }

@-webkit-keyframes spin-1 {
  0% {
    -webkit-transform: rotate(360deg);
    opacity: 1; }
  50% {
    -webkit-transform: rotate(180deg);
    opacity: 0.5; }
  100% {
    -webkit-transform: rotate(0deg);
    opacity: 1; } }
@-moz-keyframes spin-1 {
  0% {
    -moz-transform: rotate(360deg);
    opacity: 1; }
  50% {
    -moz-transform: rotate(180deg);
    opacity: 0.5; }
  100% {
    -moz-transform: rotate(0deg);
    opacity: 1; } }
@keyframes spin-1 {
  0% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 1; }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 0.5; }
  100% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1; } }
@-webkit-keyframes spin-2 {
  0% {
    -webkit-transform: rotate(0deg);
    opacity: 0.5; }
  50% {
    -webkit-transform: rotate(180deg);
    opacity: 1; }
  100% {
    -webkit-transform: rotate(360deg);
    opacity: 0.5; } }
@-moz-keyframes spin-2 {
  0% {
    -moz-transform: rotate(0deg);
    opacity: 0.5; }
  50% {
    -moz-transform: rotate(180deg);
    opacity: 1; }
  100% {
    -moz-transform: rotate(360deg);
    opacity: 0.5; } }
@keyframes spin-2 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.5; }
  50% {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    opacity: 1; }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    opacity: 0.5; } }
/* ------------------------------------- */
/* 1. Generic styles ................... */
/* ------------------------------------- */
body {
	background: #ffffff;
	font-family: "Open Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
	color: #cccccc;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
	font-size: 100%;
	line-height: 1.5em;
	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 cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1); }

a {
	-webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
	-moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
	-ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
	-o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
	transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
	cursor: pointer;
	text-decoration: none;
	color: #cccccc;
}
  a:hover {
    color: #00af94;
	font-family: "Open Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
    text-decoration: none !important;
    outline: none !important; }
  a:active, a:focus {
	font-family: "Open Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
    outline: none !important;
    text-decoration: none !important;
    color: #FFFFFF; }

button {
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  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 {
  margin: 0;
  font-size: 1em;
  line-height: 1.6em;
  color: #FFFFFF;
  font-weight: 400; }

h1, h2, h3, h4, h5, h6 {
	color: #cccccc;
	font-weight: 400;
	line-height: 1.3em;
}
  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: 30px;
	font-family: "Open Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
	font-weight: 300;
}

h2 {
	font-size: 15px;
	margin-top: 15px;
	margin-bottom: 30px;
}

h3 {
  font-size: 30px;
  margin-bottom: 25px; }

h4 {
  font-size: 25px;
  margin-bottom: 25px; }

h5 {
  font-size: 20px;
  margin-bottom: 25px; }

h6 {
  font-size: 15px;
  margin-bottom: 25px; }

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

/* ------------------------------------- */
/* 2. Home ............................. */
/* ------------------------------------- */
.light-btn {
  background: transparent;
  font-weight: 600;
  padding: 0.7em 2em;
  color: #FFFFFF;
  margin-right: 10px;
  border: 2px solid #FFFFFF;
  display: block;
  float: left; }
  .light-btn:hover {
    background: #FFFFFF;
    color: #2B2D35;
    border-color: #FFFFFF; }

.action-btn {
  background: #00c8aa;
  font-weight: 600;
  padding: 0.7em 2em;
  color: #FFFFFF;
  border: 2px solid #00c8aa;
  display: block;
  float: left; }
  .action-btn:hover {
    background: #FFFFFF;
    color: #2B2D35;
    border-color: #FFFFFF; }

.global-overlay {
  position: fixed;
  top: 0;
  left: -100vw;
  height: 100%;
  overflow: visible;
  width: 100%;
  opacity: 0; }

.overlay {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: -50%;
	background: rgba(32,34,37,0.2);
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
	-moz-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
	-ms-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
	-o-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
	transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
	border-right: 1px solid #616161;
}
  .overlay.skew-part {
    -webkit-transform: skew(-25deg, 0deg);
    -moz-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    -o-transform: skew(-25deg, 0deg);
    transform: skew(-25deg, 0deg); }



@-webkit-keyframes animStar {
  from {
    -webkit-transform: translateY(0px); }
  to {
    -webkit-transform: translateY(-2000px); } }
@-moz-keyframes animStar {
  from {
    -moz-transform: translateY(0px); }
  to {
    -moz-transform: translateY(-2000px); } }
@keyframes animStar {
  from {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  to {
    -webkit-transform: translateY(-2000px);
    -moz-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    -o-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.brand-logo {
  position: absolute;
  left: 10%;
  top: 5%;
  max-width: 250px; }

#left-side {
  position: fixed;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
  #left-side .content {
    position: absolute;
    z-index: 0;
    left: 0;
    padding: 0;
    top: 40vh;
    width: 100%;
    padding: 0 10%;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 1;
    visibility: visible; }

/* ------------------------------------- */
/* 3. More informations ................ */
/* ------------------------------------- */
#right-side {
  background: #f2f3f7;
  position: relative;
  overflow: auto;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  top: 0;
  width: 50%;
  -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  -moz-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  -ms-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1); }
  #right-side.hide-right {
    -webkit-transform: translate3d(200%, 0, 0);
    -moz-transform: translate3d(200%, 0, 0);
    -o-transform: translate3d(200%, 0, 0);
    -ms-transform: translate3d(200%, 0, 0);
    transform: translate3d(200%, 0, 0); }
  #right-side .content {
    width: 100%;
    padding: 8% 10% 0;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 1;
    visibility: visible; }
    #right-side .content h1, #right-side .content h2, #right-side .content h3, #right-side .content h4, #right-side .content h5, #right-side .content h6 {
      color: #757A86; }
    #right-side .content h3 {
      font-family: Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
      text-transform: uppercase;
      font-weight: 700; }
    #right-side .content span.separator {
      display: block;
      height: 2px;
      background: #FFFFFF;
      width: 100%;
      margin: 50px 0 60px; }
    #right-side .content p {
      color: #747c83; }
    #right-side .content .photo-line figure {
      padding: 0;
      margin: 0 15px 30px;
      width: calc(50% - 30px);
      -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
      -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
      box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
      background: #000000; }
      #right-side .content .photo-line figure.clear-second {
        clear: both; }
      #right-side .content .photo-line figure a.box-picture {
        overflow: hidden;
        width: 100%;
        display: block;
        position: relative; }
        #right-side .content .photo-line figure a.box-picture p {
          bottom: 50%;
          line-height: 1;
          height: auto;
          width: 100%;
          text-align: center;
          color: #FFFFFF;
          font-family: Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
          text-transform: uppercase;
          font-size: 1em;
          letter-spacing: 2px;
          left: 0;
          opacity: 0;
          position: absolute;
          -webkit-transform: translateY(50%);
          -moz-transform: translateY(50%);
          -ms-transform: translateY(50%);
          -o-transform: translateY(50%);
          transform: translateY(50%);
          -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
          -moz-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
          -ms-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
          -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
          transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1); }
      #right-side .content .photo-line figure a.box-picture:hover {
        background: #000000; }
        #right-side .content .photo-line figure a.box-picture:hover img {
          opacity: 0.5; }
        #right-side .content .photo-line figure a.box-picture:hover p {
          opacity: 1; }
      #right-side .content .photo-line figure img {
        overflow: hidden;
        -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
        -moz-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
        -ms-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
        -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
        transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
        transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1); }
      #right-side .content .photo-line figure .photo-details {
        background: #FFFFFF;
        padding: 1em;
        text-align: left;
        color: #747c83; }
        #right-side .content .photo-line figure .photo-details h4 {
          font-weight: 800;
          margin-bottom: 1em;
          text-transform: uppercase;
          font-size: 0.8em;
          opacity: 1;
          color: #747c83; }
        #right-side .content .photo-line figure .photo-details span.border {
          display: block;
          height: 2px;
          background: #00c8aa;
          width: 10%;
          margin: 0.8em 0 1em; }
        #right-side .content .photo-line figure .photo-details p {
          font-size: 0.9em;
          color: #999999;
          font-weight: 500;
          line-height: 1.2; }

.widget-angle-top-right {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #00c8aa;
  font-size: 1em;
  border-top: 50px solid #2B2D35;
  border-left: 50px solid transparent; }
  .widget-angle-top-right span.icon-text {
    font-family: Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
    font-weight: 700;
    position: absolute;
    top: -47px;
    left: -22px; }

.widget-angle-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #00c8aa;
  font-size: 1em;
  border-bottom: 50px solid #2B2D35;
  border-left: 50px solid transparent; }
  .widget-angle-bottom-right span.icon-text {
    font-family: Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
    font-weight: 700;
    position: absolute;
    top: 23px;
    left: -22px; }

.widget-angle-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #00c8aa;
  font-size: 1em;
  border-bottom: 50px solid #2B2D35;
  border-right: 50px solid transparent; }
  .widget-angle-bottom-left span.icon-text {
    font-family: Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
    font-weight: 700;
    position: absolute;
    top: 23px;
    left: 7px; }

.widget-angle-top-left {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #00c8aa;
  font-size: 1em;
  border-top: 50px solid #2B2D35;
  border-right: 50px solid transparent; }
  .widget-angle-top-left span.icon-text {
    font-family: Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
    font-weight: 700;
    position: absolute;
    top: -47px;
    left: 7px; }

#close-more-info {
  position: fixed;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: #757A86;
  font-size: 2em; }
  #close-more-info:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  #close-more-info.hide-close {
    right: -40px; }

.mCSB_scrollTools {
  /* Scrollbar */
  position: absolute;
  width: 5px;
  height: auto;
  left: auto;
  top: 0;
  right: -5px;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  -moz-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  -ms-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1); }
  .mCSB_scrollTools .mCSB_draggerRail {
    width: 5px;
    height: 100%;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    background-color: #757a86;
    filter: "alpha(opacity=40)";
    -ms-filter: "alpha(opacity=40)"; }
  .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    /* the dragger element */
    position: relative;
    width: 5px;
    height: 100%;
    margin: 0 auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    text-align: center; }
  .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #00c8aa; }

.mCSB_scrollTools-left {
  right: 50% !important; }

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

.dialog {
  position: fixed;
  z-index: 999;
  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(31, 34, 46, 0.9);
  opacity: 0;
  transition: opacity 0.3s; }

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

.dialog__content {
  width: 50%;
  max-width: 500px;
  min-width: 290px;
  background: transparent;
  padding: 0;
  text-align: center;
  position: relative;
  z-index: 5;
  opacity: 0;
  overflow: hidden;
  background: url(../img/background-newsletter.jpg) center;
  background-size: cover;
  border: 10px solid #2B2D35; }
  .dialog__content::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border: 1px solid #00c8aa;
    background: rgba(32, 35, 45, 0.8); }

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

.dialog .close-newsletter {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  line-height: 35px;
  color: #FFFFFF;
  font-size: 20px;
  opacity: 0.5; }
  .dialog .close-newsletter:hover {
    opacity: 1; }
.dialog .dialog-inner {
  padding: 90px 70px;
  overflow: hidden; }
  .dialog .dialog-inner::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; }
  .dialog .dialog-inner h4 {
    color: #FFFFFF;
    font-size: 40px;
    font-family: Montserrat, "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
    font-weight: 700; }
  .dialog .dialog-inner p {
    color: #f2f3f7;
    font-size: 16px; }

#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: #FFFFFF;
      border: none;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      border-radius: 0;
      box-shadow: none;
      height: 50px;
      font-weight: 600;
      outline: medium none;
      padding: 0 1em;
      width: 100%;
      margin: auto;
      color: #000000;
      -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
      -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
      -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
      -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
      transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
      #subscribe #notifyMe .form-group .form-control:hover, #subscribe #notifyMe .form-group .form-control:focus {
        box-shadow: none; }
      #subscribe #notifyMe .form-group .form-control::-webkit-input-placeholder {
        color: #747c83 !important; }
      #subscribe #notifyMe .form-group .form-control::-moz-placeholder {
        color: #747c83 !important; }
      #subscribe #notifyMe .form-group .form-control:-moz-placeholder {
        color: #747c83 !important; }
      #subscribe #notifyMe .form-group .form-control:-ms-input-placeholder {
        color: #747c83 !important; }
    #subscribe #notifyMe .form-group button.submit {
      border: 2px solid #00c8aa;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      border-radius: 0;
      font-family: "Open Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
      background: #00c8aa;
      color: #FFFFFF;
      height: 50px;
      padding: 1em 0;
      font-size: 1em;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      line-height: 1;
      width: 70%;
      margin: 20px auto 0;
      -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
      -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
      -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
      -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
      transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
      #subscribe #notifyMe .form-group button.submit:hover {
        background: #00af94;
        color: #FFFFFF; }
#subscribe .block-message {
  min-height: 50px;
  position: absolute;
  bottom: -100px;
  width: 100%;
  left: 0;
  padding: 15px;
  background: transparent;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }
  #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.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1); }

.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, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    -o-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 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, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    -o-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 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, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    -o-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 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, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    -o-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 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, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    -o-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 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, 50px, 0);
    -moz-transform: translate3d(0, 50px, 0);
    -o-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0); } }
/* ------------------------------------- */
/* 5. Contact .......................... */
/* ------------------------------------- */
.info-contact {
  margin-bottom: 30px; }
  .info-contact .item-map {
    padding: 0; }
    .info-contact .item-map:first-child {
      padding-left: 15px; }
    .info-contact .item-map:last-child {
      padding-right: 15px; }
    .info-contact .item-map .contact-item {
      padding: 15px 0;
      font-size: 14px;
      text-align: center; }
      .info-contact .item-map .contact-item i {
        color: #00c8aa;
        font-size: 2em; }
      .info-contact .item-map .contact-item a {
        font-weight: 600;
        color: #757A86; }
        .info-contact .item-map .contact-item a:hover {
          color: #00c8aa; }

#contact-form {
  margin-top: 40px; }
  #contact-form .form-control {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    font-weight: 400;
    outline: medium none;
    height: 40px;
    width: 100%;
    color: #000000;
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    text-align: left; }
    #contact-form .form-control:hover, #contact-form .form-control:focus {
      box-shadow: none; }
    #contact-form .form-control::-webkit-input-placeholder {
      color: #747c83 !important; }
    #contact-form .form-control::-moz-placeholder {
      color: #747c83 !important; }
    #contact-form .form-control:-moz-placeholder {
      color: #747c83 !important; }
    #contact-form .form-control:-ms-input-placeholder {
      color: #747c83 !important; }
  #contact-form textarea.form-control {
    min-height: 150px; }
  #contact-form button#valid-form {
    font-weight: 400;
    padding: 1em 2em;
    font-size: 1em;
    display: block;
    margin: 0 auto 0;
    background: #00c8aa;
    color: #FFFFFF;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    font-weight: 700;
    width: 100%;
    line-height: 10px; }
    #contact-form button#valid-form:hover {
      background: #00af94;
      color: #FFFFFF; }

#block-answer {
  min-height: 60px;
  margin-top: 1em;
  text-align: center;
  color: #757A86; }

.success-message, .error-message {
  color: #757A86; }
  .success-message p, .error-message p {
    color: #757A86 !important; }
  .success-message .ion-checkmark-round, .error-message .ion-checkmark-round {
    color: #27AE60; }

.error-message .ion-close-round {
  color: #FF1D4D; }

/* ------------------------------------- */
/* 6. Social Icons ..................... */
/* ------------------------------------- */
.social-icons {
  font-family: "Open Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  font-size: 12px;
  position: absolute;
  left: 10%;
  bottom: 5%;
  margin-left: -22px;
  margin-bottom: -22px;
  display: block;
  z-index: 9;
  width: auto;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1); }
  

/* ------------------------------------- */
/* 7. Footer/Copyright ................. */
/* ------------------------------------- */
footer {
  padding: 10px 0;
  background: transparent;
  text-align: center; }
  footer p {
    font-size: 11px;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #757A86; }

/* ------------------------------------- */
/* VARIANT CLOUD ....................... */
/* ------------------------------------- */
#cloud-animation {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  position: fixed; }
  #cloud-animation img {
    width: 100%;
    left: 0;
    top: 0;
    position: absolute; }

@-webkit-keyframes animCloud {
  from {
    -webkit-transform: translateX(100%); }
  to {
    -webkit-transform: translateX(-100%); } }
@-moz-keyframes animCloud {
  from {
    -moz-transform: translateX(100%); }
  to {
    -moz-transform: translateX(-100%); } }
@keyframes animCloud {
  from {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%); }
  to {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%); } }
#cloud1 {
  -webkit-animation: animCloud 25s infinite linear;
  -moz-animation: animCloud 25s infinite linear;
  animation: animCloud 25s infinite linear; }

#cloud2 {
  -webkit-animation: animCloud 35s infinite linear;
  -moz-animation: animCloud 35s infinite linear;
  animation: animCloud 35s infinite linear; }

#cloud3 {
  -webkit-animation: animCloud 45s infinite linear;
  -moz-animation: animCloud 45s infinite linear;
  animation: animCloud 45s infinite linear; }

#cloud4 {
  -webkit-animation: animCloud 55s infinite linear;
  -moz-animation: animCloud 55s infinite linear;
  animation: animCloud 55s infinite linear; }

/* ------------------------------------- */
/* VARIANT YOUTUBE ..................... */
/* ------------------------------------- */
.mbYTP_wrapper {
  width: 100vw !important;
  min-width: 0 !important;
  left: 0 !important; }

.ytb-overlay {
  background: rgba(32, 35, 45, 0.6); }

.light-overlay {
  background: rgba(32, 35, 45, 0.5) !important; }

#player-nav {
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: center; }
  #player-nav li {
    display: inline-block;
    background: rgba(0, 200, 170, 0.4);
    height: 40px;
    width: 40px;
    line-height: 40px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1); }
    #player-nav li:hover {
      background: rgba(0, 200, 170, 0.8); }
      #player-nav li:hover a {
        color: #FFFFFF; }
    #player-nav li a {
      display: block;
      width: 100%;
      height: 100%;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.5); }

/* ------------------------------------- */
/* GALLERY PHOTOS ...................... */
/* ------------------------------------- */
.pswp__bg {
  background: #20232D; }

.pswp__caption h4 {
  margin-bottom: 10px !important; }

/* ------------------------------------- */
/* 8. Media Queries .................... */
/* ------------------------------------- */
/* Large Devices, Wide Screens */
/* Notebook devices */
/* Medium Devices, Desktops */
@media only screen and (max-width: 1024px) {
  .overlay {
    left: 0;
    width: 100%;
    height: 100%; }
    .overlay.skew-part {
      -webkit-transform: skew(0deg, 0deg);
      -moz-transform: skew(0deg, 0deg);
      -ms-transform: skew(0deg, 0deg);
      -o-transform: skew(0deg, 0deg);
      transform: skew(0deg, 0deg); }

  #stars, #stars2, #stars3 {
    margin-left: 0 !important; }

  .brand-logo {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 25px 0; }

  .light-btn {
    padding: 0.7em 0;
    margin-right: 0;
    float: none;
    margin: 0 auto;
    margin-bottom: 15px;
    max-width: 50%; }

  .action-btn {
    padding: 0.7em 0;
    float: none;
    margin: 0 auto;
    max-width: 50%; }

  #left-side {
    width: 100%; }
    #left-side .content {
      text-align: center; }

  .social-icons {
    left: 0;
    bottom: 0;
    margin-left: 0;
    margin-bottom: 0; }

  #right-side {
    position: relative;
    -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);
    top: 0;
    width: 100%; }
    #right-side.hide-right {
      -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); }

  #close-more-info {
    display: none; }

  .mCSB_scrollTools {
    right: 0; }

  .mCSB_scrollTools-left {
    right: 0 !important; } }
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .light-btn {
    max-width: 70%;
    min-width: 60%; }

  .action-btn {
    max-width: 70%;
    min-width: 60%; }

  .photo-line figure {
    padding: 0;
    margin: 0 0 20px !important;
    width: 100% !important;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2); }

  .info-contact .item-map:first-child {
    padding-left: 0; }
  .info-contact .item-map:last-child {
    padding-right: 0; }

  .dialog__content {
    width: 80%;
    max-width: 80%;
    min-width: 75%; }

  .dialog .dialog-inner {
    padding: 40px 20px 90px;
    overflow: hidden; } }
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  #left-side {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 0 150px; }
    #left-side .content {
      position: relative;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      top: auto;
      text-align: center; }

  h1.text-intro {
    font-size: 30px; }

  h2.text-intro {
    font-size: 18px; }

  .light-btn {
    max-width: 80%;
    min-width: 70%; }

  .action-btn {
    max-width: 80%;
    min-width: 70%; }

  .dialog__content {
    width: 95%;
    max-width: 95%;
    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: 20px; }

  #subscribe .block-message {
    padding: 5px 2px; }
  #subscribe p.notify-valid {
    font-size: 12px; } }
/* Only for tablet in landscape mode */
/* Only for phone in landscape mode */
@media screen and (max-device-width: 667px) and (orientation: landscape) {
  #left-side {
    padding: 50px 0 100px; }

  h1.text-intro {
    font-size: 30px; }

  h2.text-intro {
    font-size: 18px; }

  .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; }
  #subscribe .block-message {
    padding: 5px 2px; }
  #subscribe p.notify-valid {
    font-size: 12px; } }
