* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

body {
  font-family: "Poppins", sans-serif;
  color: #043f8b;
}

button,
input {
  font-family: "Poppins", sans-serif;
}

.showcase {
  height: 100vh;
  /*background: url("") no-repeat center/cover;
  
  min-height: 100vh;*/
  width: 100%;
  background-image: url();
  background-size: cover;
  /*background-attachment: fixed;*/
  animation: bgChange 20s linear infinite;

}

.showcase .overlay {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.showcase .overlay h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 30px;
}

.showcase .overlay h1 span {
  font-weight: 700;
  display: block;
}

.showcase .overlay p.desc {
  padding: 0 20px;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.showcase .overlay p.desc .fa-dove {
  font-size: 64px;
  color: #fdb700
}

.showcase .overlay form p {
  padding: 10px 0;
}

.showcase .overlay form input {
  background-color: transparent;
  border: 2px solid #05a5d2;
  padding: 10px;
  color: #05a5d2;
}

.showcase .overlay form input::placeholder {
  color: #05a5d2;
}

.showcase .overlay form button {
  background-color: #fdb700;
  color: #fff;
  margin-left: -10px;
  padding: 10px;
  border: 2px solid #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.2s ease-in-out;
}

.showcase .overlay form button:hover {
  opacity: 0.9;
  cursor: pointer;

}

.showcase .overlay .social p {
  padding: 10px 0;
}

.showcase .overlay .social ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase .overlay .social ul li {
  margin: 0 10px;
}

@media (min-width: 1024px) {
  .showcase .overlay p.desc {
    font-size: 18px;
  }

  .showcase .overlay h1 {
    font-size: 96px;
  }
}

.fa-twitter {

    color: #fdb700;
}

.fa-facebook {

  color: #043f8b;
  
}



