* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hero {
  width: 100%;
  height: 100vh;
  background-image: url(img/background.png);
  background-position: center;
  background-size: cover;
  position: relative;
}

.logo {
  width: 250px;
  height: 100px;
  position: absolute;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.logo img {
  width: 80px;
}
.sidebar {
  width: 250px;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
}

.text-box {
  transform: rotate(-90deg);
  position: absolute;
  top: 45%;
  text-align: center;
}

.text-box h1 {
  font-size: 28px;
  font-weight: 100;
}
.text-box h4 {
  margin: 7px 0 10px;
}

.line {
  width: 80px;
  height: 1px;
  margin: auto;
  background: #000;
}

.content {
  color: #fff;
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}

.content h1 {
  font-size: 100px;
}
.content p {
  margin: 10px 0 40px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  padding: 10px 0;
  background: #fff;
  color: #000;
  border-radius: 3px;
  cursor: pointer;
}
.btn img {
  width: 30px;
  margin-right: 15px;
}
 
.backVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}
@media (min-aspect-ratio: 16/9) {
  .backVideo {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio : 16/9) {
  .backVideo {
    width: auto;
    height: 100%;
  }
}
