/* =====[ GLOBAL STYLES ]======================================== */

html,body { min-height:100%;height: 100%;scroll-behavior: smooth;}
body { margin:0;background: #000;font-family: "Public Sans", sans-serif;color:#c2c2c2; font-size:16px; line-height: normal; font-weight: 400;}
div, p, span, h1, h2, h3, h4, h5, h6, img, ul, ol, dl, li, dt, dd, blockquote, pre, form, fieldset, label, a { margin:0; padding:0; border:0;}
img { vertical-align: middle;max-width: 100%; height: auto;}
img, a img { border:none;}
h1 {font-size:75px;}
h2 {font-size:60px;}
h3 {font-size:50px;}
h4 {font-size:40px;}
h5 {font-size:30px;}
h6{font-size:22px;}
h1, h2, h3, h4, h5, h6 { margin-bottom: 10px;color: #fff;font-weight: 700;}
ul li{list-style: none;}
p {padding:0;color:#c2c2c2;line-height: 26px;font-family: "Public Sans", sans-serif;font-size: 17px;margin-bottom: 15px;}
a { color:#ff5a00; text-decoration:none !important;outline: none;}
a:hover { color: #fff; text-decoration:underline;}
a.active{color: #fff !important;}
a:focus{outline: none;}
.clearfix:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
html .clearfix {height:1%;}
.clearfix {display:block;}
.clr {clear:both;}
p:empty{display: none;}
.center-block{float: none; margin:0 auto;}
::-moz-placeholder {color: #999 !important; opacity: 1; font-size: 15px;}
:-ms-input-placeholder {color: grey !important; opacity: 1;font-size: 15px;}
::-webkit-input-placeholder {color: #999 !important; opacity: 1;font-size: 15px;}

/* =====[ MAIN STYLES ]====================================== */
.container-fluid{
  padding-left: 50px;
  padding-right: 50px;
}
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.splash-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.splash-logo {
  width: 350px;
  opacity: 0;
  transform: translateY(100%);
  animation: riseUp 1.2s ease-out forwards;
  cursor: pointer;
}
@keyframes riseUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Split animation overlay */
.split-left, 
.split-right {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #fff;
  z-index: 9998;
  transition: transform 1s ease;
}

.split-left {
  left: 0;
  transform: translateX(0);
}

.split-right {
  right: 0;
  transform: translateX(0);
}

.split-left.animate {
  transform: translateX(-100%);
}
.split-right.animate {
  transform: translateX(100%);
}

/* Main content */
#main-content {
  opacity: 0;
  transition: opacity 2s ease;
}

#main-content.visible {
  opacity: 1;
}

header {
  padding: 15px 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header.sticky {
  background: #135da0;
}
.navbar-brand img{
  width: 300px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header.sticky .logo img {
  width: 100px;
}
.navbar{
  padding: 0;
}
.navbar-expand-md .navbar-nav .nav-link {
  color: #dbdbdb;
  font-size: 17px;
  padding: 12px 30px;
  font-weight: 400;
}
.navbar-expand-md .navbar-nav .nav-link:hover,
.navbar-expand-md .navbar-nav .nav-link:focus{
  color: #fff;
}
.navbar-expand-md .navbar-nav .nav-item:last-child .nav-link{
  background: #fff;
  border-radius: 30px;
  color: #000;
  margin-left: 15px;
}
.navbar-expand-md .navbar-nav .nav-item:last-child .nav-link:hover{
  background: #dbdbdb;
}
.navbar-expand-md .navbar-nav .nav-item:last-child .nav-link.active{
  color: #000 !important;
}
.animated-icon {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.animated-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.animated-icon span {
  background: #fff;
}
.animated-icon span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.animated-icon span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.animated-icon span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.animated-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 8px;
}
.animated-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.animated-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 8px;
}
.navbar-dark .navbar-toggler {
  border: 0;
  padding: 0;
  color: transparent;
}
.slider-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
  width: 300vw; /* 3 slides * 100vw */
}
.slide {
  min-width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.nav-thumbs {
  position: absolute;
  bottom: 20px;
  display: flex;
  z-index: 1000;
  width: 100%;
}
.nav-thumbs .container{
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.nav-thumbs img {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  cursor: pointer;
  border: 5px solid #444040;
  object-fit: cover;
}
.nav-thumbs img.active {
  border: 5px solid #fff;
}
.content-area {
  padding-top: 200px;
}
.content-area h1{
  position: relative;
  padding-left: 100px;
  margin-bottom: 0;
}
.content-area .page-title h1{
  padding-bottom: 80px;
  text-align: center;
  padding-left: 0;
}
.content-area h1:before{
  position: absolute;
  content: "";
  left: 0;
  width: 90px;
  height: 2px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7-spinner,
footer .form-group p br,
.wpcf7 form .wpcf7-response-output,
.content-area .page-title h1:before,
.page-template-contact .ft-contact-area{
  display: none;
}
.contact-block {
  padding-top: 50px;
}
.responsive-accordion{
  list-style-type: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.responsive-accordion li{
  border-bottom: 1px solid #808080;
  margin: 0;
  padding: 0;
}
.responsive-accordion li:last-child{
  margin-bottom: 0;
}
.responsive-accordion li .responsive-accordion-head{
  color: #fff;
  font-size: 34px;
  line-height: normal;
  padding: 25px 0 15px;
  position: relative;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.responsive-accordion-head span{
  font-size: 16px;
}
.responsive-accordion li .responsive-accordion-head i{
  position: absolute;
  right: 3px;
  top: 15px;
}
.responsive-accordion li .responsive-accordion-panel{
  border: 0;
  padding: 10px 0 50px;
  border-top: 1px solid #808080;
}
.responsive-accordion li .sub-menu li{
  border: 0;
}
.responsive-accordion li .sub-menu li a{
  color: #868686;
  font-size: 15px;
}
.ctct-box{
  padding-top: 30px;
}
.ctct-box .loc{
  display: flex;
  align-items: flex-start;
}
.ctct-box i{
  color: #545454;
  font-size: 35px;
}
.ctct-box span{
  font-size: 19px;
  padding-left: 5px;
  line-height: 26px;
  color: #fff;
}
.designation{
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
.lc-area{
  font-size: 22px;
  margin-top: 15px;
}
.founder-bx {
  margin-top: 50px;
}
.name {
  font-size: 22px;
  margin-top: 15px;
  padding-bottom: 15px;
  color: #fff;
}
.phone a {
  display: inline-block;
  font-size: 19px;
  margin-bottom: 5px;
  color: #c2c2c2;
}
.email a {
  color: #c2c2c2;
  font-size: 19px;
  text-decoration: underline !important;
}
.phone a:hover,
.email a:hover,
.parallax-text p{
  color: #fff;
}
footer{
  padding: 50px 0 80px;
}
.divider span{
  padding: 30px;
  display: inline-block;
  position: relative;
  z-index: 9999;
  background: #000;
}
.divider:before{
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}
.footer-title{
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}
.footer-block li a{
  color: #c2c2c2;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 16px;
  padding: 0;
}
.footer-block li a:hover{
  color: #fff;
}
footer p,
footer p a{
  font-size: 16px;
  color: #c2c2c2;
}
.footer-col p a,
.lower-footer li a:hover{
  text-decoration: underline !important;
}
.lower-footer li a{
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}
.lower-footer li:last-child{
  padding-left: 30px;
}
.copyright{
  font-size: 14px;
  color: #fff;
}
.lower-footer .col-md-6:last-child{
  text-align: right;
}
footer .form-group{
  width: 100%;
  background: #000;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  padding: 5px;
}
footer .form-control{
  background: none;
  height: 50px;
  border-radius: 0;
  border: 0;
  color: #fff !important;
}
footer .form-group p{
  margin-bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .form-control:focus{
  background: #000;
  border: 0;
  box-shadow: none;
}
.prime-btn{
  background: #fff;
  border-radius: 0;
  font-size: 16px;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 15px;
}
.prime-btn:hover{
  background: #c2c2c2;
}
footer .prime-btn{
  width: 150px;
}
.contact-link{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.contact-txt{
  font-size: 50px;
  color: #fff;
  font-weight: 600;
  padding-bottom: 40px;
}
.link-btn{
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}
.link-btn svg{
  width: 14px;
  margin-left: 5px;
  fill: #fff;
}
.link-btn:hover{
  color: #c2c2c2;
}
.link-btn:hover svg{
  fill: #c2c2c2;
}
.about-bx p,
.intro-txt p,
.parallax-text p{
  font-size: 20px;
  line-height: 30px;
  padding-top: 30px;
}
.about-bx span{
  display: block;
  padding: 30px 0 40px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 3px;
}
.about-bx li:first-child{
  margin-right: 30px;
}
.intro-area h1{
  font-size: 90px;
  line-height: 1;
}
.intro-area h1:before,
.parallax-bx h1:before{
  top: 50px;
}
.intro-txt,
.parallax-text {
  max-width: 600px;
  position: relative;
  left: 25%;
}
.past-listing{
  padding-top: 100px;
}
.type,
.hrs-time li{
  font-size: 15px;
  color: #c2c2c2;
}
.hrs-time li + li{
  padding-left: 12px;
  position: relative;
}
.hrs-time li + li:before{
  content: ".";
  position: relative;
  top: -3px;
  font-size: 15px;
  color: #c2c2c2;
  padding-right: 12px;
}
.position{
  text-transform: uppercase;
  font-size: 14px;
}
.person-name{
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.category li{
  border: 2px solid #747474;
  font-size: 15px;
  display: inline-block;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 30px;
}
.category li:first-child{
  margin-left: 0;
}
.wrk-lst-rw{
  border-bottom: 1px solid #535353;
  padding-bottom: 20px;
  padding-top: 20px;
}
.wpcf7-not-valid-tip{
  font-size: 15px;
}

/*Lighthouse page css here*/
body {
    overflow: inherit !important;
}
.lighthouse p{
  font-size: 19px;
}
.location img{
  margin-bottom: 40px;
}
.location-wrap,
.heading-wrap{
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.location-wrap {
  margin-bottom: 40px;
  margin-top: 10px;
}
.lh-heading {
  font-size: 30px;
  font-weight: 700;
}
.lh-status {
  color: #c2c2c2;
  font-size: 18px;
  font-weight: 600;
}
.postal{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.coordinates {
  color: #c2c2c2;
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  line-height: 20px;
}
.coordinates span,
.postal span{
  display: block;
} 
.playground h4 {
  font-size: 30px;
  margin-bottom: 15px;
  margin-top: 40px;
}
.playground .sb-text{
  color: #c2c2c2;
  font-size: 20px;
  font-weight: 700;
}
.studio-tab .item-image {
  height: 100%;
}
.studio-tab .dept {
  font-size: 20px;
  text-transform: inherit;
}
.item-by {
  overflow: hidden;
}
.studio-tab .item-image {
  height: 100%;
}
.item-image:hover {
  transform: scale(1);
}
.item-image {
  transform: scale(1.03);
  transition: transform .5s;
}
.item-image img {
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 1s;
  width: 100%;
}
.item-image img:hover {
  opacity: 1;
}
.item-image, #fullwindow .section {
  position: relative;
}
.pad0 {
  padding: 0;
}
.video-gallery .vid-caption {
  bottom: 70px;
  position: absolute;
  width: 100%;
}
.item-image .vid-caption {
  bottom: -120px;
  opacity: 0;
  transition: all 0.8s;
}
.item-image:hover .vid-caption {
  bottom: 70px;
  opacity: 1;
}
.dept, .hero-title, .director-name {
  animation: 0.85s 
  ease-in-out 1 normal both running fadeUp;
}
.dept {
  animation-delay: 0.9s;
  display: inline-block;
  font-size: 15px;
  letter-spacing: 1px;
  position: relative;
  text-transform: uppercase;
}
.studio-tab .dept {
  font-size: 20px;
  font-weight: 700;
  text-transform: inherit;
}
.dept:before, .dept:after {
  background: #fff;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}
.lgthouse .intro-txt{
  max-width: 800px;
}
.spc-tb{
  margin-top: 150px;
  margin-bottom: 80px;
}
.video-gallery .row {
  margin: 0;
} 
.dept:before {
  left: -35px;
}
.dept:after {
  right: -35px;
}
.page-id-382 .content-area {
  padding-top: 115px;
}
.page-id-382 .content-area .container{
  min-height: 100%;
  max-width: inherit;
}
.page-id-382 .content-area .container .col-sm-12{
  padding-top: 50px;
  width: 30%;
}
.pw-frm form{
  width: 30%;
  margin: auto;
  text-align: center;
}
.pw-frm .row{
  display: inherit;
}
.pw-frm p{
  padding:  10px 0;
}
.pw-frm input[type="password"]{
  background: #1c1c1c;
  padding: 10px;
  height: 55px;
  border: 1px solid #757474;
  color: #fff;
  font-size: 18px;
  width: 100%;
  margin-bottom: 20px;
}
.pw-frm input[type="submit"]{
  background: #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 17px;
  color: #000;
  border: 0;
  padding: 13px 30px;
  font-weight: 600;
}
.frm-element{
  padding: 25px 0 0;
}
.pw-frm input[type="submit"]:hover,
.pw-frm input[type="submit"]:focus{
  background: #dbdbdb;
}
.pw-frm input[type="password"]:focus{
  border: 1px solid #fff;
  box-shadow: none;
  outline: 0;
}
.page-id-382 .ft-contact-area{
  display: none;
}
.slate-wrapper {
  width: 100%;
  height: 100vh;
}
.slate-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.df-container .df-bg{
  background: none !important;
}


/* =====[ MEDIA QUERIES ]====================================== */
@media (min-width: 1500px) {
  .container{
    max-width: 1400px;
  }
}

@media only screen and (min-width: 992px) and (max-width : 1199px) {
  
}

@media only screen and (min-width: 768px) and (max-width : 991px) {
  
}

@media only screen and (min-width: 320px) and (max-width : 767px) {
  .navbar-brand img{
    width: 230px;
  }
  .navbar .container{
    width: 100%;
    max-width: inherit;
    padding: 0 20px;
  }
  .navbar-collapse {
    background: #444040;
    margin-top: 10px;
    border-radius: 6px;
  }
  .navbar-nav {
    padding: 10px;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding: 12px 10px;
    font-size: 17px;
    color: #fff;
    line-height: 100%;
    font-weight: 600;
  }
  .navbar-expand-md .navbar-nav .nav-link:hover,
  .navbar-expand-md .navbar-nav .nav-link:focus,
  .navbar-expand-md .navbar-nav .nav-link.active{
    background: #000;
    border-radius: 6px;
  }
  .navbar-expand-md .navbar-nav .nav-item:last-child .nav-link{
    margin: 0;
    padding: 12px 10px;
    background: none;
    color: #fff;
  }
  .navbar-expand-md .navbar-nav .nav-item:last-child .nav-link:hover{
    background: #000;
    border-radius: 6px;
  }
  .nav-thumbs .container{
    justify-content: center;
  }
}
@media screen and (max-width: 575px) {
  .navbar-brand img {
    width: 188px;
  }
  .nav-thumbs img {
    width: 80px;
    height: 80px;
    border: 3px solid #444040;
  }
  .nav-thumbs img.active {
    border: 3px solid #fff;
  }
  .divider span {
    padding: 30px 15px;
  }
  footer .container-fluid{
    padding-left: 15px;
    padding-right: 15px;
  }
  footer .form-group{
    border: 0;
    padding: 0;
    display: block;
  }
  footer .form-group p{
    display: block;
  }
  footer .form-control{
    border: 2px solid #fff;
  }
  footer .prime-btn {
    width: 100%;
    margin-top: 10px;
  }
  footer .form-control:focus{
    border: 2px solid #fff;
  }
  .lower-footer .col-md-6:last-child{
    text-align: left;
  }
  .pw-frm h4{
    font-size: 32px;
  }
  .page-id-382 .content-area {
    min-height: 100%;
    height: 100vh;
  }
}

body.future{
  overflow-x: hidden;
}
.video-section {
  position: relative;
  height: 100vh;
  display: flex;
}
.text-panel {
  width: 60vw;
  padding: 6rem 5rem;
  position: relative;
/*  background: #161616;*/
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.text-block {
  position: absolute;
  opacity: 0;
  max-width: 100%;
  transition: opacity 0.4s ease;
  padding-left: 264px;
}

.text-block.active {
  opacity: 1;
  position: relative;
}
.role,
.type-label{
  font-size: 15px;
  color: #c2c2c2;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.text-block h3{
  font-size: 70px;
  color: #fff;
  margin: 0 0 20px;
}
.persn{
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  margin: 8px 0 25px;
}
.genre span{
  display: inline-block;
  border-radius: 30px;
  border: 2px solid #747474;
  color: #c2c2c2;
  padding: 12px 20px;
  margin: 0 5px;
}
.genre span:first-child{
  margin-left: 0;
}
.video-track {
  position: absolute;
  top: 50%;
  left: 35vw;
  transform: translateY(-50%);
  display: flex;
  height: 60vh;
  z-index: 10;
}
.video-item {
  flex: 0 0 106vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-item video {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}




.parallax-bx{
  width: 100vw;
  height: 1080px;
  background: url(../images/parallax-img.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
.parallax-bx .container{
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}
.parallax-wrp{
  width: 100%;
}
.parallax-wrp h1{
  font-size: 6rem;
  line-height: 1;
  font-weight: 800;
}
#parallaxHeading,
#parallaxText {
  transition: transform 0.3s ease-out;
  will-change: transform;
}


/* Future CSS */

body.future{
  overflow-x: hidden;
}
/* Second Section - Horizontal Scroll */
.video-scroll-wrapper {
  background: #000;
  overflow: hidden;
}
.video-inner {
  display: flex;
  position: relative;
  height: 100vh;
}
.video-info {
  width: 30vw;
  padding: 6rem 4rem;
  position: absolute;
  left: 10vw;
  top: 50%;
  transform: translateY(-50%);
  align-self: flex-start;
  /* background: #111; */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*z-index: 10;*/
}
.video-scroll {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  position: relative;
  will-change: transform;
}

.video-scroll video {
  width: 80vw;
  height: 70vh;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0 35vw; /* Equal left and right spacing */
  border-radius: 12px;
}
/*.video-scroll video.half-out {
  margin-left: 50vw;
}*/
.role,
.type-label {
  font-size: 15px;
  color: #c2c2c2;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.persn {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  margin: 8px 0 25px;
}
.genre span {
  display: inline-block;
  border-radius: 30px;
  border: 2px solid #747474;
  color: #c2c2c2;
  padding: 12px 20px;
  margin: 0 5px;
}
.genre span:first-child {
  margin-left: 0;
}
.video-info h3 {
  font-size: 70px;
  color: #fff;
  margin: 0 0 20px;
}
.info-item {
  opacity: 0;
  position: absolute; /* overlap in same container */
  transition: opacity 0.3s ease;
  pointer-events: none; /* disable interaction on hidden */
  width: 100%;
}
.info-item.active {
  opacity: 1;
  position: relative; /* active item flows normally */
  pointer-events: auto;
}

/* Spacer to allow scroll space */
.scroll-spacer {
  height: 300vh;
}



@media screen and (max-width: 1350px) {
  .video-info {
    padding: 6rem 0rem;
  }
}


@media screen and (max-width: 1200px) {
  .intro-area h1 {
    font-size: 60px;
  }
  .contact-txt {
    font-size: 40px;
  }
  h5 {
    font-size: 25px;
  }
  .footer-col p br {
    display: none;
  }
  .video-info {
    padding: 6rem 0rem;
  }
  .parallax-wrp h1 {
    font-size: 4rem;
  }
  .intro-txt, .parallax-text {
    max-width: 600px;
  }
  .parallax-bx {
    height: 720px;
  }
}
@media screen and (max-width: 991px) {
    .playground {
  margin-bottom: 40px;
}
.row > [class*="col-"]:nth-last-child(-n + 1) .playground {
  margin-bottom: 0;
}
.lh-heading,
.playground h4 {
  font-size: 25px;
}
.postal {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
}
    
    
  .container{
    max-width: 900px;
  }
  .intro-txt, .parallax-text {
    max-width: 540px;
  } 
 .intro-area h1 {
   font-size: 50px;
   padding-right: 20%;
   line-height: 1;
  }
  h5 {
    font-size: 25px;
  }
  .contact-txt {
    font-size: 35px;
  }
  .intro-area h1 br {
    display: none;
  }
  .footer-col p br {
    display: none;
  }
  .poster img {
    width: 100%;
  }
  .other-logos{
    margin-bottom: 20px;
  }
  .footer-block:first-child {
    padding-right: 15px;
  } 
  .parallax-wrp h1 {
    font-size: 4rem;
}  
}
@media screen and (max-width: 767px) {
  h3.spc-tb {
    font-size: 35px;
    margin-top: 50px;
    margin-bottom: 80px;
  }
  .container{
      max-width: 100%;
  }
  .page-id-382 .content-area .container{
    padding-top: 20px;
  } 
  .intro-area h1:before,
  .parallax-bx h1:before {
    top: 0;
  }
  .intro-area h1 {
    font-size: 50px;
    padding-right: 0;
  }  
  .content-area h1 {
    font-size: 40px;
    padding-left: 0;
    padding-top: 20px;
  } 
  .intro-txt,
  .parallax-text {
    max-width: 100%;
    left: 0;
  }
  .contact-txt {
    font-size: 30px;
  }
  .contact-link {
    justify-content: flex-start;
    margin-top: 10px;
  }
  .project-info .mb-4 {
    margin-bottom: 1rem !important;
  }
  .project-info .mt-4 {
    margin-top: 1rem !important;
  }
  .content-area h1:before {
    top: 0;
  }
  .abt-img .col-sm-12 {
    width: 50%;
  }
  .responsive-accordion li .responsive-accordion-head {
    font-size: 25px;
    padding: 15px 0;
  }

/* Future */
 .video-scroll video{
    height: auto;
  }
  .video-info {
    padding: 2rem 1rem;
    left: 5vw;
    width: 60vw;
  }
  .video-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .persn {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  .genre span {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .role,
  .type-label {
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 575px) {
  .video-info h3 {
    font-size: 1rem;
  } 
  .persn {
    font-size: 0.8rem;
  }
  .project-info {
    margin-top: 15px;
  }
  .wrk-lst-rw {
    text-align: center;
  }
  .contact-link,
  .project-info ul{
    justify-content: center;
  }
  .contact-link {
    margin-bottom: 15px;
  }
  .abt-img .col-sm-12 {
    width: 100%;
  }
  .abt-img .col-sm-12 ~ .col-sm-12 {
    margin-top: 15px;
  }
  .responsive-accordion li .responsive-accordion-head {
    font-size: 20px;
  }
  .content-area h1 {
    font-size: 35px;
  }
  .genre span {
    margin-bottom: 10px;
  }
}