@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;
}
.showcase header
{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
} 
.logo a
{
  position: relative;
  cursor: pointer;
}

.logo a:hover
{
  position: absolute;
  cursor: pointer;
}
.showcase
{
  position: absolute;
  left: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items:flex-start ;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  left: 300px;
}

.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(119, 191, 222, 1.0);
  mix-blend-mode: overlay;
}
.btn 
{
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25); 
}
.text
{
  position: relative;
  margin-top: 130px;
  margin-bottom: 200px;
  z-index: 10;
}

.text h2
{
  font-size: 5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
  text-shadow: 1px 1px 10px black;
}
.text h3
{
  font-size: 4em;
  font-weight: 700;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
  text-shadow: 1px 1px 10px black;
}
.text p
{
  font-size: 1.1em;
  color: #fff;
  margin: 20px 0;
  font-weight: 400;
  max-width: 700px;
}
.text a
{
  position: relative;
  display: inline-block;
  font-size: .5em;
  background: rgba(150, 2, 2, 0.863);
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  padding: 10px 10px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 14px;
  color: #f8f5f5;
  letter-spacing: 2px;
  transition: 0.2s;
  padding-right: 10px ;
  padding-left: 20px;
  overflow: hidden;
}
.text a:hover
{
  padding-left: 10px;
  padding-right: 10px;
  color: gray;
}
.text a:after
{
  content: '';
    position: absolute;
    width: 20px;
    height: 100%;
    margin-top: -10px;
    z-index: .5;
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(-150px) skewX(30deg);
    transition: 0.75s ease-in-out;
}
.text a:hover:after
{
    transform: translateX(170px) skewX(30deg);
}

.social
{
  position: absolute;
  bottom: 100px;
  z-index: 1;
  display: inline-block;
  justify-content: space-between;
  align-items: baseline;
}
.social li
{
  list-style: none;
}
.social li a
{
  display:inline-block;
  margin-right: 0px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateX(-15px);
}

.menu
{
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover
{
  color: Red; 
}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
}

