#index-main {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.index-hero {
  width: 100%;
  height: auto;
  padding-top: 120px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.index-hero .container {
  width: 95%;
  height: auto;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.index-hero .container .hero-title {
  width: 100%;
  height: auto;
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  gap: 24px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent), linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.index-hero .container .hero-title > h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.index-hero .container .hero-title > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.index-hero .container .videos {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
}
.index-hero .container .videos .vid-wrap {
  flex: 1 1 40%;
  padding: 20px;
  padding-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.6);
}
.index-hero .container .videos .vid-wrap .vid-frame {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  background: black;
}
.index-hero .container .videos .vid-wrap .vid-frame > video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.index-hero .container .videos .vid-wrap .vid-link {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.index-hero .container .videos .vid-wrap .vid-link > b {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
.index-hero .container .videos .vid-wrap .vid-link > span {
  font-size: 18px;
  line-height: 1.3;
  word-break: keep-all;
  color: #3D3D3D;
  word-break: keep-all;
}/*# sourceMappingURL=main.css.map */