/*=======================
	CountDown CSS
=========================*/
#countdown {
    background-image: url(../img/03a.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 70px 0 100px;
}
#countdown::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
	content: "";
}
#countdown .single-count {
	margin-top:30px;
	color: #fff;
	font-size: 15px;
	text-align: center;
}
#countdown h2 {
	color: #ff0000;
	font-size: 45px;
	font-weight: 700;
	position: relative;
	margin: 20px 0;
}
#countdown .single-count i {
	width: 90px;
	height: 90px;
	line-height: 90px;
	border-radius: 100%;
	font-size: 36px;
	position: relative;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
#countdown .single-count:hover i{
	-webkit-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	transform:rotate(360deg);
}
#countdown .single-count i:after {
	content:"";
	position:absolute;
	left:0px;
	top:0px;
	height:100%;
	width:100%;
	border:3px solid transparent;
	border-radius:100%;
	-webkit-transform:scale(0.80);
	transform:scale(0.80);
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	transition:all 0.3s ease;
	opacity:0
}
#countdown .single-count:hover i:after,
#countdown .single-count.active i:after{
	-webkit-transform:scale(1.5);
	transform:scale(1.2);
	opacity:1;
}
#countdown .single-count p {
	font-size: 15px;
	color: #fff;
	text-transform: uppercase;
}
/*=======================
	End CountDown
=========================*/

.section {
    padding:80px 0;
}
.section-title {
	margin-bottom: 10px;
	text-align: center;
	padding: 0 20px;
}

.section-title h1 {
	font-size: 30px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	display: inline-block;
	color: #353535;
	text-transform: uppercase;
}
.section-title h1::before {
	position: absolute;
	bottom: -1px;
	content: "";
	left: 50%;
	margin-left: -35%;
	width: 70%;
	height: 2px;
	border-radius: 100%;
}
.section-title h1 span{
	margin-right:5px;
}
.section-title h1 i {
	position: absolute;
	left: 50%;
	top: 82%;
	font-size: 11px;
	color: #fff;
	border-radius: 100%;
	width: 20px;
	height: 20px;
	text-align: center;
	padding: 0;
	line-height: 20px;
	border: none;
	margin-left: -10px;
}


