@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.showcase {
  position: absolute;
  right: 0;
  width: 100%;
  min-height: 100%;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #ffffff;
  z-index: 2;
  transition: 0.5s;
}

.showcase.active {
  right: 300px;
}

.showcase header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(168, 30, 34, 0.8);
  mix-blend-mode: overlay;
}

.text {
  position: relative;
  z-index: 10;
}

.text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 4rem;
  text-transform: uppercase;
}

.text h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
  text-transform: uppercase;
}

.text p {
  font-size: 1rem;
  margin: 1rem 0;
  font-weight: 400;
  max-width: 700px;
}

.text a {
  display: inline-block;
  font-size: 1rem;
  background: #ffffff;
  padding: 10px 30px;
  text-decoration: none;
  color: #111;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.01rem;
  transition: 0.4s;
}

.text a:hover {
  letter-spacing: 0.3rem;
}

.logo {
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.2rem;
}

.toggle {
  position: relative;
  cursor: pointer;
}

/*X activas toggle ON*/
.toggle.active .fas.fa-times {
  display: block;
}
/*Barras ocultas en toggle ON */
.toggle.active .fas.fa-bars {
  display: none;
}
/*Barras activas toggle OFF*/
.toggle.active .fas.fa-times {
  display: block;
}
/*X oculta en toggle OFF*/
.toggle .fas.fa-times {
  display: none;
}

.social {
  position: absolute;
  bottom: 2rem;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

.social li {
  list-style: none;
}

.social li a {
  display: inline-block;
  color: #fff;
  margin-right: 1rem;
  transition: 0.5s;
}

.social li a:hover {
  transform: translateY(-1rem);
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu ul {
    position: relative;
    list-style-type: none;
}

.menu ul li a {
    text-decoration: none;
    font-size: 1.5rem;
    color:#111;
}

.menu ul li a:hover {
    color:rgba(168, 30, 34, 0.8);
}

@media (max-width: 798px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }

  .text h2 {
    font-size: 3rem;
  }

  .text h3 {
    font-size: 2rem;
  }
}
