@charset "utf-8";
/* CSS Document */
/*== FONTS ENDS ==*/
#olderbrowser {
  display: block;
  width: 100%;
  position: fixed;
  text-align: center;
  top: 0;
  font-size: 20px;
  z-index: 1100;
  color: #fff;
  height: 100%;
  background: #000000;
  bottom: 0;
}
.ie-quote {
  margin-top: 15%;
}
.ie-quote p {
  padding-top: 35px;
}
/* #onetrust-pc-sdk {
  font-family: sans-serif !important;
} */
#onetrust-pc-sdk, .ot-sdk-container {
  font-family:sans-serif !important;
}
/*== IE Block Code Ends ==*/
* {
  margin: 0px;
  padding: 0px;
}
html {
  width: 100%;
  height: 100%;
  -ms-overflow-style: none; /*IE and Edge */
  scrollbar-width: none;
  overflow-x: hidden;
}
/*
html{
	overflow:hidden;
overflow-y: scroll;
}
*/
body {
  font-family: 'CochinRoman';
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  background: #000;
  overflow: hidden;
  overflow-y: auto;
  -ms-overflow-style: none; /*IE and Edge */
  scrollbar-width: none;
  /*    min-height: 100%;*/
  font-style: 'Normal';
  font-stretch: 'Normal';
}
body::-webkit-scrollbar {
  width: 0 !important
}
.bodyScrollPause {
  overflow-y: hidden;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0);
}
a, a:hover, a:active, a:focus {
  border: none;
  outline: none;
  text-decoration: none;
}
h1 {
  margin: 0;
}
.device {
  display: none
}
.outer {
  display: table;
  position: fixed;
  height: 100%;
  width: 100%;
}
.middle {
  display: table-cell;
  vertical-align: middle;
}
/*===========ANIMATED CLASSES==========================*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
/* FadeInUp */
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
/* FadeInLeft */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
/* FadeInRight */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.fade-in {
  opacity: 0;
  transition: opacity 250ms ease-in;
}
.fade-in.appear, .fadeInUp .appear {
  opacity: 1;
}
.from-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.from-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.from-left, .from-right, .fade-in {
  transition: opacity 250ms ease-in, -webkit-transform 400ms ease-in;
  transition: opacity 250ms ease-in, transform 400ms ease-in;
  transition: opacity 250ms ease-in, transform 400ms ease-in, -webkit-transform 400ms ease-in;
  opacity: 0;
}
.from-left.appear, .from-right.appear {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.content-fadein {
  -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1s; /* Firefox < 16 */
  -ms-animation: fadein 1s; /* Internet Explorer */
  -o-animation: fadein 1s; /* Opera < 12.1 */
  animation: fadein 1s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.content-fadeout {
  -webkit-animation: fadeout 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadeout 2s; /* Firefox < 16 */
  -ms-animation: fadeout 2s; /* Internet Explorer */
  -o-animation: fadeout 2s; /* Opera < 12.1 */
  animation: fadeout 2s;
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Internet Explorer */
@-ms-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*===========ANIMATED CLASSES ENDS HERE================*/
/*=== Scroll Indicator Animation Ends ===*/
.scrollIndicator {
  display: block;
  width: 100%;
  align-self: flex-end;
}
.scrollIndicator .mouse_scroll {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  /* border: 1px solid #ffffff; */
  -webkit-animation: bounce 2s infinite 1.3s;
  animation: bounce 2s infinite 1.3s;
  cursor: pointer;
}
.m_scroll_arrow1, .m_scroll_arrow2, .m_scroll_arrow3 {
  display: block;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  margin: 0 auto;
}
.m_scroll_arrow1 {
  margin-top: 5px;
  width: 8px;
  height: 8px;
}
.m_scroll_arrow2 {
  margin-top: -2px;
  width: 10px;
  height: 10px;
}
.m_scroll_arrow3 {
  margin-top: -4px;
  width: 12px;
  height: 12px;
}
.m_scroll_arrow1, .m_scroll_arrow2, .m_scroll_arrow3 {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}
.m_scroll_arrow1 {
  -webkit-animation-delay: 1.1s;
  -moz-animation-delay: 1.1s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  animation-delay: alternate;
}
.m_scroll_arrow2 {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -webkit-animation-direction: alternate;
  animation-delay: 1.2s;
  animation-direction: alternate;
}
.m_scroll_arrow3 {
  -webkit-animation-delay: 1.3s;
  -moz-animation-delay: 1.3s;
  -webkit-animation-direction: alternate;
  animation-delay: 1.3s;
  animation-direction: alternate;
}
@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/*=== Scroll Indicator Animation Ends ===*/
.fixedBody {
  overflow: hidden !important;
}
.wrapper {
  display: none;
}
#mobile_rotate {
  display: none;
}
.device {
  display: none;
}
.siteBg {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  background-image: url(../images/bg.jpg);
  background-color: #190305;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.opeq__overlay {
  position: absolute;
  /*  background: rgba(0, 0, 0, 0.50);*/
  width: 100%;
  height: 100%;
  z-index: 1;
}
.siteBg video {
  position: relative;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.header, .footer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /*  background: #000000;*/
  text-align: center;
  z-index: 9;
}
.blackBg {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0;
  -webkit-transition: background-color 500ms linear;
  -moz-transition: background-color 500ms linear;
  -o-transition: background-color 500ms linear;
  -ms-transition: background-color 500ms linear;
  transition: background-color 500ms linear;
  /* height: 60px;*/
}
.nav-li a:not([href]):not([tabindex]), .nav-li a:not([href]):not([tabindex]):focus, .nav-li a:not([href]):not([tabindex]):hover {
  color: #010101;
}
.share-container {
  display: inline-block;
  /* background: #d84f09; */
  /* padding: 5px 10px; */
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-radius: 8px;
  position: fixed;
  right: 50px;
  top: 13px;
}
.share-container #btnShare {
  color: #FFFFFF;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.share-container #btnShare:hover {
  opacity: 0.8;
}
.share-container span:first-child {
  margin-right: 2px;
}
.share-container span img {
  height: 25px;
  margin: 5px;
  padding: 4px;
  /*
  -webkit-filter: invert(100%);  Safari/Chrome 
  filter: invert(100%);
*/
}
#closeShare {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
#closeShare:hover {
  opacity: 0.6;
}
#closeShare span {
  display: block;
  position: absolute;
  height: 2px;
  width: 70%;
  background: #000000;
  opacity: 1;
  left: 4px;
  top: 13px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  transition: .25s ease-in-out;
}
#closeShare span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#closeShare span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.billing-container {
  margin: 1% 0 1.5%;
}
#containerShare {
  position: absolute;
  right: 3px;
  width: 160px;
  height: auto;
  padding: 10px;
  background: #e5e5e5; /*#261509;*/
  color: #ffffff;
  text-align: left;
  display: none;
  z-index: 9999;
  border: 1px solid #4a483d;
  border-radius: 12px;
  top: 44px;
}
#containerShare a {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 5px;
}
#containerShare a img {
  height: 20px;
}
#containerShare a:last-child {
  margin-bottom: 0;
}
#containerShare p {
  margin-bottom: 15px;
 /* cursor: pointer; */
  font-size: 16px;
  color: #000000;
}
.hashtag {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  letter-spacing: 2px;
}
.social-container {

  transition: top 0.3s;
  display: flex;
  text-align: center;
  justify-content: center;
        width: 100%;
    max-width: 220px;
    margin: 0 auto;
}
.social-container a {
  display: inline-block;
  width: 33.33%;
  /*  float: left;*/
  background: #000000;
  padding: 6px 0 6px !important;
  margin: 0;
  min-width: 40px;
}
.social-container img {
  width: auto;
  height: 20px;
}
.followContainer {
  display: inline-block;
  position: relative;
    width: 100%;
}
.fb {
  background: rgb(24, 119, 242) !important;
}
.twitter {
  background: rgb(0, 0, 0) !important;
}
.insta {
  background: #f09433 !important;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1) !important;
}
.tiktok {
  background: rgb(0, 0, 0) !important;
}
.youtube {
  background: #ff0000 !important;
}
#navIcon {
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  /* background: #000000;
  border: 1px solid #ffffff; */
  border-radius: 4px;
  margin-right: 5px;
  margin-left: 0px;
  top: 10px;
  z-index: 999;
  /* box-shadow: 0 0 12px rgb(0 0 0 / 15%), 0 0px 12px rgb(0 0 0 / 15%), inset 0 0 12px 4px rgb(0 0 0 / 30%); */
  position: fixed;
  right: 10px;
}
#navIcon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 24px;
  background: #fff;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  margin: 0 auto;
  right: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.noscroll #navIcon span {
  background: #ffffff !important;
}
.noscroll #navIcon.open span {
  background: #ffffff !important;
}
.noscroll .share-container span img {
  -webkit-filter: invert(0%) !important; /* Safari/Chrome */
  filter: invert(0%) !important;
}
.open span {
  background: #fff !important;
}
#navIcon span:nth-child(1) {
  top: 11px;
}
#navIcon span:nth-child(2) {
  top: 18px;
}
#navIcon span:nth-child(3) {
  top: 25px;
}
#navIcon.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
#navIcon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
#navIcon.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
nav.activatedMenus {
  right: 0;
  transition: 0.4s ease;
}
.nav-container {
  border-bottom: none;
}
.nav-container {
  position: fixed;
  background: #340000;
  width: 280px;
  height: 100%;
  right: -280px;
  z-index: 99;
  top: 0;
  overflow-y: auto;
  transition: 0.4s ease;
}
.nav-container.nav-main.toggle-nav {
  left: 0;
  z-index: 10;
}
.nav-container .nav-ul {
  width: 100%;
  margin: auto;
  padding-top: 120px;
}
.nav-container .nav-li {
  margin: 0;
  display: block;
}
.nav-container a {
  padding: 12px 20px;
  color: #fff !important;
  transition: padding 0.5s ease;
  text-decoration: none !important;
  outline: none !important;
}
.hashtag a{
    padding-left:0 !important;
    padding-right:0 !important;
}
.nav-container a:hover {
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
}
.nav-li a.active-nav, .nav-li a.active {
  color: #000000 !important;
  background: #c3bfbf;
  padding-top: 19px;
}
.footer {
  top: auto;
  bottom: 0;
  background: #000000;
  font-size: 10px;
  padding: 5px 0;
  color: rgb(224, 226, 230);
  z-index: 2000;
  text-transform: uppercase;
}
.audioplayer {
  position: absolute;
  right: 18px;
  top: auto;
  bottom: 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
footer .audioplayer .audio-button {
  transition: opacity .5s 0s;
  display: inline-block;
  width: auto;
  height: auto;
  opacity: 1;
  pointer-events: all
}
footer .audioplayer .audio-button {
  pointer-events: none !important;
  opacity: 1;
}
footer .audioplayer .audio-button .bars-wrapper {
  white-space: nowrap;
  height: 16px;
  overflow: visible;
  transform: rotateX(180deg);
}
.bar {
  transition: box-shadow .5s cubic-bezier(.77, 0, .175, 1) 0s;
  display: inline-block;
  float: left;
  width: 3px;
  height: 20px;
  margin-right: 3px;
}
.audioplayer .audio-button .bars-wrapper .bar {
  background-color: #FFFFFF;
  box-shadow: 0 0 0 #FFF;
}
.bugs img {
  max-width: 90%;
  margin: 15px auto;
}
.footer-links a {
  display: inline-block;
  color: rgb(224, 226, 230);
  margin: 0 5px;
}
.footer-links a:hover, #btnCredits:hover, #btnCreditsIntro:hover {
  color: #ffffff;
}
#containerCredits, #containerCreditsIntro {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 0 5px;
  background: #000;
  text-align: center;
  display: none;
  z-index: 5;
}
#btnCredits, #btnCreditsIntro {
  cursor: pointer !important;
}
#btnCredits::after, #btnCreditsIntro::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.075em;
  content: "";
  border-top: 0;
  border-right: 0.4em solid transparent;
  border-bottom: 0.6em solid;
  border-left: 0.4em solid transparent;
}
#closeCredits, #closeCreditsIntro {
  position: absolute;
  top: 7px;
  right: 10px;
  width: 25px;
  height: 25px;
  border: 1px solid #ffffff;
  cursor: pointer;
  opacity: 0.7;
}
#closeCredits:hover, #closeCreditsIntro:hover {
  opacity: 1;
}
#closeCredits:before, #closeCredits:after, #closeCreditsIntro:before, #closeCreditsIntro:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 40%;
  background: #ffffff;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
  -ms-transform: translate(-50%, -50%) rotate(30deg);
  transform: translate(-50%, -50%) rotate(30deg);
}
#closeCredits:after, #closeCreditsIntro:after {
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
  -ms-transform: translate(-50%, -50%) rotate(-30deg);
  transform: translate(-50%, -50%) rotate(-30deg);
}
.line-break, .copyright br {
  display: none;
}
.section-wrapper {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
#home {
  max-width: 100%;
  display: flex;
  justify-content: center;
  /*align-items: flex-end;*/
  width: 100%;
  align-items: center;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  /*  visibility: hidden;*/
}
/*#home > div {
  width: 100%;
}*/
.home-content > h1 {
  margin: 0 auto;
  /*  max-width: 95%;*/
  text-align: center;
}
.home_flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  align-items: center;
}
.home_flex h1 {
  margin-left: auto;
}
.home-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
  height: calc(100% - 00px);
}
.home-content, .scrollIndicator {
  margin: 0 auto;
}
.movie-tt {
  max-height: 40vh;
  max-width: 87%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 47%;
  transform: translateY(-50%);
  /*   margin: 0 auto;*/
}
.movie-names {
  position: absolute;
  left: 0;
  right: 0;
  top: 4vh;
  margin: 0 auto;
  max-width: 72%;
  max-height: 21vh;
  /*  margin-bottom: 30px;*/
}
.movie-date {
  max-height: 6vh;
  max-width: 45%;
  margin: 7px auto;
  left: -12vh;
  position: relative;
}
.movie-tout{
    position: absolute;
    left: 2%;
    display: inline-block;
    bottom: 20px;
    border: 2px solid #fff !important;
    border-radius: 10px;
    width: 320px;
    overflow: hidden;
    max-width: 23%;
}
.movie-tout img { transition: all 0.4s;}
.movie-tout img:hover {
  transform: scale(0.95);
}
.social-container-bottom {
  margin-bottom: 18px;
  margin-top: 12px;
}
.social-container-bottom a {
  display: inline-block;
  margin: 0 7px;
  display: inline-block;
  /*
  padding: 5px 5px;
  min-width: 40px;
*/
}
.social-container-bottom img {
  height: 25px;
  width: auto;
}
.video-tout {
  width: 32vh;
  max-width: 250px;
  position: absolute;
  right: 2%;
  bottom: 3%;
  /*  transform: translateX(-21%) translateY(0%);*/
  cursor: pointer;
  padding: 1px 0;
}
.video-tout img {
  border: 2px solid #92c63a;
  box-shadow: 0px 0px 10px rgb(148 199 58);
  border-radius: 8px;
}
.video-tout:hover img {
  transition: 300ms;
  -webkit-transition: 300ms;
  transform: scale(1.02);
  transition-timing-function: ease;
  ;
}
.ytbvideo img {
  display: block;
  background: #FFFFFF;
  margin: 0 auto;
}
#youtubeVideointro img {
  height: 100%;
}
.cta-wrapper {
  text-align: center;
}
.cta-btn {
  box-shadow: inset 0 0 15px #131313;
  background-color: #ee0000;
  border: 1px solid #fff;
  width: 100%;
  max-width: 220px;
  height: 2.6rem;
  display: inline-flex;
  overflow: hidden;
  margin: 0 7px 1vh;
  color: #fff;
  vertical-align: middle;
  border-radius: 30px;
  cursor: pointer;
  font-size: 11px;
  /*  padding-top: 5px;*/
}
.cta-btn-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  padding-top: 5px;
}
.cal_container {
  margin-top: 0;
  display: flex;
  position: relative;
  height: 100%;
}
.save-btn-wrapper {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.cta-save-btn {
  height: 100%;
  position: relative;
  z-index: 1;
  font-weight: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 5px;
}
.cal_container {
  margin-top: 0;
  display: flex;
  position: relative;
  height: 100%;
  text-align: center;
}
.cal_container div {
  position: relative;
  width: 10px;
  min-width: 33.3333%;
  padding: 3.1% 0;
}
.cal_container div img {
  max-width: 25px;
  margin: 0 auto;
  vertical-align: middle;
}
.cal_container div:nth-child(1) {
  background-color: #e6e6e6;
}
.cal_container div:nth-child(2) {
  background-color: #eb3b49;
}
.cal_container div:nth-child(3) {
  background-color: #0072c6;
}
.section-container {
  padding: 3vh 15px;
  position: relative;
  z-index: 8;
  max-width: 57vw;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.getTickets {
  position: fixed;
  left: 0px;
  top: 10px;
  opacity: 0;
  transition: all .8s;
  /* max-width: 175px; */
  height: 2.5rem;
  box-shadow: inset 0 0 15px #022612;
  background-color: #ee0000;
  border: 1px solid #fff;
  color: #FFFFFF;
  vertical-align: middle;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 40px;
  margin: 0 7px 1vh;
}
#home .section-container {
  align-items: flex-end;
}
.section-container h2 {
  font-size: 2.5em;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-family: 'CochinBold';
  /*text-shadow: 2px 2px 0px #063458;*/
}
.section-container h2 img {
  max-width: 450px;
  width: 90%;
}
.section-container p {
  color: #FFFFFF;
  text-align: justify;
}
#trailer {
  /*  background: url("../images/trailer_bg.jpg") no-repeat center;*/
  background-color: #000;
  /*  background-size: cover;*/
}
#trailer .section-container {
  padding-top: 5%;
  padding-bottom: 5%;
}
.video-holder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border: #cdcdcd solid 1px;
  overflow: hidden;
  margin-bottom: 10vh;
}
.video-holder-two {
  margin-bottom: 0;
}
.video-holder video, .video-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-thumb p {
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.video-thumb {
  width: 100%;
  margin-top: 15px;
}
.video-thumb ul {
  display: flex;
  /*  justify-content: space-between;*/ /*default setting for multiple thumbs*/
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.video-thumb ul li {
  display: block;
  margin-right: 15px;
  position: relative;
  cursor: pointer;
  /*  min-width: 25%;*/
  flex-basis: 25%;
}
.video-thumb ul li:last-child {
  margin-right: 0;
}
.video-thumb a {
  display: grid;
  border: #fff solid 1px;
  cursor: pointer;
}
.video-thumb .active {
  border: #38061d solid 1px;
}
.video-title {
  font-size: 16px;
  margin: 0 auto;
  text-align: center !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  background: rgba(0, 0, 0, 0.90);
  height: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.video-thumb li:hover > .video-title {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
#synopsis {
  background: #120101;
}
#synopsis .section-container {
  padding-bottom: 5%;
}
.cast_crew_wrapper {
  width: 100%;
  color: #f1e6de;
  font-size: 20px;
}
.left-content, .right-content {
  float: left;
  width: 50%;
}
.left-content {
  color: #d84f09;
}
.right-content {
  float: right;
  text-transform: none;
}
#modalTrailer {
  padding: 0 !important;
}
#modalTrailer .close {
  padding: 8px 0px 10px;
  color: #fff;
  font-size: 28px;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none !important;
  text-shadow: none;
  opacity: 1;
}
#modalTrailer .close:hover {
  opacity: 1;
}
#modalTrailer .modal-dialog {
  max-width: none;
  margin: 0;
  border-radius: 0;
  border: 0;
  background: rgba(0, 0, 0, 1);
  width: 100%;
  height: 100%;
}
#modalTrailer .modal-content, #modalTrailer .modal-header {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 0;
}
#modalTrailer .video-player {
  padding: 0;
  height: calc(100vh - 90px);
  /*height: calc(100vh - 80px);*/
}
.embed-responsive {
  height: 100% !important;
}
#modalTrailer video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
  display: block;
}
#modalLoader .loader-container {
  position: fixed;
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.loader-container > div {
  position: relative;
}
#modalLoader img {
  max-width: 85%;
  min-width: 300px;
}
.ytbvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*.video_thumb {
  border: 2px solid #9fcc40;
}*/
#loaderText {
  color: #FFFFFF;
  position: absolute;
  bottom: 12px;
  transform: translateX(-50%);
  left: 50%;
  font-size: 15px;
}
.lds-default {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  margin-top: 15px;
}
.lds-default div {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 29px;
  left: 53px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 18px;
  left: 50px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 9px;
  left: 41px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 6px;
  left: 29px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 9px;
  left: 18px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 18px;
  left: 9px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 29px;
  left: 6px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 41px;
  left: 9px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 50px;
  left: 18px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 53px;
  left: 29px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 50px;
  left: 41px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 41px;
  left: 50px;
}
@keyframes lds-default {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
#gallery {
  background-color: #000000;
}
#gallery .section-container > div, #characterart .section-container > div {
  padding-bottom: 20px;
  width: 100%;
}
.gallery-img img {
  max-width: 100%;
}
#galleryThumb {
  padding-bottom: 0 !important;
}
#galleryThumb .slick-slide {
  padding: 5px;
  cursor: pointer;
}
#galleryThumb .slick-current div img {
  border: #f4d46a solid 1px;
}
#characterart {
  background: #141414;
}
.characters {
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 1em 0em;
}
.characters h3 {
  color: #f3d96c;
  font-size: 1.5em;
  font-weight: bold;
}
.characters-bio {
  background: rgba(0, 0, 0, 0.00);
  border: #f4d46a solid 2px;
  border-radius: 5px;
  padding: 1em;
  font-size: 1em;
  margin: 5px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-color: #f2be96 #727272;
  scrollbar-width: thin;
}
.characters-bio::-webkit-scrollbar {
  width: 5px;
}
.characters-bio::-webkit-scrollbar-track {
  background-color: #727272;
  border-radius: 12px;
}
.characters-bio::-webkit-scrollbar-thumb {
  background-color: #f2be96;
  border-radius: 12px;
}
.partners-row {
  justify-content: center;
}
.partners-wrapper a {
  border: #FFFFFF solid 1px;
  display: inline-block;
  margin: 1em 0;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  margin: 0 auto;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-initialized .slick-slide > div {
  display: flex;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-slider button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.slick-slider .slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -10px;
}
.slick-slider .prev-arrow {
  left: -30px;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 15px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.slick-slider .next-arrow {
  right: -30px;
  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 15px solid #ffffff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.quiz-tout-wrapper {
  position: absolute;
  right: 20px;
  bottom: 1%;
  max-width: 25vw;
  width: 360px;
}
.quiz-tout-wrapper img {
  border: 2px solid #fe590b;
  border-radius: 0.5em;
  transition: all 0.4s;
}
.quiz-tout-wrapper img:hover {
  transform: scale(0.95);
}
.introTrailer-cta {
  display: none;
}
#ownitnow {
  /* background: url("../images/dvd_bg.jpg") no-repeat center; */
  background-color: #000000;
  background-size: cover;
  color: #FFFFFF;
}
#ownitnow .preorder_content {
  background: rgba(18, 57, 80, 0.8);
  border: 2px solid #598e88;
  border-radius: 12px;
  padding: 0 20px;
}
#ownitnow .tt-dvd {
  margin: 1em auto;
}
#ownitnow .dvd-releaseDate {
  font-size: 1.5em;
}
#ownitnow .digital, #ownitnow .blu-ray {
  margin: 2em auto;
}
#ownitnow h3 {
  font-size: 1.3em;
}
#ownitnow .movie-preorder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#ownitnow a img {
  margin: 5px;
}
.disable-btn {
  display: none;
}
@media screen and (max-width: 1600px) {
  .section-container {
    padding: 5vh 15px;
  }
  .siteBg {
    /*    background-size: auto 78%;*/
  }
}
@media screen and (max-width: 1600px) and (max-height: 800px) {
  .section-container {
    padding: 8vh 15px;
  }
  .siteBg video {}
}
@media screen and (max-width: 1366px) {
  .home-content > h1 {
    /*    max-width: 65%;*/
  }
  .cta-btn {
    /* max-width: 140px;*/
    font-size: 11px;
    height: 2.1rem;
  }
  .getTickets {
    /* max-width: 165px; */
    font-size: 14px;
    height: 2.2rem;
  }
  .characters img {
    max-width: 40%;
  }
  /* .cal_container div img {
    max-width: 22px;
  } */
  .getTickets {  
    /* font-size: 12px; */
    padding: 10px 25px;
  }
   .cta-btn-link {
    padding-top: 3px;
  } 
  .cta-save-btn {
    padding-top: 3px;
  }
}
@media screen and (max-width: 1366px) and (max-height: 800px) {
  .social-container-bottom img {
    height: 20px;
  }
    .movie-names {
        max-height: 20vh;
    }
    .movie-tt{
        max-height:38vh;
        top:42%;
    }
    .movie-date{
      margin: 0 auto;
    }
    .social-container-bottom {
      margin-bottom: 10px;
      margin-top: 8px;
  }
}
@media screen and (max-width: 1280px) {}
@media screen and (device-width: 1280px) and (device-height: 1024px) and (orientation: landscape), screen and (device-width: 1400px) and (device-height: 1050px) and (orientation: landscape), screen and (device-width: 1280px) and (device-height: 960px) and (orientation: landscape), screen and (max-width: 1200px) {}
@media screen and (device-width: 1280px) and (device-height: 720px) and (orientation: landscape) {}
@media screen and (max-width: 1200px), screen and (device-width: 1138px) and (device-height: 712px) and (orientation: landscape) {
  html, body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-overflow-scrolling: touch;
  }
  #modalTrailer .video-player {
    height: calc(100vh - 180px);
  }
  #youtubeVideointro img {
    height: auto;
  }
}
@media screen and (max-width: 1024px), screen and (device-width:1334px) and (device-height:800px) and (orientation:landscape) {
  .section-container {
    max-width: 80vw;
  }

  #youtubeVideointro img {
    height: auto;
  }
  .cta-btn {
    margin: 0 7px 1vh;
    height: 2rem;
  }
  .social-container-bottom {
    margin-bottom: 10px;
  }
  .getTickets {
    font-size: 12px;
    padding: 10px 25px;
  }
}
@media screen and (max-width: 950px) and (orientation:portrait), screen and (device-width: 1024px) and (device-height: 1366px) and (orientation: portrait) {
  .siteBg {
    background-image: url("../images/bg_portrait.jpg");
    background-size: auto 120%;
    background-position: center top;
    background-color: #1c0400;
  }
  .movie-names {
    top: 8vh;
    width: 405px;
    max-width: 72%;
  }
    .movie-tout{
        left: auto;
    right: auto;
    bottom: auto;
    top: 3%;
    width: 170px;
        max-width: 35%;
        border: 1px solid #fff!important;
        
    }
  .home-content {
    bottom: 0;
  }
  .home-content, .scrollIndicator {
    width: 100%;
    max-width: 98%;
    right: auto;
  }
  .device {
    display: block;
  }
  .desktop {
    display: none;
  }
  .section-container {
    max-width: 90%;
    min-height: inherit;
  }
  #gallery .section-container {
    padding-bottom: 10vh;
  }
  .left-content {
    width: 60%;
    padding-right: 5px;
    text-align: left;
  }
  .right-content {
    width: 40%;
    text-align: left;
  }
  .quiz-tout-wrapper {
    max-width: 65%;
    position: relative;
    right: auto;
    left: auto;
    margin: 0 auto;
    margin-bottom: 5%;
  }
  .quiz-tout-wrapper img:hover {
    transform: scale(0.95);
  }
  .cta-wrapper {
    /*        margin-bottom: 5%;*/
  }
  .movie-tt {
    max-width: 95%;
    top:50%;
    width: 700px;
  }
 
  .cast_crew_wrapper {
      padding-bottom: 10%;
  }
  .cal_container div img
  {
    max-width: 19px;
    margin-bottom: 1px;
  }
}
@media screen and (max-width: 800px) {
  .nav-container {
    width: 100%;
    right: -100%;
  }
  #modalTrailer .modal-content {
    height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
  }
  #modalTrailer .video-player {
    height: 0 !important;
    /*top: 50%;
       transform: translateY(-50%);*/
    padding-top: 56.25%;
    flex: none;
  }
  .youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .video-tout {
    width: 26vw;
    max-width: 200px;
    bottom: 2%;
  }
  .ytbvideo:hover img {
    transform: scale(1.0);
    ;
  }
}
@media screen and (max-width: 767px) {
  #closeCredits, #closeCreditsIntro {
    top: 5px;
    right: 5px;
  }
}

@media screen and (max-width: 560px) {
  .siteBg {
    background-image: url(../images/bg_portrait.jpg);
    background-size: auto 110vh;
  }
  .cta-btn-link {
    padding-top: 1px;
  } 
  .cta-save-btn {
    padding-top: 1px;
  }
}
@media screen and (max-width: 450px), screen and (max-height: 310px) and (orientation:landscape) {
  .share-container {
    /* top: 5px; */
  }
  #navIcon {
    margin-right: 0;
  }
  .blackBg {
    height: 45px;
  }
  .social-container-bottom img {
    height: 20px;
    width: auto;
  }
  .home-content > h1 {
    /*    max-width: 80%;*/
  }
  .cta-btn {
    max-width: 180px;
    font-size: 8px;
    height: 2rem;
    margin: 0 7px 2vh;
  }
  .getTickets {
    height: 1.5rem;
    /* max-width: 180px; */
    font-size: 12px;
    padding: 8px 15px;
  }
    .cal_container div img
  {
   /* max-width: 22px; */
/*    margin-top: 1px;*/
  }
  .section-container {
    min-height: 100vh;
    padding: 10vh 15px !important;
  }
  .section-container h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .section-container p {
    font-size: 14px;
    word-spacing: -1px !important;
  }
  .cast_crew_wrapper {
    width: 100%;
  }
  .video-thumb ul {
    display: inline-flex;
    justify-content: center; 
    overflow-x: auto;
    overflow-y: hidden;
  }
  .video-thumb ul li {
    flex-basis: 40%;
    min-width: 40%;
  }
  #gallery .section-container {
    min-height: calc(100vh - 300px);
    padding: 0 15px;
  }
  #trailer .section-container {
    min-height: calc(100vh - 300px);
    padding: 0 15px;
  }
  #gallery .section-container > div {
    padding-bottom: 10px;
    width: 100%;
  }
  #galleryThumb {
    width: 100% !important;
  }
  /*    .section-container{
        min-height: 100vh;
    }*/
  #galleryThumb .slick-slide {
    padding: 0 2px;
  }
  .footer-links a {
    font-size: 8px;
    margin: 0 3px;
  }
  .copyright {
    line-height: 9px;
    font-size: 7px;
    margin-top: 2px;
    padding: 0 15%;
  }
  .copyright br {
    display: block;
  }
  .getTickets {
    z-index: 12;
  }
  #mobile_rotate {
    display: none;
  }
  .introTrailer-cta {
    display: block;
    margin-top: 5%;
  }
  .introTrailer-cta img {
    max-width: 75%;
  }
  .characters {
    flex-direction: column;
  }
  .characters-bio {
    margin-top: 1em;
  }
  .partners-row div {
    width: 50%;
  }
  #characterart .slick-slider .slide-arrow {
    top: 10%;
  }
  #characterart .slick-slider .prev-arrow {
    left: 0px;
    z-index: 1;
  }
  #characterart .slick-slider .next-arrow {
    right: 0px;
  }
  .footer-links a:hover, #btnCredits:hover, #btnCreditsIntro:hover {
    color: rgb(224, 226, 230);
  }
  #ownitnow .section-container {
    padding: 10vh 0 !important;
  }
  #ownitnow .dvd-releaseDate {
    font-size: 1.2em;
  }
  #ownitnow .tt-dvd {
    max-width: 250px;
  }
  #ownitnow .packaged {
    font-size: 1em;
  }
  #ownitnow .movie-preorder img {
    max-width: 44%;
  }
}
@media screen and (max-width: 560px) and (max-height: 640px) {
  .siteBg {
    background-position: center top;
    background-size: auto 106vh;
  }
  .movie-names {
    max-width:60%;
  }
}
@media screen and (device-width: 1024px) and (device-height: 640px) {
  .cal_container div img {
    max-width: 18px;
/*    margin-top: -4px;*/
   }
   /* .movie-tt {
    max-width: 84% !important;
  } */
}

@media screen and (min-width:2400px) {
  .gallery-img img {
    width: 100%;
  }
  #youtubeVideointro img {
    height: auto;
  }
}
#tickets {
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}
#ticketingsectionoverlay {
  /* position: fixed;
  height: 100vh;
  width: 100%; 
  z-index: 9;  
  top: 0;
  background: rgba(0, 0, 0, 1); */
}
#gettickets {
  /* height: calc(100vh - 54px);
  width: calc(100% - 54px); */
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 1);
  z-index: 9;
  margin: 0px;
  /* border: 2px solid #df9a4d; */
}
/* to the body element */
.noscroll {
  overflow: hidden !important;
  height: 100% !important;
}
@media screen and (device-width:375px) and (device-height:667px) and (orientation: portrait) {}
@media screen and (device-width:360px) and (device-height:640px) and (orientation: portrait) {}
@media screen and (max-height: 310px) and (orientation:landscape) {
  body {
    overflow-y: scroll !important;
  }
}
@media (min-device-width: 1025px) {
  /*  .noscroll {
    padding-right: 15px;
  }*/
}
.ticketoverlay {
  position: fixed;
  /* overflow-y: scroll; */
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}
.ticketingoverlayCloseNew {
  transition: opacity 1s, z-index 0s 1s;
  width: 100vw;
  z-index: -1;
  opacity: 0;
}
.ticketingoverlayOpenNew {
  transition: opacity 1s;
  width: 100%;
  z-index: 8;
  opacity: 1;
  /* display: block; */
}
.ticketoverlay {
  background: rgba(40, 40, 40, .75);
}
button {
  padding: 1.5em 4em;
  cursor: pointer;
}
pre {
  background: #fafafa;
  padding: 15px;
  border: 1px #ccd dashed;
}
pre + p {
  margin: 5vh 0;
}
.ticketingoverlayclose {
  position: absolute;
  top: 50px;
  right: 50px;
  padding: 10px;
}
.close-ticketoverlay {
  position: absolute;
  bottom: -10px;
  right: calc(50% - 25px);
  padding: 0px;
  border-radius: 50%;
  background: #000;
  border: 0px solid #fff;
  z-index: 99;
}
.close-ticketoverlay img {
  width: 50px;
}
.close-ticketoverlay:focus {
  border: 0px solid #fff;
}
.youtubewrapper {
  width: 60%;
  display: none;
  text-align: center;
  color: #d84f09;
  margin: 0 auto;
  border: #d84f09 solid 1px;
  padding: 2%;
  border-radius: 12px;
}
.youtube_msg {
  font-size: 1.2em;
  margin-bottom: 2em;
  text-transform: uppercase;
}
.youtube_cta {
  background: #d84f09;
  color: #ffffff;
  display: inline-block;
  padding: 0.7em 1.2em;
  border-radius: 1em;
  border: none;
}
.youtube_cta:focus {
  border: none;
  outline: none;
}
/*#videoholder1{
	
	display:none;
}*/
/* Kids Modal */
.kids-mode {
  cursor: pointer;
}
.modal-kids-mode {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.warning-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 30%;
  width: 30%;
  text-align: center;
}
.warning-popup-body {
  border: 1px solid white;
  padding: 2%;
  background: #000;
}
.trailer-Links .image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}
.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.video-thumb li:hover .image {
  opacity: 0.3;
}
.video-thumb li:hover .middle {
  opacity: 1;
}
.text {
  background-color: #FFFFFF;
  color: #000000;
  font-size: 16px;
  padding: 16px 32px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.vjs-icon-placeholder, .vjs-control-bar .vjs-time-control.vjs-time-divider, .vjs-mouse-display, .vjs-play-progress.vjs-slider-bar {
  opacity: 1;
  z-index: 1;
}
.video-js {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.vjs-nofull .vjs-fullscreen-control {
  display: none;
}
.video-js .vjs-current-time {
  display: block;
}
.video-js .vjs-time-divider {
  display: block;
}
.video-js .vjs-duration {
  display: block;
}
.video-js .vjs-remaining-time {
  display: block;
}
.video-js .vjs-load-progress {
  display: inline-block;
  background: PaleGreen;
  height: 8px;
  width: 100%;
}
.video-js .vjs-play-progress {
  display: inline-block;
  background: LightCoral;
  height: 8px;
  width: 100%;
}
.video-js .vjs-picture-in-picture-control {
  display: none;
}
.vjs-control-bar button {
  outline: none;
}

  
  @media only screen and (max-width: 767px) and (orientation: landscape), screen and (max-device-height: 450px) and (min-device-width: 740px) and (orientation: landscape), screen and (device-width: 414px) and (device-height: 896px) and (orientation: landscape), screen and (max-device-width: 500px) and (max-device-height: 1023px) and (orientation: landscape), screen and (max-height:450px) and (orientation: landscape), screen and (max-height: 500px) and (max-width: 1023px) and (orientation: landscape) {
    body {
      overflow: hidden !important;
      background: #000000;
      height: 100% !important;
    }
    #mobile_rotate {
      width: 100%;
      height: 100%;
      background-color: #fff;
      background-image: url(../images/rotate_device.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 8999;
      display: block;
    }
  }