h1 {
  color: #fff;
  text-align: center;
  font-family: "Funnel Display";
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h2 {
  color: var(--Dark-Navy-Blue, #090524);
  font-family: "Funnel Display";
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h3,
.h3 {
  color: #fff;
  text-align: center;
  font-family: "Funnel Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h4 {
  color: #fff;
  text-align: center;
  font-family: "Funnel Display";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

p {
  color: var(--Powder-Blue, #aabadc);
  font-family: "Funnel Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

p strong {
  color: #fff;
  font-weight: 600;
}
ul li,
ol li {
  font-family: "Funnel Sans";
  color: var(--Powder-Blue, #aabadc);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  text-align: left;
}

.medium-text {
  /* color: #aabadc; */
  font-family: "Funnel Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.small-text {
  color: rgba(9, 5, 36, 0.6);
  font-family: "Funnel Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.smaller-text {
  color: var(--Powder-Blue, #aabadc);
  text-align: center;
  font-family: "Funnel Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.cta {
  display: flex;
  color: #fff;
  font-family: "Funnel Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  min-width: 121px;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: var(--Royal-Blue, #006fff);
  color: #ffff;
  border: none;
  position: relative;
  z-index: 3;
}

.cta.large {
  display: flex;
  min-width: 220px;
  min-height: 50px;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.cta.white{
    display: flex;
    padding: 10px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    border-radius: 1000px;
    border: 1px solid #CCC;
}

button {
  cursor: pointer;
}
a {
  font-family: "Funnel Sans";
}
h1 span,
h2 span,
h3 span,
.lower-text span {
  background: linear-gradient(90deg, #006fff 0%, #aabadc 87.74%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dark-navy-blue {
  color: var(--Dark-Navy-Blue, #090524);
}

.uppercase {
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  h1 {
    text-align: center;
    font-family: "Funnel Display";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  h2 {
    font-family: "Funnel Display";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  h3 {
    text-align: center;
    font-family: "Funnel Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  p {
    font-family: "Funnel Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
  }
}

h1,
h2,
h3,
h4,
h5,
h6, p,
span {
  position: relative;
  z-index: 4;
}

main section {
  min-height: calc(100vh - 77px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 77px;
  overflow: hidden;  
}

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

  main section {
    min-height: calc(100svh - 66px);
    padding-top: 66px;
    align-items: flex-start;
  }
}