@import url('https://fonts.googleapis.com/css?family=Lobster+Two:700|Poppins&display=swap');
.newsLetterSubscribe{
  text-align: center;
  font-family: 'Poppins',sans-serif;
}

.center,.start-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.start-btn a{
  font-size: 22px;
  background: white;
  color: #02242b;
  padding: 15px 18px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;

} 
.modal-box{
  position: fixed;
  z-index: 100;
  top: 40%;
  opacity: 0;
  visibility: hidden;
  background: white;
  height: auto;
  width: 340px;
  padding: 38px 30px;
  border-radius: 5px;
  box-shadow: 5px 5px 30px rgba(0,0,0,.2);
}
.start-btn.show-modal{
  opacity: 0;
  visibility: hidden;
}
.modal-box.show-modal{
  top: 50%;
  opacity: 1;
  visibility: visible;
  transition: .4s;
}
.modal-box .fa-times{
  position: absolute;
  top: 0;
  right: 0;
  background: #c88a0f;
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin: 10px;
  color: white;
  font-size: 18px;
  border-radius: 100%;

  cursor: pointer;
}
.fa-times:hover{
  font-size: 22px;
}
.modal-box .icon1{
  font-size: 60px;
  background: #c88a0f;
  height: 120px;
  width: 120px;
  color: white;
  border-radius: 50%;
  line-height: 120px;
  text-align: center;
  margin-bottom: 10px;
}
.modal-box header{
  font-size: 28px;
  font-family: sans-serif;
  margin-bottom: 10px;
}
.modal-box p{
  line-height: 20px;
  color: grey;
}
.form_contact input, .form_contact button{
  height: 50px;
  width: 100%;
  border-radius: 3px;
}
.form_contact .icon2{
  position: absolute;
  height: 50px;
  width: 50px;
  margin-top: 15px;
  background: #c88a0f;
  color: white;
  line-height: 50px;
  font-size: 24px;
  border-radius: 5px 0 0 5px;
}
.form_contact input{
  margin-top: 15px;
  font-size: 14px;
  padding-left: 52px;
  outline: none;
  border: 2px solid #c88a0f;

}
input::placeholder{
  color: #8c8c8c;
}

.form_contact button{
  margin-top: 15px;
  background: #c88a0f;
  color: white;
  font-size: 25px;
  border: 1px solid #c88a0f;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
  transition: .3s;
}
.form_contact button:hover{
  background: #c88a0f;
  border: 1px solid #c88a0f;
  letter-spacing: 2px;
}
