/*------------------------------------------------*/
/* Basic styles */ 
/* Designed and coded by Fribba.com*/
/* Don't forget to visit us daily for tons of freebies:
	-PSD Templates
	-Wordpress Plugins
	-Wordpess Themes
	-HTML Designs
	-PHP Code Snippets
	-Wordpress Tutorials & Secrets 
	-& many more!
*/
/*------------------------------------------------*/
html{
}
*, ::after, ::before {
    box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'questv1','Omar','tahoma', Arial;
	color: #fff;
/*	background: url(../images/bg.webp) top center no-repeat #000;
*/	background-size: cover;
	position: relative;
	height: 100%;
	background-attachment: fixed;
	padding-top: 100px
}

.overlay{
	background:rgba(0,0,0,.8);
	position:fixed;
	left:0;
	top:0;
	bottom:0;
	right:0;
	width:100%;
	height:100%;
	z-index:1;
	overflow:hidden;
}

@media (min-width: 1200px){
	.container {
		width:1170px;
	}
}

#wrap{
	width:100%;
	height:100%;
	display:table;
	position:relative;
	z-index:10000;
}

#defaultCountdown{
	z-index:2;
	margin:0 auto;
	display:table;
	position:relative;
}

.countdown-row {
	margin:0 auto;
	width:100%;
	display:table;
	text-align:center;
}

.countdown-section {
	display: block;
	float: left;
	text-align: center;
	width:120px;
	height:120px;
	border-radius:50%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	/* border:solid 1px #fff; */
	text-align:center;
	margin:40px 20px;
}

.countdown-amount {
    font-size: 60px;
	font-weight:700;
	line-height:1em;
}
.countdown-period {
    display: block;
	color:#ffe600;
	font-size:18px;
	font-weight:100;
	font-family:'Oswald' , Arial;
}

.image-align{
	margin:0 auto;
	text-align:center;
	display:block;
	padding-top: 100px;
}

h1{
	font-size:96px;
	font-weight:700;
	text-align:center;
	margin-top: 20px;
	letter-spacing: -4px;
}

h1 span.small{
	font-size:42px;
	font-weight:300;
	display:block
}
h1 span.big{
    display: block;
    padding-top: 0;
    margin-top: 10px;
    line-height: 1;
}

.yellow{
	color:#ffe600;
}

p{
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    font-weight: 300;
    font-family: 'Oswald', Arial;
	position:relative;
	width:100%;
}
p:before,
p:after{
	content:" ";
	position:absolute;
	width:40%;
	height:1px;
	background:rgba(255,255,255,.3);
	transform:translateX(-50%);
	left:50%;
	top:-15px;
	margin:auto;
}
p:after{
	bottom:0;
	bottom:-20px;
	top:auto;
	width:20%
}
form{
	margin:0 auto;
	display:table;
	margin-top:0;
	width:100%;
	position:relative;
	text-align:center
}

input[type="email"]{
	border-radius:5px;
	background:transparent;
	border:none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	height:53px;
	color:#fff;
	font-family:'Oswald', Arial;
	font-size:16px;
	padding-left:20px;
	outline:0;
	width:100%;
}
.form-holder{
	max-width:450px;
	position:relative;
	margin:0 auto
}
input[type="submit"]{
	border-radius:0 5px 5px 0;
    font-family: 'Oswald', Arial;
    background: #ffe600;
    color: #000;
    border: none;
    font-size: 24px;
    font-weight: 500;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
    height: 53px;
    padding: 0 20px;
    line-height: 1;
}

input[type="submit"]:hover{
	background: #fff;
	color:#000
}
a{
	color:#fff;
	text-decoration:underline;
}

p.copyright{
	font-size:13px;
	margin-top:30px;
	color:#61666f;
}
p.copyright:before,
p.copyright:after{
	content:none
}
.envelope{
    margin: 0 auto;
    text-align: center;
}
.envelope svg{
	fill:#ffe600
}
::-webkit-input-placeholder { /* Edge */
  color: #fff;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

::placeholder {
  color: #fff;
}
  @font-face {    
	  font-family: "handwritingfont";  
      src: url(fonts/dastnevis.otf) format("truetype");  
  }  
  @font-face {    
	  font-family: "questv1";  
      src: url(fonts/questv1-regular.otf) format("truetype");  
  }  
@font-face {  
	font-family: "Omar";
    src: url(Fonts/Omar-Regular-1.ttf) format("truetype");
}


/*------------------------------------------------*/
/* Responsive styles */
/*------------------------------------------------*/


@media (max-width: 768px){
	h1 span.small {
		font-size: 24px;
	}
	h1{
		font-size:56px
	}
	p{
		font-size:15px
	}
	form {
		margin-top: 70px
	}
	.countdown-section {
		width: 50px;
		height: 50px;
		margin:40px 10px
	}
	.countdown-amount {
		font-size: 30px;
	}
	.countdown-period {
		font-size: 14px;
	}
	::placeholder {
	  font-size: 13px
	}
}




/* CSS for the progress bar container */
.progress-container {
	width: 100%;
	background-color: transparent;
	border-radius: 0px;
	height: 30px;
	overflow: hidden;
	position: fixed; /* Fix position relative to the viewport */
	bottom: 80px; /* Position it 150px from the bottom */
	left: 0; /* Align it to the left side */
	z-index: 1000; /* Ensure the progress bar is on top */
}

/* CSS for the progress bar */
.progress-bar {
	width: 0%;
	height: 30%;
	background-color: #4caf50;
	text-align: center;
	line-height: 10px;
	color: white;
	border-radius: 0px;
	transition: width 0.1s ease-in-out;
}
.footer-container {
	display: flex;
	width: 100%;
	background-color: rgba(0,0,0,.5);
	border-radius: 0px;
	height: 40px;
	overflow: hidden;
	position: fixed; /* Fix position relative to the viewport */
	bottom: 50px; /* Position it 150px from the bottom */
	left: 0; /* Align it to the left side */
	z-index: 1000; /* Ensure the progress bar is on top */
	align-items: center; /* Vertically centers the text */
	justify-content: center; /* Horizontally centers the text */
}