html {
  min-height: 100%;
  background: #0b0c0c;
}

body {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #0b0c0c;
  color: #0b0c0c;
  font-family: Arial, Helvetica, sans-serif;
}

.home-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  overflow: hidden;
}

.home-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-access {
  position: absolute;
  left: 47%;
  top: 61.5%;
  display: inline-flex;
  width: clamp(152px, 12vw, 182px);
  min-height: clamp(42px, 3.4vw, 50px);
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  padding: 8px 16px;
  background: #00703c;
  border: 2px solid transparent;
  box-shadow: 0 3px 0 #002d18;
  color: #ffffff;
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  text-decoration: none;
}

.hero-access:hover {
  background: #005a30;
}

.hero-access:active {
  box-shadow: none;
  transform: translate(-50%, calc(-50% + 3px));
}

.hero-access:focus-visible {
  outline: 4px solid #ffdd00;
  outline-offset: 3px;
}

.home-doc-links {
  position: absolute;
  right: clamp(14px, 3vw, 38px);
  bottom: clamp(14px, 3vw, 36px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(680px, calc(100vw - 28px));
  justify-content: flex-end;
}

.home-doc-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 10px 7px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: rgba(11, 12, 12, 0.82);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.7);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.home-doc-links a:hover {
  color: #0b0c0c;
  background: #ffdd00;
  border-color: #ffdd00;
}

.home-doc-links a:focus-visible {
  outline: 4px solid #ffdd00;
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .hero-access {
    left: 40.3%;
    top: 60.5%;
    width: clamp(126px, 36vw, 146px);
    min-height: 46px;
    font-size: 18px;
  }

  .home-doc-links {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }

  .home-doc-links a {
    min-height: 34px;
    padding: 7px 8px 6px;
    font-size: 14px;
  }
}
