/* .z_index_title{
    position: relative;
    z-index: 100;
} */


/* Fonts */

@font-face {
  font-family: 'ClashDisplay-Bold';
  src: url('../fonts/fonts/ClashDisplay-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN-Condensed-Bold';
  src: url('../fonts/fonts/DIN-Condensed-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url('../fonts/fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat-VariableFont';
  src: url('../fonts/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}   
/* End Fonts */

.font_size_18{
  font-size: 18px;
}
.font_size_19{
  font-size: 19px !important;
}
/* Homepage About */
.about-personal .svg-arrow {
  right: calc(50% + 30px);
}
/* End Homepage About */

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

  :root {
    --cream: #EBE1D2;
    --white: #fff;
    --bg: #0a0a0a;
    --flash: #7c1a01;
    --black:     #0a0a0a;
    --orange:    #e84118;
    --yellow:    #f9ca24;
    --green:     #27ae60;
    --blue:      #273cf5;
    --pink:      #e84393;
    --sz: 70px;   /* overall bounding box of the L-shape */
    --cut: 30px;  /* size of the notch cut from inner corner */
  }

  .small_text{
    font-size: 12px;
  }

  /* body {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Georgia', serif;
    overflow: hidden;
  } */
@media only screen and (min-width: 1400px) {
  :root {
    --dsn-gap-container: 50px;
    --title-small: 50px;
  }
  :root .container, :root .dsn-left-container, :root .dsn-right-container {
    --dsn-gap-container: 50px;
  }
}
@media only screen and (max-width: 1399px) {
  :root {
    --dsn-gap-container: 50px;
    --title-small: 55px;
  }
}
@media only screen and (max-width: 1200px) {
  :root {
    --title-small: 55px;
  }
}
@media only screen and (min-width: 992px) {
  :root {
    --margin-padding: 120px;
    --box-padding: 80px 40px;
  }
  :root .d-lg-none {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --margin-padding: 80px;
    --box-padding: 60px var(--dsn-gap-container);
    --title-small: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  :root {
    --dsn-gap-container: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  :root {
    --dsn-gap-container: 25px;
    --title-small: 37px;
  }
}
@media only screen and (max-width: 575px) {
  :root {
    --dsn-gap-container: 15px;
    --title-small: 27px;
  }
}
  /* ─── Scene ─────────────────────────────────────── */
  .scene {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
  }

  /* ─── Shutter flash overlay ──────────────────────── */
  .flash-overlay {
    position: fixed;
    inset: 0;
    background: var(--flash);
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    animation: shutterFlash 4s ease-out forwards;
  }

  @keyframes shutterFlash {
    0%   { opacity: 0; }
    /* shutter snaps at ~55% */
    54%  { opacity: 0; }
    55%  { opacity: 1; }
    60%  { opacity: 1; }
    72%  { opacity: 0; }
    100% { opacity: 0; }
  }

  /* ─── Viewfinder frame corners ───────────────────── */
  .viewfinder {
    position: relative;
    width: 680px;
    height: 300px;
  }

  .corner {
    position: absolute;
    width: 36px;
    height: 36px;
    border-color: var(--cream);
    border-style: solid;
    opacity: 0;
    animation: cornersIn 0.6s cubic-bezier(.22,1,.36,1) forwards;
  }

  .corner--tl { top: 0; left: 0;   border-width: 15px 0 0 15px; animation-delay: 0.1s; }
  .corner--tr { top: 0; right: 0;  border-width: 15px 15px 0 0; animation-delay: 0.2s; }
  .corner--bl { bottom: 0; left: 0; border-width: 0 0 15px 15px; animation-delay: 0.3s; }
  .corner--br { bottom: 0; right: 0; border-width: 0 15px 15px 0; animation-delay: 0.4s; }

  @keyframes cornersIn {
    from { opacity: 0; transform: scale(1.15); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* ─── Focus reticle (center dot) ────────────────── */
  .reticle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
  }

  .reticle::before, .reticle::after {
    content: '';
    position: absolute;
    background: var(--cream);
    opacity: 0.45;
  }
  .reticle::before { width: 1px; height: 100%; top: 0; left: 50%; }
  .reticle::after  { width: 100%; height: 1px; top: 50%; left: 0; }

  .reticle-ring {
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--cream);
    border-radius: 50%;
    opacity: 0;
    animation: reticleAppear 0.5s ease forwards 0.6s,
               reticlePulse 1.2s ease-in-out infinite 1.1s;
  }

  @keyframes reticleAppear {
    from { opacity: 0; transform: scale(1.4); }
    to   { opacity: 0.5; transform: scale(1); }
  }

  @keyframes reticlePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 0.2; transform: scale(0.85); }
  }

  /* ─── Focus scan line ────────────────────────────── */
  .scan-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--cream), transparent);
    opacity: 0;
    animation: scan 1.8s ease-in-out forwards 0.5s;
  }

  @keyframes scan {
    0%   { opacity: 0; top: 0; }
    15%  { opacity: 0.6; }
    85%  { opacity: 0.6; }
    100% { opacity: 0; top: 100%; }
  }

  /* ─── Logo ───────────────────────────────────────── */
  .logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-img {
    width: 560px;
    max-width: 90vw;
    opacity: 0;
    filter: brightness(0) invert(1) sepia(1) saturate(0.3) brightness(0.85);
    animation: logoReveal 0.7s cubic-bezier(.22,1,.36,1) forwards 2.6s;
  }

  @keyframes logoReveal {
    from { opacity: 0; filter: brightness(2) invert(1) sepia(0) saturate(0) brightness(3); }
    to   { opacity: 1; filter: brightness(0) invert(1) sepia(1) saturate(0.3) brightness(0.85); }
  }

  /* ─── Film grain ─────────────────────────────────── */
  .grain {
    position: fixed;
    inset: -50%;
    width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    animation: grainShift 0.12s steps(1) infinite;
    z-index: 50;
  }

  @keyframes grainShift {
    0%   { transform: translate(0,0); }
    25%  { transform: translate(-3px, 2px); }
    50%  { transform: translate(2px, -1px); }
    75%  { transform: translate(-1px, 3px); }
    100% { transform: translate(3px, -2px); }
  }

  /* ─── HUD readouts ───────────────────────────────── */
  .hud {
    position: absolute;
    bottom: -48px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    animation: hudIn 0.5s ease forwards 0.5s;
  }

  .hud span {
    font-family: 'ClashDisplay-Bold', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--cream);
    opacity: 0.5;
    text-transform: uppercase;
  }

  @keyframes hudIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── Focus locked indicator ─────────────────────── */
  .focus-lock {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'ClashDisplay-Bold', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--cream);
    opacity: 0;
    animation: focusLock 0.4s ease forwards 2.3s;
  }

  @keyframes focusLock {
    from { opacity: 0; }
    to   { opacity: 0.7; }
  }

  /* ─── Shutter ring animation ─────────────────────── */
  .shutter-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; height: 80px;
    border: 2px solid var(--cream);
    border-radius: 50%;
    opacity: 0;
    animation: shutterRing 0.35s cubic-bezier(.22,1,.36,1) forwards 2.4s;
  }

  @keyframes shutterRing {
    0%   { opacity: 0.8; transform: translate(-50%,-50%) scale(0.2); }
    60%  { opacity: 0.4; transform: translate(-50%,-50%) scale(1.1); }
    100% { opacity: 0; transform: translate(-50%,-50%) scale(1.5); }
  }

  /* ─── Progress bar ───────────────────────────────── */
  .progress-bar {
    position: absolute;
    bottom: -72px;
    left: 0; right: 0;
    height: 1px;
    background: rgba(232,220,200,0.15);
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: var(--cream);
    width: 0%;
    animation: progressFill 2.5s cubic-bezier(.4,0,.2,1) forwards 0.3s;
  }

  @keyframes progressFill {
    0%  { width: 0%; }
    40% { width: 55%; }
    55% { width: 55%; }  /* pause at shutter moment */
    100%{ width: 100%; }
  }

  /* 4 Corners Solution */
  
    .fc-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 30px;
      overflow: hidden;
    }

    /* subtle grain */
    .fc-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none; 
      opacity: .4; 
      z-index: 0;
    }

    .fc-inner {
      position: relative; z-index: 1;
      width: 100%; max-width: 1200px;
    }

    /* ── GRID ── */
    .fc-grid {
      display: grid;
      grid-template-columns: 220px 1fr 220px;
      grid-template-rows: 1fr 1fr;
      min-height: 460px;
    }

    /* ── HEADLINE ── */
    .fc-headline {
      grid-column: 2; grid-row: 1 / 3;
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
      opacity: 0; transform: translateY(28px);
      animation: fadeUp .9s cubic-bezier(.22,1,.36,1) .15s forwards;
    }
    .fc-headline h2 {
      font-size: clamp(2.8rem, 7.5vw, 7rem);
      line-height: .93;
      text-transform: uppercase;
      color: var(--cream);
      text-align: center;
    }
    .fc-headline h2 .accent { color: var(--orange); }

    /* ── CORNER CELLS ── */
    .fc-cell {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 80px 40px;
      opacity: 0;
    }

    .fc-cell.tl { grid-column:1; grid-row:1; align-items:flex-start; justify-content:space-between; animation: slideRight .8s cubic-bezier(.22,1,.36,1) .45s forwards; }
    .fc-cell.tr { grid-column:3; grid-row:1; align-items:flex-end;   justify-content:space-between; animation: slideLeft  .8s cubic-bezier(.22,1,.36,1) .45s forwards; }
    .fc-cell.bl { grid-column:1; grid-row:2; align-items:flex-start; justify-content:space-between; animation: slideRight .8s cubic-bezier(.22,1,.36,1) .65s forwards; }
    .fc-cell.br { grid-column:3; grid-row:2; align-items:flex-end;   justify-content:space-between; animation: slideLeft  .8s cubic-bezier(.22,1,.36,1) .65s forwards; }

    .fc-cell.tl .fc-label { color: var(--white); text-align:left; }
    .fc-cell.tr .fc-label { color: var(--white);   text-align:right; }
    .fc-cell.bl .fc-label { color: var(--white);  text-align:left; }
    .fc-cell.br .fc-label { color: var(--white);   text-align:right; }

    .fc-label {
      font-family: 'DIN-Condensed-Bold';
      font-size: clamp(1.4rem, 1.35vw, .8rem);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      line-height: 1.55;
    }

    /* ══════════════════════════════════════════════
       SOLID L-SHAPE  — built with clip-path
       Each corner clips a notch from the inner corner
       of an otherwise solid square.

       clip-path polygon points go clockwise.
       (0,0) = top-left of bounding box.

       TL shape: notch cut from BOTTOM-RIGHT corner
         → full square minus bottom-right quadrant
         points: TL→TR→(right, cut)→(cut,cut)→(cut,bottom)→BL
       TR shape: notch cut from BOTTOM-LEFT corner
       BL shape: notch cut from TOP-RIGHT corner
       BR shape: notch cut from TOP-LEFT corner
    ══════════════════════════════════════════════ */

    .fc-shape {
      width: var(--sz);
      height: var(--sz);
      flex-shrink: 0;
      transition: transform .4s cubic-bezier(.34,1.56,.64,1);
    }
    .fc-shape:hover { transform: scale(1.12); }

    /* TL — yellow — notch bottom-right */
    .fc-cell.tl .fc-shape {
      background: var(--white);
      clip-path: polygon(
        0% 0%,
        100% 0%,
        100% 43%,
        43% 43%,
        43% 100%,
        0% 100%
      );
    }

    /* TR — blue — notch bottom-left */
    .fc-cell.tr .fc-shape {
      background: var(--white);
      clip-path: polygon(
        0% 0%,
        100% 0%,
        100% 100%,
        57% 100%,
        57% 43%,
        0% 43%
      );
    }

    /* BL — green — notch top-right */
    .fc-cell.bl .fc-shape {
      background: var(--white);
      clip-path: polygon(
        0% 0%,
        43% 0%,
        43% 57%,
        100% 57%,
        100% 100%,
        0% 100%
      );
    }

    /* BR — pink — notch top-left */
    .fc-cell.br .fc-shape {
      background: var(--white);
      clip-path: polygon(
        57% 0%,
        100% 0%,
        100% 100%,
        0% 100%,
        0% 57%,
        57% 57%
      );
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp    { to { opacity:1; transform:translateY(0); } }
    @keyframes slideRight{ from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
    @keyframes slideLeft { from{opacity:0;transform:translateX( 40px)} to{opacity:1;transform:translateX(0)} }

    /* ── TABLET ── */
    @media (max-width: 991px) {
      .fc-grid { grid-template-columns: 175px 1fr 175px; min-height: 380px; }
      :root { --sz: 58px; --cut: 25px; }
      .fc-cell { padding: 22px 18px; }
    }

    /* ── MOBILE ──
       Row1: [TL]  [TR]
       Row2: [headline spans both]
       Row3: [BL]  [BR]
    ── */
    @media (max-width: 767px) {
      :root { --sz: 48px; }

      .fc-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        min-height: unset;
      }

      .fc-headline {
        grid-column: 1 / 3; grid-row: 2;
        padding: 28px 10px;
      }

      .fc-cell.tl { grid-column:1; grid-row:1; align-items:flex-start; animation: fadeUp .7s ease .3s both; }
      .fc-cell.tr { grid-column:2; grid-row:1; align-items:flex-end;   animation: fadeUp .7s ease .4s both; }
      .fc-cell.bl { grid-column:1; grid-row:3; align-items:flex-start; animation: fadeUp .7s ease .5s both; }
      .fc-cell.br { grid-column:2; grid-row:3; align-items:flex-end;   animation: fadeUp .7s ease .6s both; }

      .fc-cell { padding: 16px 14px; min-height: 130px; justify-content: space-between; }
      .fc-label { font-size: .92rem; }
    }

    @media (max-width: 400px) {
      :root { --sz: 38px; }
      .fc-headline h2 { font-size: 2.2rem; }
      .fc-label { font-size: .56rem; }
      .fc-cell { padding: 12px 10px; min-height: 110px; }
    }
    /* End of 4 Corners Solution */

    /* Services Homepage */

    .services-architecture .services-item{
      height: auto;
    }
    .services-architecture .services-item .content{
      padding: 15px 10px;
    }
    .services-architecture .services-item .content ul li:not(:last-child){
      padding-bottom: 5px;
    }


/* Mexdot css */

.dsn-style-list .dsn-posts .box-content {
  border-style: var(--heading-color);
}
.dsn-style-list .dsn-posts .box-content .box-image-link {
  position: relative;
}
@media only screen and (min-width: 992px) {
  .dsn-style-list .dsn-posts .box-content {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-column-gap: 50px;
  }
  .dsn-style-list .dsn-posts .box-content .post-content {
    align-self: center;
  }
}
@media only screen and (max-width: 991px) {
  .dsn-style-list .dsn-posts .box-content {
    flex-direction: column;
  }
  .dsn-style-list .dsn-posts .box-content .box-image-link + .post-content {
    padding-top: 30px;
  }
}
.dsn-style-list .dsn-posts .dsn-item-post:not(:last-of-type) {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.dsn-style-list .dsn-posts .dsn-item-post .box-img {
  height: 185px;
}
@media only screen and (max-width: 767px) {
  .dsn-style-list .dsn-posts .dsn-item-post .box-img {
    height: 300px;
  }
}
.dsn-style-list .dsn-posts .dsn-item-post .article-meta {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .dsn-style-list .dsn-posts .dsn-item-post .article-meta {
    margin-top: 10px;
  }
}
.dsn-style-list .dsn-posts .dsn-item-post .article-meta .dot {
  background-color: var(--heading-color);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}
.dsn-style-list .dsn-posts .dsn-item-post .dsn-btn-shape {
  position: absolute;
  bottom: 0;
  right: 15px;
}
@media only screen and (max-width: 767px) {
  .dsn-style-list .dsn-posts .dsn-item-post .dsn-btn-shape {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .dsn-style-list .dsn-posts .box-content {
    grid-column-gap: 0 !important;
  }
  .dsn-style-list .dsn-posts .box-content .post-content {
    padding: 30px;
    justify-content: space-between;
    height: 100%;
  }
}
.dsn-style-list.dsn-image-right .dsn-posts .box-image-link, .dsn-style-list.dsn-image-odd .dsn-posts .dsn-item-post:nth-child(even) .box-image-link {
  order: 2;
}
@media only screen and (min-width: 992px) {
  .dsn-style-list.dsn-image-odd .dsn-posts .dsn-item-post:nth-child(even) .box-image-link {
    order: 2;
  }
  .dsn-style-list.dsn-image-odd .dsn-posts .dsn-item-post:nth-child(even) .post-content {
    justify-self: end;
  }
}
@media only screen and (max-width: 991px) {
  .dsn-style-list.dsn-image-odd .dsn-posts .dsn-item-post .box-image-link {
    order: 0 !important;
  }
}

/*  */
/* Progress Bar */
.dsn-skills-item .bar-progress {
  position: relative;
  width: 100%;
  height: 6px;
}
.dsn-skills-item .bar-progress .fill {
  position: absolute;
  width: 0;
  height: 100%;
}
.dsn-skills-item .bar-progress .fill.background-heading {
  background-color: var(--theme-color);
}
.has-border-radius {
  border-radius: 15px;
}
/* Icons */
.dsn-skills-item .box-img img {
  width: 58px;
}
.dsn-brands .content-float .box-img img{
  filter: invert(0);
  width: 58px;
}

/* Partners Brand Listing view */

/* .dsn-brands.desktop_view .brand-item:nth-child(1), .dsn-brands .brand-item:nth-child(8){
  grid-column: 1/2;
}
.dsn-brands.desktop_view .brand-item:nth-child(5),.dsn-brands .brand-item:nth-child(12){
  grid-column: 2/3;
}
.dsn-brands.desktop_view .brand-item:nth-child(2), .dsn-brands .brand-item:nth-child(9){
  grid-column: 3/4;
}
.dsn-brands.desktop_view .brand-item:nth-child(6){
  grid-column: 4/5;
}
.dsn-brands.desktop_view .brand-item:nth-child(3), .dsn-brands .brand-item:nth-child(10){
  grid-column: 5/6;
}
.dsn-brands.desktop_view .brand-item:nth-child(7){
  grid-column: 6/7;
}
.dsn-brands.desktop_view .brand-item:nth-child(4),.dsn-brands .brand-item:nth-child(11)  {
  grid-column: 7/8;
}
.dsn-brands.desktop_view .brand-item:nth-child(13) {
  grid-column: 8/9;
} */

/*  */
.dsn-brands.desktop_view .brand-item:nth-child(1), .dsn-brands.desktop_view .brand-item:nth-child(7) {
  grid-column: 1/2;
}
.dsn-brands.desktop_view .brand-item:nth-child(4), .dsn-brands.desktop_view .brand-item:nth-child(10) {
  grid-column: 2/3;
}
.dsn-brands.desktop_view .brand-item:nth-child(2), .dsn-brands.desktop_view .brand-item:nth-child(8) {
  grid-column: 3/4;
}
.dsn-brands.desktop_view .brand-item:nth-child(5), .dsn-brands.desktop_view .brand-item:nth-child(11) {
  grid-column: 4/5;
}
.dsn-brands.desktop_view .brand-item:nth-child(3), .dsn-brands.desktop_view .brand-item:nth-child(9) {
  grid-column: 5/6;
}
.dsn-brands.desktop_view .brand-item:nth-child(6), .dsn-brands.desktop_view .brand-item:nth-child(12) {
  grid-column: 6/7;
}

/* 12 Grid */
/* 
.dsn-brands.desktop_view .brand-item:nth-child(1) {
  grid-column: 1/2;
}
.dsn-brands.desktop_view .brand-item:nth-child(7){
  grid-column: 2/3;
}
.dsn-brands.desktop_view .brand-item:nth-child(2) {
  grid-column: 3/4;
}
.dsn-brands.desktop_view .brand-item:nth-child(8){
  grid-column: 4/5;
}
.dsn-brands.desktop_view .brand-item:nth-child(3) {
  grid-column: 5/6;
}
.dsn-brands.desktop_view .brand-item:nth-child(9) {
  grid-column: 6/7;
}
.dsn-brands.desktop_view .brand-item:nth-child(4){
  grid-column: 7/8;
}
.dsn-brands.desktop_view .brand-item:nth-child(10){
  grid-column: 8/9;
}
.dsn-brands.desktop_view .brand-item:nth-child(5){
  grid-column: 9/10;
}
.dsn-brands.desktop_view .brand-item:nth-child(11){
  grid-column: 10/11;
}
.dsn-brands.desktop_view .brand-item:nth-child(6){
  grid-column: 11/12;
}
.dsn-brands.desktop_view .brand-item:nth-child(12){
  grid-column: 12/13;
}
   */
/* .dsn-brands .brand-item:nth-child(13) {
  grid-column: 1/3;
} */

.mobile_view{
  display: none;
}
.desktop_view{
  display: block;
}

@media only screen and (max-width: 991px) {
  .mobile_view{
    display: block;
  }
  .desktop_view{
    display: none;
  }
}

/* Video Container */
#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video_container {
    width: 100%;
    height: 100%;
    overflow: hidden; /* hides any overflow from object-fit: cover */
    position: relative;
}

/* Mobile */
@media (max-width: 768px) {
    #intro-video {
        width: 100vw;
        height: auto;
        object-fit: contain;
        
        /* Center vertically */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .video_container {
        position: relative;
        width: 100vw;
        height: 100svh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-bottom .d-flex{
      display: grid !important;
    }
}
/* Mobile landscape */
@media (max-width: 768px) and (orientation: landscape) {
    #intro-video {
        height: 100vw; /* swap dimensions in landscape */
        width: 100vh;
    }
}
/* End Video Container */


/* Instagram Embed Videos */
.instagram-media{
  min-width: unset !important;
}
/* Homepage grid header */
@media only screen and (min-width: 992px) {
  .grid-lg-2 {
    grid-template-columns: 7fr 3fr;
  }
}

.dsn-btn-play{
  height: 55px;
  background-color: transparent;
  border: none;
  width: max-content;
}
