*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #fff;
}
a,a:hover{color: #fff;}
body{overflow-x: hidden;}
header
{
  position: absolute;
  width: 90%;
  left: 5%;
  top:40px;
  z-index: 1000;
  display:flex;
  justify-content: space-between;
  align-items: center;
}

.showcase
{
  position: absolute;
  width: 100%;
  min-height: 100vh;
  padding: 100px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  transition: 0.5s;
  z-index: 2;
}
.showcase.active
{
  right: 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: #0392d3;
  mix-blend-mode: overlay;
}
.text
{
  position: relative;
  z-index: 10;
  left: 5%;
}
.text h3
{
  font-size: 4em;
  font-weight:normal;
  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:block;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top: 50px;
  color: #fff;
  transition: 0.2s;
  border: 1px solid #fff;
  height: 46px;
  line-height: 46px;
  border-radius: 23px;  
  text-align: center;
  width: 172px;
  position: relative;
  overflow: hidden;
}
.text a span{background: url(../images/more.svg) no-repeat right center;background-size: auto 20px;padding:0 25px 0 5px;display: inline-block;position: relative;z-index: 2;}
.text a .bgsqr1,.text a .bgsqr2{background:#09348b;position: absolute;top: 50%; top:0\9;content: '';width: 20px;height: 20px; -webkit-border-radius: 50%;border-radius: 50%;-webkit-transition: all 0.6s; transition: all 0.6s; opacity:0.5;}
.text a .bgsqr1{left: -20px;-webkit-transform: translate(-50%,-50%);transform: translate(-50%,-50%);}
.text a .bgsqr2{right: -20px;-webkit-transform: translate(50%,-50%);transform: translate(50%,-50%);}
.text a:hover .bgsqr1{ -webkit-animation:criss-cross-left .8s both;animation:criss-cross-left .8s both;width:375px\9;height:375px\9;  opacity:1;}
.text a:hover .bgsqr2{ -webkit-animation:criss-cross-right .8s both;animation:criss-cross-right .8s both;width:375px\9;height:375px\9;opacity:1;}
.text a:hover{border:1px solid #09348b;}
@-webkit-keyframes criss-cross-left {
 0% {
  left:-20px
 }
 50% {
  left:50%;width:20px;height:20px;
 }
 100% {
  left:50%;width:375px;height:375px;
 }
}
@keyframes criss-cross-left {
 0% {
  left:-20px
 }
 50% {
  left:50%; width:20px;height:20px;
 }
 100% {
  left:50%;width:375px;height:375px;
 }
}
@-webkit-keyframes criss-cross-right {
 0% {
  right:-20px
 }
 50% {
  right:50%;width:20px;height:20px;
 }
 100% {
  right:50%;width:375px;height:375px;
 }
}
@keyframes criss-cross-right {
 0% {
  right:-20px
 }
 50% {
  right:50%;width:20px;height:20px;
 }
 100% {
  right:50%;width:375px;height:375px;
 }
}
.social
{
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social li
{
  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);
}

@media (max-width: 991px)
{
  .showcase,
  .showcase header
  {
    padding: 20px 4%;
    left: 0;
  }
  .text h2
  {
    font-size: 3em;
  }
  .text h3
  {
    font-size: 1.5em;
  }
  .showcase .text{left: 0;}
}