/* RESET + BASE */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "Raleway", sans-serif;
}

/* WRAPPER FULL SCREEN */
.wrapper{
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url(img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

/* OVERLAY */
.opacity {
  background: rgba(79,70,62,0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* HERO / LOGO */
.gravity {
width: 100%;
text-align: center;
padding: 70px 0;
}

/* LOGO AGROLOR */
.gravity .logo{
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 25px auto;
}

/* TEXTO PRINCIPAL */
.gravity p {
  color: #d0d0d0;
  font-size: 23px;
  font-weight: 600;
  text-align: center;
}

/* COUNTDOWN */
#countdown {
  margin-top: 75px;
}

.countDays,
.countHours,
.countMinutes,
.countSeconds{
  position: relative;
}

.countDays::after{
  content: 'days';
  color: #fff;
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 200;
}

.countHours::after {
  content: "hours";
  color: #fff;
  position: absolute;
  top: 0;
  left: 2px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 200;
}

.countMinutes::after{
  content: 'minutes';
  color: #fff;
  position: absolute;
  top: 0;
  left: -10px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 200;
}

.countSeconds::after{
  content: 'seconds';
  color: #fff;
  position: absolute;
  top: 0;
  left: -10px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 200;
}

/* EMAIL */
.email{
  text-align: center;
  padding-top: 120px;
  z-index: 2;
}

.email p {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  margin: 20px 0 50px;
}

.email input[type="email"] {
  background: #403c3b;
  border: 2px solid #eadada;
  color: #fff;
  width: 390px;
  padding: 20px;
  font-size: 15px;
  text-transform: uppercase;
}

.email input[type="submit"] {
  background: #188588;
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 10px;
  width: 100px;
  margin-left: -115px;
  cursor: pointer;
}

.email input::placeholder {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

/* SOCIAL */
.social-icon {
margin-top: 160px;
padding: 25px 0;
}

.icon {
  width: 165px;
  margin: 0 auto;
}

.icon i {
  font-size: 21px;
  padding: 9px;
  color: #13a3a7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gravity .logo{
      max-width: 180px;
  }
}

@media (max-width: 768px) {
  .wrapper{
      background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .gravity{
      padding: 50px 20px;
  }

  .gravity .logo{
      max-width: 140px;
  }

  .gravity p{
      font-size: 18px;
  }

  .email input[type="email"]{
      width: 100%;
      max-width: 320px;
      margin-bottom: 15px;
  }

  .email input[type="submit"]{
      margin-left: 0;
      width: 140px;
  }
}
