* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.hero {
  background-image: linear-gradient(rbga(12, 3, 51, 0.3), rbga(12, 3, 51, 0.3));
  display: inline-block;
  align-items: center;
  justify-content: center;
}

html {
  scroll-behavior: smooth;

}

/* Arrow buttons on gallery, work fine, resizing doesn't work so well, leave hidden until implemented better
.arrow{
  display: none;
}

/* SHOW ACTIVE */

.currentshow img{
 animation: 0.4s fadeInUp;
  animation-fill-mode: forwards; 
  opacity: 0;
}


.sticky{
  display:inline-block; 
}


/* SHOW ACTIVE END */

/* SHOW NOT ACTIVE */

/*
.sticky{
  display:none;
}

.currentshow img{
  opacity: 0;
}

img.poster.active{
  display:none;
}

*/
/* SHOW NOT ACTIVE END */


.hide{
  display:none;
}

@media only screen and (max-width : 768px) {}


/* Book Now Button on hover effect */

.sticky:hover {
  background-color: rgb(136, 27, 27);
  transition: 0.2s;
  color: #ffffff;
}


/* LOADER */

#loader {
  position: absolute;
  left: 50%;
  top: 70%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -76px 0 0 -64px;
  border: 16px solid #d6d6d6;
  border-radius: 50%;
  border-top: 16px solid rgb(192, 33, 33);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  pointer-events: none;

}
#loader2 {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 250px;
  height: 250px;
  margin: -100px 0 0 -130px;
  animation: linear infinite;
  pointer-events: none;

}
#loader3 {
  position: absolute;
  top:0;
left:0;
bottom:0;
right:0;
  z-index: 1;
  width: 100%;
  height: 100%;
  color:#eee;
  background-color:#eee;
  display: block;
  opacity: 1;
  transition: 1s opacity ease-in;
  pointer-events: none;

}

#loader3.hidden {
  opacity: 0;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 2s;
  animation-name: animatebottom;
  animation-duration: 2s;
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#myDiv {
  display: none;
}

/* END OF LOADER */



/* Theatre */
/*
.parallax {
  background-image: url("assets/theatrebackgroundblackandwhite.webp");

 
  height: 2000px;
  color:white;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
}

/*
.parallax h4{
  color:#ffffff;
}

.theatres{
  line-height: 50px;
  margin-top: 30px;
  position: sticky;
  text-align: left;
  top: 140px;
  font-size: 3rem;
  opacity: 0;
}

.theatres.active{

  animation: 0.4s fadeInUp;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

.theatrepic{
  width: 60%;
  margin-top: 210px;
  top: 200px;
  position: sticky;
  opacity: 0;
  margin-bottom:470px;
}

.theatrepic.active{

  animation: 0.4s fadeInUp;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
}


.theatretext{
  height: auto;
  line-height: 50px;
  margin-top: 130px;
  font-size: 24px;
  text-align: left;
  width: 100%;
  position: sticky;
  top: 480px;
  text-size-adjust: auto;
  opacity: 0;
}

.theatretext.active{

  animation: 0.4s fadeInUp;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
}

/* End of Theatre */

/* LIGHT BOX */

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  overflow: hidden
}

/* Modal Content */
.modal-content, .hit-content, .ala-content, .jack-content {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 100vh;
  justify-content: center;
  display: flex;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(-45%);
  overflow: hidden
}

.modal img{
  object-fit: contain;
  max-height: 90%;
  max-width: auto;
  overflow: hidden
}

/* The Close Button */
.close {
  color: #eee;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev {
  cursor: pointer;
  position: fixed;
  top: 50%;
  left:0;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #eee;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;

}
.next {
  cursor: pointer;
  position: fixed;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #eee;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;

}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgb(192, 33, 33)
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Caption text */
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: #eee;
}

img.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* END */

section {
  text-align: left;
}




/* SCROLL DOWN */

.scroll {
  top: 120px;
  position: relative;
  width: 100%;
  opacity: 0;
  animation: 0.4s fadeIn;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  }

.scroll::before {
  animation: bounce 1s ease infinite;
  bottom: 2rem;
  color: #fff;
  content: '╲╱';
  font-size: 2rem;
  height: 4rem;
  left: 50%;
  letter-spacing: -1px;
  line-height: 4rem;
  margin-left: -3rem;
  opacity: 0.8;
  position: absolute;
  text-align: center;
  width: 6rem;
}

@keyframes bounce {
  50% {
    transform: translateY(-50%);
  }
}

/* END OF SCROLL DOWN */

.arrow{
  border: solid rgb(136, 27, 27);
  border-width: 0 5px 5px 0;
  padding: 10px;
  position: absolute;
  overflow: none;
  border-radius: 3px 0 0 3px;
  display: none;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}


.backt{
  background-image: url("assets/theatrebackgroundblackandwhite2.webp");
  height: 100%;
  color:#eee;
  box-sizing: border-box;
  background-attachment: fixed;
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left:0%;
  margin-right:0%;
}

#header li a{    
  width:5%;
  display:inline-flex;
  padding: 15%;
}

#header li a:hover{    
  background-color:rgb(136, 27, 27);
  transition: 0.2s;
  top: 20%;
  width:15%;
  height:20%;
  padding: 15%;
}


/* Main Show Image */
.currentshow img {
  margin-top: 5%;
  width: 70%;
  height: auto;
  float: center;
}


.currentshow p{
  text-shadow: 2px 2px 4px #000000;

}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
      transform: translateY(50px);
      opacity: 0;
  }

  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.fade-in-up {
  animation: 0.75s both fadeInUp;
}


.content {
  text-align: center;
}

h2, h3, h4, h5, h6 {
  color: #333;
  text-decoration: underline;
  text-decoration-color: rgb(192, 33, 33);;
}


/* .content a{
   text-decoration: none;
   display: block;
   font-size: 2vw;
   color:rgb(255, 255, 255);
   text-size-adjust: auto;
   margin-top: 10px;
}
*/

.currentshow.img:hover{

  animation: 0.4s fadeInUp;
  animation-fill-mode: forwards;

}
.text {
  display: block;
  width: 100%;
  border: 1px solid #eee;
  background-color: #fff;
}

/* FAQs*/
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.accordion.active,
.accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: #eee;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

/* Google Maps */
.map {
  margin: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  float: right;
  border-style: solid;
  border-color: rgb(136, 27, 27);

}

/* Theatre Image */
img.theatre {
  opacity: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  float: center;
  z-index: 0;
  border-style: solid;
  border-color: #eee;

}

img.theatre.active {
  animation: 0.4s fadeInUp;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}


/* Special Thanks */

.thanks{

  width:17%;
  height:auto;
  display: inline-block;
  vertical-align: auto;
  padding:30px;
}

p{
  line-height:1.5;
  color:#222;
}

  /* Gallery Buttons Scroll */
  div.container {
    white-space: nowrap;
    height: 100%;
    width: 100%;
    display: grid; 
    padding: 0 6px;
    float: left;
    overflow: auto;
}

.responsive {
  width: 24.99999%;
  justify-content: space-between;
}

@media only screen and (max-width: 700px) {
  .responsive {
      width: 49.99999%;
      margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
      width: 100%;
  }
}

#gallerycontainer {
  height: 100%;
  width: 100%;
  float: left;
  overflow: auto;
  scroll-behavior: smooth;

}

#content {
width: 20%;
height: 10%;
white-space: nowrap;

}

.gallery {
  margin-right: 10px;
  border: transparent;
  background-color: transparent;
}
.gallery img{
  border-radius: 15px;
  justify-content: center;
}



.gallery:hover {
  transition: .2s ease;
  opacity:0.7;
}

.socialhover:hover{
  opacity: 0.7;
}

/* Galaxy Fold SMALLEST*/
@media (min-width: 320px) {
  p {
      font-size: 1rem;
  }

  h2, h3, h4, h5, h6 {
      font-size: 2.5rem;
  }

  #sub {
      font-size: 1.5rem;
      font-weight: normal;
  } 

  section {
      margin-left: 1em;
      margin-right: 1em;
  }

  #thankssection{
    margin-left: 1em;
    margin-right: 1em;
}
  
  .theatreText{
    margin-left:1em;
    margin-right:1em;
  }
  .accordion {
    font-size: 1rem;
}

/* Background video */

@media (min-aspect-ratio: 16/9) {
  .back-video {
      width: 100%;
      height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  .back-video {
      width: auto;
      height: 100%;
  }
}

.back-video {
  left: 0;
  top: 0;
  margin-right: 50px;
}

  /* Nav Bar Height */

  nav {
    height: 60px;
    position: sticky;
    top: 0;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .hero {
    width: 100%;
    height: 50vh;
  }

 /*Nav Bar*/
 #header {
  color: #eee;
  background-color: transparent;
  width: 100%;
  /*height: 10vh;
  */
  margin-right: auto;
  margin-left: auto;
  padding: 3px 4%;
  /* width: 100%;
   min-width: 10px;
   */
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  /* justify-content: space-between;
  */
  transition: 0.2s;
  /*padding: 10px 8%;
  */
  /* Moves the nav bar down from the top */
}


.social {
  z-index: 2;
  width: 30%;
  position:absolute;
  display:block;
  top:5%;
  align-items: center;
  margin-left:34%
}

.social img{

  width: 5%;
  height:5%;
}


  /* Nav Bar Contents */
  #header li {
    display: none;
  }

  #header li a {    
    display: none;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

    /* Side Navigation Bar */
    .sidenav {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 3;
      top: 0;
      right: 0;
      background-color: #111;
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 60px;
      
      
  }

  .sidenav a {
      padding: 8px 8px 8px 32px;
      text-decoration: none;
      font-size: 25px;
      color: #818181;
      display: block;
      transition: 0.3s;
      
  } 
  .sidenav a img{
    width: 10%;
    
}

  .sidenav a:hover {
      color: #f1f1f1;
  }

  .sidenav .closebtn {
      position: absolute;
      top: 0;
      right: 25px;
      font-size: 36px;
      margin-right: 50px;
  }

  #main {
    transition: margin-right .5s;
    padding: 16px;
    
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

  /* Menu Button */

  #sidebutton{
    font-size:17px;
    text-overflow: clip;
    white-space: nowrap;
    overflow: hidden;
    
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  /* Main Show Image */
  .currentshow img {
    margin-top: 40%;
    width: 100%;
    height: auto;
    float: center;
}

  /* Date and Location Text */
  .currentshow p {
    text-decoration: none;
    display: block;
    font-size: 27px;
    color: rgb(255, 255, 255);
    text-size-adjust: auto;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

  /* Book Now Button */
  .sticky {
    text-decoration: none;
    background-color: rgb(192, 33, 33);
    color: rgb(255, 255, 255);
    box-shadow: 0 8px 160px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    position: sticky;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    top: 1%;
    margin:auto;
    text-align: center;
    padding: 5px;
    border-radius: 50px;
    margin-top: 20px;
    z-index: 1;
    width:45%;
    font-size: 14px;
}


@media screen and (max-width: 800px) {
    .column {
        flex: 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 300px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}

/* Poster */
.poster {
  opacity: 0;
  width: 55%;
  height: auto;
  position: right;
  float: right;
  padding: 2%;
  z-index: 1;
  display: block;
  
}

.poster.active:hover {
  opacity:0.7;
visibility: visible;
animation-fill-mode: none;
pointer-events: auto;
}

img.poster.active {
  z-index: 1;
  animation: 0.4s fadeInUp;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}



  /* Theatre Image */

  img.theatre {
      width: 100%;
      height: auto;
  }

  /* Map */

  .map {
      width: 200px;
      height: 150px;
  }

  /*Space between Logo and Menu options */
  #header a {
      width: 100%;
  }

   /* NRAD Logo */
   #header .logo {
    width: 30%;
}



  /* Gallery Blocks */
  .row {
      display: flex;
      flex-wrap: wrap;
      padding: 0 4px;
  }

  .column {
      flex: 25%;
      max-width: 25%;
      padding: 0 4px;
  }

  .column img {
      margin-top: 8px;
      vertical-align: middle;
      width: 100%;
  }

  .block {
      border: solid 1px #252525;
      opacity: 0;
      visibility: hidden;
      animation: reveal 2s ease;
      animation-fill-mode: forwards;
      pointer-events: auto;

  }

  
  .block:hover {
    opacity:0.7;
    visibility: visible;
    animation-fill-mode: none;
    pointer-events: auto;

}


  /* Reveal Animation */
  .title {
    opacity: 0;
    z-index: -1;
}

.title.active {
    animation: 0.4s fadeInUp;
    animation-fill-mode: forwards;
}

.word {
    opacity: 0;
    z-index: -1;
    display: inline;

}

.word.active {
    text-size-adjust: auto;
    animation: 0.4s fadeInUp;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

    /* Special Thanks */

    .thanks{

      width:45%;
      padding:15px;
    }


#content {
width: 50%;
height: 10%;
}

.gallery img{
  width: 100%;
  height: 100%;
}
}

@media (pointer:none), (pointer:coarse) {

.right {
  visibility: hidden;
}
.left {
  visibility: hidden;
}
}




/* iPhone XR */
@media (min-width: 400px) {

  /* Book Now Button */
  .sticky {
    top: 1%;
    width:40%;
}

/* Poster */
.poster {
  width: 60%;
}
}

/* Surface Duo */
@media (min-width: 500px) {

  /* Book Now Button */
  .sticky {
    top: 2%;
    width:40%;
}

/* Poster */
.poster {
  width: 50%;
}

 /* Special Thanks */

 .thanks{

  width:30%;
}



/* PAST SHOWS */
#content {
  width: 25%;
  height: 10%;
  }
  
  .gallery img{
    width: 100%;
    height: 100%;
  }
/* PAST SHOWS END */


}

/* iPad Mini */
@media (min-width: 768px) {

  /* Text */
  p{
    font-size:25px;
  }
  .accordion {
    font-size: 25px;
}

#sub{
  font-size: 2rem;
}
/* Poster */
.poster {
  width: 50%;
}

/* Book Now Button */
.sticky {
  top: 1%;
  width:40%;
  font-size:20px;
}
 /* Menu Button */
 #sidebutton{
  font-size:25px;
  text-overflow: clip;
  white-space: nowrap;
  overflow: hidden;
}



/* PAST SHOWS */
#content {
  width: 25%;
  height: 10%;
  }
  
  .gallery img{
    width: 100%;
    height: 100%;
  }
/* PAST SHOWS END */
      

 /*Nav Bar*/
 #header {
  padding: 40px 8%;  /* Moves the nav bar down from the top */
}

 /* Special Thanks */

 .thanks{

  width:25%;
}
    

}

/* iPad Air */
@media (min-width: 820px) {

  p {
    font-size: 25px;
}

.accordion {
  font-size: 25px;
}


.content a{
  font-size: 27px;
}

/* Map */
.map {
  width: 350px;
  height: 300px;
}



 /* Menu Button */

 #sidebutton{
  font-size:35px;
  text-overflow: clip;
  white-space: nowrap;
  overflow: hidden;
}

/* Book Now Button */
.sticky {
  top: 0.25%;
  width:40%;
  font-size:10px;
}

 /* Special Thanks */

 .thanks{

  width:30%;
}

}


/* Surface Pro */
@media (min-width: 912px) {

  p {
    font-size: 35px;
  }
  .accordion {
    font-size: 35px;
}

#sub{
    font-size: 3rem;
  } 
  h2, h3, h4, h5, h6 {
    font-size: 58px;
  }

  /* Book Now Button */
.sticky {
  top: 0.5%;
  width:40%;
}

.poster{
  width: 55%;
}


 /*Nav Bar*/
 #header {
  padding: 50px 8%;  /* Moves the nav bar down from the top */
}



}

/* Tablet Res */
@media (min-width: 962px) and (min-height:601) {

   /* Main Show Image */
   .currentshow img {
    margin-top: 0%;
    width: 30%;
    height: 1%;
    float: center;
}
}

/* Nest Hub */
@media (min-width: 1024px) and (max-height: 600px) {

  /* Book Now Button */
.sticky {
  top: 2%;
}

   /* Main Show Image */
.currentshow img {
  margin-top: 5%;
  width: 60%;
  height: auto;
  float: center;
}


 /* Special Thanks */

 .thanks{

  width:20%;
}
}


/* DESKTOP */
@media (min-device-width: 1280px) and (min-device-height: 720px) {
  
  p {
      font-size: 1.5rem;
  }
  .accordion {
    font-size: 1.5rem;
}


h2, h3, h4, h5, h6 {
      font-size: 3rem;
  }


  #sub {
      font-size: 2rem;
      font-weight: normal;
  }

  section {
      margin-left: 10em;
      margin-right: 10em;
  }

  #thankssection{
    margin-left: 10em;
    margin-right: 10em;
}
  .theatreText{
    margin-left:10em;
    margin-right:10em;
  }

  html{
    scroll-padding-top: 9rem;
  }
  
  /* Nav Height*/

  nav {
    height: 130px;
    position: sticky;
    top: 0;
  }
  img:target{
    transform: scale(0.9); 
  }

  /* Poster */

  .poster {
    width: 40%;
  }

  /* Side Bar Disappear */
  #main {
      display: none;
  }

 


  /* Social Media */

  .social {
    z-index: 2;
    width: 28%;
    position:absolute;
    display:block;
    top:5%;
    align-items: center;
    float:right;
    margin-left:33.5%;
  }
  
  .social img{
  
    width: 6%;
    height:6%;
  }

    /* Book Now Button */
.sticky {
  top: 4%;
  width:16%;
}

.sticky h1 {
  font-size: 35px;
}



/* PAST SHOWS */
#content {
  width: 20%;
  height: 10%;
  }
  
  .gallery img{
    width: 100%;
    height: 100%;
  }
/* PAST SHOWS END */



  /* Main Show Image */
  .currentshow img {
      margin-top: 3%;
      width: 60%;
      height: auto;
  }

  .content.a {
      text-decoration: none;
      display: block;
      font-size: 40px;
      color: rgb(0, 0, 0);
      text-size-adjust: auto;
      margin-top: 10px;
      z-index: 3;
  }

  .map {
      width: 400px;
      height: 300px;
  }

  /* Width of text on nav */
  #header a {
      width: 1%;
  }

  /* Resize NRAD Logo image */
  #header .logo {
      width: 200px;
  }

  #header ul li {
      list-style: none;
      width: 65px; /* Space between "Home, What's On, etc" */
      display: inline-block;
  }

  #header ul li a {
      text-decoration: none;
      color: rgb(255, 255, 255);
      font-size: 15px;
      display: inline-flex;
  }


  .hero {
      width: 100%;
      height: 100%;
  }

  #header {
      color: #eee;
      background-color: transparent;
      margin-right: auto;
      margin-left: auto;
      position: fixed;
      z-index: 1;
      top: 0;
      left: 0;
      align-items: center;
      justify-content: space-between;
      transition: 0.2s;
      padding: 3px 4%;
  }


  button img {
      width: 100%;
  }

  /* Gallery Picture Blocks */
  .row {
      display: flex;
      flex-wrap: wrap;
      padding: 0 4px;
  }

  .column {
      flex: 25%;
      max-width: 25%;
      padding: 0 4px;
  }

  .column img {
      margin-top: 8px;
      vertical-align: middle;
      width: 100%;
  }


  @media screen and (max-width: 800px) {
      .column {
          flex: 50%;
          max-width: 50%;
      }
  }

  @media screen and (max-width: 600px) {
      .column {
          flex: 100%;
          max-width: 100%;
      }
  }

  
 /* Special Thanks */

 .thanks{

  width:20%;
  
}

.right {
  visibility: visible;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right:120px;
  top:3900px;
}

.left {
  visibility: visible;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left:120px;
  top:3900px;
}

}


/* DESKTOP */
@media (min-device-width: 1280px) and (min-device-height: 800px) {


  .right {
    right:120px;
    top:3900px;
  }
  
  .left {
    left:120px;
    top:3900px;
  }
  
}

/* DESKTOP */
@media (min-device-width: 1280px) and (min-device-height: 1024px) {

  
  #header ul li {
    width: 65px; /* Space between "Home, What's On, etc" */
}

#header ul li a {
    font-size: 15px;
}

#header {
    padding: 3px 3%;
}

}


/* DESKTOP */
@media (min-device-width: 1366px) and (min-device-height: 768px) {

  
  #header ul li {
    width: 70px; /* Space between "Home, What's On, etc" */
}

#header ul li a {
    font-size: 15px;
}

#header {
    padding: 3px 3%;
}

.right {
  right:120px;
  top:3980px;
}

.left {
  left:120px;
  top:3980px;
}
}

/* DESKTOP */
@media (min-device-width: 1440px) and (min-device-height: 900px) {

  /* Main Show Image */
.currentshow img {
  margin-top: 3%;
  width: 70%;
  height: auto;
}

  
  #header ul li {
    width: 65px; /* Space between "Home, What's On, etc" */
}

#header ul li a {
    font-size: 15px;
}

#header {
    padding: 3px 5%;
}


.social {
  margin-left:29.5%;
}


.right {
  right:120px;
  top:4170px;
}

.left {
  left:120px;
  top:4170px;
}
}

/* DESKTOP */
@media (min-device-width: 1536px) and (min-device-height: 864px) {

  #header ul li {
    width: 70px; /* Space between "Home, What's On, etc" */
  }
  
  #header ul li a {
    font-size: 15px;
  }
  
  #header {
    padding: 4px 5%;
  }

      /* Book Now Button */
.sticky {
  top: 4%;
  width:20%;
}

.sticky h1 {
  font-size: 45px;
}


.right {
  right:120px;
  top:4170px;
}

.left {
  left:120px;
  top:4170px;
}

}

/* DESKTOP */
@media (min-device-width: 1680px) and (min-device-height: 1050px) {

  .right {
    right:120px;
    top:4340px;
  }
  
  .left {
    left:120px;
    top:4340px;
  }
}

/* DESKTOP */
@media (min-device-width: 1920px) and (min-device-height: 1080px) {

 #header ul li {
  list-style: none;
  width: 80px; /* Space between "Home, What's On, etc" */
  display: inline-block;
}

section {
  margin-left: 24em;
  margin-right: 24em;
}
#thankssection {
  margin-left: 24em;
  margin-right: 24em;
}
.theatreText{
  margin-left:24em;
  margin-right:24em;
}

/* Main Show Image */
.currentshow img {
  margin-top: 3%;
  width: 60%;
  height: auto;
}


#header ul li {
  list-style: none;
  width: 70px; /* Space between "Home, What's On, etc" */
  display: inline-block;
}

#header ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 15px;
  display: inline-flex;
}

.hero {
  width: 100%;
  height: 100%;
}

#header {
  color: #eee;
  background-color: transparent;
  margin-right: auto;
  margin-left: auto;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: space-between;
  transition: 0.2s;
  padding: 4px 12%;
}

/* Social Media */

.social {
  z-index: 2;
  width: 30%;
  position:absolute;
  display:inline-block;
  top:5%;
  align-items: center;
  /* margin-left: 33.5%; */
  margin-left: 23%;
}

.social img{

  width: 5%;
  height:5%;
}

 /* Poster */

 .poster {
  width: 35%;
}



    /* Book Now Button */
    .sticky {
      top: 3%;
      width:20%;
      font-size: 10px;
    }

/* Special Thanks */

.thanks{

  width:20%;
}


.right {
  visibility: visible;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right:350px;
  top:4220px;
}

.left {
  visibility: visible;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left:350px;
  top:4220px;
}

}

/* DESKTOP */
@media (min-device-width: 3440px) and (min-device-height: 1440px) {

  
  /* Main Show Image */
  .currentshow img {
    width: 47%;
  }
  
  section {
    margin-left: 54em;
    margin-right: 54em;
  }

  #thankssection {
    margin-left: 54em;
    margin-right: 54em;
  }
  
  .theatreText{
    margin-left:54em;
    margin-right:54em;
  }

   /* Poster */
  
   .poster {
    width: 30%;
  }
  
     /* Book Now Button */
     .sticky {
      top: 2%;
      width:13%;
    }

    /* Special Thanks */

.thanks{

  width:17%;
}
    
.social {
  z-index: 2;
  width: 30%;
  position:absolute;
  display:block;
  top:5%;
  align-items: center;
  margin-left:12.5%
}

.social img{

  width: 3%;
  height:3%;
}

  }

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}



/* Background Video Transition */
@keyframes fadeInVideo {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}


.back-video {
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  animation-name: fadeInVideo;
  animation-duration: 1.5s;
  animation-delay: 8s;
  animation-fill-mode: forwards;
  filter: brightness(50%);
}

/* Sections */
/* Gallery Selection */
div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
  
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Gallery Animation */
@keyframes reveal {
  100% {
      opacity: 1;
      visibility: visible;
  }
}

.block:nth-child(1) {
  animation-delay: 500ms;
}

.block:nth-child(2) {
  animation-delay: 700ms;
}

.block:nth-child(3) {
  animation-delay: 900ms;
}

.block:nth-child(4) {
  animation-delay: 1100ms;
}

.block:nth-child(5) {
  animation-delay: 1300ms;
}

.block:nth-child(6) {
  animation-delay: 1500ms;
}

.block:nth-child(7) {
  animation-delay: 1700ms;
}

.block:nth-child(8) {
  animation-delay: 1900ms;
}

.block:nth-child(9) {
  animation-delay: 2100ms;
}

.block:nth-child(10) {
  animation-delay: 2300ms;
}

.block:nth-child(11) {
  animation-delay: 2500ms;
}

.block:nth-child(12) {
  animation-delay: 2700ms;
}

.block:nth-child(13) {
  animation-delay: 2900ms;
}

.block:nth-child(14) {
  animation-delay: 3100ms;
}

.block:nth-child(15) {
  animation-delay: 3300ms;
}

.block:nth-child(16) {
  animation-delay: 3500ms;
}

.block:nth-child(17) {
  animation-delay: 3700ms;
}

.block:nth-child(18) {
  animation-delay: 3900ms;
}

.block:nth-child(19) {
  animation-delay: 4100ms;
}

.block:nth-child(20) {
  animation-delay: 4300ms;
}

.block:nth-child(21) {
  animation-delay: 4500ms;
}

.block:nth-child(22) {
  animation-delay: 4700ms;
}

.block:nth-child(23) {
  animation-delay: 4900ms;
}

.block:nth-child(24) {
  animation-delay: 5100ms;
}

.block:nth-child(25) {
  animation-delay: 5300ms;
}

.block:nth-child(26) {
  animation-delay: 5500ms;
}

.block:nth-child(27) {
  animation-delay: 5700ms;
}

.block:nth-child(28) {
  animation-delay: 5900ms;
}

.block:nth-child(29) {
  animation-delay: 6100ms;
}

.block:nth-child(30) {
  animation-delay: 6300ms;
}

.block:nth-child(31) {
  animation-delay: 6500ms;
}

.block:nth-child(32) {
  animation-delay: 6700ms;
}

.block:nth-child(33) {
  animation-delay: 6900ms;
}

.block:nth-child(34) {
  animation-delay: 7100ms;
}

.block:nth-child(35) {
  animation-delay: 7300ms;
}

.block:nth-child(36) {
  animation-delay: 7500ms;
}

.block:nth-child(37) {
  animation-delay: 7700ms;
}

.block:nth-child(38) {
  animation-delay: 7900ms;
}

.block:nth-child(39) {
  animation-delay: 8100ms;
}

.block:nth-child(40) {
  animation-delay: 8300ms;
}