section.hero {
  height: 100svh;
  position: relative;
}
section.hero .logo-wrapper {
  padding: 0.9375rem 1.25rem;
  background: var(--white);
  max-width: 120px;
  min-width: 70px;
  width: 15%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
}
@container main (max-width: 47.9375rem) {
  section.hero .logo-wrapper {
    padding: 0.625rem 0.9375rem;
  }
}
section.hero .logo-wrapper .usbl-logo {
  width: 100%;
  height: auto;
  text-align: center;
}
section.hero > div {
  height: 100%;
}
section.hero .img-wrapper {
  height: 100%;
  -ms-grid-row: 1;
  -ms-grid-row-span: 5;
  grid-row: 1/6;
  width: 100%;
  position: relative;
}
section.hero .img-wrapper:has(svg) ~ div:not(.img-wrapper) {
  pointer-events: none;
}
section.hero .img-wrapper + div {
  z-index: 1;
}
section.hero .img-wrapper svg {
  width: 100%;
  height: 100%;
}
section.hero .img-wrapper svg circle[data-category] {
  cursor: pointer;
  fill: transparent;
}
section.hero .img-wrapper svg circle[data-category]:hover {
  fill: rgba(255, 255, 255, 0.25);
}
section.hero .img-wrapper svg circle[data-category] + circle {
  pointer-events: none;
}
section.hero .img-wrapper .overlay {
  height: 100%;
  width: 100%;
  background: var(--black);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
section.hero:has(.img-wrapper.mobile) .img-wrapper.mobile {
  display: none;
}
@container main (max-width: 47.9375rem) {
  section.hero:has(.img-wrapper.mobile) .img-wrapper {
    display: none;
  }
  section.hero:has(.img-wrapper.mobile) .img-wrapper.mobile {
    display: block;
  }
}
section.hero .content {
  max-width: 62.5rem;
}
section.hero h1,
section.hero h2 {
  color: var(--white);
  text-shadow: 0 0px 10px rgba(0, 0, 0, 0.85);
  text-align: center;
}
section.hero .anchor {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  translate: -50%;
  z-index: 2;
}
section.hero .anchor .icon-arrow {
  display: -ms-grid;
  display: grid;
  rotate: 90deg;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}
section.hero .anchor .icon-arrow::after {
  background: var(--white);
  width: 50%;
  height: 50%;
}