* {
  font-family: "montserrat", sans-serif;
}

/* SCROLL BAR START */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #7699ac;
}

::-webkit-scrollbar-thumb:hover {
  background: #7699acc8;
}

/* SCROLL BAR END */

body {
  margin: 0;
  padding: 0;
}

.page {
  background: #f5f5f1;
  /* background: #f1f1f1; */
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  height: 100vh;
  position: relative;
}

.countdown-col {
  background: url("images/time.jpeg") no-repeat center;
  background-size: cover;
  opacity: 1;
}

.time {
  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;
}

.time span {
  padding: 0 14px;
  font-size: 10px;
  border: 1px solid white;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  margin: 1em;
}

.time span div {
  font-size: 40px;
  color: white;
}

.newsletter {
  width: 90%;
}

.newsletter h4 {
  font-style: italic;
  font-size: 12px;
}

.newsletter input,
.newsletter-button {
  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;
}

.newsletter textarea {
  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;
  resize: none;
}

.newsletter-button {
  /* background: linear-gradient(125deg, #4488c7, #5fc8db); */
  background: #c72026;
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
}

.newsletter-button:hover {
  opacity: 0.7;
}

@media screen and (max-width: 480px) {
  .time span {
    margin: 5px;
  }
}

@media screen and (max-width: 900px) {
  .col {
    flex: 100%;
  }
}
