@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  color: #fff;
  text-transform: uppercase;
}
header .logo img {
  width: 80px;
  vertical-align: middle;
}
header .logo span {
  margin-left: 20px;
}
.price {
  color: #fff;
  text-align: right;
  height: 100px;
  line-height: 96px;
  text-transform: uppercase;
}
.logo,
.price {
  font-size: 42px;
}
.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.text {
  position: relative;
  z-index: 10;
}

.text h2 {
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text h3 {
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
}
.text p {
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text a {
  display: inline-block;
  font-size: 1em;
  background: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  color: #111;
  letter-spacing: 2px;
  transition: 0.2s;
}
.text a:hover {
  letter-spacing: 6px;
}
.links {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.links li {
  list-style: none;
}
.links li a {
  display: inline-block;
  margin-right: 30px;
  transition: 0.5s;
}
.links li a:hover {
  transform: translateY(-15px);
}
.links li a img {
  width: 60px;
}

a.hidden {
  text-decoration: none;
}

@media (max-width: 991px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }
  .text h2 {
    font-size: 3em;
  }
  .text h3 {
    font-size: 2em;
  }
  .logo,
  .price {
    font-size: 24px;
  }
  @media (max-height: 756px) {
    .text h2 {
      font-size: 2em;
    }
    .text h3 {
      font-size: 1em;
    }
  }
  @media (max-height: 690px) {
    .text h2 {
      font-size: 2em;
    }
    .text h3 {
      font-size: 1em;
    }
    .text p,
    .text a {
      font-size: 14px;
    }
  }
}
@media (max-width: 523px) {
  header .logo img {
    width: 64px;
  }
  .logo,
  .price {
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  header .logo img {
    width: 40px;
  }
  .logo,
  .price {
    font-size: 18px;
  }
  .text h2 {
    font-size: 2em;
  }
  .text h3 {
    font-size: 1em;
  }
}
