@import url("https://fonts.cdnfonts.com/css/lato");
@import url("https://fonts.cdnfonts.com/css/cabinet-grotesk");
@import url("https://fonts.cdnfonts.com/css/inter");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.cont_content {
  width: 100%;
  height: 496px;
  background: #005ebd;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("img/coins.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cont_container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.text-wrap h1 {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  /* or 125% */

  text-align: center;

  color: #ffffff;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.text-wrap p {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  /* or 120% */

  text-align: center;

  color: #efefef;
  width: 800px;
  margin: 0 auto;
  margin-bottom: 32px;
}
.timer-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0 2%;
}
.timer-content {
  width: 100%;
  max-width: 136px;
  height: 96px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#days,
#hours,
#seconds,
#minutes {
  font-family: "Cabinet Grotesk";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  /* identical to box height, or 117% */

  /* Escala Cinza/900 */

  color: #14181b;
}
.timer-content p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */

  /* Escala Cinza/900 */

  color: #14181b;
}
.timer-form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.cta-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 517px;
  height: 72px;
  border: 0;

  background: #ffc600;
  border-radius: 8px;

  font-family: "Lato";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  /* identical to box height, or 120% */

  display: flex;
  align-items: center;
  text-align: center;

  color: #6d5500;
  text-decoration: none;
  transition: 0.3s all ease;
}
.cta-btn:hover {
  background-color: #e4b408;
  cursor: pointer;

  letter-spacing: 1px;
}
.timer-input {
  width: 100%;
  max-width: 517px;
  height: 72px;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  outline: 0;
  border: 0;
  border-radius: 0.3rem;

  transition: 0.3s;
}
/* @media screen and (max-width: 1440px) {
  .cont_content {
    width: 100%;
    height: 100%;
    background: #005ebd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("./img/coins2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
} */
/* @media screen and (max-width: 1080px) {
  .cont_content {
    width: 100%;
    height: 100%;
    background: #005ebd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("./img/coins3.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
} */
@media screen and (max-width: 768px) {
  .timer-form {
    flex-direction: column;
  }
}
@media screen and (max-width: 700px) {
  .cont_content {
    width: 100%;
    height: 100%;
    background: #005ebd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("img/coins2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 390px) {
  .cont_content {
    width: 100%;
    height: 100%;
    background: #005ebd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("img/coins3.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 810px) {
  .text-wrap h1 {
    width: 500px;
  }
  .text-wrap p {
    width: 400px;
  }
  .cont_content {
    width: 100%;
    height: fit-content;
    background: #005ebd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("img/coins2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2% 2%;
  }
}
@media screen and (max-width: 544px) {
  .cta-btn,
  .timer-input {
    width: 300px;
  }
  .form-control-lg {
    width: 300px;
  }
}
@media screen and (max-width: 508px) {
  .text-wrap h1 {
    width: 400px;
    font-size: 22px;
    line-height: 22px;
  }
  .text-wrap p {
    width: 300px;
    font-size: 16px;
    line-height: 20px;
  }

  .timer-content span {
    font-size: 32px !important;
  }
  .timer-content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 402px) {
  .text-wrap h1 {
    width: 300px;
    font-size: 18px;
    line-height: 22px;
  }
  .text-wrap p {
    width: 250px;
    font-size: 12px;
    line-height: 20px;
  }

  .timer-content span {
    font-size: 22px !important;
  }
  .timer-content p {
    font-size: 16px;
  }
  .cont_content {
    width: 100%;
    height: fit-content;
    background: #005ebd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("img/coins3.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2% 2%;
  }
}
