@import url('https://fonts.googleapis.com/css?family=Montserrat');

*{
	font-family: "Montserrat", sans-serif;
}

body{
	margin: 0;
	padding: 0;
}

.page{
	background: #f1f1f1;
	display: flex;
	flex-wrap: wrap;
}

.col{
	flex: 1;
	height: 100vh;
	position: relative;
}

.countdown{
	background: url(/images/stives.jpg) no-repeat center;
	background-size: cover;
}

.timer{
	color: #fff;
	text-transform: uppercase;
	width: 90%;
	display: flex;
	justify-content: center;
}

.middle{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.left .middle h2,
.right .middle h2{
	color: #333;
	font-size: 24px;
	margin-bottom: 24px;
}

.timer span{
	padding: 0 14px;
	font-size: 10px;
}

.timer span div{
	font-size: 40px;
}

.subscribe{
	width: 90%;
}

.subscribe h4{
	font-style: italic;
	font-size: 12px;
}

.subscribe input{
	display: block;
	margin: 12px auto;
	width: 100%;
	max-width: 400px;
	box-sizing: border-box;
	padding: 14px 20px;
	border-radius: 30px;
	border: 1px solid #ddd;
	outline: none;
}

.subscribe-btn{
	background: linear-gradient(125deg, #3498db, #34495e);
	color: #fff;
	cursor: pointer;
	transition: 0.4s;
}

.subscribe-btn:hover{
	opacity: .7;
}

.umberto-btn{
	background: linear-gradient(125deg, #3498db, #34495e);
	color: #fff;
	cursor: pointer;
	transition: 0.4s;
	border: none;
	padding: 14px 28px;
	border-radius: 30px;
	font-size: 16px;
}

.umberto-btn:hover{
	opacity: .7;
}

@media screen and (max-width: 900px){
	.col{
		flex: 100%;
	}
}