section.hero {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--secondary-color);
  display: flex;
  height: 100vh;
  justify-content: center;
  position: relative;
  text-align: center;
}
section.hero .video-container {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
section.hero .video-container video {
  height: 100%;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}
section.hero .content {
  z-index: 20;
}
section.hero h1 {
  font-size: 3em;
  margin: 0;
}
section.hero p {
  color: var(--primary-color);
  font-family: var(--font-family2);
  font-size: 2.4em;
  margin: 0;
}
section.hero .social-media {
  align-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  margin-top: 2em;
}
section.hero .social-media a {
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 1.5em;
  padding: 0.5em;
  transition: all 0.3s ease;
  width: 1.5em;
}
section.hero .social-media a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.video-section {
  height: 70vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video-section video {
  object-fit: cover;
  top: 0;
}
.video-overlay,
.video-section video {
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
}
.video-overlay {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.video-overlay h2 {
  margin-bottom: 1em;
}
