@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins,sans-serif';
}
#video{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   opacity: 0.8;
   z-index: -1000;
   background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) );
   filter: brightness(50%);
}
.showcase{
    position: absolute;
    right: 0;
    width: 100% ;
    min-height: 100vh;
    display: flex;
    padding: 100px;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: white;
    z-index: 2;

}
.showcase header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.toggle{
    position: relative;
  width: 60px;
  height: 60px;
  background: url(https://i.ibb.co/HrfVRcx/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;

}
.toggle.active{
    background: url(https://i.ibb.co/rt3HybH/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center;
  cursor: pointer;

    
}
.text{
    position: relative;
    z-index: 10;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.5);
    mix-blend-mode: overlay;
}
.text h2{
    font-size: 5em;
    font-weight: 900;
    line-height: 1em;
    text-transform: uppercase;
}
.text p{
    font-size: 1.1em;
    margin: 20px 0px;
    font-weight: 500;
    max-width: 700px;
}
.text a{
    text-decoration: none;
    display: inline-block;
    background-color: white;
    color: black;
    /* border: solid; */
    padding: 5px;
    width: 140px;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-transform: uppercase;
    letter-spacing: 0.2s;
    transition: 0.2s;
}
.text a:hover{
    text-decoration: none;
    display: inline-block;
    background-color: rgb(218, 210, 210);
    color: black;
    /* border: solid; */
    padding: 5px;
    width: 140px;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
    letter-spacing: 0.6s;
} 

.social{
    position: absolute;
    bottom: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social li{
    text-decoration: none;
    list-style: none;
}
.social li a
{
  display: inline-block;
  margin-right: 20px;
  filter: invert(1);
  transform: scale(0.5);
  transition: 0.5s;
}
.social li a:hover
{
  transform: scale(0.5) translateY(-15px);
}
.menu
{
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu ul
{
  position: relative;
}
.menu ul li
{
  list-style: none;
  padding: 10px;
}
.menu ul li a
{
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover
{
  color: #03a9f4; 
}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 40px;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 2em;
  }
}
.showcase.active
{
  right: 300px;
  
}




