/*-------------------------------------------------------------
 * Countdown
 *-------------------------------------------------------------*/
.countdown-wrapper {
	margin: 20px 0 50px;
}
#back-countdiown {
	padding:4% 0;
	text-align:center
}
#back-countdiown li {
	display: inline-block;
	margin-right: 15px;
	text-align: center;
 
	position: relative;
}
 
 
#back-countdiown li span {
	display: block;
	font-size:100px;
	padding:20px;
	color:#fff; font-family: 'Anton', sans-serif; background:#000;
}

#back-countdiown li { margin:0 5px 10px 5px; width:200px;}

#back-countdiown li p {
	text-transform: capitalize;
	font-size:20px;
	margin: 0;
	padding: 10px 0;
	color: #fff;
	border-top: 3px solid #dfb859; background:#dfb859; font-family: "Playfair Display",serif;
}
#back-countdiown li span:hover {
	cursor: pointer;
}
/*-------------------------------------------------------------
 * Subscribe 
 *-------------------------------------------------------------*/
.subscribe {
	margin: 50px 0 50px;
	text-align: center;
	display: block;
}
.subscribe-form {
	width: 40%;
	position: relative;
	margin:0 auto 30px auto;
}
 @media screen and (max-width:768px) {
 .subscribe-form {
 width: 100%;
}
}
.subscribe-form input[type="email"] {
	border: 2px solid #dfb859;
	height: 50px;
	line-height: 50px;
	width: 100%;
	background:transparent;
	border-radius:3px;
	padding: 0 130px 0 20px;
	font-size:18px;
	display: inline-block;
	box-sizing: border-box;
	color: #222; font-family: "Playfair Display",serif;
}
.subscribe-form input:focus {
	outline:none;
}
.subscribe-form input[type="submit"] {
	cursor: pointer;
	background:url(../../../images/paper-plane.png) #222 no-repeat right center;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	border: 0;
	display: inline-block;
	position: absolute;
	right: 5px;
	top:5px;
	border-radius:2px;
	box-sizing: border-box;
	padding:10px 20px;
	-webkit-transition: all 0.7s;
	-moz-transition: all 0.7s;
	transition: all 0.7s; width:150px; text-align:left
}
.subscribe-form input[type="submit"]:hover {
		background:url(../../../images/paper-plane.png) #c79f3e no-repeat right center;
}
 .subscribe-form::-webkit-input-placeholder {
 color:   #fff;
}
/*------------------
 * Video Background
 *------------------*/

.fullscreen-bg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	z-index: -100;
}
 .fullscreen-bg::before {
 position: absolute;
 content: "";
 background: rgba(0, 0, 0, 0.7);
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
 z-index: 1;
}
.fullscreen-bg__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
 @media (min-aspect-ratio: 16/9) {
 .fullscreen-bg__video {
 height: 300%;
 top: -100%;
}
}
 @media (max-aspect-ratio: 16/9) {
 .fullscreen-bg__video {
 width: 300%;
 left: -100%;
}
}

