.hero {
  padding: 140px 20px 40px;
  position: relative;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1,
.hero h2,
.hero h3 {
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  color: white;
}

.hero h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 1.35rem;
  line-height: 1.5;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.hero h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero p,
.hero li {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
}

.hero ul {
  padding-left: 24px;
  margin-bottom: 1.5rem;
}

.hero li {
  margin-bottom: 0.75rem;
}

.hero b,
.hero strong {
  font-weight: 600;
}

.hero em {
  font-style: italic;
}

.hero a {
  color: #fddb3a;
  text-decoration: underline;
}

table th + th {
  text-align: center;
}

th {
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  color: white;
  font-size: 1.2rem;
}

div#hero:before {
  content: "";
  position: absolute;
  background: none !important;
  width: 2725px;
  height: 700px;
  background: url(../assets/twist-radial.svg) 0 0;
  top: -90%;
  animation: 20s infinite forwards twist linear;
  right: -10%;
  opacity: 0.5;
  z-index: 0;
}

div#hero:after {
  content: "";
  height: 700px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #00183e, #0a3a8700);
  opacity: 0.5;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .hero-inner {
    margin-top: 45px;
  }
}

@media (max-width: 480px) {
  .hero a {
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal;
  }
  h2,
  h4,
  h3 {
    line-height: 1.5;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 15px;
  }
  th {
    font-size: 16px;
  }
}
@media (max-width: 320px){
  th{
    font-size: 15px;
  }
  td{
    font-size: 14px;
  }
}
