/* Template: Bono - Coming Soon Page Template
   Author: InovatikThemes
   Version: 1.0.0
   Created: Nov 2017
   Description: Master CSS file
*/

/****************************************
    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 0.875rem/1.375rem "Open Sans", sans-serif;
}

.p-large {
	font: 300 1rem/1.625rem "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 #FF9800;
	border-radius: 25px;
	background-color: #FF9800;
	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-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-group.has-error.has-danger {
	margin-bottom: 0.625rem;
}

.form-group.has-error.has-danger .help-block.with-errors ul {
	margin-top: 0.375rem;
}

.label-control {
	position: absolute;
	top: 0.875rem;
	left: 1.375rem;
	color: #595680;
	opacity: 0.8;
	font: 300 0.875rem/1.375rem "Open Sans", sans-serif;
	cursor: text;
	transition: all 0.2s ease;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.label-control {
		top: 0.875rem;
	}
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
	top: 0.125rem;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block; /* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.125rem;
	padding-bottom: 0.125rem;
	padding-left: 1.375rem;
	border: 1px solid #fff;
	border-radius: 5rem;
	background-color: #fff;
	color: #37373c;
	font: 300 0.875rem/1.75rem "Open Sans", sans-serif;
	transition: all 0.2s;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 2.875rem;
	color: rgb(133, 75, 129, 0.8);
}

.form-control-select .select-option {
	color: rgb(133, 75, 129, 1);
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.form-control-input {
		padding-top: 1.125rem;
		padding-bottom: 0.625rem;
	}

	.form-control-select {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
	}
}

select {
    /* you should keep these first rules in place to maintain cross-browser behavior */
    -webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../images/down-arrow.png');
    background-position: 93% 50%;
    background-repeat: no-repeat;
    outline: none;
}

select::-ms-expand {
    display: none; /* removes the ugly default down arrow on select form field in IE11 */
}

.form-control-textarea {
	display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 8rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.25rem;
	padding-left: 1.375rem;
	border: 1px solid #fff;
	border-radius: 1rem;
	background-color: #fff;
	color: #37373c;
	font: 400 0.875rem/1.75rem "Open Sans", sans-serif;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #ededf3;
	outline: none; /* Removes blue border on focus */
	box-shadow: 0 0.5rem 0.5rem -0.375rem #494649;
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #ededf3;
	box-shadow: 0 0.5rem 0.5rem -0.375rem #494649;
}

.checkbox {
	font: 400 0.75rem/1.25rem "Open Sans", sans-serif;
}

input[type='checkbox'] {
	vertical-align: -15%;
	margin-right: 0.375rem;
}

/* IE10+ hack to raise checkbox field position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	input[type='checkbox'] {
		vertical-align: -9%;
	}
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 2.875rem;
	border: 1px solid #FF9800;
	border-radius: 1.5rem;
	background-color: #FF9800;
	color: #fff;
	font: 600 0.875rem/1.75rem "Montserrat", sans-serif;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	background-color: transparent;
	color: #FF9800;
}

/* Form Success And Error Message Formatting */
#msgSubmit.h3.text-center.tada.animated,
#msgSubmit.h3.text-center {
	margin-bottom: 0;
	color: #f9f9fc;
	font: 400 1.125rem/1rem "Open Sans", sans-serif;
}

.help-block.with-errors {
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.125rem;
}

.help-block.with-errors ul {
	margin-bottom: 0;
}
/* end of form success and error message formatting */

/* 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 */


/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #FF9800;
}

.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 {
	position: relative;
	text-align: center;
}

header .logo-and-details-wrapper {
	position: absolute;
	right: 0;
	left: 0;
	margin-bottom: 0;
}

header .logo-img {
	margin-top: 1rem;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 1rem;
	width: 130px;
	height: 50px;
}

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 .fas {
	margin-right: 0.5rem;
	margin-left: 0.75rem;
	color: #fff;
}

header .list-inline-item {
	opacity: 0.8;
}

header .list-inline-item:hover {
	opacity: 1;
}

header .first-half-pane {
	padding-top: 12rem;
	padding-right: 1rem;
	padding-bottom: 3rem;
	padding-left: 1rem;
	background-color: #FF9800;
}

header h1 {
	margin-bottom: 0.75rem;
}

header .p-heading {
	margin-bottom: 1.75rem;
}

header .countdown {
	margin-top: 0rem;
	margin-bottom: 0.5rem;
	color: #fff;
	text-align: center;
}

header .countdown #clock .counter-number {
	display: inline-block;
	width: 6rem;
	height: 6rem;
	margin-right: 0.5rem;
	margin-left: 0.5rem;
	margin-bottom: 1.25rem;
	padding-top: 30px;
	border-radius: 50%;
	border: 2px solid #fff;
	font: 600 2.5rem/18px "Open Sans", sans-serif;
	text-align: center;
}

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 .second-half-pane {
	padding-top: 4rem;
	padding-right: 1rem;
	padding-bottom: 7rem;
	padding-left: 1rem;
	background-color: #252f3f;
}

header form {
	max-width: 35rem;
	margin-top: 1rem;
	margin-right: auto;
	margin-left: auto;
}

header .social-links-container {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding-bottom: 1.5rem;
	text-align: center;
}

header .social-links-container .fa-stack {
	margin-right: 0.25rem;
	margin-left: 0.25rem;
}

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: #46525f;
	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: #FF9800;
}


/*****************************/
/*     04. Media Queries     */
/*****************************/	
/* Min-width width 768px */
@media (min-width: 768px) {
	
	/* General Styles */
	h1 {
		font: 700 2.75rem/3.5rem "Raleway", sans-serif;
	}
	/* end of general styles */

	/* Header */
	header .logo-img {

	}

	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 .first-half-pane {
		padding-top: 10rem;
	}

	header .p-heading {
		width: 80%;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of header */
}
/* end of min-width width 768px */


/* Min-width width 992px */
@media (min-width: 992px) {
	
	/* General Styles */
	h1 {
		font: 700 3.25rem/3.75rem "Raleway", sans-serif;
	}
	/* end of general sytles */

	/* Header */
	header {
		position: relative;
		width: 100%;
		height: 100vh;
		text-align: left;
	}
	
	header .first-half-pane {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 50%;
		height: 100vh;
		padding-top: 4rem;	
		padding-bottom: 4rem;	
	}

	header .first-half-pane-content {
		width: 100%;
		max-width: 26.5rem;
		margin-right: 1.5rem;
		margin-left: auto;
	}

	header .countdown {
		margin-top: 1.5rem;
		margin-bottom: 2rem;
		text-align: left;
	}

	header .countdown #clock .counter-number {
		margin-right: 1rem;
		margin-left: 0;
		margin-bottom: 0;
	}

	header .countdown #clock span.counter-number:last-of-type {
		margin-right: 0;
	}

	header .p-heading {
		width: 100%;
	}
	
	header .second-half-pane {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 50%;
		height: 100vh;
		padding-top: 4rem;	
		padding-bottom: 4rem;	
	}

	header .second-half-pane-content {
		width: 26rem;
		margin-left: 2rem;
	}
	/* end of header */
}
/* end of min-width width 992px */


/* Min-width width 1200px */
@media (min-width: 1200px) {
	
	/* Header */
	header .first-half-pane-content {
		max-width: 31rem;
		margin-right: 3rem;
		margin-left: auto;
	}

	header .countdown #clock .counter-number {
		width: 7rem;
		height: 7rem;
		padding-top: 38px;
	}

	header .second-half-pane-content {
		margin-left: 5rem;
	}
	/* end of header */
}
/* end of min-width width 1200px */