html {
  position: relative;
  min-height: 100%;
}

body {
  /* Location of the image */
  background-image: url(../img/img1.jpg);
  
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  
  /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based
     on the container's size */
  background-size: cover;
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #464646;

  color: #fff;
  font-family: 'Open Sans', sans-serif;
  margin: 0 0 60px;
}

article {
  padding-bottom: 30px;
}

/* http://mystrd.at/modern-clean-css-sticky-footer/ */
footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60px;
  width: 100%;
}

img.img-responsive {
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6{
	font-family:'Open Sans', sans-serif;
}

.heading{
	font-weight:300;
}

a, a:hover, a:focus {
  color: #fff;
}

/* ==============================================
	Text Rotator
=============================================== */
#rotate{
	padding:120px 0px 40px 0px;
	width: 100%;
	text-align: center;
}
h1.rotate{
  font-family: 'Open Sans', sans-serif;
	font-size:50px;
	font-weight:300;
}
h1.rotate span{
	font-weight:600;
}

/* ==============================================
	Countdown
=============================================== */
.is-countdown {
  border: 0;
  background-color: transparent;
}
/* ==============================================
	Countdown
=============================================== */
.countdown-row {
	display: block;
}
.countdown-section {
	border-left: 1px solid #fff;
	border-color: rgba(255,255,255,0.8);
	color: #fff;
	font-size: 12px;
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
	display:inline-block;
	padding:0px 50px;
}
.countdown-section:first-child {	
	border-left: 0;
}
.countdown-amount {
	color: #fff;
	display: block;
	font-size: 60px;
	font-weight: 700;
	letter-spacing: normal;
	line-height: 1;
	font-weight: 700;
}
.countdown-row{
	color:#fff;
}

/* smartphone */
@media only screen and (max-width: 992px) { 
	.countdown-section{
		display:block;
		border-left:none;
		border-top: 1px solid #717171;
		border-color: rgba(113,113,113,0.8);
		text-align:center;
		padding-top:10px;
		margin-bottom:20px;
	}
	.countdown-section:first-child {	
		border-top: 0;
	}
	#rotate{
		padding-top:50px;
	}
	h1.rotate{
		font-size:36px;
	}
	.countdown-amount{
		font-size:36px;
	}
}