html {
  scroll-behavior: auto !important;
  overflow-y: auto !important;
}

body {
  overflow-y: auto !important;
  touch-action: auto !important;
}

section[id] {
  scroll-margin-top: 96px;
}

.mobile-menu-panel {
  overscroll-behavior: auto !important;
}

.hero-photo {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #092a2f;
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  display: block;
  object-fit: cover;
  object-position: 53% center;
  filter: saturate(.82) contrast(1.05) brightness(.82);
  transform: scale(1.012);
}

.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 45, 55, .42), rgba(5, 21, 30, .04) 62%),
    linear-gradient(180deg, rgba(0, 169, 145, .08), rgba(7, 7, 29, .28));
}

.hero-photo-caption {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 7%;
  max-width: 280px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(7, 16, 28, .72);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
  backdrop-filter: blur(9px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.hero-photo-caption span {
  display: block;
  margin-bottom: 8px;
  color: #52decf;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.hero-photo-caption strong {
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 820px) {
  .hero-photo,
  .hero-photo > img {
    min-height: 430px;
  }

  .hero-photo > img {
    object-position: 54% center;
  }
}

@media (max-width: 510px) {
  .hero-photo,
  .hero-photo > img {
    min-height: 370px;
  }

  .hero-photo-caption {
    left: 6vw;
    right: 6vw;
    bottom: 6vw;
    max-width: none;
    padding: 14px 16px;
  }
}
