*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	flex-flow: "monserrat", sans-serif;
}
.page{
	background: #f1f1f1;
	display: flex;
	flex-wrap: wrap;
}
.col{
	flex: 1;
	height: 100vh;
	position: relative;
}
.countdown-col{
	background: url(img/fondo.jpg) no-repeat center;
	background-size: cover;
}
.time{
	color: #fff;
	text-transform: uppercase;
	width: 90%;
	display: flex;
	justify-content: center;
	background: linear-gradient(125deg, #A0A0A0, #000000);
	border-radius: 40px;
	
}
.middle{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.time span{
	padding: 0 14px;
	font-size: 15px;
	border: 1;
}
.time span div{
	font-size: 60px;
}
.newsletter-col{
	
	background: linear-gradient(125deg, #003366, #34495e);
}
.newsletter{
	width: 90%;
}
.newsletter h2{
	font-style: italic;
	font-size: 30px;
	color: #fff;
}
.newsletter h4{
	font-style: italic;
	font-size: 24px;
	color: #fff;
}
.newsletter img{
	width: 25%;
	height: 25%;
	border-radius: 50px;
}

.newsletter input{
	display: block;
	margin: 12px auto;
	width: 100%;
	max-width: 400px;
	padding: 14px 20px;
	border-radius: 30px;
	border: 1px solid #ddd;
	outline: none;
}
.btn{
	background: linear-gradient(125deg, #3498db, #34495e);
	color: #fff;
	cursor: pointer;
	transition: .5s;
}
.btn:hover{
	opacity: .7;
}

@media screen and (max-width: 900px){
	.col{
		flex: 100%;
	}
}