﻿html,
body,
h1 {
  margin: 0;
  padding: 0;
}
.door-container {
  width: 100%;
  height: 100%;
  
  position: fixed;
  overflow: hidden;
  z-index: 999;
}
.door-container .door {
  position: absolute;
  width: 100%;
  height: 100%;
z-index: 2;

}
.door-container .door #bgLeft {
  float: left;
  width: 50%;
  height: 100%;
}
.door-container .door #bgRight {
  float: right;
  width: 50%;
  height: 100%;
}
.door-container .light-box {
  position: absolute;
  width: 100%;
  height: 100%;


z-index: 2;
 

}
.door-container .light-box #light {
  width: 100%;
  height: 77%;
  display: none;

 opacity: 0.7;
   


}
.text-box{
background-color: rgba(255,255,255,0.7);
z-index: 1;

}

.door-container .open {
  animation-delay: 0.2s;
  animation-duration: 3s;
  animation-fill-mode: both;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.door-container .fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.door-container .fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes lightClose {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.door-container .lightClose {
  animation-name: lightClose;
}
.door-container .open-light {
  animation-delay: 0.2s;
  animation-duration: 1s;
  animation-fill-mode: both;
}



@media screen and (max-width: 1440px){
   .text-box {
                padding-top:30px;   
            } 
}