
  
  @import url('https://fonts.googleapis.com/css?family=Poppins:300,400');
body {
	margin: 0;
	-webkit-perspective: 1000;
	font-family: 'Poppins', sans-serif;
	/*background: #ffffff;*/
	background-image: url("../images/bg.jpg");
	background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
body, html {
	height: 100%;
	width: 100%;
	overflow-x: hidden;
}
/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
	line-height: inherit;
}
h1 {
	color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    line-height: 80px;
}
h1 small {
	color: #ffffff;
}
h2 {
	color: #353535;
	font-size: 2em;
}
h4 {
	color: #ffffff;
	font-size: 18px;
}
p {
	color: #757575;
	font-size: 14px;
	font-weight: normal;
	line-height: 24px;
}
/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

html {
	-webkit-font-smoothing: antialiased;
}
a {
	color: #4273DE;
	text-decoration: none !important;
}
a,  input, button,  .form-control {
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
a:hover, a:active, a:focus {
	color: #4273DE;
	outline: none;
}

  ::-webkit-scrollbar {
 width: 8px;
 height: 8px;
}

  ::-webkit-scrollbar-thumb {
 cursor: pointer;
 background: #202020;
}
.overlay {
	/*background: linear-gradient(to top right, #d2b48c, #000000);*/
	opacity: 0.9;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.logo {
	width: 104px;
	height: auto;
	margin: 20px auto 0px auto;
}
.gifanimation {
	width: 400px;
	height: auto;
	margin: 0 auto;
}
.grid {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.grid-line {
	height: 300vh;
	border-right: 1px solid rgba(255,255,255,0.02);
}
.google-map iframe {
	border: 0;
	margin-top: 20px;
}
.subscribe-form {
	position: relative;
}
.subscribe-form .form-control {
	background: #ffffff;
	box-shadow: none;
	border: 0;
	border-radius: 50px;
	width: 340px;
	height: 45px;
	padding: 6px 30px;
}
.subscribe-form button[type="submit"] {
	background: transparent;
	border: 0;
	outline: none;
}
.subscribe-form .fa {
	cursor: pointer;
	position: absolute;
	top: 12px;
	right: 12px;
	color: #d2b48c;
	font-size: 20px;
}
/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: none repeat scroll 0 0 #ffffff;
}
.spinner {
	border: 1px solid transparent;
	border-radius: 3px;
	position: relative;
}
.spinner:before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 45px;
	height: 45px;
	margin-top: -10px;
	margin-left: -10px;
	border-radius: 50%;
	border: 1px solid #575757;
	border-top-color: #ffffff;
	animation: spinner .9s linear infinite;
}
 @-webkit-@keyframes spinner {
 to {
transform: rotate(360deg);
}
}
 @keyframes spinner {
 to {
transform: rotate(360deg);
}
}
/*---------------------------------------
      MENU              
  -----------------------------------------*/

.menu, .menu-bg, .menu-burger {
	position: fixed;
	z-index: 222;
	width: 50px;
	height: 50px;
	line-height: 30px;
	font-size: 25px;
	text-align: center;
	border-radius: 100%;
	right: 25px;
	top: 25px;
}
.menu-bg {
	background: #101010;
	pointer-events: none;
	transition: .3s;
	right: 50px;
	top: 50px;
	transform: translate3d(50%, -50%, 0);
	transform-origin: center center;
}
.menu-bg.fs {
	transform: translate3d(50%, -50%, 0);
	width: 500vw;
	height: 500vw;
}
.menu-burger {
	color: #ffffff;
	padding-top: 11px;
	-webkit-user-select: none;
	cursor: pointer;
	transition: .4s;
	transform-origin: center;
	z-index: 9999;
}
.menu-burger.fs {
	transform: rotate(-180deg) translateY(5px);
}
.menu-items {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	position: absolute;
	z-index: 9999;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: .4s;
	margin-top: 50px;
	transform: translateY(-200%);
	pointer-events: none;
}
.menu-items ul.menu {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: left;
	top: 10px;
}
.menu-items ul.menu li {
	display: block;
	list-style: none;
	transition: 1s;
	opacity: 0;
	margin: 5px 0;
}
.menu-items ul.menu li a {
	color: #ffffff;
	font-size: 18px;
	position: relative;
}
.menu-items ul.menu li a:after {
	content: "";
	width: 0;
	height: 2px;
	border-radius: 50px;
	position: absolute;
	bottom: 13px;
	transition: 0.5s;
	margin: 0 auto;
	display: block;
	right: 0;
	left: 0;
}
.menu-items ul.menu li a:hover:after {
	content: "";
	background: #d2b48c;
	width: 100%;
}
.menu-items.fs {
	transform: translateY(0);
	pointer-events: auto;
	opacity: 1;
}
.menu-items.fs ul li {
	opacity: 1;
}
address p {
	color: #f9f9f9;
}
/*---------------------------------------
      HOME          
  -----------------------------------------*/

#home {
	height: 100vh;
    width: 100%;
    background: rgba(63, 81, 181, .5);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	position: relative;
}
#home .container {
	width: 100%;
}
.home-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	width: 100%;
	/*height: 100vh;*/
	height: auto;
}
.countdown {
	text-align: center;
	margin: 50px 0;
	padding: 0;
}
.countdown li {
	color: #ffffff;
	list-style: none;
	display: inline-block;
	margin: 0 20px;
}
.countdown span {
	font-size: 25px;
}
.countdown h3 {
	font-size: 14px;
	text-transform: uppercase;
	margin: 10px 0;
}
#home h4 {
	margin-bottom: 30px;
	z-index: 99;
	line-height: 40px;
}
/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
	position: relative;
	padding: 0;
	margin: 30px 0 0 0;
	text-align: center;
}
.social-icon .line {
	background: #ffffff;
	width: 50px;
	height: 2px;
	margin-right: 10px;
	position: relative;
	bottom: 5px;
}
.social-icon li {
	display: inline-block;
	list-style: none;
}
.social-icon li a {
	border-radius: 50px;
	color: #ffffff;
	font-size: 15px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-decoration: none;
	text-align: center;
	position: relative;
	margin: 5px 5px 5px 0;
}
.social-icon li a:hover {
	background: #d2b48c;
	color: #ffffff;
}



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/
@media screen and (max-width: 1024px) {
	h1 {
    font-size: 32px;
}
}
@media screen and (max-width: 768px) {
	 h1 {
    font-size: 24px;
}
 }
  @media screen and (max-width: 480px) {
h1 {
    font-size: 19px;
}
}
 @media screen and (max-width: 360px) {
h1 {
    font-size: 14px;
}
}
