/* CSS File 
	===================
	Template Name: Startup - Coming soon templete
	Author: ashishmaraviya
	Version: 1.0
	Copyright 2020
===================*/
/*------------------------------------------------------------------
	[ Master css file, Table of contents ]
	
	00. General css
		- Body, a, button, img, li, p, h1 to h6
		- loader
		- .global_title
	01. Hero section css / .hero-section
		- Newsletter
------------------------------------------------------------*/

/*------------------------------------------------------------------
	# [Color codes]
	Primary color : #ffeb3b
# */

/*------------------------------------------------------------------
	[Typography]
	
	Title copy:      font-family: 'Poppins', sans-serif;
	Body copy:      font-family: 'Open Sans', sans-serif;
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap');

html
{
	 overflow-x:hidden; 
}
body
{
	overflow-x:hidden;
	font-family: 'Open Sans', sans-serif;
	background-color:#fff;
	position:relative;
	margin:0;
}
h1{
	font-size: 50px; 
}

h2{
	font-size: 42px;
}

h3{
	font-size: 24px; 
}

h4{
	font-size: 18px;
}

h5{
	font-size: 17px;
}

h6{
	font-size: 15px;
}

h1, h2, h3, h4, h5, h6{
	font-family: 'Poppins', sans-serif;
	color: #222;
	margin: 15px 0;
	letter-spacing: 0.05rem;
}
p{
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
    letter-spacing: 0.01rem;
    line-height: 28px;
	color: #555;
}
/* 00 General css start*/
.btn-black{
	margin: 0 11px 0 0;
    padding: 10px 20px;
    color: #fff !important;
	font-size: 15px;
	background-color: rgba(11, 13, 19, 0.8);
    border-radius: 0;
    border: 1px solid #222;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}
.btn-black:hover{
	cursor: pointer;
	color: #111 !important;
    background-color: #fff;
    outline: none;
    text-decoration: none;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
::-moz-selection { 
	color: #fff;
	background: #ffeb3b;
}
::selection {
	color: #fff;
	background: #ffeb3b;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #555;
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  transition: background-color 5000s ease-in-out 0s;
}
.auto-height{
	margin: 0;
	min-height: 100vh;
}
.main-container{
	padding: 0;
}
.main-block{
	min-height: 100vh;
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
	z-index: 2;
	text-align: center;
	background: url(../img/background.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(11, 13, 19, 0.8);
}
#canvas{
	width: 100%;
	height: 100vh;
	margin: auto;
	position: fixed;
	left: 0;
	display: flex;
	display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-pack: center;
    align-items: center;
    justify-content: center;
	z-index: 2;
	text-align: center;
	background: url(../img/background.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(11, 13, 19, 0.8);
}
.main-info{
	width: 600PX;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	text-align: center;
	z-index: 3;
}
.loader-wrapper {
	height: 100vh;
	width: 100vw;
	display: flex;
	background-color: #ffffff;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	z-index: 3;
	top: 0; 
}
.loader {
	border: 16px solid #111;
	border-radius: 50%;
	border-top: 16px double #ffeb3b;
	border-bottom: 16px double #ffeb3b;
	width: 80px;
	height: 80px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.validation{
	display: none;
	position: absolute;
    top: 45px;
}
.about_sec, .portfolio_sec, .contact_sec {
	padding: 100px 0;
}
.global_title { 
	margin: -7px 0 20px 0;
	font-size: 42px;
	text-align: center;
	font-weight: 300;
}
.global_title span { 
	font-weight: 600;
} 
/* General css end*/

/* 01 hero section start */
.hero-section{
	position: relative;
	z-index:1;
}
.hero-section-position {
	position: absolute;
}
.logo{
	margin: 0 auto 30px auto;
	text-align: center;
}
.logo img{
	width: 200px;
}
.hero-detail {
	margin: 0;
	padding: 30px;
	background-color: rgba(11, 13, 19, 0.8);
	border: 1px solid #222;
	border-radius: 30px;
}
.title{
	margin-bottom: 15px;
	color: #fff;
	font-size: 50px;
	font-weight: 300;
	line-height: 40px;
	text-align: center;
}
.title span{
	color: #ffeb3b;
	font-weight: 800;
}
.sub-title{
	text-transform: uppercase;
	color: #555;
	font-weight: 600;
}
.description{
    margin: auto auto 5px auto;
	color: #777;
}
.description, .sub-title{
	margin-bottom: 5px;
}
.hero-container{
    position: relative;	 
	z-index: 1;
}
.hero-counter, .hero-container{
	max-width: 600px;
}
.counter {
	margin: 10px -8px -10px -8px;
	display: block;
}
#timer{
    color: #111;
    text-align: center;
    text-transform: uppercase;
}
#timer .date-box{
	margin: 10px 8px;
	padding: 10px;
	width: 96px;
    height: 96px;
	display: inline-block;
	background-color: transparent;
	border: 1px solid #222;
	font-size: 32px;
	font-weight: 600;
	z-index: 2;
	color: #fff;
}
#timer .text{
	font-size: 12px; 
	font-weight: 300;
	color: #fff;
}
.hero-counter-desc{
	color: #f1f1f1;
	font-size: 14px;
	font-weight: 300;
}
/* Newsletter */
#success{
	color: green;
}
#warning, #faild{
	color: red;
}
.subscribe_form{
	padding: 20px 20px 0 20px;
	max-width: 500px;
	width: 100%;
	margin: 0 auto;
}
.subscribe_form:focus{
	outline: none;
}
.subscribe_form .form-control:focus {
	box-shadow: none;
	border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid #888;
    background-color: transparent;
}
.subscribe_form input{
	height: 44px;
	background-color: transparent;
    border-radius: 0;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid #222;
    /*color: #fff;*/
}
.subscribe_form .button:focus{
	box-shadow: none;
}
input[type="email"]::placeholder {
    color: #777; 
}
input[type="email"]::-ms-input-placeholder {
    color: #ddd;
}
input[type="email"]:focus:-ms-input-placeholder {
    color: #888;
}
input[type="email"]:focus::-moz-placeholder {
    color: #888;
}
input[type="email"]:focus:-moz-placeholder {
    color: #888;
}
input[type="email"]:focus::-webkit-input-placeholder {
    color: #888;
}
.subscribe_form button{
	/*margin-left: 10px;*/
	padding: 0 20px;
	border: none;
	height: 44px;
	color: #fff;
	font-size: 15px;
    background-color: transparent;
	border: 1px solid #222;
	border-radius: 0;
	text-transform: uppercase;
	position: relative;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
}
.subscribe_form .button:hover{
	color: #111;
	background-color: #fff;
	transition: all ease 0.3s;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-ms-transition:	all ease 0.3s;
	-o-transition: all ease 0.3s;
}
.subscribe_form .button:focus{
	box-shadow: none;
}
.subscribe_form .button .btn-icon {
	display: none;
}
/* End hero section start */