@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');



*{

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  font-family: 'Montserrat', sans-serif;

}

html,body{

  z-index:-9999;

  display: grid;

  height: 100%;

  width: 100%;

  place-items: center;

  background: url("bg.jpg") no-repeat;

  background-size: cover;

  background-position: center;

}

::selection{

  color: #fff;

  background: #c7141a;

}

hr{
  margin: auto;
  width: 85%;
}

.wrapper{

	    z-index:9999;

      border: solid white 5px;
      padding: 40px;
      background-color: #213489;

  color: #fff;

  max-width: 900px;

  text-align: center;

  padding: 45px 45px;
  border-radius: 7px;


}

.wrapper .title{

  font-size: 22px;

  font-weight: 500;


}



.wrapper .subtitle{

  font-size: 15px;

  font-weight: 250;

  margin-top: 20px;

}



.wrapper .title span{

  font-weight: 700;

}

.wrapper form{

  margin: 50px 0;

}

.wrapper form .email-field{

  height: 50px;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

}



.wrapper .footer{

bottom: 20px; 

left: 0; 

right: 0;

position: absolute;

}



img {

  max-width: 80%;

  height: auto;

}



form .email-field input{

  width: 100%;

  height: 100%;

  padding-left: 20px;

  border: none;

  outline: none;

  font-size: 18px;

}

form .email-field button{

  height: 100%;

  width: 200px;

  outline: none;

  border: none;

  background: #FC4782;

  color: #fff;

  font-size: 20px;

  cursor: pointer;

  transition: background 0.3s ease;

}

form .email-field button:hover{

  background: #000;

}

.wrapper .count-down{

  display: flex;

  width: 100%;

  height: 100px;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-around;

}

.wrapper .count-down .timer{

  height: 100%;

  width: 100px;

  border: 2px solid;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

}

.count-down .timer .numb{

  font-size: 25px;

  font-weight: 500;

}

.count-down .timer .text{

  font-size: 15px;

}

.count-down .clone{

  font-size: 45px;

}

@media (max-width: 630px) {

  .wrapper .count-down{

    height: 80px;

  }

  .wrapper .count-down .timer{

    width: 80px;

  }

  .count-down .timer .numb{

    font-size: 20px;

  }

  .count-down .timer .text{

    font-size: 13px;

  }

  .count-down .clone{

    font-size: 40px;

  }

}

@media (max-width: 542px){

  .wrapper{

    padding: 0 20px;

  }

  .wrapper .count-down .timer{

    border: none;

  }

  .count-down .timer .numb{

    font-size: 28px;

  }

  .count-down .timer .text{

    font-size: 15px;

  }

  .count-down .clone{

    display: none;

  }

  .form .email-field button{

    width: 150px;

    font-size: 17px;

  }

}

@media (max-width: 340px){

  .wrapper .count-down{

    height: 30px;

  }

  .wrapper .count-down .timer{

    width: 30px;

  }

}



@media screen and (max-width: 750px) {

  .wrapper{
    z-index:9999;
    background-color: #213489;
    color: #fff;
    max-width: 900px;
    text-align: center;
    margin: 35px;
    padding: 35px;
  }

  .wrapper .title{
    font-size: 22px;
  }

  img{
    max-width: 100%;
  }

  hr{
    width: 100%;
  }

  }
