/**
 * Bootstrap customised
 *
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 */
section.block__hero-page {
  position: relative;
}
@media (max-width: 991.98px) {
  section.block__hero-page .right {
    padding-top: 3rem;
  }
}
section.block__hero-page h1, section.block__hero-page p {
  color: white;
  font-weight: 500;
  margin: 0;
}
section.block__hero-page .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
  overflow: hidden;
}
section.block__hero-page .bg-overlay.show-after::after {
  content: url(../img/hero-logo-after.svg);
  position: absolute;
  right: 0;
}
section.block__hero-page .container {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}
@media (min-width: 992px) {
  section.block__hero-page .container {
    padding: 7rem 0;
  }
}
section.block__hero-page .certifications {
  font-size: small;
  border-bottom: solid white 1px !important;
  border-top: solid white 1px;
  padding: 1rem 0;
}
section.block__hero-page .above {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  bottom: -5rem;
  padding-bottom: 20px;
  background-color: transparent !important;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 991.98px) {
  section.block__hero-page .above {
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
  }
}
section.block__hero-page .rectangle {
  background-color: white;
  padding: 2rem;
  width: 31%;
  margin: 1%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin: 0;
}
section.block__hero-page .rectangle p {
  color: #231F20;
  font-size: medium;
}
@media (max-width: 991.98px) {
  section.block__hero-page .rectangle {
    width: 80%;
  }
}
@media (max-width: 575.98px) {
  section.block__hero-page .rectangle {
    width: 95%;
  }
}