@import url("https://fonts.googleapis.com/css?family=Cagliostro");
@font-face {
  font-family: "cabin-condensed-bold";
  src: url("../fonts/Cabin_Condensed/CabinCondensed-Bold.ttf");
}
@font-face {
  font-family: "andale-mono";
  src: url("fonts/AndaleMono.ttf");
}
@font-face {
  font-family: "oswald-regular";
  src: url("fonts/Oswald/Oswald-Regular.ttf");
}
@font-face {
  font-family: "gothic";
  src: url("../fonts/gothic.ttf");
}
@font-face {
  font-family: "California";
  src: url("../fonts/California.ttf");
}
@font-face {
  font-family: "gotham-bold";
  src: url("../fonts/Gotham Bold.otf");
}
.rotating {
  -webkit-animation: rotating 3s linear infinite;
  -moz-animation: rotating 3s linear infinite;
  -ms-animation: rotating 3s linear infinite;
  -o-animation: rotating 3s linear infinite;
  animation: rotating 3s linear infinite;
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.animate-arrow {
  animation-name: pulse;
  animation-duration: 3s;
  animation-timing-function: initial;
  animation-delay: initial;
  animation-iteration-count: infinite;
  animation-direction: initial;
  animation-fill-mode: initial;
  animation-play-state: initial;
  transition: opacity 0.27s ease;
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -15px);
    transform: translate(0, -15px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
/*

  Mixins
  Author - Andy Crone | @andycrone_
  + Popular mixins including vendor prefixes for cross-browser support

*/
/*web series list.php*/
.bt-wslist {
  margin-top: -100px;
  position: relative;
  /*z-index: -1;*/
}

.bt-wslist .black-div {
  background: #000;
  height: 450px;
}

.bt-wslist .white-div {
  background: #fff;
  height: 450px;
}

.bt-wslist .bt-wslist-video {
  position: absolute;
  height: 394px;
  width: 700px;
  background: red;
  right: 0;
  top: 30%;
}

.bt-wslist-video .wslist-video {
  height: 100%;
}

.bt-wslist .black-div span {
  font-family: "gothic";
  font-size: 56px;
  font-weight: 400;
  position: absolute;
  top: 40%;
  left: 12%;
  z-index: 1;
}

.bt-wslist .white-div a {
  font-family: "gothic";
  font-size: 36px;
  font-weight: 400;
  position: absolute;
  top: 53%;
  left: 2%;
  z-index: 1;
  color: #000;
  text-decoration: none;
}

body {
  background: #fff;
  color: #414141;
}
body.menu-open {
  overflow: hidden;
}
body a {
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}

.row-no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutter [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.small-gradient-line {
  position: relative;
  display: inline-block;
}

.small-gradient-line:before {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 55px;
  content: "";
  display: block;
  background-image: linear-gradient(270deg, #000, rgba(69, 255, 230, 0));
}

.custom-youtube-video-player {
  position: relative;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}
.custom-youtube-video-player .video-background {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.custom-youtube-video-player .video-background iframe {
  position: absolute;
  top: -25px;
  width: 100%;
  height: 130%;
  pointer-events: none;
  display: block;
}
.custom-youtube-video-player .video-controls {
  position: absolute;
  top: 50%;
  z-index: 2;
  opacity: 0.5;
  left: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
}
.custom-youtube-video-player .video-controls.started {
  opacity: 1;
}
.custom-youtube-video-player .video-controls .icon img {
  width: 50px;
}
.custom-youtube-video-player .video-controls .icon.play-video, .custom-youtube-video-player .video-controls .icon.pause-video {
  display: none;
}
.custom-youtube-video-player .video-controls.started .icon.play-video {
  display: inline-block;
}
.custom-youtube-video-player .video-controls.started .icon.pause-video, .custom-youtube-video-player .video-controls.started .icon.loading-video {
  display: none;
}
.custom-youtube-video-player .video-controls.playing .icon.play-video {
  display: none;
}
.custom-youtube-video-player .video-controls.playing .icon.pause-video {
  display: inline-block;
}
.custom-youtube-video-player .play-video-icon {
  display: none;
  z-index: 2;
  top: 51%;
  right: 12px;
  text-align: center;
  width: 100%;
}
.custom-youtube-video-player .play-video-icon img {
  width: 50px;
}

@media (max-width: 768px) {
  /*video section*/
  .custom-youtube-video-player {
    height: 200px;
    background-position: center;
  }
  .custom-youtube-video-player .video-controls .loading-video {
    display: none;
  }
  .custom-youtube-video-player .video-controls .play-video-icon {
    display: block;
  }
}
.home-page .arrow-down {
  position: fixed;
  right: 40px;
  bottom: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 10;
}
.home-page .arrow-down img {
  width: 100%;
}
.home-page .home-main-slider img {
  width: 100%;
}
.home-page .home-main-slider .mobile-slider {
  display: none;
}
.home-page .home-about-content {
  margin-bottom: 0 !important;
}
.home-page .about-section .about-content {
  margin-bottom: 70px;
}
.home-page .about-section .about-content h1 {
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.6em;
  font-family: California;
  color: #1B1B1B;
  font-size: 47px;
  letter-spacing: 6px;
  font-family: gothic;
  line-height: 1.2em;
  font-size: 35px;
  text-transform: capitalize;
}
.home-page .about-section .about-content p {
  font-size: 18px;
  margin-left: 0;
  line-height: 2em;
  font-family: sans;
  color: #2c2c2c;
}
.home-page .about-section a {
  outline: none;
}
.home-page .about-section .bt-col-left {
  margin-top: 70px;
}
.home-page .about-section .bt-col-right {
  margin-top: 155px;
}
.home-page .triangle-button {
  width: 171px;
  height: 196px;
  margin: 0 auto;
  display: block;
  background-image: url("../images/layout/triangle-black.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  outline: none;
  transform: scale(1);
  transition: transform 0.2s ease-in;
}
.home-page .triangle-button .icon {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
}
.home-page .triangle-button .icon-container {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-page .triangle-button .layer1, .home-page .triangle-button .layer2 {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000;
}
.home-page .triangle-button .layer2 {
  background: #000;
  background: -webkit-linear-gradient(to right, #000, #e30b0b);
  background: linear-gradient(to right, #000, #e30b0b);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in;
}
.home-page .triangle-button .icon-handwritten-underline {
  fill: #575555;
  position: absolute;
  top: 119px;
  left: 25px;
  z-index: 100;
  width: 89px;
}
.home-page .triangle-button:hover {
  transform: scale(1.2);
}
.home-page .triangle-button:hover .layer2 {
  transform: translateX(0);
}
.home-page .triangle-button:hover span {
  color: #000;
}
.home-page .triangle-button:hover .icon-handwritten-underline {
  fill: #232323;
}
.home-page .triangle-button span {
  display: inline-block;
  margin-top: 84px;
  font-weight: bold;
  text-align: left;
  z-index: 100;
  color: #575555;
  position: absolute;
  left: 17px;
  font-family: California;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.home-page .social-section {
  height: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.home-page .social-section .bg-icon {
  font-size: 130px;
  position: absolute;
  right: 27px;
  bottom: 0;
  opacity: 0.1;
}
.home-page .social-section .social-container {
  height: 150px;
}
.home-page .social-section .social-container.facebook {
  background-color: #3a589e;
}
.home-page .social-section .social-container.twitter {
  background-color: #429cd6;
}
.home-page .social-section .social-container.instagram {
  background: linear-gradient(to right, #fb3958, #7039c8);
}
.home-page .social-section .social-container.youtube {
  background-color: #cd2029;
}
.home-page .social-section .social-container .heading {
  padding: 30px 80px;
  color: #fff;
  letter-spacing: 2px;
  font-family: gotham-bold;
}
.home-page .social-section .social-container .heading h4 {
  text-transform: uppercase;
  font-size: 15px;
}
.home-page .social-section .social-container .heading h5 {
  color: #fff;
  font-size: 35px;
}

@media (max-width: 768px) {
  .home-page .home-main-slider .desktop-slider {
    display: none;
  }
  .home-page .home-main-slider .mobile-slider {
    display: block;
  }
}
.contact-page {
  display: block;
}
.contact-page .contact-section {
  background-image: url("../images/c.jpg");
  background-repeat: no-repeat;
  background-size: 80%;
  width: 100%;
}
.contact-page .contact-section .contact-upper {
  text-align: center;
  margin-top: 130px;
}
.contact-page .contact-section .contact-upper .main-heading {
  font-size: 35px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #000;
  font-family: California;
  font-family: gothic;
  line-height: 1.2em;
  font-size: 53px;
  text-transform: capitalize;
}
.contact-page .contact-section .contact-upper .subheading {
  font-weight: bold;
  margin-bottom: 25px;
  margin-top: 25px;
  font-size: 18px;
  color: #404040;
  line-height: 25px;
  letter-spacing: 1px;
}
.contact-page .contact-section .partner_form {
  margin-bottom: 100px;
}
.contact-page .contact-section .partner_form legend {
  border: 0 none;
  padding-top: 25px;
  padding-bottom: 25px;
  text-align: center;
}
.contact-page .contact-section .partner_form legend h1 {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
}
.contact-page .contact-section .partner_form form input[type=text],
.contact-page .contact-section .partner_form form input[type=password],
.contact-page .contact-section .partner_form form input[type=email],
.contact-page .contact-section .partner_form form textarea.form-control {
  border: 0 none;
  padding: 9px 0;
  border-bottom: 1px dotted #555;
  background: transparent;
  border-radius: 0;
  color: #fff;
  height: auto;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 0 0 transparent;
  width: 100%;
}
.contact-page .contact-section .partner_form form input[type=text]:focus,
.contact-page .contact-section .partner_form form input[type=password]:focus,
.contact-page .contact-section .partner_form form input[type=email]:focus,
.contact-page .contact-section .partner_form form textarea.form-control:focus {
  box-shadow: 0 0 0 0 transparent;
  border-bottom: 1px solid #F5EF2B;
  color: #F5EF2B;
}
.contact-page .contact-section .partner_form form button[type=submit],
.contact-page .contact-section .partner_form form input[type=submit] {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 150px;
  font-size: 15px;
  background: transparent;
  font-family: "Karla", Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  border-radius: 0;
  border: 2px solid #F5EF2B;
  background: #F5EF2B;
  padding: 12px 12px;
  margin: 0 auto;
  display: block;
}
.contact-page .contact-section .partner_form form button[type=submit]:hover,
.contact-page .contact-section .partner_form form input[type=submit]:hover {
  color: #F5EF2B;
  background: transparent;
}
.contact-page .contact-section .map-container {
  margin: 0;
  padding: 0 10px;
  margin-bottom: 100px;
}
.contact-page .contact-section #map {
  height: 385px;
  max-width: 100%;
}
.contact-page .contact-section .custom-contact-page form {
  margin: 40px auto !important;
}
.contact-page .contact-section .custom-contact-page .field {
  display: table;
}
.contact-page .contact-section .custom-contact-page .captcha {
  margin-top: 30px;
}
.contact-page .contact-section .custom-contact-page label {
  display: table-header-group;
  transform: translateY(40px);
  transition: transform 0.2s ease-in;
  font-size: 15px;
  color: #818181;
  cursor: pointer;
  text-align: left;
}
.contact-page .contact-section .custom-contact-page input, .contact-page .contact-section .custom-contact-page textarea {
  display: table-row-group;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid #b1b1b1 !important;
  outline: none;
}
.contact-page .contact-section .custom-contact-page .field.active label {
  color: #fff;
  transform: translateY(20px);
}
.contact-page .contact-section .custom-contact-page .btn-send {
  font-family: "josefinsans-bold";
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  color: #F5EF2B;
  margin: 50px 0 auto;
  display: block;
  padding: 10px 40px;
  border-radius: 0;
  position: relative;
  background: transparent;
  border: 1px solid #F5EF2B;
  z-index: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.contact-page .contact-section .custom-contact-page .btn-send:hover {
  color: #000;
}
.contact-page .contact-section .custom-contact-page .btn-send:hover:after {
  width: 100%;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.contact-page .contact-section .custom-contact-page .btn-send:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #F5EF2B;
}
.contact-page .contact-section .custom-contact-page .message-status {
  display: none;
  font-size: 35px;
  color: #B42722;
  text-align: center;
  margin-bottom: 45px;
}
.contact-page .contact-section .custom-contact-page .contact_form input, .contact-page .contact-section .custom-contact-page .contact_form textarea {
  padding: 10px 0px;
  border: 1px solid #414040;
  width: 100%;
  margin-top: 9px;
  border-top: none;
  background: transparent;
}

/*contact form*/
.form-section {
  position: fixed;
  top: 0;
  right: 0;
  width: 35%;
  background: #fff;
  height: 100vh;
  padding-top: 85px;
  text-align: center;
  transform: translateX(100%);
  transition: transform 1s;
  z-index: 99;
}
.form-section .container {
  width: 100%;
  position: relative;
}
.form-section .container .contact-button {
  position: absolute;
  left: -7.55%;
  top: 18%;
  background: #d5d5d5;
  color: #000;
  border: none;
  border-radius: 0;
}
.form-section .container .contact-button span {
  display: block;
  transform: rotate(90deg);
  font-family: roboto-regular;
  font-weight: bold;
  line-height: 17px;
  font-size: 18px;
  text-transform: uppercase;
}
.form-section .container .form-container .partner_form {
  width: 75%;
  margin: auto;
}
.form-section .container .form-container .partner_form h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  position: relative;
}
.form-section .container .form-container .partner_form h1:after {
  width: 232px;
  height: 5px;
  content: "";
  background: #FFE01C;
  position: absolute;
  left: 0;
  bottom: -8px;
  right: 0;
  margin: 0 auto;
}
.form-section .container .form-container .partner_form h1 p {
  font-size: 18px;
}
.form-section .container .form-container .partner_form .form-group {
  position: relative;
  margin-top: 30px;
}
.form-section .container .form-container .partner_form .form-group input {
  border-radius: 0;
  border: 1px solid #333;
}
.form-section .container .form-container .partner_form .form-group textarea {
  border-radius: 0;
  border: 1px solid #333;
}
.form-section .container .form-container .partner_form .partner_send_button {
  background: #333333;
  border: 2px black solid;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0;
  width: 151px;
  transition: all 0.6s;
  margin-top: 10px;
}
.form-section .container .form-container .partner_form .partner_send_button:hover {
  background: #fff;
  color: #333333;
}
.form-section.open {
  transform: translateX(0%);
}
.form-section .close-icon2 {
  right: 25px;
  width: 27px;
  height: 27px;
  position: absolute;
  cursor: pointer;
  top: 20px;
  z-index: 10;
  display: block;
}
.form-section .close-icon2 span {
  display: block;
  width: 100%;
  opacity: 1;
  height: 3px;
  background: #333;
  position: relative;
}
.form-section .close-icon2 span:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}
.form-section .close-icon2 span:nth-child(2) {
  top: 16px;
  transform: rotate(-45deg);
}

.custom-col-contact {
  margin-bottom: 100px;
}

.address-container {
  padding-top: 100px;
  padding-bottom: 100px;
}
.address-container .row .address {
  text-align: center;
}
.address-container .row .address p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  padding-bottom: 30px;
}
.address-container .row .address .marker {
  font-size: 40px !important;
  margin-bottom: 10px;
}
.address-container h3 {
  text-align: center;
}
.address-container h4 {
  text-align: center;
  margin-bottom: 50px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.basicBox {
  width: 160px;
  height: 50px;
  margin-top: 30px;
  color: #171717;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 55px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
}
.basicBox svg {
  position: absolute;
  top: 0;
  left: 0;
}
.basicBox svg rect {
  fill: none;
  stroke: #171717;
  stroke-width: 5;
  stroke-dasharray: 400, 0;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
}
.basicBox:hover svg rect {
  stroke: #171717;
  stroke-width: 5;
  stroke-dasharray: 40, 300;
  stroke-dashoffset: 69;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -ms-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
}

.navbar {
  position: absolute;
  top: 0;
  z-index: 10;
  left: 0;
  right: 0;
  margin: 0;
  min-height: 90px;
  border: 0;
}
.navbar .navbar-wrapper {
  margin-top: 25px;
}
.navbar .navbar-wrapper .logo {
  width: 175px;
}
.navbar .navbar-wrapper .logo img {
  width: 100%;
}
.navbar .navbar-wrapper .menu {
  position: absolute;
  right: 5%;
}
.navbar .navbar-wrapper .menu a {
  font-family: "cabin-condensed-bold";
  color: #000;
  font-size: 22px;
  cursor: pointer;
  transition: color 0.5s ease;
  display: block;
}
.navbar .navbar-wrapper .menu a:hover {
  color: #999999;
}
.navbar .navbar-wrapper .menu-list {
  width: 40%;
  /*background: #fff;*/
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  display: table;
  height: 100vh;
  z-index: 10;
  background: url("../images/poster-1.jpg");
  background-size: cover;
  background-position: 0;
  background-repeat: no-repeat;
}
.navbar .navbar-wrapper .menu-list .background-image {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  z-index: -1;
}
.navbar .navbar-wrapper .menu-list .background-image img {
  height: 100%;
  width: 100%;
}
.navbar .navbar-wrapper .menu-list ul {
  list-style-type: none;
  display: table-cell;
  vertical-align: middle;
}
.navbar .navbar-wrapper .menu-list ul li {
  margin-bottom: 30px;
  position: relative;
}
.navbar .navbar-wrapper .menu-list ul li a {
  font-size: 25px;
  font-family: gotham-bold;
  color: #333;
  display: inline-block;
  padding: 0 10px;
}
.navbar .navbar-wrapper .menu-list ul li:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  width: 0;
  height: 3px;
  background-color: #000;
  z-index: -1;
  transition: width 0.5s ease;
}
.navbar .navbar-wrapper .menu-list ul li:hover:after {
  width: 120%;
}
.navbar .navbar-wrapper .menu-list.open {
  transform: translateX(0%);
}
.navbar .navbar-wrapper .social-links {
  margin-top: 80px;
}

.page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 900000;
  top: 0;
  left: 0;
  -webkit-transform: translatex(0);
  transform: translatex(0);
  opacity: 1;
  overflow: hidden;
}
.page-loader .page-loader-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg.jpg");
  transform: translateX(0%);
  transition: transform 0.5s ease-in-out;
  overflow: hidden;
}
.page-loader .page-loader-bg.loaded {
  transform: translateX(-100%);
}
.page-loader .page-loader-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 200px;
  height: 200px;
  opacity: 1;
  text-align: center;
  transition: opacity 0.2s ease-in;
  overflow: hidden;
  /*         @keyframes camera {
                  from {margin-top: -50%; opacity:0;}
                  to {margin-top: 0%; opacity:1;}
           }*/
}
.page-loader .page-loader-icon .camera {
  display: none;
  height: 100px;
  position: absolute;
  top: 60px;
  left: 75px;
  z-index: 1;
  animation-name: camera;
  animation-duration: 4s;
}
.page-loader .page-loader-icon .camera #camera-body,
.page-loader .page-loader-icon .camera #reel-1,
.page-loader .page-loader-icon .camera #reel-2 {
  fill: #fff;
  fill-opacity: 0.95;
  stroke: none;
}
.page-loader .page-loader-baseline {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  z-index: 50;
  text-align: center;
  color: #fff;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: bold;
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
.page-loader .page-loader-baseline .splitter-line {
  display: block;
  text-align: center;
  position: relative;
}
.page-loader .page-loader-baseline .splitter-line .splitter-letter {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateX(-10px);
  transition-property: transform, opacity;
  transition-duration: 0.1s;
  transition-timing-function: ease-in;
}
.page-loader .page-loader-baseline .splitter-line .sub-splitter {
  color: #000;
}
.page-loader .page-loader-baseline .animate .balcony {
  display: inline-block;
  /*margin-right: 3%;*/
  margin-right: 0.5%;
  animation-name: balcony;
  animation-duration: 2s;
}
.page-loader .page-loader-baseline .animate .balcony h3 {
  font-weight: bold;
}
.page-loader .page-loader-baseline .animate .ticket {
  display: inline-block;
  margin-left: 20px;
  /*margin-left: 3%;*/
  margin-left: 0.5%;
  animation-name: ticket;
  animation-duration: 2s;
}
.page-loader .page-loader-baseline .animate .ticket h3 {
  font-weight: bold;
  color: #000;
}
.page-loader .page-loader-baseline .animate .production {
  animation-name: production;
  animation-duration: 2s;
  /*position: relative;*/
  position: absolute;
  right: 0;
  left: 0;
  top: 35px;
}
.page-loader .page-loader-baseline .animate .production h3 {
  font-weight: bold;
}
@keyframes balcony {
  from {
    margin-right: 35%;
    opacity: 0;
  }
  to {
    margin-right: 0.5%;
    opacity: 1;
  }
}
@keyframes ticket {
  from {
    margin-left: 35%;
    opacity: 0;
    margin-top: -100px;
  }
  to {
    margin-left: 0.5%;
    opacity: 1;
    margin-top: 0px;
  }
}
@keyframes production {
  from {
    margin-top: 10%;
    opacity: 0;
  }
  to {
    margin-top: 0%;
    opacity: 1;
  }
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter {
  opacity: 1;
  transform: translateX(0);
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(1) {
  transition-delay: 0.1s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(2) {
  transition-delay: 0.2s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(3) {
  transition-delay: 0.3s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(4) {
  transition-delay: 0.4s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(5) {
  transition-delay: 0.5s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(6) {
  transition-delay: 0.6s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(7) {
  transition-delay: 0.7s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(8) {
  transition-delay: 0.8s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(9) {
  transition-delay: 0.9s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(10) {
  transition-delay: 1s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(11) {
  transition-delay: 1.1s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(12) {
  transition-delay: 1.2s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(13) {
  transition-delay: 1.3s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(14) {
  transition-delay: 1.4s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(15) {
  transition-delay: 1.5s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(16) {
  transition-delay: 1.6s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(17) {
  transition-delay: 1.7s;
}
.page-loader.loading .page-loader-baseline .splitter-line .splitter-letter:nth-of-type(18) {
  transition-delay: 1.8s;
}
.page-loader.loaded .page-loader-icon {
  opacity: 0;
}

@media (min-width: 768px) {
  .navbar .navbar-wrapper .logo {
    width: 400px;
  }
}
.footer {
  height: auto;
  background: url("../images/bg.jpg");
  color: #fff;
  clear: both;
}
.footer .row {
  padding: 15px 0 10px 0;
  margin-top: 10px;
  color: #727272;
  letter-spacing: 1px;
  font-weight: 700;
}
.footer .row .copyright {
  float: left;
}
.footer .row .developer {
  float: right;
  text-align: right;
}
.footer .row a {
  color: #000;
  text-decoration: none;
}

/*sidebar*/
.sidebar-section {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 50%;
  z-index: 30;
  background: #fff;
  visibility: hidden;
  transform: translateX(-100%);
  transition-property: transform, visibility;
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(1, 0.08, 0.27, 0.89);
}
.sidebar-section.open {
  visibility: visible;
  transform: translateX(0);
}
.sidebar-section .container {
  max-width: 500px;
}
.sidebar-section .container .heading {
  text-align: center;
  position: relative;
  margin-top: 50px;
}
.sidebar-section .container .heading h5 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.sidebar-section .container .heading:after {
  width: 100px;
  height: 5px;
  content: "";
  background: #FFE01C;
  position: absolute;
  left: 0;
  bottom: -20px;
  right: 0;
  margin: 0 auto;
}
.sidebar-section .container .sidebar-form {
  margin-top: 80px;
}
.sidebar-section .container .sidebar-form .form-group {
  position: relative;
  margin-bottom: 30px;
}
.sidebar-section .container .sidebar-form .form-group input, .sidebar-section .container .sidebar-form .form-group textarea, .sidebar-section .container .sidebar-form .form-group select {
  border: 1px solid #333;
  border-radius: 0;
}
.sidebar-section .container .sidebar-form .form-group input:focus, .sidebar-section .container .sidebar-form .form-group textarea:focus, .sidebar-section .container .sidebar-form .form-group select:focus {
  box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.25);
}
.sidebar-section .container .sidebar-form .form-group input[type=file] {
  border: 0;
}
.sidebar-section .container .sidebar-form .form-group label {
  color: #333;
  text-align: left;
}
.sidebar-section .container .sidebar-form .form-submit-btn {
  border: 2px solid #333;
  height: 38px;
  width: 50%;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  background: #333;
  color: #fff;
  float: left;
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out;
}
.sidebar-section .container .sidebar-form .form-submit-btn:hover {
  background: transparent;
  color: #333;
}
.sidebar-section .close-icon {
  right: 25px;
  width: 27px;
  height: 27px;
  position: absolute;
  cursor: pointer;
  top: 20px;
  z-index: 10;
  display: block;
}
.sidebar-section .close-icon span {
  display: block;
  width: 100%;
  opacity: 1;
  height: 3px;
  background: #333;
  position: relative;
}
.sidebar-section .close-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}
.sidebar-section .close-icon span:nth-child(2) {
  top: 16px;
  transform: rotate(-45deg);
}

.actors-page {
  background: url("../images/bg.jpg");
}
.actors-page .actors-section {
  padding-top: 160px;
}
.actors-page .actors-section .heading {
  text-align: center;
  position: relative;
}
.actors-page .actors-section .heading h5 {
  color: #fff;
  letter-spacing: 2px;
  font-family: California;
  font-size: 150px;
  font-family: gothic;
  line-height: 1.2em;
  font-size: 116px;
  text-transform: capitalize;
}
.actors-page .actors-section .heading p {
  color: #fff;
  letter-spacing: 2px;
  font-family: gotham-bold;
  font-size: 20px;
  padding-top: 20px;
}
.actors-page .actors-section .heading .main-head {
  position: relative;
}
.actors-page .actors-section .heading .main-head:before {
  content: '"';
  font-family: "gotham-bold";
  position: absolute;
  left: 38px;
  top: 13px;
  color: #fff;
}
.actors-page .actors-section .heading .main-head:after {
  content: '"';
  font-family: "gotham-bold";
  position: absolute;
  font-size: 20px;
  color: #fff;
}
.actors-page .actors-section .heading .icon-handwritten-underline {
  fill: #fff;
  position: absolute;
  bottom: 6px;
  left: 0;
  z-index: 2;
  width: 100px;
  right: 0;
  margin: 0 auto;
}
.actors-page .actors-section .heading span {
  color: #fff;
}
.actors-page .actors-section .content {
  margin-top: 100px;
}
.actors-page .actors-section .content .row {
  /*margin-bottom: 120px;*/
}
.actors-page .actors-section .content .row .one {
  margin-top: 100px;
}
.actors-page .actors-section .content .row .two {
  margin-top: 50px;
}
.actors-page .actors-section .content .row .actor-image {
  display: block;
  height: 280px;
  width: 220px;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
}
.actors-page .actors-section .content .row .actor-image img {
  height: 100%;
  transform: scale(1);
  transition: transform 2s ease;
}
.actors-page .actors-section .content .row .actor-image:hover img {
  /*transform: scale(1.2);*/
}
.actors-page .actors-section .content .row .actor-title {
  text-align: center;
  margin-top: 30px;
}
.actors-page .actors-section .content .row .actor-title h5 {
  color: #000;
  letter-spacing: 2px;
  font-size: 20px;
}
.actors-page .actors-section .content .row .actor-title h4 {
  color: #333333;
}
.actors-page .actors-section .content .row .actor-title .social-icons {
  list-style: none;
  text-align: center;
  padding-right: 20px;
}
.actors-page .actors-section .content .row .actor-title .social-icons li {
  display: inline-block;
  padding-right: 20px;
}
.actors-page .actors-section .content .row .actor-title .social-icons li a {
  font-size: 25px;
  color: #000;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
  display: block;
}
.actors-page .actors-section .content .row .actor-title .social-icons li a:hover {
  transform: scale(1.1);
}
.actors-page .actors-section .content .actor-description {
  padding-top: 0;
}
.actors-page .actors-section .content .actor-description.top-spacing {
  padding-top: 70px;
}
.actors-page .actors-section .content .actor-description p {
  font-size: 1.2em;
  font-family: "Cagliostro", sans-serif;
}
.actors-page .custom-team-row {
  background: url("../images/team.JPG");
  background-position-x: 0%;
  background-position-y: 0%;
  padding-top: 100px;
  padding-bottom: 100px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.actors-page .custom-team-row .background-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.6;
}
.actors-page .other-team .row-no-gutter {
  padding-top: 45px;
  padding-bottom: 45px;
}

.team-img {
  height: 220px !important;
  width: 220px !important;
}
.team-img img {
  width: 100%;
  height: 100%;
}

.webseries-page {
  background: url("../images/bg.jpg");
  overflow-x: hidden;
}
.webseries-page .webseries-section {
  padding-top: 160px;
}
.webseries-page .webseries-section .heading {
  position: relative;
}
.webseries-page .webseries-section .heading h5 {
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  font-family: California;
  font-size: 80px;
  text-align: center;
  margin-bottom: 20px;
  font-family: gothic;
  line-height: 1.2em;
  font-size: 53px;
  text-transform: capitalize;
}
.webseries-page .webseries-section .heading .icon-handwritten-underline {
  fill: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100px;
  right: 0;
  margin: 0 auto;
}
.webseries-page .webseries-section .description {
  padding: 4px 124px;
}
.webseries-page .webseries-section .description p {
  text-align: center;
  font-size: 20px;
  font-style: arial;
}
.webseries-page .webseries-section .description p:last-child {
  padding-bottom: 80px;
}
.webseries-page .webseries-section .img-holder {
  height: 400px;
  position: relative;
  overflow: hidden;
}
.webseries-page .webseries-section .img-holder img {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  transition: filter 1s ease, transform 2s ease;
}
.webseries-page .webseries-section .img-holder img:hover {
  filter: grayscale(0);
  transform: scale(1.2);
}
.webseries-page .webseries-section .content-holder {
  padding: 60px 60px;
  font-family: "gotham-bold";
  text-transform: uppercase;
}
.webseries-page .webseries-section .content-holder a {
  text-decoration: none;
  font-size: 21px;
  background: #F5EF2B;
  display: inline-block;
  margin: 0 0 20px;
  padding: 10px;
  color: #000;
}
.webseries-page .webseries-section .content-holder h1 {
  letter-spacing: 4px;
}
.webseries-page .webseries-section .content-holder p {
  margin-top: 30px;
  letter-spacing: 3px;
}

.press-page {
  background: url("../images/bg.jpg");
  overflow-x: hidden;
}
.press-page .press-section {
  padding-top: 160px;
}
.press-page .press-section .grid-item img {
  margin-top: 20px;
  max-width: 100%;
  padding: 12px;
  box-shadow: -3px 5px 11px 0px rgba(0, 0, 0, 0.55);
}
.press-page .press-section .title-container {
  position: fixed;
  width: 30%;
}
.press-page .press-section .title-container .title {
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  font-family: California;
  font-size: 150px;
  text-align: center;
  margin-top: 130px;
  font-family: gothic;
  line-height: 1.2em;
  font-size: 67px;
  text-transform: capitalize;
}
.press-page .press-section .title-container .icon-handwritten-underline {
  fill: #000;
  position: absolute;
  top: 210px;
  left: 0;
  z-index: 2;
  width: 89px;
  right: 0;
  margin: 0 auto;
}

.behind-page {
  background: url("../images/bg.jpg");
}
.behind-page .behind-section {
  padding-top: 160px;
}
.behind-page .behind-section .heading h5 {
  text-transform: uppercase;
  color: #F5EF2B;
  letter-spacing: 2px;
  font-family: California;
  font-size: 80px;
  text-align: center;
  margin-bottom: 100px;
  font-family: gothic;
  line-height: 1.2em;
  font-size: 53px;
  text-transform: capitalize;
}
.behind-page .behind-section .img-holder {
  height: 310px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.behind-page .behind-section .img-holder .image-wrapper {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: 0;
}
.behind-page .behind-section .img-holder .image-wrapper .overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(32, 31, 31, 0.3);
  transition: background 0.6s ease-in;
}
.behind-page .behind-section .img-holder .image-wrapper .overlay .play-icon {
  width: 70px;
  margin: 0 auto;
  margin-top: 120px;
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.6s ease-in;
}
.behind-page .behind-section .img-holder .image-wrapper:hover .overlay {
  background: rgba(32, 31, 31, 0.6);
}
.behind-page .behind-section .img-holder .image-wrapper:hover .overlay .play-icon {
  opacity: 0;
  transform: translateY(0px);
}
.behind-page .behind-section .content-holder {
  padding: 90px 60px;
  font-family: "gotham-bold";
  text-transform: uppercase;
}
.behind-page .behind-section .content-holder a {
  text-decoration: none;
  font-size: 21px;
  background: #F5EF2B;
  display: inline-block;
  margin: 0 0 20px;
  padding: 10px;
  color: #000;
}
.behind-page .behind-section .content-holder h1 {
  letter-spacing: 4px;
}
.behind-page .behind-section .content-holder p {
  letter-spacing: 3px;
}

.work-page {
  background: url("../images/bg.jpg");
}
.work-page .work-section {
  padding-top: 160px;
}
.work-page .work-section .heading {
  margin-bottom: 100px;
}
.work-page .work-section .heading h5 {
  text-transform: uppercase;
  color: #000;
  letter-spacing: 2px;
  font-family: California;
  font-size: 80px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  font-family: gothic;
  line-height: 1.2em;
  font-size: 53px;
  text-transform: capitalize;
}
.work-page .work-section .heading p {
  text-align: center;
  font-size: 20px;
  font-family: "Cagliostro", sans-serif;
}
.work-page .work-section .heading p a {
  color: #1a1a1a;
  padding-right: 10px;
  padding-left: 10px;
  display: inline-block;
}
.work-page .work-section .heading p a:hover {
  text-decoration: none;
  color: #666666;
}
.work-page .work-section .work-container .row {
  margin-bottom: 50px;
}
.work-page .work-section .work-container .image-wrapper {
  height: 273px;
  cursor: pointer;
}
.work-page .work-section .work-container .image-wrapper .overlay {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(32, 31, 31, 0.3);
  transition: background 0.6s ease-in;
}
.work-page .work-section .work-container .image-wrapper .overlay .play-icon {
  width: 70px;
  margin: 0 auto;
  margin-top: 100px;
  opacity: 1;
  transform: translateY(0px);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.6s ease-in;
}
.work-page .work-section .work-container .image-wrapper:hover .overlay {
  background: rgba(32, 31, 31, 0.6);
}
.work-page .work-section .work-container .image-wrapper:hover .overlay .play-icon {
  opacity: 0;
  transform: translateY(0px);
}
.work-page .work-section .work-container .image-wrapper.video {
  background-position: center;
  background-repeat: no-repeat;
}
.work-page .work-section .work-container .work-title {
  margin-top: 20px;
  text-align: center;
}
.work-page .work-section .work-container .work-title h5 {
  color: #000;
  letter-spacing: 2px;
  font-size: 20px;
}
.work-page .work-section .animated-line {
  position: relative;
  overflow: hidden;
}
.work-page .work-section .animated-line .line {
  transition-duration: 0.65s;
  -webkit-transition-duration: 0.65s;
  -webkit-transition-duration: 0.45s;
  -webkit-transition-property: top, right, bottom, left, width, height;
  -webkit-transition-delay: 0s;
  -webkit-transition-timing-function: "ease-in-out";
  transition-duration: 0.45s;
  transition-property: top, right, bottom, left, width, height;
  transition-delay: 0s;
  transition-timing-function: "ease-in-out";
  display: block;
  position: absolute;
}
.work-page .work-section .animated-line .line.top {
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: white;
  background: -moz-linear-gradient(left, white 0%, white 74%, #f75d5d 100%);
  background: -webkit-gradient(left, color-stop(0%, white), color-stop(74%, white), color-stop(100%, #f75d5d));
  background: -webkit-linear-gradient(left, white 0%, white 74%, #f75d5d 100%);
  background: -o-linear-gradient(left, white 0%, white 74%, #f75d5d 100%);
  background: -ms-linear-gradient(left, white 0%, white 74%, #f75d5d 100%);
  background: linear-gradient(left, white 0%, white 74%, #f75d5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="white", endColorstr="#f75d5d", GradientType=0 );
}
.work-page .work-section .animated-line .line.right {
  right: 0;
  top: 0;
  width: 0px;
  height: 0;
  background: #f75d5d;
  background: -moz-linear-gradient(top, #f75d5d 0%, #f75d5d 74%, white 100%);
  background: -webkit-gradient(top, color-stop(0%, #f75d5d), color-stop(74%, #f75d5d), color-stop(100%, white));
  background: -webkit-linear-gradient(top, #f75d5d 0%, #f75d5d 74%, white 100%);
  background: -o-linear-gradient(top, #f75d5d 0%, #f75d5d 74%, white 100%);
  background: -ms-linear-gradient(top, #f75d5d 0%, #f75d5d 74%, white 100%);
  background: linear-gradient(top, #f75d5d 0%, #f75d5d 74%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f75d5d", endColorstr="white", GradientType=0 );
}
.work-page .work-section .animated-line .line.bottom {
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #f75d5d;
  background: -moz-linear-gradient(left, #f75d5d 0%, #f75d5d 74%, white 100%);
  background: -webkit-gradient(left, color-stop(0%, #f75d5d), color-stop(74%, #f75d5d), color-stop(100%, white));
  background: -webkit-linear-gradient(left, #f75d5d 0%, #f75d5d 74%, white 100%);
  background: -o-linear-gradient(left, #f75d5d 0%, #f75d5d 74%, white 100%);
  background: -ms-linear-gradient(left, #f75d5d 0%, #f75d5d 74%, white 100%);
  background: linear-gradient(left, #f75d5d 0%, #f75d5d 74%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f75d5d", endColorstr="white", GradientType=0 );
}
.work-page .work-section .animated-line .line.left {
  left: 0;
  bottom: 0;
  width: 0;
  height: 0px;
  background: white;
  background: -moz-linear-gradient(top, white 0%, white 74%, #f75d5d 100%);
  background: -webkit-gradient(top, color-stop(0%, white), color-stop(74%, white), color-stop(100%, #f75d5d));
  background: -webkit-linear-gradient(top, white 0%, white 74%, #f75d5d 100%);
  background: -o-linear-gradient(top, white 0%, white 74%, #f75d5d 100%);
  background: -ms-linear-gradient(top, white 0%, white 74%, #f75d5d 100%);
  background: linear-gradient(top, white 0%, white 74%, #f75d5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="white", endColorstr="#f75d5d", GradientType=0 );
}
.work-page .work-section .animated-line .line.top, .work-page .work-section .animated-line .line.bottom {
  height: 5px;
}
.work-page .work-section .animated-line .line.right, .work-page .work-section .animated-line .line.left {
  width: 5px;
}
.work-page .work-section .animated-line:hover .line.top, .work-page .work-section .animated-line:hover .line.bottom {
  width: 100%;
}
.work-page .work-section .animated-line:hover .line.left, .work-page .work-section .animated-line:hover .line.right {
  height: 100%;
}

@media (max-width: 768px) {
  /*navbar*/
  .navbar .navbar-wrapper .menu {
    z-index: 99;
    right: 14%;
  }
  .navbar .navbar-wrapper .menu a {
    font-size: 17px;
  }
  .navbar .navbar-wrapper .menu-list {
    width: 100%;
    overflow-y: scroll;
  }
  .navbar .navbar-wrapper .menu-list ul li:hover:after {
    width: 100%;
  }

  /*sidebar for careers*/
  .sidebar-section {
    overflow-y: scroll;
    width: 100%;
  }

  /*home page*/
  .home-page .about-section {
    height: auto;
    padding-bottom: 35px;
  }
  .home-page .about-section .bt-col-left {
    margin-top: 0px;
  }
  .home-page .about-section .bt-col-right {
    margin-top: 35px;
  }
  .home-page .about-section .about-content {
    margin-bottom: 0px;
    margin-top: 75px;
  }
  .home-page .about-section .about-content h1 {
    font-weight: 100;
    font-size: 32px;
    text-align: center;
  }
  .home-page .about-section .about-content p {
    font-size: 18px;
    text-align: center;
  }
  .home-page .social-section .social-container .heading {
    padding: 40px 5px;
  }
  .home-page .social-section .social-container .heading h5 {
    font-size: 20px;
  }
  .home-page .triangle-button {
    width: 135px;
    height: 154px;
  }
  .home-page .triangle-button span {
    margin-top: 67px;
    font-size: 25px;
  }
  .home-page .triangle-button .icon-handwritten-underline {
    top: 103px;
    width: 74px;
  }
  .home-page .arrow-down {
    z-index: 9;
  }

  /* webseries page*/
  .webseries-page .webseries-section .heading h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 35px;
    text-align: center;
    margin-bottom: 18px;
  }
  .webseries-page .webseries-section .heading .icon-handwritten-underline {
    bottom: -10px;
  }
  .webseries-page .webseries-section .img-holder {
    height: 190px;
  }
  .webseries-page .webseries-section .content-holder h1 {
    letter-spacing: 4px;
    text-align: center;
    font-size: 30px;
  }
  .webseries-page .webseries-section .description {
    padding: 4px 30px;
  }
  .webseries-page .webseries-section .description p {
    font-size: 20px;
  }

  .work-container {
    overflow: hidden;
  }

  .work-page .work-section .heading h5 {
    font-size: 35px;
  }

  .actors-page .actors-section .heading h5 {
    font-size: 59px;
  }
  .actors-page .actors-section .heading .icon-handwritten-underline {
    /*bottom: 53px;*/
  }
  .actors-page .actors-section .heading p {
    font-size: 18px;
  }
  .actors-page .actors-section .heading .main-head:before {
    left: 26px;
    top: 19px;
  }
  .actors-page .actors-section .content .actor-description {
    padding-top: 40px;
    text-align: center;
    padding-bottom: 70px;
  }
  .actors-page .actors-section .content .actor-description p {
    font-size: 21px;
  }

  .behind-page .behind-section .heading h5 {
    font-size: 59px;
  }
  .behind-page .behind-section .content-holder {
    padding: 49px 13px;
  }

  .contact-page {
    height: auto;
  }
  .contact-page .contact-section .partner_form legend h1 {
    font-size: 25px;
  }
  .contact-page .contact-section .contact-upper .subheading {
    padding: 0 30px;
  }

  .address-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .form-section {
    width: 100%;
  }
  .form-section .container .contact-button {
    left: -11%;
  }

  .press-page .press-section .title-container {
    position: absolute;
    width: 84%;
  }
  .press-page .press-section .title-container .title {
    font-size: 35px;
    margin-top: 0;
  }
  .press-page .press-section .title-container .icon-handwritten-underline {
    top: 40px;
  }
  .press-page .press-section .grid {
    margin-top: 65px;
  }

  .footer .row .copyright {
    float: none;
    text-align: center;
  }
  .footer .row .developer {
    float: none;
    text-align: center;
  }

  /*page-loading*/
  .page-loader .page-loader-icon .camera {
    top: 22%;
  }
  .page-loader .page-loader-baseline .animate .balcony {
    animation-name: balcony-res;
    animation-duration: 2s;
  }
  .page-loader .page-loader-baseline .animate .balcony h3 {
    font-size: 20px;
  }
  @keyframes balcony-res {
    from {
      margin-right: 12%;
      opacity: 0;
    }
    to {
      margin-right: 0.5%;
      opacity: 1;
    }
  }
  .page-loader .page-loader-baseline .animate .ticket {
    animation-name: ticket-res;
    animation-duration: 2s;
  }
  .page-loader .page-loader-baseline .animate .ticket h3 {
    font-size: 20px;
  }
  @keyframes ticket-res {
    from {
      margin-left: 12%;
      opacity: 0;
    }
    to {
      margin-left: 0.5%;
      opacity: 1;
    }
  }
  .page-loader .page-loader-baseline .animate .production {
    animation-name: production-res;
    animation-duration: 2s;
  }
  .page-loader .page-loader-baseline .animate .production h3 {
    font-size: 20px;
  }
  @keyframes production-res {
    from {
      margin-top: 12%;
      opacity: 0;
    }
    to {
      margin-top: 0%;
      opacity: 1;
    }
  }

  .contact-page .contact-section .contact-upper .main-heading {
    font-size: 35px;
  }
}

/*# sourceMappingURL=main.css.map */
