@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.main-banner img {
    width: 100%;
    display: block;
}
.main-banner  {
    height:89vh;
}
/* video background */
#background-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.main-footer,.sliding-tagline-row {
    display: none;
}
.main-banner .banner-text {
    text-align:center;
    color:#fff;
    line-height:1em;
        display:flex;
        flex-direction:column;
    justify-content:center;
    align-items:center;
    text-shadow:1px 1px 1px rgba(0,0,0,0.5);
}
.main-banner .container {
    display:flex;
            flex-direction:column;
    justify-content:center;
    align-items:center;
    height:100%;
}
.main-banner .banner-text p {
    margin:0;
    margin-bottom:1rem;
    opacity:0;
}
.main-banner .banner-text p:nth-child(2) {
    font-size:3rem;
}
.banner-text.animate p:nth-child(1) {
	-webkit-animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.banner-text.animate p:nth-child(2) {
	-webkit-animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.5s both;
    animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.5s both;
}
.main-banner .main-btn {
    opacity:0;
}
.main-banner .main-btn.animate {
    	-webkit-animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 2.5s both;
    animation: fade-in 2s cubic-bezier(0.390, 0.575, 0.565, 1.000) 2.5s both;
}
.contact-us-row {
    opacity:0;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  max-width:1400px;
   width: 90%;
    margin: 0 auto;
    left: 0;
    right: 0;
    visibility:hidden;
    transition:all ease .3s;
}
.contact-us-row.active {
    opacity:1;
    visibility:visible;
}

#play_again:hover svg {
    transform:rotate(180deg)
}
#play_again svg {
    transition:.3s all ease;
} 
.contact-us-row .close-btn {
    display:block;
    position:absolute;
right: 2%;
    top: 5%;
    background:none;
    border:none;
    text-decoration:underline;
    color:#008CFF;
    font-weight:600;
}
@media screen and (max-width: 991px){
    .contact-us-row {
      position:fixed;
      top:auto;
      transform: translate(0%, 100%) !important;
      max-width:100%;
       width: auto;
        visibility:visible;
    }
   .contact-us-row.active {
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: 99;
        transition: all ease .3s;
        transform: translate(0%, 0%)!important;
height: 100vh;
        overflow: scroll;
        border-radius:0;
    }   
    .main-banner .banner-text p:nth-child(2) {
        font-size:1.5rem;
    }
    .main-footer{
        display:block;
        padding:0;
    }
    .main-footer .top,.main-footer .bottom {
        display:none;
    }
     body.contact-mobile-active .contact-us-section {
         display:block!important;
     }
         .contact-us-row {
        display:block;
    }
}
@media screen and (max-width: 530px){
}