section.hero-section {
  width: 100%;
}
section.hero-section .hero-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.hero-section .hero-container .image-wrapper {
  width: 100%;
  display: flex;
}
section.hero-section .hero-container .image-wrapper::before {
  content: "";
  padding-top: 41.6666666667%;
}
section.hero-section .hero-container .image-wrapper.skeleton {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: shimmer 2s ease;
  border-radius: 8px;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
section.hero-section .hero-container .image-wrapper img {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
section.hero-section .hero-container .image-wrapper img.hero-desktop-image {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
@media (max-width: 768px) {
  section.hero-section .hero-container .image-wrapper img.hero-desktop-image {
    display: none;
  }
}
section.hero-section .hero-container .image-wrapper img.hero-mobile-image {
  display: none;
}
@media (max-width: 768px) {
  section.hero-section .hero-container .image-wrapper img.hero-mobile-image {
    display: block;
  }
}
section.hero-section .hero-container .content-container {
  max-width: 1472px;
  width: 100%;
  position: absolute;
  z-index: 1;
  padding: 0 16px;
}
@media (max-width: 374px) {
  section.hero-section .hero-container .content-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 1440px) {
  section.hero-section .hero-container .content-container {
    padding-left: clamp(16px, 4%, 123px);
    padding-right: clamp(16px, 4%, 123px);
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  section.hero-section .hero-container .content-container {
    padding-left: 123px;
    padding-right: 123px;
  }
}
section.hero-section .hero-container .content-container .content-wrapper {
  max-width: 596px;
}
section.hero-section .hero-container .content-container .content-wrapper .title-wrapper {
  padding-bottom: 10px;
}
section.hero-section .hero-container .content-container .content-wrapper .title-wrapper h1 {
  color: #FFF;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.96px;
}
@media (max-width: 768px) {
  section.hero-section .hero-container .content-container .content-wrapper .title-wrapper h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
section.hero-section .hero-container .content-container .content-wrapper .subtext-wrapper {
  padding-bottom: 20px;
}
section.hero-section .hero-container .content-container .content-wrapper .subtext-wrapper p {
  color: #FFF;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 768px) {
  section.hero-section .hero-container .content-container .content-wrapper .subtext-wrapper p {
    font-size: 18px;
    line-height: 28px;
  }
}
section.hero-section .hero-container .content-container .content-wrapper .btn-wrapper button {
  color: #FFF;
  border-radius: 4px;
  border: 1px solid #F47721;
  background: #F47721;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 12px 20px;
  cursor: pointer;
}
section.hero-section .hero-container .content-container .content-wrapper .btn-wrapper button:hover {
  background: #F46E15;
  border-color: #F46E15;
}