/****************************************
    TABLE OF CONTENTS

01. General Styles 
02. Preloader
03. Header
04. Media Queries
*****************************************/


/******************************/
/*     01. General Styles     */
/******************************/
body,
html {
    width: 100%;
    height: 100%; 
}

body, p {
	color: #fff;
	font: 300 1rem/1.75rem "Open Sans", sans-serif;
}

h1 {
	font: 700 2.5rem/3rem "Raleway", sans-serif;
}

h2 {
	font: 700 2rem/2.25rem "Raleway", sans-serif;
}

h3 {
	font: 700 1.75rem/2rem "Raleway", sans-serif;
}

a, a:hover {
	color: #fff;
}

.button-solid {
	display: inline-block;
	height: 3rem;
	padding-right: 3rem;
	padding-left: 3rem;
	border: 1px solid #f15a25;
	border-radius: 25px;
	background-color: #f15a25;
	color: #fff;
	font: 700 1rem/2.75rem "Open Sans", sans-serif;
	transition: all .3s ease;
}

.button-solid:hover {
	border: 1px solid #fff;
	background-color: transparent;
	text-decoration: none;
}

.form-control-input {
	width: 100%;
	height: 3rem; /* looks bad in IE if you use padding instead of height*/
	padding-left: 1.5rem;
    border: 1px solid #fff;
	border-radius: 25px;	
	background-color: #fff;
	color: #3b454d;
	font: 300 1rem/1.5rem "Open Sans", sans-serif;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-submit-button {
	width: 100%;
	height: 3rem;
	border: 1px solid #f15a25;
	border-radius: 25px;
	background-color: #f15a25;
	color: #fff;
	font: 700 1rem/2rem "Open Sans", sans-serif;
	cursor: pointer;
	transition: background-color .3s ease, color .3s ease;
}

.form-control-submit-button:hover {
	background-color: transparent;
	color: #fff;
}

.form-control-textarea {
	display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 7.3rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 0.8rem;
	padding-left: 1.5rem;
	border: 1px solid #ccc; 
	border-radius: 25px;
	background-color: #fff;
	color: #3b454d;
	font: 300 1rem/1.5rem "Open Sans", sans-serif;
}

#msgSubmit.h3.text-center.text-error {
	margin-top: 0.5rem;
	color: #35dcd4;
	font: 300 1.25rem/1.75rem "Open Sans", sans-serif;
}

#msgSubmit.h3.text-center.text-confirmation {
	margin-top: 0.5rem;
	color: #35dcd4;
	font: 300 1.25rem/1.75rem "Open Sans", sans-serif;
}

.help-block.with-errors {
	margin-top: 1rem;
	font-size: 0.75rem;
	line-height: 0rem;
}

/* FadeIn Animation From Animate.css Used For Morphtext */
@-webkit-keyframes fadeIn {
	from {
	  opacity: 0;
	}
  
	to {
	  opacity: 1;
	}
}
  
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation: fadeIn 0.6s;
	animation: fadeIn 0.6s;
}
/* end of fadein animation from animate.css used for morphtext */

/* Fade-move Animation For Magic Popup - Lightbox Form */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	-ms-transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
	transform: translateY(-20px) perspective( 600px ) rotateX( 10deg );
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	-ms-transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
	transform: translateY(0) perspective( 600px ) rotateX( 0 ); 
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	-ms-transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
	transform: translateY(-10px) perspective( 600px ) rotateX( 10deg ); 
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}
/* end of fade-move animation for magic popup - lightbox form */


/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #111;
}

.spinner {
	position: absolute;
	top: 50%; /* centers the loading animation vertically one the screen */
	left: 50%; /* centers the loading animation horizontally one the screen */
	width: 3.75rem;
	height: 1.25rem;
	margin: -0.75rem 0 0 -2rem; /* is width and height divided by two */ 
	text-align: center;
}

.spinner > div {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	background-color: #fff;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40% { 
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}


/**********************/
/*     03. Header     */
/**********************/
header {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/header-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

header .logo-and-details-wrapper {
	margin-bottom: 3rem;
}

header .logo-img {
	margin-top: 3rem;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 1rem;
	width: 90px;
	height: 120px;
}

header .logo-txt {
	display: inline-block;
	margin-top: 3.5rem;
	margin-bottom: 1rem;
	font: 700 3rem/2rem "Raleway", sans-serif;
	text-decoration: none;
}

header .contact-details {
	margin-right: 0.5rem;
}

header .contact-details .fa {
	margin-right: 0.5rem;
	margin-left: 0.5rem;
	color: #f15a25;
}

header .header-content {
	margin-bottom: 5rem;
}

header .countdown {
	margin-bottom: 2.5rem;
	color: #fff;
	font: 600 3rem/1.5rem "Open Sans", sans-serif;
}

header .countdown #clock .counter-number {
	display: inline-block;
	margin-top: 1rem;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
	padding: 2rem 1.5rem 1.25rem 1.5rem;
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.1);
}

header .countdown #clock .separator {
	margin-top: 2rem;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	display: inline-block;
	height: 2rem;
	vertical-align: top;
}

header .countdown #clock .timer-text {
	font: 300 0.75rem/1rem "Open Sans", sans-serif;
	text-align: center;
}

header h1 {
	margin-bottom: 0.75rem;
}

header .p-under-header {
	margin-bottom: 1.5rem;
}

header .list-unstyled {
	margin-bottom: 1.75rem;
}

header .list-unstyled .fa {
	margin-right: 0.5rem;
	margin-left: 0.75rem;
}

/* Social Links */
header .social-links-container {
	padding-bottom: 1.5rem;
}

header .social-links-container .fa-stack {
	margin-right: 0;
}

header .social-links-container .fa-stack.fa-lg {
	font-size: 1.5rem;
}

header .social-links-container .fa-stack a .fa-stack-1x {
	color: #fff;
	opacity: 0.8;
	transition: opacity .3s ease;
}

header .social-links-container .fa-stack a .fa-stack-2x {
	color: #2a272b;
	opacity: 0.8;
	transition: opacity .3s ease;
}

header .social-links-container .fa-stack a:hover .fa-stack-1x {
	opacity: 1;
}

header .social-links-container .fa-stack a:hover .fa-stack-2x {
	opacity: 1;
	color: #f15a25;
}
/* end of social links */

/* Magnific Popup Lightbox Form Content */
.lightbox-form-container {
	position: relative;
	max-width: 32rem;
	margin: 2.5rem auto;
	padding: 1.5rem 2rem 2rem 2rem;
	background-color: #2c2a2f;
	color: #fff;
	text-align: left;
}

.lightbox-form-container button.mfp-close.x-button {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 0.5rem;
	height: 0.5rem;
	color: #fff;
	line-height: 0;
}

.lightbox-form-container p {
	font-size: 14px;
	line-height: 23px;
}

.lightbox-form-container form {
	margin-top: 1.25rem;
}

.lightbox-form-container form p {
	margin-bottom: 0.5rem;
}

.lightbox-form-container .form-group {
	margin-bottom: 1.5rem;
}

.lightbox-form-container [class~='form-group']:last-of-type  {
    margin-bottom: 0;
}

/* end of magnific popup lightbox form content */


/*****************************/
/*     04. Media Queries     */
/*****************************/	
/* Min-width width 768px */
@media (min-width: 768px)	{
	h1 {
		font: 700 2.75rem/3.5rem "Raleway", sans-serif;
	}
	
	header {
		position: relative;
		width: 100%;
		height: 100vh;
	}
	
	header .logo-and-details-wrapper {
		position: absolute;
		right: 0;
		left: 0;
		margin-bottom: 0;
	}

	header .logo-img {
		float: left;
		margin-top: 1.75rem;
		margin-left: 2rem;
	}

	header .logo-txt {
		float: left;
		margin-top: 2.25rem;
		margin-left: 2rem;
	}

	header .contact-details {
		float: right;
		margin-top: 2.5rem;
		margin-right: 2rem;
	}

	header .header-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100vh;
		margin-bottom: 0;
		padding-bottom: 1.5rem;
	}

	header .countdown {
		font: 600 4.5rem/1.75rem "Open Sans", sans-serif;
	}

	header .countdown #clock .counter-number {
		margin-right: 0.6rem;
		margin-left: 0.7rem;
		padding: 2.75rem 1.5rem 1.5rem 1.5rem;
	}

	header .countdown #clock .timer-text {
		font: 300 1rem/1rem "Open Sans", sans-serif;
	}

	header .social-links-container {
		position: absolute;
		right: 0;
		bottom: 0rem;
		left: 0;
	}
}


/* Min-width width 992px */
@media (min-width: 992px) {
	h1 {
		font: 700 3.25rem/3.5rem "Raleway", sans-serif;
	}

	.p-under-header {
		width: 80%;
		margin-right: auto;
		margin-left: auto;
	}

	header .header-content {
		padding-bottom: 3rem;
	}
}


/* Min-width width 1200px */
@media (min-width: 1200px) {
	
}