.text-intro {
  position: relative;
}
.text-intro .component {
  color: #003652;
}
.text-intro .component .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 350px;
}
.text-intro .component__title,
.text-intro .component__subtitle {
  margin-bottom: 24px;
}
.text-intro .component__textLink {
  display: inline-flex;
  justify-content: center;
}
.text-intro .component__background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.text-intro .component__background.white {
  background-color: #ffffff;
}
.text-intro .component__background.darkblue {
  background-color: #003652;
}
.text-intro .component__background.darkteal {
  background-color: #01444c;
}
.text-intro .component__background.bgImage.dark-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.54);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.text-intro .component__background.bgImage.light-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1023px) {
  .text-intro .component .container {
    min-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .text-intro .component .container {
    min-height: 280px;
  }
}
