.hero {
  height: 100svh;
  position: relative;
  padding-top: var(--sp);
  min-height: -moz-fit-content;
  min-height: fit-content;
  overflow: hidden;
}

.hero__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.hero__bg-video video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: relative;
  z-index: 1;
}

.hero__bg-video:before {
  background: var(--secondary);
  content: "";
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  opacity: 0.3;
  z-index: 2;
}

.hero__container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
  z-index: 3;
  padding-bottom: 8rem;
}

.hero__unlock {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero__title span {
  margin-left: 15.7rem;
}

.hero__small-text {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.switcher {
  background: rgba(255, 255, 255, 0.2);
  flex: 0 0 auto;
  display: inline-block;
  aspect-ratio: 34/20;
  width: 3.4rem;
  border-radius: 100px;
  position: relative;
  transition: background-color var(--tr);
}

.switcher input {
  display: none;
}

.switcher:before {
  background: var(--white);
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 1.6rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0.2rem;
  transform: translate(0, -50%);
  transition: left var(--tr);
}

.switcher:has(input:checked):before,
.switcher._on:before {
  background: var(--white);
  left: calc(100% - 0.2rem);
  transform: translate(-100%, -50%);
}

@media (max-width: 760px) {
  .hero__container {
    flex-direction: column;
    align-items: initial;
    justify-content: flex-end;
    padding-bottom: 40px;
  }

  .hero__title span {
    margin-left: 0;
  }

  .hero__right {
    display: none;
  }

  .hero__small-text {
    text-align: center;
  }
}