*{
  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-col{
  background: url(bg.png) no-repeat center;
  background-size: cover;
}
.time{
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  justify-content: center;
}
.middle{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}
.time span{
  padding: 0 14px;
  font-size: 10px;
}
.time span div{
  font-size: 40px;
}

.newsletter{
  width: 90%;
}
.newsletter h4{
  font-style: italic;
  font-size: 12px;
}
.newsletter a{
  text-decoration: none;
  font-size: 60px;
  transition: all ease-in-out 250ms;
}

@media screen and (max-width :900px){
  .col{
    flex: 100%;
  }
}
