@charset "UTF-8";
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background: #0a0a0a;
  font-size: 14px;
  font-family: "Begumsans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #1f1f1f #c9c9c9;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 7px;
  height: 30px;
}

*::-webkit-scrollbar-track {
  background: #1a1a1a52;
}

*::-webkit-scrollbar-thumb {
  background-color: #4f2907;
  border-radius: 0px;
}

/**************************/
/* Predefined */
/**************************/
@font-face {
  font-family: mainFont;
  src: url("../Font/main/.otf");
}

@font-face {
  font-family: secondaryFont;
  src: url("../Font/main/BegumSans-Bold.ttf");
}

@font-face {
  font-family: Begumsans;
  src: url("../Font/main/Helvetica\ Neue\ Medium\ Extended.otf");
}

.container-box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 0px;
}

.section-heading {
  text-align: center;
  text-transform: uppercase;
  margin: 0px 0px 40px 0px;
  border-bottom: 1px solid #FFD900;
  width: fit-content;
  padding-bottom: 4px;
  display: flex;
  font-size: 28px;
  align-items: center;
  justify-content: center;
}

a:hover {
  color: #FFD900;
}

.logo:hover {
  color: #fff;
}

/**************************/
/* HEADER */
/**************************/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  /* Because we want header to be sticky later */
  padding: 15px 20px;
  position: relative;
  z-index: 10;
  background-color: 111;
}

.logo {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 0px;
  letter-spacing: 1px;
  color: #fff;
  font-family: secondaryFont !important;
}

/**************************/
/* NAVIGATION */
/**************************/
.main-nav-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 0px;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  font-family: Begumsans;
  text-decoration: none;
  color: #fed110;
  font-weight: 500;
  font-size: 13px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #FFD900;
}


/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 40px;
  width: 40px;
  color: #fff;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

.socilas {
  margin-top: 5px;
}
.socilas a {
  font-size: 22px;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  -webkit-box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
          box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

.Mobile-nav {
  display: none;
}

.socilas a {
  color: #fff;
  margin-right: 21px;
  text-decoration: none;
  font-size: 22px;
}

.socilas .insta:hover {
  color: #cc2366;
}

.socilas .vimeo:hover {
  color: #1ab7ea;
}

.active-nav {
  border-bottom: 1px solid #fed110;
}

.work-section {
  margin: 60px 0px 70px 0px;
  padding: 0px 40px;
}

.gallery-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr ;
      grid-template-columns: 1fr 1fr 1fr ;
  gap: 5px;
  padding: 15px;
}

.gallery-item {
  position: relative;
}

.gallery-item .title {
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

h2 {
  color: #fff;
  margin: 30px 0px;
}

.content .content-overlay {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  height: 99%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay {
  opacity: 1;
}

.content-image {
  width: 100%;
  border-radius: 5px;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  display: none;
}

.content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.content-details h3 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.content-details p {
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-bottom {
  top: 80%;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 29, 51, 0.8)), to(rgba(14, 29, 51, 0.2)));
  background: linear-gradient(to bottom, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
}

.hero-slider {
  width: 99.5vw;
  height: 80vh;
  overflow: hidden;
}

.hero-slider .carousel-cell {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-slider .carousel-cell .inner {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
  text-align: center;
}

.hero-slider .carousel-cell .inner .subtitle {
  font-size: 2.2rem;
  line-height: 1.2em;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.hero-slider .carousel-cell .inner .title {
  font-size: 3rem;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.hero-slider .carousel-cell .inner .btn {
  border: 1px solid #fff;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.hero-slider .carousel-cell .inner .btn:hover {
  background: #fff;
  color: #000;
}

.hero-slider .flickity-prev-next-button {
  width: 80px;
  height: 80px;
  background: transparent;
}

.hero-slider .flickity-prev-next-button:hover {
  background: transparent;
}

.hero-slider .flickity-prev-next-button .arrow {
  fill: white;
}

.hero-slider .flickity-page-dots {
  bottom: 30px;
}

.hero-slider .flickity-page-dots .dot {
  width: 30px;
  height: 4px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.5);
  border: 0 solid white;
  border-radius: 0;
}

.hero-slider .flickity-page-dots .dot.is-selected {
  background: #ff0000;
  border: 0 solid #ff0000;
}

.certificates-section {
  margin: 70px 0px;
}

.certificates-section .certificates {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.certificates-section .certificates img {
  max-width: 100%;
}

.image-comparison  {
  margin: 100px auto 85px auto;
}


footer {
  padding: 30px 20px 20px 20px;
  margin: 40px auto;
  margin-top: 80px;
  max-width: 80%;
  color: #fff;
  /* background: #000; */
}

footer .footer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .footer-wrapper a {
  text-decoration: none;
  color: #fff;
  margin-right: 20px;
}

footer .footer-wrapper .socilas-footer a {
  font-size: 22px;
}


/* Please ❤ this if you like it! */
.section-center {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}



header [type="checkbox"]:checked,
header [type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.menu-icon:checked + label,
.menu-icon:not(:checked) + label {
  position: fixed;
  top: 20px;
  right: 75px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
}

.menu-icon:checked + label:before,
.menu-icon:not(:checked) + label:before {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  -webkit-transition: border-width 100ms 1500ms ease, top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), background-color 200ms ease, -webkit-transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: border-width 100ms 1500ms ease, top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), background-color 200ms ease, -webkit-transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: border-width 100ms 1500ms ease, top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), background-color 200ms ease, transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: border-width 100ms 1500ms ease, top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1), background-color 200ms ease, transform 200ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked + label:after,
.menu-icon:not(:checked) + label:after {
  position: absolute;
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  z-index: 20;
  top: 10px;
  right: 4px;
  background-color: #1a1a1a;
  margin-top: -1px;
  -webkit-transition: width 100ms 1750ms ease, right 100ms 1750ms ease, margin-top 100ms ease, -webkit-transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 100ms 1750ms ease, right 100ms 1750ms ease, margin-top 100ms ease, -webkit-transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 100ms 1750ms ease, right 100ms 1750ms ease, margin-top 100ms ease, transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 100ms 1750ms ease, right 100ms 1750ms ease, margin-top 100ms ease, transform 200ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked + label:before {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 2px;
  background-color: #1a1a1a;
  border-width: 0;
  -webkit-transition: border-width 100ms 340ms ease, top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), background-color 200ms 500ms ease, -webkit-transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: border-width 100ms 340ms ease, top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), background-color 200ms 500ms ease, -webkit-transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: border-width 100ms 340ms ease, top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), background-color 200ms 500ms ease, transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: border-width 100ms 340ms ease, top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1), background-color 200ms 500ms ease, transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-icon:checked + label:after {
  width: 30px;
  margin-top: 0;
  right: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: width 100ms ease, right 100ms ease, margin-top 100ms 500ms ease, -webkit-transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 100ms ease, right 100ms ease, margin-top 100ms 500ms ease, -webkit-transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 100ms ease, right 100ms ease, margin-top 100ms 500ms ease, transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: width 100ms ease, right 100ms ease, margin-top 100ms 500ms ease, transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav {
  position: fixed;
  top: 15px;
  right: 50px;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  z-index: 9;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
  background-color: #fed110;
  color: #1a1a1a;
  /* -webkit-animation: border-transform 7s linear infinite;
          animation: border-transform 7s linear infinite;
  -webkit-transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1), width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1), height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 250ms 1100ms ease;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1), width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1), height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 250ms 1100ms ease;
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 1100ms ease, width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1), height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 1100ms ease, width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1), height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 250ms 1100ms ease; */
}

@-webkit-keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

@keyframes border-transform {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

.menu-icon:checked ~ .nav {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 200%;
  height: 200%;
  -webkit-transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1), width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1), height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 250ms 700ms ease;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1), width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1), height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 250ms 700ms ease;
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 700ms ease, width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1), height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1), right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1), transform 250ms 700ms ease, width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1), height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 250ms 700ms ease;
}

.nav ul {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 6;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  list-style: none;
}

.nav ul li {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 35px ;
  text-align: center;
  list-style: none;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
}

.nav ul li:nth-child(1) {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.nav ul li:nth-child(2) {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}

.nav ul li:nth-child(3) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

.nav ul li:nth-child(4) {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}

.nav ul li a {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 800;
  display: inline-block;
  position: relative;
  color: #1a1a1a;
  -webkit-transition: all 250ms linear;
  transition: all 250ms linear;
  text-decoration: none;
}

.nav ul li a:hover {
  text-decoration: none;
  color: #ffeba7;
}

.nav ul li a:after {
  display: block;
  position: absolute;
  top: 50%;
  content: "";
  height: 2vh;
  margin-top: -1vh;
  width: 0;
  left: 0;
  background-color: #353746;
  opacity: 0.8;
  -webkit-transition: width 250ms linear;
  transition: width 250ms linear;
}

.nav ul li a:hover:after {
  width: 100%;
}

.menu-icon:checked ~ .nav ul li {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 350ms ease, -webkit-transform 250ms ease;
  transition: opacity 350ms ease, -webkit-transform 250ms ease;
  transition: opacity 350ms ease, transform 250ms ease;
  transition: opacity 350ms ease, transform 250ms ease, -webkit-transform 250ms ease;
}

.menu-icon:checked ~ .nav ul li:nth-child(1) {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}

.menu-icon:checked ~ .nav ul li:nth-child(2) {
  -webkit-transition-delay: 1480ms;
          transition-delay: 1480ms;
}

.menu-icon:checked ~ .nav ul li:nth-child(3) {
  -webkit-transition-delay: 1560ms;
          transition-delay: 1560ms;
}

.menu-icon:checked ~ .nav ul li:nth-child(4) {
  -webkit-transition-delay: 1640ms;
          transition-delay: 1640ms;
}

.logo img {
  height: 26px;
  width: auto;
  display: block;
}


@media screen and (max-width: 991px) {
  .menu-icon:checked + label,
  .menu-icon:not(:checked) + label {
    right: 46px;
    top: 24px;
  }
  .hero-showreel .menu-icon:checked + label,
  .hero-showreel  .menu-icon:not(:checked) + label {
    right: 55px;
    top: 20px;
  }
  .nav {
    right: 40px;
  }
  h1 {
    font-size: 9vw;
    -webkit-text-stroke: 2px transparent;
    text-stroke: 2px transparent;
    -webkit-text-fill-color: #ffeba7;
    text-fill-color: #ffeba7;
    color: #ffeba7;
  }
  .nav ul li a {
    /* font-size: 8vh; */
  }
}

.hero-showreel {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
}

.hero-showreel .header {
  margin-top: 0px;
  padding-top: 15px;
  background: hsla(0, 0%, 7%, 0.74);
}

.showreel-bg-1 {
  background-image: url("../Imgs/Compressed/Untitled_1.1.5.jpg");
}

.hero-showreel .nav {
  top: 12px;
  right: 49px;
}

.watch-showreel {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 100;
}

.watch-showreel a {
  text-decoration: none;
}

.watch-showreel button {
  background: #FFD900;
  padding: 11px 25px;
  color: #000;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 8px;
}

.watch-showreel button ion-icon {
  font-weight: 700;
}


/*# sourceMappingURL=main.css.map */



.video-container {
  z-index: -1;
  position: absolute;
  top: 0; 
  left: 0;
  height: 100vh;
  width: 100vw;
}
 .video-container video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
 .video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.014);
}

.watch-video {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 1  ;
}

.watch-video a  {
  text-decoration: none;
}
/* .watch-video a button {
  background: #e67e22;
  color: #fff;
  padding: 9px 20px;
  border: none;
  display: flex;
  align-items: center;
  gap: 5px;
text-transform: uppercase;
} */


.btn {
  background: rgba(16, 16, 16, 0.486);
  padding: 13px 35px;
  border: 2px solid transparent;
  color: #fff;
  font-size: 14px;
  /* transition: all .14s ease; */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  background-size: 300%;
  transition: all 0.9s;
  background-image: linear-gradient(22deg, rgba(255, 255, 255, 0) 50%, #fed110 50%);
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 0px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.right-animate {
  color: #e4001c;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 50%, #e4001c 50%);
}

.btn:hover {
  color: #000;
  background-position: 99% -10%;
  border: 2px solid #FFD900;
 
}


.showreel-Yt {
  margin: 0 auto;
  /* width: 0; */
  height: auto;
  display: flex;
align-items: center;
 flex-direction: column;
margin-top: 30px;

}

.showreel-Yt iframe {
  width: 65%;
  margin: 0 auto;
  /* height: 100%; */
  /* border: 1px solid #fff; */
  height: 700px;
}
.ytp-impression-link {
  display: none;
}
.ytp-expand-pause-overlay .ytp-pause-overlay {
  display: none !important;
}

.video-text {
  color: #FFD900;
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 40px;
  /* margin-bottom: 0px; */
}


@media (max-width: 1000px) {
  .hero-showreel .header {
    margin-top: 0px;
    padding-top: 40px;
    padding: 30px;
  }
  .header {
    padding-top: 30px;
  }
  .Mobile-nav {
    display: block;
  }
  /* MOBILE NAVIGATION */
  .btn-mobile-nav {
    display: none;
    z-index: 9999;
  }
  .main-nav {
    background-color: #222222e6;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    z-index: 110;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    /* Hide navigation */
    /* Allows NO transitions at all */
    /* display: none; */
    /* 1) Hide it visually */
    opacity: 0;
    /* 2) Make it unaccessible to mouse and keyboard */
    pointer-events: none;
    /* 3) Hide it from screen readers */
    visibility: hidden;
  }
  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .nav-open .icon-mobile-nav[name="close-outline"] {
    display: block;
  }
  .nav-open .icon-mobile-nav[name="menu-outline"] {
    display: none;
  }
  .main-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .main-nav-link:link,
  .main-nav-link:visited {
    font-size: 32px;
  }
  .gallery-grid {
    -ms-grid-columns:  1fr 1fr;
        grid-template-columns:  1fr 1fr;
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .hero-slider {
    height: 50vh;
  }
}


@media screen and (max-width: 910px) {
  .hero-showreel {
    height: 50vh;
  }
  .video-container {
    height: 50vh;
  }
}

@media screen and (max-width: 710px) {
  .hero-showreel {
    height: 50vh;
  }
  .showreel-Yt iframe {
    width: 65%;
    margin: 0 auto;
    /* height: 100%; */
    /* border: 1px solid #fff; */
    height: 700px;
  }
  .image-comparison {
    margin: 20px;
    padding: 10px;
    margin-bottom: 70px;
    max-width: 100%;
  }
}

@media screen and (max-width: 610px) {
  footer .footer-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .showreel-Yt iframe {
    width: 85%;
    margin: 0 auto;
    /* height: 100%; */
    /* border: 1px solid #fff; */
    height: 300px;
  }
  .video-text {
    margin-top: 40px;
    font-size: 12px;
  }
  .video-container {
    height: 50vh;
  }
  .hero-showreel .nav {
    top: 10px;
    right: 50px;
  }
  .menu-icon:checked + label, .menu-icon:not(:checked) + label {
    top: 20px;
  }
  .diff:checked + label, .diif:not(:checked) + label {
    top: 26px;
  }
  .watch-video .btn {
    padding: 12px 25px;
    font-size: 10px;
  }
  .watch-video .btn ion-icon {
    display: none;
  }
  .section-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .work-section {
    margin: 46px 0px 70px 0px;
  }
  p {
    font-size: 13px;
  }
  footer .footer-wrapper a {
    font-size: 11px;
  }
  footer .footer-wrapper .socilas-footer a {
    font-size: 16px;
  }
  footer {
    padding: 19px 15px 22px 12px;
    margin: 28px auto;
    margin-top: 36px;
    max-width: 80%;
    color: rgb(255 255 255);
    /* background: rgb(0 0 0); */
}
.showreel-footer {
  position: fixed;
  bottom: 0;
  left: 35px;
}
  .showreel-Yt {
  margin-top: 13%;
  margin-bottom: 19%;
  }
  .work-section {
    margin: 35px 0px 70px 0px;
    padding: 0px 15px;
}

.logo {
  font-size: 22px;
}

.watch-showreel button {
  font-size: 8px;
  padding: 7px 15px;
}
.contact-form .date-form {
  display: grid;
  width: 72%;
}
}
.btn-check:focus+.btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 0%);
}


@media (max-width: 550px) {
  .gallery-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

label {
  color: #fff;
}

.contact-form {
  margin-top: 70px;
  max-width: 920px;
  margin: 50px auto;
  padding:  35px;
   border: 1px solid #1f1e1ee1;
   border-radius: 10px;
   position: relative;
}

.contact-form h3 {
  text-align: center;
  text-transform: uppercase;
  color: #fed110;
  margin-bottom: 25px;
}

.contact-form .form-item{
    margin-bottom: 30px;
}

.contact-form input {
  background-color: #3e3e3e !important;
  border: none;
  width: 100%;
  padding: 10px;
  color: #fff;
}

.contact-form label {
  margin-bottom: 10px;
}

.contact-form span {
  display: inline-block;
  margin-bottom: 8px;
}


.form-item h4  {
  font-size: 17px;
  margin-bottom: 15px;
}

.contact-form  .check-items label {
  display: block;
}

.contact-form  .check-items input{
  /* display: flex; */
  width: fit-content;
  margin-right: 10px;
}

input[type=checkbox] {
  accent-color: #fed110 ;
}

.contact-form  .date-form {
  display: grid;
  width: 50%;
  gap: 10px;
  grid-template-columns: 1fr 1fr 2fr;
  margin-top: 15px;
}

.contact-form h5 {
  font-size: 16px;

}

.contact-form  .date-form input {
  width: 100%;
}
.contact-form  .date-form  span {
  display: block;
}

.contact-form textarea  {
  display: block;
  width: 100%;
  background-color: #3e3e3e;
  border: none;
  width: 100%;
  padding: 15px;
  color: #fff;
}

.contact-form button {
  background: #fed110;
  padding: 11px 40px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-top: 15  px;
}

.contact-btn .main-nav-link:link, .contact-btn .main-nav-link:visited {
  color: #111;
  font-size: 13px;

}

.contact-btn a {
  background-color: #fed110;
  color: #000;
  padding: 8px 17px;
  font-size: 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.contact-btn a:hover  {
  transform: translate(0px, -2px);
  background-color: #fed210e0;
}

.contact-btn .main-nav-link:hover, .contact-btn .main-nav-link:active {
  color: #1a1a1a;
}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  /* border: 1px solid green; */
  -webkit-text-fill-color: #f4f4f4;
  background-color: #3e3e3e;
  transition: background-color 5000s ease-in-out 0s;
}


#my-form-status {
  /* background: #fed110; */
  position: absolute;
  top: 5%;
  color: #fed110;
  width: 100%;
  padding: 15px;
  font-size: 20px;
  text-align: center;
}




.Mobile-nav label {
  color: #1a1a1a;
}