/*@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");*/

:root {
  /* Font families */
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --font-pages: "DM Sans", sans-serif;

  /* Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-project-title: #f2f2f2;
  --color-project-category: rgb(242, 242, 242, 0.5);

  /* Font sizes */
  --font-size-large-text: 44px;
  --font-size-medium-text: 35px;
  --font-lg-project-title: 32px;
  --font-xl-project-title: 50px;
  --font-xlsize-project-category: 25px;
  --font-size-small-text: 24px;
  --font-size-sm-project-title: 18px;
  --font-size-project-category: 12px;
  --font-size-branding-title: 50px;

  /* Font weights */
  --font-weight-light: 200;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;

  /* Line heights */
  --line-height-hero-title: 100%;
  --line-height-hero-subtitle: 24.19px;
  --line-height-base: 1.6;
  --line-height-large: 62px;
  --line-height-medium: 32px;
  --line-height-small: 24px;
  --line-height-project-title: 23px;
  --line-height-project-category: 14px;

  /* Container dimensions */
  --container-max-width: 1254px;

  /* Grid gaps */
  --grid-gap-small: 10px;
  --grid-gap-medium: 17px;
  --grid-gap-large: 18px;
  --grid-gap-xl: 25px;
  --grid-gap-2xl: 30px;
  --grid-gap-3xl: 40px;

  /* Component dimensions */
  --project-card-height: 175px;
  --project-card-height-md: 200px;
  --project-card-height-xl: 316px;
  --project-card-height-2xl: 540px;
  --spacer-height: 40px;
  --spacer-height-lg: 150px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}


.hero-section {
    background-color: #ffffff;
    padding: 100px 0 0px;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17.3px;
    font-weight: 600;
    line-height: 24.19px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}
/* .video-wrapper{

    width: 100%;
    height: 80vw;
    overflow: hidden;
    background-color: #f9f7f7;
    transition: all .5s ease;
}
.video-wrapper iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 50px);
    height: 80vw;
    background-color: #faf3f3;
    transform: scale(1.01);
} */
/* @media only screen and (max-width: 1023px) {
    .video-wrapper {
        height: calc(100vw - 5px);
        width: 100%;
    }
} */
/* 
.video-wrapper {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
        overflow: hidden;
    }

.video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        overflow: hidden;
    } */

.main {
  font-family: var(--font-pages);
  background-color: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  /* line-height: var(--line-height-base); */
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Image sections */
/* .hero-image-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.hero-container {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
} */

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Image sections */
/* Video embed styling to match hero-image behavior */
/* .hero-video-embed {
  width: 100%;
  height: 100%!important;
  display: block;
  border: none;
  object-fit: cover;
  aspect-ratio: 16/9;

}  */

.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

 /* .hero-container .video-wrapper .hero-video-embed {
  position: relative;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 56.25vw; 
  min-height: 100%;
  min-width: 177.78vh; 
  transform: translate(-50%, -50%);
  border: none;
} */

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}
.hero-text-section {
  margin-top: 30px;
}

.hero-text,
.description-text,
.content-description,
.final-description {
  font-size: var(--font-size-large-text);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-large);
  text-align: center;
  color: var(--color-black);
  margin: 0 auto;
}
/* Description sections */
.description-section {
  padding: 18px 0 20px;
}

.openers-desc-section {
  padding: 18px 0 0px;
}

.desc-button {
    display: inline-block;
    margin-top: 40px;
    padding: 8px 19px;
    background-color: #fff;
    color: #333;
    border: 2px solid #666;
    border-radius: 15px;
    text-decoration: none;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

/* Center the button container */
.description-section .container {
    text-align: center;
}

.desc-button:after {
    content: "";
    display: inline-block;
    width: 32px;   /* adjust to your SVG size */
    height: 32px;
    margin-left: 16px;
    vertical-align: middle;
    background: url("../images/Vector.svg");
    background-size: contain;
    transition: transform 0.3s ease;
}

.desc-button:hover:after {
    transform: translateX(4px);
}

.desc-button:hover,
.desc-button:focus {
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
/* Gallery sections */
.gallery-section,
.full-width-image,
.full-width-video,
.two-column-gallery,
.mixed-layout {
  padding: 65px 0;
}

.content-description,
.final-description {
  font-size: var(--font-size-large-text);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-large);
  color: var(--color-black);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--grid-gap-medium);
}

.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap-medium);
}
.gallery-item,
.full-image {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mixed layout sections*/

/* .mixed-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: var(--grid-gap-2xl);
            align-items: stretch;
            overflow: hidden;
            aspect-ratio: auto;
        }
         .mixed-main-image,
        .mixed-video-embed-wrapper iframe {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .mixed-main-image,
        .mixed-side-image {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            object-fit: cover;
        }
        .mixed-video-embed-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .mixed-main-media {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .mixed-side-image {
            flex: 1;  
            height: 50%;
        } 
        .mixed-side-column {
            display: flex;
            flex-direction: column;
            height: 100%;
            gap: var(--grid-gap-large);
        }  */
      /* .mixed-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: var(--grid-gap-2xl);
        align-items: stretch;
        overflow: hidden;
        aspect-ratio: auto;
        height: 100%;
      }

      .mixed-main-media {
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .mixed-main-image,
      .mixed-video-embed-wrapper iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .mixed-video-embed-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        flex: 1;
      }

      .mixed-side-column {
        display: flex;
        flex-direction: column;
        height: 100%;
        gap: var(--grid-gap-2xl);
      }

      .mixed-side-image {
        width: 100%;
        height: 50%;
        max-width: 100%;
        display: block;
        object-fit: cover;
        flex: none;
      } */

      /* Mixed layout sections */
      .mixed-content {
          display: grid;
          grid-template-columns: 2fr 1fr;
          gap: var(--grid-gap-2xl);
          align-items: stretch;
          overflow: hidden;
      }

      .mixed-main-media {
          height: 100%;
      }

      .mixed-main-image, .mixed-video-embed-wrapper iframe {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }

        .mixed-video-embed-wrapper {
          position: relative;
          width: 100%;
          height: 100%;
          flex: 1;
        }

      .mixed-side-column {
        display: flex;
        flex-direction: column;
        height: 100%;
        gap: var(--grid-gap-2xl);
      }

      .mixed-side-image {
          width: 100%;
          height: 100%;       
          object-fit: cover;
          display: block;
      }

.cta-section {
  background: url("../images/elefant_get_ready.jpg") no-repeat 0% 39% / cover;
  max-width: 100%;
  position: relative;
  color: white;
  text-align: center;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #262626;
  opacity: 0.75;
  z-index: 1;
}

.cta-overlay {
  position: relative;
  z-index: 2;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-overlay p {
  font-family: var(--font-pages);
  font-size: var(--font-size-large-text);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-large);
}

.cta-button {
  font-family: var(--font-pages);
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}
.cta-button:hover {
  text-decoration: none !important;
}
.cta-button::after {
  content: "";
  position: relative;
  top: 2px;
  left: 0px;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 0px 0px 0px 10px;
  background: url("../images/arrow1.svg") center center / contain no-repeat;
  transition: 0.2s;
}

.cta-button:hover::after {
  transform: translateX(6px);
}
.freetv-spacer {
  width: 100%;
  height: var(--spacer-height);
}

.highlight {
  font-weight: 700;
  font-family: var(--font-pages);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  /* .openers-desc,
  .openers-content,
  .openers-text {
 
  } */

  .hero-section{
                padding: 30px 0 15px;
            }
  .hero-title {
                font-size: 36px;
                line-height:1.2;
                margin-bottom: 5px;
            }
            .hero-subtitle {
                font-size: 17px;
                line-height:24px
            }
  /* .video-wrapper{
                padding-top: 58.25%;
            } */

  .hero-section {
    padding: 30px 0 15px;
  }
  .description-section {
    padding: 15px 0;
  }
  .gallery-section,
  .content-text,
  .full-width-image,
  .full-width-video,
  .two-column-gallery,
  .final-text,
  .mixed-layout {
    padding: 20px 0;
    margin: 0;
  }

  .description-text,
  .content-description,
  .final-description,
  .hero-text {
    font-size: var(--font-size-small-text);
    line-height: var(--line-height-medium);
    padding: 0px 9px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap-small);
  }

  .two-col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap-small);
  }
  .mixed-content {
    display: block;
    gap: 0;
  }
  .mixed-main-image {
    width: 100%;
    height: auto;
    margin-bottom: var(--grid-gap-small);
    aspect-ratio: 16/9; /* Maintain consistent aspect ratio */
    object-fit: cover;
  }

  .mixed-video-embed-wrapper {
    width: 100%;
    margin-bottom: var(--grid-gap-small);
    aspect-ratio: 16/9;
    position: relative;
  }
  .mixed-video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .mixed-main-media {
    width: 100%;
    height: auto;
    margin-bottom: 6px;
  }
  .mixed-side-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }
  .mixed-side-image {
    width: 100%;
    height: auto;
    aspect-ratio: 7/4;
    object-fit: cover;
    display: block;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .openers-text {
    font-size: var(--font-size-small-text);
    padding: 0px 5px 10px;
  }

  .trailer-content {
    padding: 15px 8px 8px;
  }
  .trailers-finaltext {
    padding: 15px 8px 8px;
  }

  .cta-section {
    height: 262px;
  }
  .cta-overlay {
    gap: 12px;
  }
  .cta-overlay p {
    font-size: var(--font-size-small-text);
    font-weight: var(--font-weight-light);
    line-height: 32px;
  }
  .cta-button {
    font-size: 26px;
    font-weight: var(--font-weight-bold);
  }
  .cta-button::after {
    width: 20px;
    height: 30px;
    margin: 0px 0px 0px 0px;
  }
  .highlight {
    font-weight: 200;
  }
}

@media (min-width: 769px) and (max-width: 1025px) {
  .container {
    width: 100%;
    max-width: 100%;
  }

  .main {
    margin-left: 50px;
  }
  .section-content {
    padding: 50px;
  }

  .description-text,
  .content-description,
  .final-description {
    font-size: var(--font-size-medium-text);
  }

  .gallery-section,
  .full-width-image,
  .full-width-video,
  .two-column-gallery,
  .mixed-layout {
    padding: 10px 0;
  }

  .hero-text {
    font-size: var(--font-size-medium-text);
    padding: 8px !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mixed-content {
    display: block;
  }
  .mixed-main-image {
    width: 100%;
    margin-bottom: 10px;
  }
  .mixed-side-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap-small);
  }
  .mixed-side-image {
    width: 100%;
    height: auto;
  }

  .hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 1026px) {
  .description-text,
  .content-description,
  .final-description {
    font-size: var(--font-size-large-text);
    padding: 0 30px;
  }
  .freetv-final {
    padding: 0 131px;
  }
  .freetv-font{
    padding: 0 45px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hide-on-mobile {
    display: block;
  }
  .trailers-finaltext {
    padding: 45px 85px 75px 85px;
  }
  .brandbook-text {
    padding: 20px 0 20px 0;
  }
  .brandbook-fullimage,
  .brandbook-mixed {
    padding: 55px 0;
  }
  .brandbook-mixed-side {
    gap: 11px;
  }
  .openers-text {
    padding: 30px 0px 40px;
  }
  .openers-content {
    padding: 0px 80px 30px 80px;
  }
  .trailer-content {
    padding: 20px 50px 45px;
  }
  .shura-content{
    padding: 20px 59px 45px;
  }

  .trailer-fullwidth {
    padding: 40px 0;
  }
  .trailer-mixedlayout {
    padding: 40px 0;
  }
  .openers-desc {
    padding: 30px 86px 0px;
  }
  .hero-title {
                font-size: 50px;
            }
}

/* Branding Home page */
.main-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--color-white);
  padding: 40px 25px 20px;
}

.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 0;
}

.branding-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-branding-title);
  font-weight: var(--font-weight-medium);
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-black);
  margin: 0;
  align-self: center;
  position: relative;
  z-index: 1;
}

.content-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width);
  padding: 20px 16px;
  background-color: var(--color-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap-3xl);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.project-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.project-card {
  position: relative;
  width: 100%;
  height: var(--project-card-height);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 24px;
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.project-category {
  font-size: var(--font-size-project-category);
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-project-category);
  text-align: left;
  text-transform: uppercase;
  color: var(--color-project-category);
  margin-bottom: 1px;
}

.project-title {
  font-size: var(--font-size-sm-project-title);
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-extra-bold);
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  color: var(--color-project-title);
}

.spacer {
  background-color: var(--color-white);
  width: 100%;
  height: var(--spacer-height);
}

/* .full-width-video,
.full-width-image {
    margin-top: 10px;
} */

.direct-video,
.full-video {
   width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

.full-image {
    width: 100%;
    height: auto;
}
@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: var(--grid-gap-small);
  }

  .branding-title {
    font-size: 48px;
  }

  .project-category {
    font-size: 14px;
  }

  .project-title {
    font-size: var(--font-size-project-title);
  }
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap-small);
  }
  .main-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .header-section {
    padding: 50px 25px 25px;
  }
  .project-card {
    height: var(--project-card-height-md);
  }

  .project-overlay {
    padding: 32px;
  }

  .project-category {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .project-title {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .branding-title {
    font-size: 88px;
    line-height: 100%;
    padding: 40px 0 15px;
  }
  .project-title {
    font-size: var(--font-size-small-text);
  }
  .projects-grid {
    max-width: none;
  }

  .spacer {
    height: var(--spacer-height-lg);
  }

 .hero-container .video-wrapper .video-embed {
  position: relative;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 56.25vw; 
  min-height: 100%;
  min-width: 177.78vh; 
  transform: translate(-50%, -50%);
  border: none;
}

/* .full-width-video,
.full-width-image {
    margin-bottom: 2rem;
} */
  img.branding-card__image.wrapper_image {
      height: 316px;
  }
}

@media (min-width: 1280px) {
  .main-container {
    width: 100%;
    max-width: 100%;
    background-color: var(--color-white);
    padding: 0px;
  }
  .content-section {
    max-width: var(--container-max-width);
    padding: 45px 10px;
    margin: 0 auto;
  }
  .project-title {
    font-size: var(--font-lg-project-title);
  }
  .projects-grid {
    gap: var(--grid-gap-large);
  }
  .project-card {
    height: var(--project-card-height-xl);
  }
}

/* .hero-container iframe{
                height:100vh !important;
                max-width: 100%;
            }
                @media only screen and (max-width: 1023px) {
                .loaded .hero-container {
                    height: calc(100vw - 5px);
                    width: 100%;
                }

                .hero-image-container iframe .player{
                    height: calc(100vw - 5px)!important;
                    width: 100%;
                }
                }  */
/***************************************/


.content-intro-description{
  font-family: DM Sans;
  font-weight: 200;
  font-size: 2.75rem;
  line-height: 3.875rem;
  letter-spacing: -2%;
  text-align: center;
  padding: 32px 30px;

  @media (max-width: 768px) {
    /* display: none; */
     font-weight: 300;
  font-size: 24px;
  line-height: 32px;
   padding: 10px 5px;
  }
}

.content-outro-description {
  font-family: DM Sans;
  font-weight: 200;
  font-size: 2.75rem;
  line-height: 3.875rem;
  letter-spacing: -2%;
  text-align: center;
  padding: 0px 25px;

  @media (max-width: 768px) {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
   padding: 10px 5px;
  }
}

.content-section.content-section--branding {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 0px !important;
}

.spacer.h-30 {
  min-height: 30px;
  max-height: 30px;
  height: 30px;
}

.branding-showcase {
  padding: 4rem 0px;
}

/* BLOCK = branding-showcase */
.branding-showcase__list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.branding-showcase__item {
  /* Two items per row, accounting for 18px gap */
  flex: 1 1 calc(50% - 9px);
  box-sizing: border-box;
}

.branding-showcase__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* CARD */
.branding-card {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  height: 100%;
  min-height: 310px;

}
.branding-card__hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
 .branding-card:hover .branding-card__hover {
        opacity: 1;
    }

.branding-card__image {
  width: 100%;
  height: 310px;
  /* aspect-ratio: 2 / 1; */
  object-fit: cover;
  object-position: center;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* OVERLAY */
.branding-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
.branding-card:hover .branding-card__overlay,
.branding-card:focus-within .branding-card__overlay {
  opacity: 1;
  cursor: pointer;
}

/* INFO */
.branding-card__info {
  position: absolute;
  bottom: 2.2rem;
  left: 2.2rem;
  color: #fff;
}

.branding-card__category {
  display: block;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 1rem;
  line-height: 1.511875rem;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #7e7f88;
}

.branding-card__title {
  /* margin-top: 4px; */
  font-family: Inter;
  font-weight: 800;
  font-style: Extra Bold;
  font-size: 2rem;
  line-height: 2.6875rem;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #f2f2f2;
}

@media (max-width: 768px) {
  .branding-card__category {
    font-size: 0.75rem; /* 12px */
    line-height: 1.125rem; /* Optional: 18px line-height for spacing */
  }

  .branding-card__title {
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* Optional: 24px line-height */
  }

  .branding-card__info {
    bottom: 1rem;
    left: 1.5rem;
  }

  .branding-showcase__list {
    gap: 2.7rem;
  }

  .spacer.md-40 {
    min-height: 40px;
    max-height: 40px;
    height: 40px;
  }

  .branding-showcase {
    padding: 1.5rem 0px;
  }

  .branding-card {
        min-height: 175px;
    }
  
  .branding-card__image {
    height: 175px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

}

/* STACKED ON SMALL SCREENS */
@media (max-width: 1160px) {
  .branding-showcase__item {
    flex: 1 1 100%;
  }
   .branding-card__image {
        /* Ensure background images scale properly on tablets */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/*****************************/
.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.banner__video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .banner__video {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .banner__mute-btn .icon {
    width: 24px!important;
    height: 24px!important;
    fill: white;
  }
}
.banner__mute-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__mute-btn .icon {
  width: 50px;
  height: 50px;
  fill: white;
}
.banner__mute-btn.is-muted .icon--off {
  display: block;
}
.banner__mute-btn.is-muted .icon--on {
  display: none;
}
.banner__mute-btn:not(.is-muted) .icon--off {
  display: none;
}
.banner__mute-btn:not(.is-muted) .icon--on {
  display: block;
}

 @media (max-width: 768px) {
   .hero-container .video-wrapper .video-embed {
      /* height: 57vw; */
      aspect-ratio: 16 / 9;
      width: 100%;
      width: 100%;

        /* position: relative;
        top: 50%;
        left: 50%;
        width: 100%;
        min-height: 100%;
        min-width: 103vh; 
        transform: translate(-50%, -50%);  */

  } 

  .hero-container {
    height: 215px;
  }
  .banner__mute-btn .icon {
      width: 24px !important;
      height: 24px !important;
      fill: white;
  }
}

@media (max-width: 480px) {
  
  .fullwidth_button{
      bottom: 35px !important;
      right: 10px !important ;
      padding: 0.4rem;
  }
  .banner__mute-btn {
      bottom: 0.75rem;
      right: 0.75rem ;
      padding: 0.4rem;
  }
  
  .banner__mute-btn .icon {
      width: 20px !important;
      height: 20px !important;
  }
  .hero-container {
        height: 215px;
    }
}
.video-embed,
.direct-video,
.full-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}


/* NEW HOVER EFFECTS - Desktop Only */
@media (min-width: 769px) {
    /* Full Width Image Container */
    .full-width-image {
        position: relative;
        overflow: hidden;
    }
    
    .full-width-image a {
        display: block;
        position: relative;
    }
    
    /* Mixed Layout Main Media Container */
    .mixed-main-media {
        position: relative;
        overflow: hidden;
    }
    
    .mixed-main-media a {
        position: relative;
    }
    
    /* Hover Overlay */
    .full-width-image a::before,
    .mixed-main-media a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3); /* 30% black mask */
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
        pointer-events: none;
    }
    
    /* Play Icon */
    .full-width-image a::after,
    .mixed-main-media a::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 180px;
        height: 180px;
        background: url('../images/player.svg') no-repeat center center;
        background-size: 60px 60px;
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
        pointer-events: none;
    }
    
    /* Hover State */
    .full-width-image:hover a::before,
    .mixed-main-media:hover a::before,
    .full-width-image:hover a::after,
    .mixed-main-media:hover a::after {
        opacity: 1;
    }
    
    /* Smooth image scaling on hover (optional enhancement) */
    .full-width-image:hover a,
    .mixed-main-media:hover .trailer-mixed-main {
        transform: scale(1.02);
        transition: transform 0.3s ease;
    }
    
    .full-image,
    .trailer-mixed-main {
        transition: transform 0.3s ease;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
 .branding-card__image {
    width: 100%;
    height: 310px;
  }
  
}

@media (min-width: 500px) and (max-width: 768px) {
     .product-grid {
        max-width: 100% !important;
    }
    .product-card {
        width: 100% !important;
        height: 300px !important;
    }
    .hero-container {
        height: 375px;
    }
}

        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            max-width: 100%;
            padding:40px 0px;
        }

        .product-card {
            width: 100%;
            height: 316px;
            position: relative;
            overflow: hidden;
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            font-size: 32px;
            line-height: 43px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.6) 100%);
            z-index: 1;
        }
        .products-text{
          padding:0px 30px 35px;
        }
        .products-desc{
          padding:25px 45px;
        }
    
        /* Mobile Styles */
        @media (max-width: 768px) {

            .product-grid {
                grid-template-columns: 1fr;
                max-width: 342px;
                margin: 0 auto;
            }

            .product-card {
                width: 342px;
                height: 174.87px;
            }

            .product-text {
                font-size: 18px;
                line-height: 23.8px;
                bottom: 15px;
                left: 15px;
            }
            .products-desc {
                padding: 25px 25px;
            }
            .products-text {
            padding: 0px 15px;
            }
            .card-commercial {
            background-image: url('../images/art-commerical-mobile.png') !important;
        }
      }

        .branding-showcase__link {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }

        

       @media (min-width: 1600px) {
  .container {
    max-width: 100%;
    padding: 0 80px;
  }
  .content-section {
    max-width: 100%;
    padding: 0 80px;
  }
  .projects-grid {
    gap: var(--grid-gap-xl);
  }
  .project-card {
    height: var(--project-card-height-2xl);
  }
  .project-title {
    font-size: var(--font-xl-project-title);
  }
  .project-category {
    font-size: var(--font-xlsize-project-category);
    margin-bottom: 25px;
  }
  .project-overlay {
    padding: 55px;
  }
  .mute_fix {
    bottom:14px !important;
    right:50px !important;
  }

  img.branding-card__image.wrapper_image {
        height: 500px;
    }

  .branding-card {
     height: 480px;
  }
  
  .branding-card__image {
    height: 480px;
    /* background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
  }


    .brand-new-card {
        max-height: 400px;
        max-width: 100%;
    }

  .branding{
    max-height: 100%;
    object-fit: contain;       
    object-position: center; 
    display: block;
  }
  .content-outro-description{
    margin-bottom: 35px;
    margin-top: 10px;

  }

  .product-card {
    height: 500px;
  }
}

/* --- Brand New Card Hover with Player Button --- */
.brand-new-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.brand-new-card .branding-card__image {
    position: relative;
}

/* Dark Overlay */
.brand-new-card .branding-card__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Play Button */
.brand-new-card .branding-card__image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: url('../images/player.svg') no-repeat center center;
    background-size: 50px 50px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

/* Hover State */
.brand-new-card:hover .branding-card__image::before,
.brand-new-card:hover .branding-card__image::after {
    opacity: 1;
}

.brand-new-card:hover .branding-card__image {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}
.new_branding-card__hover{
   position: absolute;
    inset: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: url('../images/player.svg') no-repeat center center;
    background-size: 50px 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
 .branding-card:hover .new_branding-card__hover {
        opacity: 1;
  }

/* --- Product Card Hover with Player Button --- */
.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Dark overlay */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Play button */
.product-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: url('../images/player.svg') no-repeat center center;
    background-size: 50px 50px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

/* Hover state */
.product-card:hover::before,
.product-card:hover::after {
    opacity: 1;
}

/* Smooth zoom effect */
.product-card:hover {
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

/* Keep product text above overlay */
/* .product-card .product-text {
    position: relative;
    z-index: 4;
    color: #fff; 
} */

/* footer .footer-menu ul li:nth-of-type(n+5) a {
    text-transform: none !important;
}

footer .footer-menu ul {
    height: 125px !important;
}

.no-touch header:hover {
    width: 240px !important;
} */
 /* .main-menu ul li.current-menu-item a {
    width: 265px;
} */

/* header.branding-header {
  background-color: #ffffff;
}
/* menu icon */
/* .branding-menu span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 0 0 5px 0;
    border-radius: 10px;
    background-color: #000000;
}

@media only screen and (max-width: 1023px) {
    .mobile-menu-icon{
        display: block;
        position: fixed;
        top: 16px;
        right: 12px;
        z-index: 202;
        width: 22px;
        height: 9px;
        cursor: pointer;
        transform: rotate(0);
        transition: background-color .3s ease-in-out;
    }
    .branding-mobile-menu-dimmer {
          background-color: #ffffff;
    }

    .branding-mobile-menu-dimmer nav ul li a:active, .branding-mobile-menu-dimmer nav ul li a:link, .branding-mobile-menu-dimmer nav ul li a:visited {
    color: #000000;
    }

    .branding-menu-drawer nav ul li a:active, .branding-menu-drawer nav ul li a:link, .branding-menu-drawer nav ul li a:visited {
        color: #000000;
    }
  }

.branding-main-menu ul li a:active, .branding-main-menu ul li a:link, .branding-main-menu ul li a:visited {
    color: #000000;
}

.no-touch .branding-main-menu ul li a:hover
 {
    color: #fff;
    background-color:#000 ;
 }  */