body {
  min-height: 100vh;
  overflow: hidden;
}

.video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -6%, rgba(0, 0, 0, 0) 27.39%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  top: 0;
  left: 0;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: absolute;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px;
  bottom: 100px;
  text-align: center;
  width: 100%;
  gap: 6px;
}

.content_sub {
  font-size: 16px;
  font-weight: 300;
}

.content_title {
  font-size: 46px;
  font-weight: 400;
  line-height: 36px;
  font-variant: all-small-caps;
}

.content_title span {
  font-weight: 700;
}

.content_descritpion {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.56px;
}

.content_soon {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 15.6px;
}

.content_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
}

.content_wrapper a {
  text-decoration: none;
  color: #fff;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 1.87px;
  position: relative;
}

.content_wrapper a:first-child:after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 80%;
  opacity: 0.4;
  background: #d9d9d9;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1200px) {
  .content {
    bottom: 150px;
  }
  .content_title {
    font-size: 82px;
    line-height: 68px;
  }
  .content_descritpion {
    font-size: 28px;
    line-height: 68px;
  }
  .content_soon {
    font-size: 32px;
    line-height: 68px;
    letter-spacing: 19.6px;
  }
}
