.video-section {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
}
@media (max-aspect-ratio: 1/1) and (max-width: 1000px) {
  .video-section {
    height: auto;
    padding: 4.5rem 0 2rem;
  }
}
.video-section.black {
  background-color: var(--black);
  color: var(--white);
}
.video-section .textcontent {
  position: relative;
  max-height: 100%;
  height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.video-section .textcontent > * {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.video-section .textcontent > *:nth-child(1) {
  animation-delay: 0.5s;
}
.video-section .textcontent > *:nth-child(2) {
  animation-delay: 0.6s;
}
.video-section .textcontent > *:nth-child(3) {
  animation-delay: 0.75s;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.video-section .textcontent p {
  font-size: 1.5rem;
}
.video-section .textcontent .hashtag {
  position: absolute;
  left: 0;
  bottom: 1.75rem;
  font-size: 1.5rem;
  font-family: "Samsung Sharp Sans";
}
.video-section .textcontent .hashtag span {
  font-size: 2rem;
}
@media (max-aspect-ratio: 1/1) and (max-width: 1000px) {
  .video-section .textcontent .hashtag {
    position: relative;
    left: auto;
    bottom: auto;
  }
}
@media (max-aspect-ratio: 1/1) and (max-width: 1000px) {
  .video-section .textcontent {
    height: auto;
    text-align: center;
    align-items: center;
  }
}
.video-section .video {
  height: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  right: calc((100% - 100rem) / 2);
  bottom: 0;
}
@media (max-aspect-ratio: 1/1) and (max-width: 1000px) {
  .video-section .video {
    position: relative;
    height: auto;
    width: 100%;
    right: 0;
  }
}
.video-section .video video,
.video-section .video .backup {
  width: 100%;
}
.video-section .video video {
  display: block;
  pointer-events: none;
}
.video-section .video .backup {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.video-section .video .backup .backup-logo {
  height: 100%;
}
.video-section .video .backup .backup-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.video-section .video .backup {
  aspect-ratio: 1/1;
}

.textcontent h1 + p {
  margin-bottom: 2rem;
}

#intro_to_sh .sh-logo img {
  height: 2.75rem;
  width: auto;
}
@media (max-aspect-ratio: 1/1) and (max-width: 1000px) {
  #intro_to_sh .sh-logo {
    margin-top: 2rem;
  }
}
#intro_to_sh h1 span {
  font-size: 2rem;
}
#intro_to_sh .ai-symbol {
  background-image: url("../assets/images/GalaxyAI.svg");
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.25rem;
  margin-bottom: -0.25rem;
}

@media (max-aspect-ratio: 1/1) and (max-width: 1000px) {
  #sleep_coach {
    text-align: center;
  }
}