.hero-centered {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-centered__arc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 192px;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.hero-centered__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-centered__media {
  margin-bottom: 30px;
}

.hero-centered__media img,
.hero-centered__video {
  max-width: 100%;
  width: 282px;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .hero-centered__media {
    margin-bottom: 24px;
  }
  
  .hero-centered__media img,
  .hero-centered__video {
    width: 240px;
  }
}

.hero-centered__eyebrow {
  color: #000;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-centered__eyebrow p {
  margin: 0;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.hero-centered__eyebrow a {
  color: inherit;
  text-decoration: underline;
}

.hero-centered__title {
  color: #3E3E3E;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 24px;
  max-width: 760px;
}

@media (max-width: 1024px) {
  .hero-centered__title {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .hero-centered__title {
    font-size: 36px;
  }
}

.hero-centered__subheader {
  color: #3E3E3E;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-centered__subheader p {
  margin: 0;
}

.hero-centered__cta-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-centered__btn {
  display: inline-flex;
  padding: 14px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #3E3E3E;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  text-decoration: none;
  border-radius: 31px;
  transition: 0.3s ease;
  cursor: pointer;
}

.hero-centered__btn--primary {
  background: #F79500;
  border: 2px solid #F79500;
}

.hero-centered__btn--primary:hover {
  background: #E08600;
  border-color: #E08600;
  color: #3E3E3E;
  text-decoration: none;
}

.hero-centered__btn--secondary {
  background: transparent;
  border: 2px solid #F79500;
}

.hero-centered__btn--secondary:hover {
  background: #F79500;
  color: #3E3E3E;
  text-decoration: none;
}

@media (max-width: 767px) {
  .hero-centered__cta-container {
    flex-direction: column;
    width: 100%;
  }

  .hero-centered__btn {
    display: flex;
    width: 100%;
    max-width: 280px;
  }
}

{#ensures bg arc is rounded in each screen size#}

.hero-centered__arc--mobile {
  display: none;
}

@media (max-width: 767px) {
  .hero-centered__arc--desktop {
    display: none;
  }

  .hero-centered__arc--mobile {
    display: block;
  }
}