<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Open+Sans&amp;display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face{
  font-display: swap;

}

::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

body{
  font-family: 'Open Sans', sans-serif;
  background-image: url("../images/headerimage.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #01232C;
}

li, a {
  background-color: inherit;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
}


header{
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 5%;
  background-color: rgba(152, 41, 22, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 30;
}


.return{
  cursor: pointer;
  margin-right: auto;
  background: rgba(255, 0, 0, 0);
}



.logo{
  cursor: pointer;
  margin-right: auto;
}


.nav_links{
  list-style: none;
}

.nav_links li{
  display: inline-block;
  padding: 0px 20px;
}


.nav_links li a:hover {
   font-weight: bold;
}

#selected{
  border-bottom: solid 2px rgba(255, 255, 255, 0.5);
}

.menu{
  display: none;
}

button{
  padding: 9px 25px;
  background-color: rgba(0,136,169,1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
}




/** MOBILE NAV **/

.overlay{
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  background-color: #01232C;
  overflow-x: hidden;
  transition: all 0.5s ease;
}

.overlay_content{
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay a{

  padding: 15px;
  font-size: 36px;
  display: block;
  transition: all 0.3s ease;

}

.overlay:hover, .overlay a:focus{
  color: dodgerblue;
}

.overlay .close{
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

.close{
  cursor: pointer;
}

@media screen and (max-height: 450px){
  .overlay a{
    font-size: 20px;
  }
  .overlay .close{
    font-size: 40px;
    top: 15px;
    right: 35px;
  }

}


main {
  color: #ffffff;
  text-align: center;
  display: grid;
  /*grid-template-rows: 200px 900px 1fr 1fr 1fr;*/
  grid-template-rows: 1fr 0.2fr 0.5fr 0.8fr 0.5fr;
  padding: 5%;
}



.aboutUS{
  grid-row: 2;
  padding-bottom: 2%;
}

.moreText{
  padding-top: 3%;
  padding-left: 20%;
  padding-right: 20%;
}

.photography{
  grid-row: 3;
}

.shortFilms{
  grid-row: 4;
  padding-bottom: 5%;
}

.promoMaterial{
  grid-row: 5;
}



/********* The Divider START ************/


.theDivider{
  color: white;
  align-items: center;
  text-align: center;
}

.theDivider h2{
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  padding-bottom: 5px;
}

.dividerType{
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  /**** Got to FIX the border going to the edge. Should only be like 70% ****/
  border-bottom: solid 1px rgba(255, 255, 255, 0.7);
  padding-bottom: 5px;
}

.dividerQuote{
  padding: 10px;
}

/******************** Divider!!! ABOVE ************************/

/********************** PHOTOS START *************************/

.photographs{
  padding: 2% 2% 2% 2%;
}

.photographs img{
  border-radius: 25px;
  margin-right: 2%;
  margin-bottom: 2%;
}


/********************** PHOTOS END *************************/

/********************** EPISODES START *************************/


.episodes:hover{
  background-color: rgba(225, 225, 225, 0.3);
}


.episodes img{
  border-radius: 10px;
}

.epInfo{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.text{
  padding-left: 5%;
}

.text h3{
  letter-spacing: 1px;
  padding-bottom: 2%;
}

/********************** EPISODES END *************************/

/********************** PROMO START *************************/

.promoWrapper{

  /** This is a grid in a grid, but not a subgrid. Chrome doesn't support subgrids yet... I don't know how but it's staying **/
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 10%;
  padding-top: 3%;
}

#one{
  grid-column: 1;
  /** The shadow floats cause the corners are hardbaked into the image **/
  /*  box-shadow: 2px 2px 2px rgba(0, 0, 0, 1); */

}

#two{
  grid-column: 2;
}

#three{
  grid-column: 3;
}

.promoWrapper img{
  width: 30%;
  height: auto;
}

/********************** PROMO END *************************/

footer{
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
}

.socials{
  background-color: inherit;
  display: inline-block;
  padding: 0px 20px;
}


@media only screen and (min-device-width: 1025px) {

    .IPX{
      display: none;
    }
}

@media only screen and (min-device-width: 1024px) {

    .IPX{
      display: none;
    }
}

@media only screen and (max-width: 800px) {
  .nav_links{
    display: none;
  }
  .menu{
    display: inherit;
  }

}


@media only screen and (device-width: 375px) {

  .nav_links{
    display: none;
  }
  .menu{
    display: inherit;
  }

  .full{
    display: none;
  }
}
</pre></body></html>