@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
  background-color: rgb(249, 250, 250);
}

a {
  color: #111;
  text-decoration: none;
}

p {
  margin: 20px 0;
}

header {
  text-align: center;
  position: relative;
  overflow: hidden;
}

header video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}

header::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to bottom,
    rgba(249, 250, 250, 0) 0%,
    rgba(249, 250, 250, 1) 100%
  );
}

header .title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  margin: 100px auto;
  background-color: rgba(127, 127, 127, 0.25);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

header .title h1 {
  font-family: "Saira", monospace;
  font-weight: 900;
  font-style: normal;
  font-size: 7rem;
  line-height: 1;
  margin: 0;
  color: #ff7a35;
}

header .title h2 {
  font-size: 3rem;
  margin: 0;
  color: #fff;
  max-width: 600px;
}

main {
  padding: 30px;
  margin: 0 auto;
  max-width: 1024px;
}

main .intro {
  padding: 0 20px;
}

main .intro p:first-child {
  text-align: center;
}

main .quick-points {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
  padding: 0;
  margin: 0 auto;
}

main .quick-points li {
  flex-basis: 50%;
  padding: 0 10px 20px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

main .quick-points li img {
  max-width: 50px;
  margin-right: 10px;
}
main .quick-points li img.clock-icon {
  max-width: 80px;
  margin-left: -32px;
}
main .quick-points li span {
  white-space: normal;
}

main .logo {
  display: block;
  margin: 0 auto 20px;
  width: 200px;
}

main h3 {
  font-size: 2rem;
  margin: 0 20px 20px;
  color: #ff7a35;
}

.flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

section {
  flex-basis: 50%;
  padding: 0 20px;
}

section.fullwidth {
  flex-basis: 100%;
}

section h4 {
  font-size: 1.5rem;
  margin: 0;
  color: #ff7a35;
}

section strong {
  color: #ff7a35;
}

section.callout {
  border: 1px solid #ff7a35;
  flex-basis: 100%;
  /* background-color: #ccc; */
  border-radius: 20px;
  padding: 20px;
}

/* section.callout h4 {
  color: #fff;
}

section.callout strong {
  color: #fff;
} */

form {
  display: flex;
  flex-direction: column;
  margin: 20px auto 20px;
  justify-self: center;
  max-width: 600px;
}

form h3 {
  margin: 0;
}

form label {
  margin: 10px 0 0;
}

.text-center {
  text-align: center;
}

form button,
.btn-cta {
  margin: 10px auto 0;
  padding: 5px 20px;
  border: none;
  border-radius: 30px;
  background-color: #ff7a35;
  box-shadow: 0 0 10px #ff7a35;
  color: #fff;
  cursor: pointer;
}

.cta {
  margin-bottom: 3rem;
}

footer {
  background-color: #ff7a35;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  text-align: center;
}

footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background: linear-gradient(
    to bottom,
    rgba(249, 250, 250, 1) 0%,
    rgba(249, 250, 250, 0) 100%
  );
}

footer p {
  margin: 0 20px 20px;
}

footer p span {
  white-space: nowrap;
}

footer a {
  color: #fff;
}

@media screen and (max-width: 900px) {
  header .title h1 {
    font-size: 2.5rem;
  }

  header .title h2 {
    font-size: 1.5rem;
  }

  header::after {
    display: none;
  }

  header .title {
    display: flex;
    margin: 0;
    border-radius: 0;
  }

  main {
    padding: 20px;
  }

  main .intro {
    padding: 0;
  }

  main .quick-points {
    flex-direction: column;
    align-items: start;
    max-width: 400px;
  }

  main h3 {
    margin: 0;
  }

  section {
    flex-basis: 100%;
    padding: 20px 0;
  }
}
