:root {
  --orange: #EA8C00;
  --light-orange: #FDEACF;
  --mid-orange: #FBD784;
  --heading-font: "Playfair Display";
  --p-font: "Arial";
  --gray: #444444;
  --dark-blue: #101010;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--mid-orange);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange); 
}

html {
  font-family: var(--p-font);
  font-size: 12px;
  scroll-behavior: smooth;
  cursor: default;
}

body {
  background-color: var(--light-orange);
  font-size: 12px;
}

.body-wrapper {
  overflow-x: hidden;
}

.container {
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}
.show-when-830 {
  display: none;
}

.fixed-center {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.img-enlarge {
  max-width: 80% !important;
  width: auto !important;
  max-height: 85%;
  height: auto !important;
  cursor: default !important;
}

.smaller-container {
  width: 75%;
  margin: 0 auto;
  max-width: 900px;
}

button {
  cursor: pointer;
}

/* For client and work list window */
.full-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .7);
  z-index: 10;
}

#work-list-window {
  display: none;
  position: absolute;
  border-radius: 25px;
  top: 25%;
  left: 10%;
  right: 10%;
  background-color: var(--mid-orange);
  z-index: 11;
}

.work-list-container h2 {
  font-size: 3em;
  color: var(--gray);
  text-align: center;
  padding-bottom: 40px;
}

#work-list-content h2 {
  font-size: 2em;
  color: var(--gray);
  text-align: left;
  padding: 20px 0;
}


.work-list-container img {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

.work-list-container {
  padding: 8%;
}
.search-field {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
#search {
  width: 70%;
  border-radius: 8px;
  border: 0px solid var(--gray);
  padding: 1em;
  font-size: 1.2em;
  margin: 10px 0;
  background-color: white;
  margin-right: 20px;
  flex: 0.6;
}

#search-button {
  padding: 1.1rem 2rem;
}

.navbar .btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.1s;
}
.navbar .btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e76a04;
  z-index: -2;
}
.navbar .btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  background-color: var(--orange);
  transition: all 0.3s;
  z-index: -1;
}
.navbar .btn:active {
  transform: translateY(2px);
}
.navbar .btn:hover::before {
  width: 100%;
}

#work-list-window:after {
    position: absolute;
    content: "";
    bottom: -40px;
    height: 40px;
    width: 1px;
}

.close-circle {
  position: absolute;
  right: 5%;
  top: -25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--orange);
  padding: 10px;
  cursor: pointer;
}

.close-cross {
  object-fit: scale-down;
  width: 100%;
  height: auto;
}

/* ------------------ */

/* Carousel stylesheet */
.carousel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
  overflow: hidden;
}

.carousel__track-container {
  position: relative;
  height: 100%;
}

.carousel__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.carousel__track {
  list-style: none;
  position: relative;
  height: 100%;
  transition: transform 500ms ease-in;
}

.carousel__slide {
  position: absolute;
  top:0;
  bottom: 0;
  width: 100%;
}

.carousel__caption-nav {
  position: absolute;
  bottom: 145px;
  left: 50%;
  transform: translateX(-50%);
}

.carousel__nav {
  display: flex;
  position: absolute;
  transform: translateX(-50%);
  justify-content: center;
  z-index: 2;
  bottom: -40%;
  left: 50%;
}

.carousel__indicator {
  margin: 5px;
  padding: 2px;
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  cursor: pointer;
  background-color: white;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.carousel__caption {
  position: relative;
  bottom: 55px;
  width: max-content;
  text-align: center;
  display: none;
  cursor: default;
}

.caption-text {
  display: none;
  color: white;
  font-weight: 700;
  font-size: 1.16rem;
  cursor: default;
}

.current-caption {
  display: block;
}

.carousel__indicator.current-slide {
  background: rgba(245, 102, 0, 1)
}



/* --------------- */

#home {
  position: relative;
  background-color: var(--mid-orange);
  width: 100%;
  height: auto;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.logo img {
  object-fit: scale-down;
  max-width: 70px;
  height: auto;
}
.logo p {
  display: inline-block;
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 10px;
}

/* burger navbar */
.burger {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-4px, 3px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-4px, -3px);
}

.burger div {
  width: 18px;
  height: 3px;
  border-radius: 25%;
  background-color: black;
  margin: 2px;
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 38px 0;
  position: relative;
  z-index: 1;
}

.nav-links a {
  padding: 5px 0;
  margin: 5px 35px;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links a:hover {
  border-bottom: 3px solid black;
}

/*  ----------------- */

.btn-container {
  display: inline-block;
  padding: 0 20px;
}

.btn {
  padding: 16px 29px;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: var(--orange);
  color: white;
  border-radius: 30px;
}

.top-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 10px;
  top: 145px;
}

.rotated {
  display: inline-block;
  position: relative;
  bottom: 25px;
  transform : rotate(90deg);
}

.dash {
  width: 72px;
  background-color: white;
  height: 2px;
  display: inline-block;
  cursor: default;
}

.dash-text {
  display: flex;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 10px;
  cursor: default;
}

.dash-text h1, .dash-text h2{
  margin-left: 30px;
  font-size: 1.16rem;
  font-weight: 700;
  color: white;
  letter-spacing: 6px;
  font-family: var(--p-font);
}

h1, h2, h3 {
  font-family: var(--heading-font);
  cursor: default;
}

h3, h2 {
  font-size: 3em;
  font-weight: 700;
}

.top-header {
  color: white;
  font-size: 6em;
  font-weight: 700;
}

.rotated p {
  color: white;
  font-weight: 700;
  padding: 8px 5px;
  cursor: default;
}

.instagram, .twitter, .facebook {
  padding: 5px 5px;
  margin-top: 10px;
}

.boutique-container {
  position: relative;
  padding: 50px 0;
  padding-left: 20%;
  margin: 125px 0;
  margin-bottom: 200px;
  /* border: 1px solid red; */
}

.number {
  display: inline;
  font-size: 12em;
  font-weight: 700;
  color: #FFFFFF;
  opacity: 0.1;
}

.numbers {
  position: relative;
}

.small-txt h2 {
  margin: 0 20px;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 6px;
}

.numbers .dash-text {
  position: absolute;
  top: 42%;
  left: 110px;
}

.section-header {
    margin: 0 auto;
}

.section-header h2 {
  font-size: 3em;
  color: white;
  text-align: center;
  font-weight: 700;
}

#clients {
  background-color: var(--orange);
  padding: 30px 0;
  margin: 0;
}

.logo-container img {
  object-fit: scale-down;
  width: 100%;
  height: auto;
}

.logo-container {
  width: 185px;
  height: 185px;
  position: relative;
  background-color: var(--light-orange);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 25px;
  padding: 20px;
}

.logo-container__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .7);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .3s ease;
  border-radius: 13px;
}

.logo-container:hover .logo-container__overlay {
  height: 100%;
}

.logo-container__text {
  color: white;
  font-size: 1.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.worked-with-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

#show-work-list {
  border-bottom: 3px solid transparent;
  width: 500px;
  width: max-content;
  display: flex;
  margin: 1em 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#show-work-list img{
  width: 2.5em;
  height: auto;
}

#show-work-list:hover {
  border-bottom: 3px solid black;
}

#show-work-list p {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 10px 10px 10px 0;
  color: black;
}

#bg-halfway-image {
  background-image: linear-gradient(var(--orange) 50%, var(--light-orange) 50%);
}

.partway-img {
  /* border: 1px solid red; */
  display: flex;
  padding-top: 30px;
}

.partway-img img{
  /* border: 1px solid red; */
  width: 100%;
  height: auto;
  max-width: 700px;
  margin: 0 auto;
  align-self: center;
}

#work .number {
  color: #444444;
}

#work .numbers {
  display: inline-block;
}

#work .dash {
  background-color: var(--orange);
}

#work .dash-text h2 {
  color: var(--orange);
  text-transform: uppercase;
}

.text-container {
  width: 100%;
}

.text-container h3 {
  color: var(--gray);
}

.text-container p {
  margin: 15px 0;
  line-height: 18px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.6;
}

.number-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 40%;
  /* border: 1px solid red; */
}

.item-vid-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin: 80px 0;
}

.show-types {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.show-types h4 {
  letter-spacing: 3.5px;
  padding: 1em 2em;
  margin: 5px;
  line-height: 14px;
  font-size: 1.1em;
  font-weight: bold;
  color: black;
  cursor: pointer;
  border: 3px solid transparent;
  background-color: transparent;
  transition: all 0.2s ease;
}

.show-types h4:hover {
  border: 3px solid var(--orange);
}

.show-types .current-film {
  border: 3px solid var(--orange);
  background-color: var(--orange);
  border-radius: 25px;
  position: relative;
}


.show-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.show-nav h4 {
  letter-spacing: 3.5px;
  padding: 1em 2em;
  margin: 5px;
  margin-top:15px;
  line-height: 14px;
  font-size: 1.1em;
  font-weight: bold;
  color: white;
  cursor: pointer;
  border: 3px solid transparent;
  background-color: transparent;
  transition: all 0.2s ease;
  border: 3px solid var(--dark-blue);
  background-color: var(--dark-blue);
  border-radius: 25px;
  position: relative;
}

.show-nav h4:hover {
  border: 3px solid var(--orange);
}


/* Films */

.films-container {
  margin: 0 auto;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 10px 20px;
  display: none;
}

.current-film-slide {
  display: grid;
}

.films-container img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.each-film-container {
  position: relative;
  cursor: pointer;
}

.each-film-container__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(359.77deg, #000000 0.25%, rgba(0, 0, 0, 0) 96.51%);
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.each-film-container__text {
  position: absolute;
  padding: 7%;
  bottom: 0;
  left: 0;
  width: 83%;
}

.each-film-container__text p {
  color: white;
  font-style: normal;
  font-weight: normal;
  font-size: 1.1rem;
  padding: 2px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.each-film-container__text h5 {
  font-family: Arial;
  color: white;
  font-size: 1.4em;
  font-weight: bold;
  padding: 2px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.film-carousel {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.film-carousel__track-container {
  position: relative;
  height: 100%;
}

.film-carousel__track {
  position: relative;
  height: 100%;
  transition: transform 500ms ease-in;
}

.film-carousel__slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}

.films {
  background-color: var(--orange);
  padding-top: 50px;
  padding-bottom: 65px;
  margin-top: 20px;
}
.current-film::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--orange);
  transform: rotate(45deg) translateX(-50%);
  bottom: -45px;
  left: 50%;
  animation: arrow 0.3s ease;
}


/* -------------------- */
#bg-img-sec {
  background-image: url(../images/baba.png);
  background-position: center center;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

#services .number {
  opacity: 0.5;
}

.services-num-text {
  padding: 100px 0;
  width: 55%;
  /* border: 1px solid red; */
}

.production-num-text {
  padding: 100px 0;
  padding-bottom: 20px;
  width: 75%;
  /* border: 1px solid red; */
}

.services-box-container {
  position: relative;
  top: -80px;
}

.services-text h3{
  color: white;
  padding-right: 0%;
}

.services-text p {
  color: white;
  font-size: 1.5rem;
  line-height: 18px;
  font-weight: 500;
  font-family: var(--p-font);
  padding: 25px 0;
  line-height: 1.6;
}

.production-text h3{
  color: white;
  padding-right: 35%;
}

.production-text p {
  color: white;
  font-size: 1.5rem;
  line-height: 18px;
  font-weight: 500;
  padding: 25px 0;
  line-height: 1.6;
}

#production-bg-img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url(../images/remote-production-bg-photo.jpg);
    background-position: center center;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 100px;
}

.icon-image-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.two-icons-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.service-box__image {
  height: 155px;
  width: 290px;
  object-fit: cover;
}

.service__content-box {
  display: none;
  padding: 40px 0;
  background-color: var(--orange);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-y: hidden;
}

.current-content-box {
  display: block;
  animation: showText 1s ease;
}
.service__content-box h4{
  font-size: 2.8em;
  padding: 15px 0;
  font-family: var(--heading-font);
  font-weight: 700;
}
.service__content-box p{
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  width: 80%;
}

.each-icon-container {
  display: flex;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 155px;
  border-radius: 10px;
  margin: 15px 35px 15px 0;
  background-color: var(--orange);
}

.each-icon-container:hover {
  border: 4px inset black;
}

.each-icon-container img {
  object-fit: scale-down;
}

.each-icon-container h4 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--heading-font);
  padding: 5px;
}

@keyframes showText {
  0%   { max-height: 0; padding: 0;}
  100% { max-height: 550px;}
}

.current-service {
  border: 4px inset black;
}

.current-service::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -56px;
  background-color: var(--orange);
  transform: rotate(45deg) translateX(-50%);
  animation: arrow 0.5s ease;
}

@keyframes arrow {
  0% {width: 0px; height: 0px;}
  100% {width: 20px; height: 20px;}
}

#locations .number {
  color: #444444;
}

#locations .numbers {
  display: inline-block;
}

#locations .dash {
  background-color: var(--orange);
}

#locations .dash-text h2 {
  color: var(--orange);
}

#locations .number-text-container {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}

#locations .numbers {
    align-self: flex-end;
}

#locations .text-container {
  width: 66%;
  align-self: flex-start;
}

#locations .dash-text {
  flex-direction: row-reverse;
  left: -120px;
}

.locations-grid img {
  width: 100%;
  cursor: pointer;
  height: 190px;
  object-fit: cover;
}

.locations-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: auto;
  margin-bottom: 140px;
  gap: 5px 5px;
}

.location-image-container {
  position: relative;
  cursor: pointer;
}
.location-image-container:hover .location-image__overlay {
  height: 100%;
}
.location-image__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(359.77deg, #000000 0.25%, rgba(0, 0, 0, 0) 96.51%);
  overflow: hidden;
  width: 100%;
  height: 0;
}

.location-image__text {
  position: absolute;
  padding: 7%;
  bottom: 0;
  left: 0;
}

.location-image__text p {
  color: white;
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 2px 0;
}

#image-overlay img {
  position: fixed;
  right: 35px;
  top: 35px;
  width: 25px;
  height: 25px;
}

#contact {
  background-color: var(--orange);
  padding: 40px 0;
}

.contact-btn {
  font-size: 1.1rem;
  padding: 18px 60px;
  background-color: #101010;
  color: white;
  border-radius: 32px;
  border: 2px solid transparent;
}

.contact-btn:active {
  transform: translateY(2px);
}

.contact-btn:hover {
  border: 2px solid white;
}

.seperator {
  width: 2px;
  height: 70px;
  background-color: var(--dark-blue);
  display: inline-block;
}

.contact-detail-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 60%;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
}

.each-contact-item {
  width: 40%;
}

.each-contact-item .header {
  font-size: 1rem;
  letter-spacing: 6px;
  font-weight: 700;
  color: white;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.each-contact-item p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 20px;
  color: #0B1D26;

}

#phone p {
  text-align: right;
  font-weight: 700;
  font-size: 1.1rem;
}

#address p {
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
}

.queries-container p {
  text-align: center;
  font-size: 1.3rem;
  padding: 10px 0;
  width: 60%;
  margin: 0 auto;
  line-height: 18px;
  color: #0B1D26;
}

.queries-container h2 {
  text-align: center;
  padding: 10px 0;
  color: #0B1D26;
}

.queries-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  margin: 0 auto;
  padding-top: 20px;
}

.queries-container {
  margin-bottom: 40px;
}

#contact .smaller-container {
  margin-bottom: 100px;
}

.video-list {
  display: none;
}

.film-video-container {
  position: fixed;
  z-index: 15;
  width: max(280px, 60%);
  height: min(50%, 650px);
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}

.ratio-16-9 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  bottom: -50%;
  transform: translateY(-50%);
}


.film-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-caption {
  padding: 5px 0;
  position: fixed;
  color: white;
  z-index: 12;
  font-size: 1.4rem;
}

.film-play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  
  border-left: 1.1rem solid white;
}

.film-play-button {
  opacity: 0;
  border-radius: 50%;
  width: 3.1rem;
  height: 3.1rem;
  position: absolute;
  bottom: 0;
  right: 7%;
  background-color: var(--orange);
  transition: all 0.4s ease;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.each-film-container:hover .film-play-button {
  bottom: 7%;
  opacity: 1;
}

.show-reel-container {
  width: 480px;
  height: 270px;
  cursor: pointer;
}

.show-reel-image {
  width: 100%;
  height: 100%;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/gif-main-image.jpg);
  background-position: center center;
  width: 100%;
  background-color: black;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0s ease;
}

.show-reel-image:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/reel.gif);
}

.show-reel-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  background-color: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.show-reel-play-button::before {
  content: "";
  height: 0;
  border-top: 10px solid transparent;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;

  transition: all 0.3s ease;
  border-left: 1.5rem solid white;
}

.show-reel-play-button::after {
  content: "SHOW REEL";
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.show-reel-image:hover .show-reel-play-button {
  background-color: #e76a04;
}

.show-reel-image:hover .show-reel-play-button::before {
  transform: translate(-50%, -50%) scale(1.2);
}

.hero-logo-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.hero-logo {
  margin: 0 10px;
  width: 110px;
  height: 110px;
}

.our-clients-container {
  position: relative;
  text-align: center;
}

.our-clients-container h3 {
  font-size: 1.3em;
  font-family: Arial;
  color: white;
  letter-spacing: 5px;
  font-weight: bolder;
}

.hero-overlay {
  position: absolute;
  background: linear-gradient(
359.77deg
, #000000 0.25%, rgba(0, 0, 0, 0) 96.51%);
  top: 0;
  width: 100%;
  height: 100%;
}

.hero-img-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.production-video-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
  
}

.interview-container {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0;
  margin-right: 60px;
  cursor: pointer;
}

.interview-container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-container__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(359.77deg, #000000 0.25%, rgba(0, 0, 0, 0) 96.51%);
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.interview-container__text {
  position: absolute;
  padding: 7%;
  bottom: 0;
  left: 0;
  width: 83%;
}

.interview-container__text p {
  color: white;
  font-style: normal;
  font-weight: normal;
  font-size: 1.1rem;
  padding: 2px 0;
  line-height: 1.5;
}

.interview-container:hover .film-play-button {
  bottom: 7%;
  opacity: 1;
}

table {
  width: 100%;
}

td {
  padding: 0.6em;
  font-size: 1.25rem;
}

.table-header {
  font-weight: bolder;
  font-size: 1.6rem;
  font-family: var(--heading-font);
}

.image-nav-button {
  position: fixed;
  top:50%;
  transform:translateY(-50%); 
  padding: 2em; 
  z-index: 200; 
  cursor: pointer;
}

.image-nav-button img {
  width: 2em;
  height: 2em;
  object-fit:scale-down;
}

.prev-nav {
  left: 0;
  transform: rotate(180deg) translateY(50%);
}

.next-nav {
  right: 0;
}

.prev-next-buttons {
  display: none;
}

.bottom-social-handle {
  width: max-content;
  margin: 1.6em auto;
}

.bottom-social-handle a {
  margin: 0.8em;
}

.film-and-elements {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 1em 0;
  padding: 2em 0;
  border-bottom: solid #686868 1px;
}

.worklist-film-grid-container {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto auto;
  width: 50%;
  grid-row-gap: 1em;
}

.worklist-single-film-title {
  width: 50%;
  padding-right: 4em;
}

.worklist-single-film-title h4{
  font-family: var(--p-font);
  font-size: 1.3rem;
  font-weight: 700
}

.worklist-elements-single-element p{
  font-family: var(--p-font);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px 0;
}

.worklist-elements-single-element h5{
  font-family: var(--p-font);
  font-size: 1.2rem;
  font-weight: 600;
}

.worklist-elements-single-element{
  margin-bottom: 0.5em;
}
.worklist-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--p-font);
}

#search-result {
  padding-top: 1rem;
}