/*------------------------------------------------------------------
Project:	Special Pages
Version:	1.0

[Table of Contents]
Page Variables / fonts, colors
Default Page Markup / Basic page markup used for all pages
Page Loader / Visible before page loaded
Page Custom Styles / Specific stylesheet for certain page
-------------------------------------------------------------------*/
/* montserrat-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  src: url('/assets/fonts/montserrat-v29-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/montserrat-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/fonts/montserrat-v29-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('/assets/fonts/montserrat-v29-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/montserrat-v29-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* baloo-2-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/baloo-2-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/**
 *	Page Variables
 */
.font-main {
  font-family: 'Montserrat', sans-serif;
}
.font-second {
  font-family: 'Baloo 2', sans-serif;
}
.border-left {
  -webkit-border-top-left-radius: 32px;
  -moz-border-radius-topleft: 32px;
  border-top-left-radius: 32px;
  -webkit-border-bottom-left-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-bottomleft: 32px;
  -moz-background-clip: padding;
  border-bottom-left-radius: 32px;
  background-clip: padding-box;
}
.border-right {
  -webkit-border-top-right-radius: 32px;
  -moz-border-radius-topright: 32px;
  border-top-right-radius: 32px;
  -webkit-border-bottom-right-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-bottomright: 32px;
  -moz-background-clip: padding;
  border-bottom-right-radius: 32px;
  background-clip: padding-box;
}
.border-all {
  -webkit-border-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 32px;
  -moz-background-clip: padding;
  border-radius: 32px;
  background-clip: padding-box;
}
.color-main {
  color: #fff;
}
.color-second {
  color: #253F5A;
}
.color-input {
  color: #2d2d2d;
}
.background-button {
  background-color: #253F5A;
}
.background-button-hover {
  background-color: #fff;
}
/**
 *	Default Markup
 */
* {
  box-sizing: border-box;
}
body,
html {
  padding: 0;
  margin: 0;
  /*	overflow: hidden;*/
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100%;
  height: 100%;
}
body {
  background: no-repeat 50% 0% fixed;
  background-size: cover;
}
a {
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block;
}
h1,
h2 {
  margin: 0;
  line-height: 1em;
}
h1 {
  font-size: 264px;
  font-weight: 700;
}
h2 {
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
}
p {
  font-size: 18px;
  line-height: 30px;
}
#content-coming,
#content-404 {
  text-align: center;
  font-weight: 500;
  /*max-width: 480px;*/
  margin: 0 auto;
}
#content-coming {
  /*max-width: 600px;*/
}
#content-coming h1 {
  font-size: 80px;
}
#content-coming h2 {
  font-size: 47px;
  text-transform: none;
}
#content-coming p {
  font-size: 18px;
  margin-left: 100px;
  margin-right: 100px;
}

footer {
  padding-bottom: 50px;
}
.btn {
  font-size: 12px;
  border: 2px solid #fff;
  padding: 6px 20px;
  transition: all .3s ease;
}
.all-fade {
  transition: all .3s ease;
}
/**
 * Loader
 */
#preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 1999;
  transition: all .3s ease;
}
.pace-done > #preloader {
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  z-index: -100;
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace-inactive {
  display: none;
}
.pace .pace-progress {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 4px;
}
/**
 *	Page Custom Styles
 */
html,
body,
p,
table,
input,
a,
a:visited {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}
a:hover {
  color: #253F5A;
}
.btn {
  border-color: #fff;
  -webkit-border-radius: 32px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 32px;
  -moz-background-clip: padding;
  border-radius: 32px;
  background-clip: padding-box;
}
.btn:hover {
  background: #fff;
  color: #253F5A;
}
lesshat-selector {
  -lh-property: 0; } 
::selection{background:#253F5A;}
::-moz-selection{background:#253F5A;
}
body {
  background-image: url("../images/bg.jpg");
}
h1 {
  font-weight: 100;
  margin: 0 0 0px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 260px;
}
h2 {
  font-weight: 100;
  margin-top: -20px;
  color: #253F5A;
  font-family: 'Baloo 2', sans-serif;
  text-transform: none;
}
p {
  margin: 12px 0 50px 0px;
  font-weight: 200;
}
#content-404 {
  /*max-width: 520px;*/
}
#content-coming h1 {
  margin-bottom: 40px;
}
canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
#clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 3840px;
  height: 822px;
  z-index: -1;
  animation: clouds 25s linear infinite;
}
@media (max-width: 768px) {
  #clouds {
    display: none;
  }
}
@keyframes clouds {
  0% {
    transform: translate3d(0, 0px, 0px);
  }
  100% {
    transform: translate3d(-1920px, 0px, 0px);
  }
}
