: root {
  --color-headings: #242630;
  --color-lead: #242630;
  --color-bodycopy: #3B3F51;  
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s forwards;
}

.fade-in-delay-1 {
  opacity: 0;
  animation: fadeIn 2s 1s forwards; /* 2s delay */
}

.fade-in-delay-2 {
  opacity: 0;
  animation: fadeIn 2s 2s forwards; /* 4s delay */
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-subpage-module-outer .page-center{
  max-width:1100px;
  margin:0 auto;
}
.hero-subpage-module-outer .heroOverlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* behind content */
  pointer-events: none;
}
.hero-subpage-module-outer .hero-section-module-inner {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 49% 48%;
  gap:0px;
}
.hero-subpage-module-outer .hero-section-module-inner.left .hero-right-content{
 order:-1;
}
/* font-size */
.hero-subpage-module-outer .hero-left-content h1.light{
  color: var(--color-headings, #242630);
  font-size: 40px;
  font-weight: 300;
  line-height: 54%;
  margin:0;
  padding-bottom:10px;
}
.hero-subpage-module-outer .hero-left-content h1.heavy{
  color: var(--color-headings, #242630);
  text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.15);
  font-family: "Open Sans" !important;
  text-wrap: pretty;
  /*font-size: 60px;*/
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  line-height: 91% !important;
  letter-spacing: -4.2px;
  text-transform: uppercase;
  margin:0;
}
.hero-subpage-module-outer .lead-description h3{
  font-size: clamp(18px, 5vw, 22px);
  text-wrap: pretty;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  margin:0;
  padding:40px 0 24px;
}
.hero-subpage-module-outer .description p,.column-introduction p{
  /*color: var(--Equinet-Context-Deap-Purple, #242630);*/
  color: var(--color-bodycopy, #3B3F51);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4; 
  margin:0;
  text-wrap: pretty;
}
.hero-subpage-module-outer .l-btn a.Primary-Large{
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 135%;
  border-radius: 7px;
  background: #E06730;
  padding:16px 32px;
  display:inline-block;
  text-decoration:none;
  box-sizing: border-box;
  margin-top:24px;
}

.column-introduction-flx {
  display: grid;
  grid-template-columns: 45% 45%;
  justify-content: center;
  gap: 40px;
  padding-top:45px;
}
@media(max-width:767px){
  .hero-subpage-module-outer .hero-section-module-inner {
    grid-template-columns: 100%;
    gap:10px;
  }
  .hero-subpage-module-outer .hero-right-content {
    order: -1;
  }
  .hero-subpage-module-outer .hero-right-content img{
    width:100%;
  }
  /* font-size */
  .hero-subpage-module-outer .hero-left-content h1.light{
    font-size: 32px;
    line-height:67.5%;
  }
  .hero-subpage-module-outer .hero-left-content h1.heavy{
    font-size: 42px;
    letter-spacing: -2.94px;
  }
  .hero-subpage-module-outer .hero-left-content br{
    display:block;
  }
  .hero-subpage-module-outer .lead-description h3{
    font-size: 18px;
    padding-top: 24px;
  }
  .hero-subpage-module-outer .l-btn a.Primary-Large{
    width:100%;
    margin-top:0px;
  }
  .column-introduction-flx {
    grid-template-columns: 90%;
    padding-top:32px;
  }
  .hero-subpage-module-outer .hero-left-content .description {
    display: none;
  }
}