/* =========================================================
   ACG HOME HERO SLIDER V1
   ACG / ای سی جی
   ========================================================= */

.acg-home-slider{
  --acg-blue:#0c53a5;
  --acg-navy:#022041;
  --acg-deep:#01162a;
  --acg-sky:#71bce9;

  position:relative;
  width:100%;
  height:calc(100svh - var(--acg-header-h,0px));
  min-height:720px;
  max-height:920px;
  overflow:hidden;
  isolation:isolate;
  direction:rtl;

  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(20,109,192,.24),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #011426,
      #022041 58%,
      #073d70 150%
    );

  color:#fff;
}

.acg-home-slider *,
.acg-home-slider *:before,
.acg-home-slider *:after{
  box-sizing:border-box;
}

.acg-home-slider__grid{
  position:absolute;
  z-index:0;
  inset:0;

  opacity:.42;

  background:
    linear-gradient(
      rgba(96,168,222,.09) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(96,168,222,.09) 1px,
      transparent 1px
    );

  background-size:64px 64px;
}

.acg-home-slider:after{
  content:"";
  position:absolute;
  z-index:0;
  inset:0;

  pointer-events:none;

  background:
    linear-gradient(
      90deg,
      rgba(1,20,38,0) 0%,
      rgba(1,20,38,.15) 45%,
      rgba(1,20,38,.64) 100%
    );
}


/* =========================================================
   BRAND
   ========================================================= */

.acg-home-slider__brand{
  position:absolute;
  z-index:20;
  top:34px;
  right:max(32px,calc((100vw - 1360px)/2));

  display:flex;
  align-items:center;
  gap:12px;
}

.acg-home-slider__brand-mark{
  width:49px;
  height:49px;

  display:grid;
  place-items:center;

  border:1px solid rgba(255,255,255,.3);

  color:#fff;

  background:rgba(255,255,255,.07);

  backdrop-filter:blur(14px);

  font:950 14px Arial,sans-serif;
}

.acg-home-slider__brand strong,
.acg-home-slider__brand span{
  display:block;
}

.acg-home-slider__brand strong{
  color:#fff;

  font-size:12px;
  font-weight:900;
}

.acg-home-slider__brand span{
  margin-top:5px;

  color:#77bae4;

  font:800 8px Arial,sans-serif;
  letter-spacing:.15em;
}


/* =========================================================
   SLIDES
   ========================================================= */

.acg-home-slider__slides{
  position:absolute;
  z-index:2;
  inset:0;
}

.acg-home-slide{
  position:absolute;
  inset:0;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transform:scale(1.015);

  transition:
    opacity .7s ease,
    visibility .7s ease,
    transform 1.1s cubic-bezier(.2,.8,.2,1);
}

.acg-home-slide.is-active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;

  transform:scale(1);
}

.acg-home-slide__inner{
  width:min(1360px,calc(100% - 64px));
  height:100%;
  margin-inline:auto;

  display:grid;
  grid-template-columns:minmax(0,.87fr) minmax(520px,1.13fr);
  gap:55px;
  align-items:center;

  padding:
    105px
    0
    155px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.acg-home-slide__content{
  position:relative;
  z-index:5;

  max-width:700px;
}

.acg-home-slide__index{
  display:flex;
  align-items:center;
  gap:10px;

  margin-bottom:25px;
}

.acg-home-slide__index span{
  color:#6bb5e4;

  font:950 11px Arial,sans-serif;
}

.acg-home-slide__index i{
  width:42px;
  height:1px;

  background:rgba(112,190,236,.5);
}

.acg-home-slide__index strong{
  color:#b7d8ec;

  font:850 9px Arial,sans-serif;

  letter-spacing:.13em;
}

.acg-home-slide__eyebrow{
  color:#71bce9;

  font:900 9px Arial,sans-serif;

  letter-spacing:.17em;
}

.acg-home-slide h1,
.acg-home-slide h2{
  max-width:760px;

  margin:18px 0 0;

  color:#fff;

  font-size:clamp(48px,5.1vw,78px);
  font-weight:950;

  line-height:1.15;

  letter-spacing:-.045em;
}

.acg-home-slide h1 > span{
  font-family:Arial,sans-serif;
}

.acg-home-slide h1 small,
.acg-home-slide h2 small{
  display:block;

  margin-top:14px;

  color:#d2e3ee;

  font-family:inherit;
  font-size:clamp(20px,2vw,28px);
  font-weight:800;

  line-height:1.55;

  letter-spacing:0;
}

.acg-home-slide__content > p{
  max-width:680px;

  margin:25px 0 0;

  color:#b8cad7;

  font-size:14px;

  line-height:2.05;
}

.acg-home-slide__content > p strong{
  color:#fff;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.acg-home-slide__actions{
  margin-top:30px;

  display:flex;
  flex-wrap:wrap;
  gap:9px;
}

.acg-home-slide__btn{
  min-width:165px;
  min-height:52px;

  padding:0 21px;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  text-decoration:none;

  font-size:12px;
  font-weight:900;

  transition:
    transform .22s ease,
    background .22s ease,
    color .22s ease,
    border-color .22s ease;
}

.acg-home-slide__btn:hover{
  transform:translateY(-3px);
}

.acg-home-slide__btn--primary{
  color:#022041;

  background:#fff;

  border:1px solid #fff;
}

.acg-home-slide__btn--primary:hover{
  color:#fff;

  background:#0c53a5;

  border-color:#0c53a5;
}

.acg-home-slide__btn--ghost{
  color:#fff;

  background:rgba(255,255,255,.045);

  border:1px solid rgba(255,255,255,.3);
}

.acg-home-slide__btn--ghost:hover{
  background:rgba(255,255,255,.1);

  border-color:#fff;
}

.acg-home-slide__chips{
  margin-top:35px;

  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.acg-home-slide__chips span{
  min-height:29px;

  display:inline-flex;
  align-items:center;

  padding:0 9px;

  border:1px solid rgba(133,194,232,.18);

  color:#789db5;

  background:rgba(255,255,255,.025);

  font:800 7px Arial,sans-serif;

  letter-spacing:.1em;
}


/* =========================================================
   VISUAL / RENDERS
   ========================================================= */

.acg-home-slide__visual{
  position:relative;

  height:min(650px,67vh);
  min-height:500px;

  display:flex;
  align-items:center;
  justify-content:center;

  direction:ltr;
}

.acg-home-slide__visual:before{
  content:"";

  position:absolute;

  width:72%;
  aspect-ratio:1;

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(28,120,202,.23),
      transparent 66%
    );

  filter:blur(2px);
}

.acg-home-slide__visual:after{
  content:"";

  position:absolute;
  left:8%;
  right:8%;
  bottom:8%;

  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(106,182,230,.5),
      transparent
    );
}

.acg-home-slide__render{
  position:relative;
  z-index:3;

  width:100%;
  height:100%;

  display:flex;
  align-items:center;
  justify-content:center;
}

.acg-home-slide__render img{
  display:block;

  width:100%;
  height:100%;

  object-fit:contain;

  filter:
    drop-shadow(0 36px 55px rgba(0,0,0,.34));

  transform:
    translateY(8px)
    scale(.98);

  transition:
    transform 1.25s cubic-bezier(.2,.8,.2,1);
}

.acg-home-slide.is-active .acg-home-slide__render img{
  transform:
    translateY(0)
    scale(1);
}

.acg-home-slide__render--brand img{
  transform:
    translateY(10px)
    scale(1.06);
}

.acg-home-slide.is-active
.acg-home-slide__render--brand img{
  transform:
    translateY(0)
    scale(1.09);
}

.acg-home-slide__render--large img{
  transform:
    translateY(10px)
    scale(1.03);
}

.acg-home-slide.is-active
.acg-home-slide__render--large img{
  transform:
    translateY(0)
    scale(1.07);
}

.acg-home-slide__render--gantry img{
  transform:
    translateY(10px)
    scale(1.01);
}

.acg-home-slide.is-active
.acg-home-slide__render--gantry img{
  transform:
    translateY(0)
    scale(1.05);
}


/* =========================================================
   TECHNICAL LABELS
   ========================================================= */

.acg-home-slide__spec{
  position:absolute;
  z-index:5;

  color:#fff;

  background:rgba(2,32,65,.72);

  border:1px solid rgba(114,186,230,.25);

  backdrop-filter:blur(15px);
}

.acg-home-slide__spec--top{
  top:12%;
  left:4%;

  padding:11px 14px;
}

.acg-home-slide__spec--top small,
.acg-home-slide__spec--top strong{
  display:block;
}

.acg-home-slide__spec--top small{
  color:#6eb9e8;

  font:800 7px Arial,sans-serif;
}

.acg-home-slide__spec--top strong{
  margin-top:5px;

  font:900 9px Arial,sans-serif;
}

.acg-home-slide__spec--bottom{
  right:5%;
  bottom:12%;

  min-width:225px;

  padding:12px 14px;

  display:grid;
  grid-template-columns:35px 1fr;
  gap:8px;
  align-items:center;
}

.acg-home-slide__spec--bottom > span{
  color:#69b7e7;

  font:950 16px Arial,sans-serif;
}

.acg-home-slide__spec--bottom small,
.acg-home-slide__spec--bottom strong{
  display:block;
}

.acg-home-slide__spec--bottom small{
  color:#7998ad;

  font:800 7px Arial,sans-serif;
}

.acg-home-slide__spec--bottom strong{
  margin-top:5px;

  font:900 8px Arial,sans-serif;
}


/* =========================================================
   PRODUCT TAG
   ========================================================= */

.acg-home-slide__product-tag{
  position:absolute;
  z-index:5;

  right:4%;
  bottom:12%;

  min-width:230px;

  padding:12px 15px;

  display:grid;
  grid-template-columns:47px 1fr;
  gap:10px;
  align-items:center;

  border:1px solid rgba(108,184,232,.27);

  background:rgba(2,32,65,.78);

  backdrop-filter:blur(16px);
}

.acg-home-slide__product-tag > span{
  color:#fff;

  font:950 20px Arial,sans-serif;
}

.acg-home-slide__product-tag small,
.acg-home-slide__product-tag strong{
  display:block;
}

.acg-home-slide__product-tag small{
  color:#68b6e6;

  font:800 7px Arial,sans-serif;
}

.acg-home-slide__product-tag strong{
  margin-top:4px;

  color:#fff;

  font:900 9px Arial,sans-serif;
}


/* =========================================================
   DIGITAL UI
   ========================================================= */

.acg-home-digital-ui{
  position:absolute;
  z-index:7;

  left:4%;
  bottom:10%;

  width:290px;

  overflow:hidden;

  border:1px solid rgba(114,190,235,.28);

  background:rgba(245,249,252,.95);

  box-shadow:0 26px 65px rgba(0,0,0,.28);

  color:#18364f;

  backdrop-filter:blur(18px);
}

.acg-home-digital-ui > header{
  min-height:52px;

  padding:0 13px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  border-bottom:1px solid #d5e1e9;

  background:#fff;
}

.acg-home-digital-ui header > div{
  display:flex;
  align-items:center;
  gap:8px;
}

.acg-home-digital-ui header div > span{
  width:28px;
  height:28px;

  display:grid;
  place-items:center;

  color:#fff;

  background:#0c53a5;

  font:950 13px Arial,sans-serif;
}

.acg-home-digital-ui header strong{
  color:#022041;

  font:900 9px Arial,sans-serif;
}

.acg-home-digital-ui header > small{
  color:#299a67;

  font:800 6px Arial,sans-serif;
}

.acg-home-digital-ui__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.acg-home-digital-ui__stats div{
  padding:13px;

  border-left:1px solid #dce6ed;
}

.acg-home-digital-ui__stats div:last-child{
  border-left:0;
}

.acg-home-digital-ui__stats small,
.acg-home-digital-ui__stats strong{
  display:block;
}

.acg-home-digital-ui__stats small{
  color:#8495a3;

  font:700 6px Arial,sans-serif;
}

.acg-home-digital-ui__stats strong{
  margin-top:5px;

  color:#0c53a5;

  font:950 18px Arial,sans-serif;
}

.acg-home-digital-ui__health{
  padding:12px;

  border-top:1px solid #dce6ed;
}

.acg-home-digital-ui__health > span{
  color:#8495a3;

  font:800 6px Arial,sans-serif;
}

.acg-home-digital-ui__health > div{
  position:relative;

  height:4px;

  margin-top:7px;

  background:#dce5eb;
}

.acg-home-digital-ui__health i{
  position:absolute;
  inset:0 auto 0 0;

  width:92%;

  background:#2aa66c;
}

.acg-home-digital-ui__health > strong{
  display:block;

  margin-top:6px;

  color:#2a9f69;

  font:950 10px Arial,sans-serif;
}


/* =========================================================
   CONTROLS
   ========================================================= */

.acg-home-slider__controls{
  position:absolute;
  z-index:30;

  right:0;
  bottom:0;
  left:0;

  border-top:1px solid rgba(255,255,255,.14);

  background:rgba(1,20,38,.46);

  backdrop-filter:blur(16px);
}

.acg-home-slider__navigation{
  display:none;
}

.acg-home-slider__tabs{
  width:min(1360px,calc(100% - 64px));
  min-height:108px;

  margin-inline:auto;

  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.acg-home-slider__tabs button{
  position:relative;

  padding:19px 18px;

  display:grid;
  grid-template-columns:31px 1fr;
  align-content:center;
  gap:2px 10px;

  border:0;
  border-left:1px solid rgba(255,255,255,.12);

  text-align:right;

  color:#fff;

  background:transparent;

  cursor:pointer;

  font-family:inherit;

  transition:background .25s ease;
}

.acg-home-slider__tabs button:first-child{
  border-right:1px solid rgba(255,255,255,.12);
}

.acg-home-slider__tabs button:hover,
.acg-home-slider__tabs button.is-active{
  background:rgba(255,255,255,.055);
}

.acg-home-slider__tabs button:after{
  content:"";

  position:absolute;
  right:0;
  bottom:0;

  width:0;
  height:2px;

  background:#6fbbea;

  transition:width .4s ease;
}

.acg-home-slider__tabs button.is-active:after{
  width:100%;
}

.acg-home-slider__tabs span{
  grid-row:1 / 3;

  color:#68b6e6;

  font:950 10px Arial,sans-serif;
}

.acg-home-slider__tabs strong{
  color:#fff;

  font-size:10px;
  font-weight:900;
}

.acg-home-slider__tabs small{
  color:#708da2;

  font:800 6px Arial,sans-serif;

  letter-spacing:.09em;
}

.acg-home-slider__progress{
  position:absolute;
  right:0;
  bottom:0;
  left:0;

  height:2px;

  overflow:hidden;

  pointer-events:none;
}

.acg-home-slider__progress i{
  display:block;

  width:0;
  height:100%;

  background:#fff;
}

.acg-home-slider.is-running
.acg-home-slider__progress i{
  animation:
    acgHomeHeroProgress
    7s
    linear
    forwards;
}

@keyframes acgHomeHeroProgress{
  from{width:0}
  to{width:100%}
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1100px){

  .acg-home-slider{
    min-height:760px;
    max-height:none;
  }

  .acg-home-slide__inner{
    width:calc(100% - 40px);

    grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);

    gap:25px;
  }

  .acg-home-slide h1,
  .acg-home-slide h2{
    font-size:clamp(43px,5.4vw,62px);
  }

  .acg-home-slide__visual{
    min-height:450px;
  }

  .acg-home-slider__tabs{
    width:calc(100% - 40px);
  }

}


/* =========================================================
   MOBILE / SMALL TABLET
   ========================================================= */

@media(max-width:820px){

  .acg-home-slider{
    height:auto;
    min-height:900px;
    max-height:none;
  }

  .acg-home-slider__brand{
    top:22px;
    right:20px;
  }

  .acg-home-slider__brand-mark{
    width:42px;
    height:42px;
  }

  .acg-home-slide__inner{
    width:calc(100% - 32px);
    min-height:900px;

    grid-template-columns:1fr;
    grid-template-rows:auto 1fr;

    gap:8px;

    align-content:start;

    padding:
      105px
      0
      155px;
  }

  .acg-home-slide__content{
    max-width:none;
  }

  .acg-home-slide__index{
    margin-bottom:17px;
  }

  .acg-home-slide h1,
  .acg-home-slide h2{
    font-size:clamp(42px,10vw,62px);
  }

  .acg-home-slide h1 small,
  .acg-home-slide h2 small{
    margin-top:8px;

    font-size:18px;
  }

  .acg-home-slide__content > p{
    max-width:none;

    margin-top:17px;

    font-size:13px;
    line-height:1.95;
  }

  .acg-home-slide__actions{
    margin-top:20px;
  }

  .acg-home-slide__chips{
    display:none;
  }

  .acg-home-slide__visual{
    height:345px;
    min-height:345px;
  }

  .acg-home-slide__render img,
  .acg-home-slide__render--brand img,
  .acg-home-slide__render--large img,
  .acg-home-slide__render--gantry img{
    max-height:340px;
  }

  .acg-home-slide__spec--top{
    display:none;
  }

  .acg-home-slide__spec--bottom,
  .acg-home-slide__product-tag{
    right:8px;
    bottom:4px;

    transform:scale(.82);
    transform-origin:right bottom;
  }

  .acg-home-digital-ui{
    left:0;
    bottom:0;

    width:245px;

    transform:scale(.85);
    transform-origin:left bottom;
  }


  /* Controls */

  .acg-home-slider__tabs{
    min-height:82px;
    width:100%;

    grid-template-columns:repeat(4,1fr);
  }

  .acg-home-slider__tabs button{
    min-width:0;

    padding:15px 6px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-left:1px solid rgba(255,255,255,.1);

    text-align:center;
  }

  .acg-home-slider__tabs strong,
  .acg-home-slider__tabs small{
    display:none;
  }

  .acg-home-slider__tabs span{
    color:#7898ae;

    font-size:10px;
  }

  .acg-home-slider__tabs button.is-active span{
    color:#fff;
  }

}


/* =========================================================
   PHONE
   ========================================================= */

@media(max-width:520px){

  .acg-home-slider{
    min-height:840px;
  }

  .acg-home-slide__inner{
    min-height:840px;

    padding-bottom:120px;
  }

  .acg-home-slider__brand span{
    display:none;
  }

  .acg-home-slide__eyebrow{
    font-size:7px;
  }

  .acg-home-slide h1,
  .acg-home-slide h2{
    font-size:40px;

    line-height:1.18;
  }

  .acg-home-slide h1 small,
  .acg-home-slide h2 small{
    font-size:16px;
  }

  .acg-home-slide__actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .acg-home-slide__btn{
    width:100%;
  }

  .acg-home-slide__visual{
    height:290px;
    min-height:290px;
  }

  .acg-home-slide__render img,
  .acg-home-slide__render--brand img,
  .acg-home-slide__render--large img,
  .acg-home-slide__render--gantry img{
    max-height:290px;
  }

  .acg-home-slide__spec--bottom,
  .acg-home-slide__product-tag{
    display:none;
  }

  .acg-home-digital-ui{
    width:220px;

    transform:scale(.76);
  }

  .acg-home-slider__tabs{
    min-height:66px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media(prefers-reduced-motion:reduce){

  .acg-home-slide,
  .acg-home-slide__render img,
  .acg-home-slider__tabs button,
  .acg-home-slider__tabs button:after,
  .acg-home-slide__btn{
    transition:none!important;
  }

  .acg-home-slider__progress{
    display:none;
  }

}


/* =========================================================
   ACG HOME HERO — INDUSTRIAL V2
   Heavy Engineering / Minimal / Render First
   ========================================================= */


/* ---------------------------------------------------------
   MASTER
   --------------------------------------------------------- */

.acg-home-slider{
  height:calc(100svh - var(--acg-header-h,0px));
  min-height:720px;
  max-height:900px;

  background:
    radial-gradient(
      circle at 24% 45%,
      rgba(19,103,176,.18) 0,
      rgba(19,103,176,.05) 26%,
      transparent 52%
    ),
    linear-gradient(
      108deg,
      #03101c 0%,
      #061c31 46%,
      #082b4c 100%
    );

  border-bottom:1px solid rgba(118,183,224,.18);
}


/* dark industrial vignette */

.acg-home-slider:after{
  z-index:1;

  background:
    linear-gradient(
      90deg,
      rgba(1,12,23,.02) 0%,
      rgba(1,12,23,.08) 36%,
      rgba(1,12,23,.55) 76%,
      rgba(1,12,23,.88) 100%
    );
}


/* very restrained engineering grid */

.acg-home-slider__grid{
  opacity:.15;

  background:
    linear-gradient(
      rgba(112,184,228,.13) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(112,184,228,.13) 1px,
      transparent 1px
    );

  background-size:96px 96px;
}


/* ---------------------------------------------------------
   REMOVE MICRO UI
   --------------------------------------------------------- */

.acg-home-slide__index,
.acg-home-slide__eyebrow,
.acg-home-slide__chips,
.acg-home-slide__spec,
.acg-home-slide__product-tag,
.acg-home-digital-ui{
  display:none !important;
}


/* ---------------------------------------------------------
   LARGE BACKGROUND BRAND
   --------------------------------------------------------- */

.acg-home-slide:before{
  content:"ACG";

  position:absolute;
  z-index:0;

  left:-1vw;
  top:50%;

  transform:translateY(-54%);

  color:rgba(255,255,255,.025);

  font:
    950
    clamp(190px,27vw,430px)
    Arial,
    sans-serif;

  line-height:.8;

  letter-spacing:-.09em;

  pointer-events:none;
}


/* subtle industrial blue beam */

.acg-home-slide:after{
  content:"";

  position:absolute;
  z-index:0;

  top:0;
  bottom:0;
  left:43%;

  width:34%;

  transform:skewX(-12deg);

  background:
    linear-gradient(
      180deg,
      rgba(12,83,165,.04),
      rgba(40,137,207,.13),
      rgba(12,83,165,.025)
    );

  border-inline:
    1px solid rgba(112,184,228,.05);

  pointer-events:none;
}


/* ---------------------------------------------------------
   FIXED BRAND
   --------------------------------------------------------- */

.acg-home-slider__brand{
  top:38px;

  right:max(
    32px,
    calc((100vw - 1380px) / 2)
  );

  gap:15px;
}


.acg-home-slider__brand-mark{
  width:58px;
  height:58px;

  border:0;
  border-right:4px solid #1480ca;

  background:rgba(255,255,255,.035);

  font-size:17px;
}


.acg-home-slider__brand strong{
  font-size:14px;
  font-weight:950;
}


.acg-home-slider__brand span{
  display:none;
}


/* ---------------------------------------------------------
   LAYOUT
   --------------------------------------------------------- */

.acg-home-slide__inner{
  width:min(
    1380px,
    calc(100% - 72px)
  );

  grid-template-columns:
    minmax(420px,.86fr)
    minmax(0,1.14fr);

  gap:30px;

  padding:
    105px
    0
    132px;
}


/* ---------------------------------------------------------
   TYPOGRAPHY
   --------------------------------------------------------- */

.acg-home-slide__content{
  position:relative;

  z-index:10;

  max-width:620px;
}


.acg-home-slide h1,
.acg-home-slide h2{
  max-width:650px;

  margin:0;

  color:#fff;

  font-size:
    clamp(
      58px,
      5.8vw,
      88px
    );

  font-weight:950;

  line-height:1.08;

  letter-spacing:-.055em;

  text-shadow:
    0 18px 45px rgba(0,0,0,.18);
}


.acg-home-slide h1 > span{
  color:#fff;
}


.acg-home-slide h1 small,
.acg-home-slide h2 small{
  max-width:580px;

  margin-top:19px;

  color:#9cc5df;

  font-size:
    clamp(
      20px,
      1.65vw,
      27px
    );

  font-weight:800;

  line-height:1.7;

  letter-spacing:0;
}


.acg-home-slide__content > p{
  max-width:590px;

  margin-top:23px;

  color:#afc1ce;

  font-size:15px;

  line-height:2;

  font-weight:500;
}


.acg-home-slide__content > p strong{
  color:#fff;
  font-weight:900;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.acg-home-slide__actions{
  margin-top:31px;

  gap:10px;
}


.acg-home-slide__btn{
  min-width:178px;
  min-height:55px;

  padding-inline:23px;

  border-radius:0;

  font-size:12px;
  font-weight:950;
}


.acg-home-slide__btn--primary{
  color:#fff;

  border:1px solid #0c67af;

  background:#0c67af;

  box-shadow:
    0 15px 38px
    rgba(0,55,105,.28);
}


.acg-home-slide__btn--primary:hover{
  color:#022041;

  border-color:#fff;

  background:#fff;
}


.acg-home-slide__btn--ghost{
  color:#fff;

  border:1px solid rgba(255,255,255,.25);

  background:rgba(255,255,255,.025);
}


.acg-home-slide__btn--ghost:hover{
  border-color:rgba(255,255,255,.7);

  background:rgba(255,255,255,.075);
}


/* ---------------------------------------------------------
   RENDER STAGE
   --------------------------------------------------------- */

.acg-home-slide__visual{
  position:relative;

  height:min(680px,72vh);
  min-height:520px;

  overflow:visible;
}


/* industrial light behind render */

.acg-home-slide__visual:before{
  width:90%;

  background:
    radial-gradient(
      circle,
      rgba(31,128,199,.27) 0%,
      rgba(15,85,144,.13) 33%,
      transparent 69%
    );

  filter:blur(14px);
}


/* floor */

.acg-home-slide__visual:after{
  right:3%;
  left:3%;
  bottom:5%;

  height:2px;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(107,186,234,.13) 15%,
      rgba(107,186,234,.65) 50%,
      rgba(107,186,234,.13) 85%,
      transparent 100%
    );

  box-shadow:
    0 0 50px
    rgba(44,140,205,.22);
}


/* render */

.acg-home-slide__render{
  z-index:5;

  width:116%;
  height:110%;

  margin-left:-9%;
}


.acg-home-slide__render img{
  width:100%;
  height:100%;

  object-fit:contain;

  filter:
    drop-shadow(
      0
      45px
      45px
      rgba(0,0,0,.42)
    );

  transform:
    translateX(-25px)
    translateY(10px)
    scale(1.07);

  transition:
    opacity .8s ease,
    transform 1.2s cubic-bezier(.18,.8,.2,1);
}


.acg-home-slide.is-active
.acg-home-slide__render img{
  transform:
    translateX(0)
    translateY(0)
    scale(1.13);
}


/* brand slide slightly larger */

.acg-home-slide.is-active
.acg-home-slide__render--brand img{
  transform:
    translateX(0)
    translateY(0)
    scale(1.17);
}


/* gantry */

.acg-home-slide.is-active
.acg-home-slide__render--gantry img{
  transform:
    translateX(0)
    translateY(0)
    scale(1.12);
}


/* ---------------------------------------------------------
   SLIDE TRANSITION
   --------------------------------------------------------- */

.acg-home-slide{
  opacity:0;

  transform:none;

  transition:
    opacity .7s ease,
    visibility .7s ease;
}


.acg-home-slide.is-active{
  opacity:1;

  transform:none;
}


.acg-home-slide:not(.is-active)
.acg-home-slide__content{
  opacity:0;

  transform:translateX(25px);
}


.acg-home-slide__content{
  transition:
    opacity .65s ease .12s,
    transform .75s cubic-bezier(.2,.8,.2,1) .08s;
}


.acg-home-slide.is-active
.acg-home-slide__content{
  opacity:1;

  transform:translateX(0);
}


/* ---------------------------------------------------------
   SLIDER CONTROL BAR
   --------------------------------------------------------- */

.acg-home-slider__controls{
  min-height:96px;

  border-top:
    1px solid
    rgba(130,188,225,.16);

  background:
    rgba(2,17,31,.78);

  backdrop-filter:blur(18px);
}


.acg-home-slider__tabs{
  width:min(
    1380px,
    calc(100% - 72px)
  );

  min-height:96px;
}


.acg-home-slider__tabs button{
  min-height:96px;

  padding:0 23px;

  grid-template-columns:42px 1fr;

  border-left:
    1px solid
    rgba(255,255,255,.08);

  background:transparent;
}


.acg-home-slider__tabs button:first-child{
  border-right:
    1px solid
    rgba(255,255,255,.08);
}


.acg-home-slider__tabs button:hover{
  background:
    rgba(255,255,255,.025);
}


.acg-home-slider__tabs button.is-active{
  background:
    linear-gradient(
      180deg,
      rgba(12,83,165,.06),
      rgba(12,83,165,.18)
    );
}


/* number */

.acg-home-slider__tabs span{
  grid-row:auto;

  color:#55778f;

  font-size:15px;
  font-weight:950;
}


.acg-home-slider__tabs button.is-active span{
  color:#55b1ec;
}


/* only large label */

.acg-home-slider__tabs strong{
  font-size:12px;
  font-weight:900;

  color:#839bab;
}


.acg-home-slider__tabs button.is-active strong{
  color:#fff;
}


.acg-home-slider__tabs small{
  display:none;
}


/* active industrial line */

.acg-home-slider__tabs button:after{
  right:0;
  top:0;
  bottom:auto;

  width:0;
  height:3px;

  background:#1684cb;
}


.acg-home-slider__tabs button.is-active:after{
  width:100%;
}


/* autoplay progress */

.acg-home-slider__progress{
  height:2px;

  background:
    rgba(255,255,255,.045);
}


.acg-home-slider__progress i{
  background:#5bb9ef;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1100px){

  .acg-home-slide__inner{
    width:calc(100% - 44px);

    grid-template-columns:
      minmax(380px,.9fr)
      minmax(0,1.1fr);

    gap:15px;
  }

  .acg-home-slide h1,
  .acg-home-slide h2{
    font-size:
      clamp(
        50px,
        6vw,
        70px
      );
  }

  .acg-home-slide__render{
    width:112%;

    margin-left:-7%;
  }

  .acg-home-slider__tabs{
    width:calc(100% - 44px);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:820px){

  .acg-home-slider{
    min-height:850px;
  }


  .acg-home-slider:after{
    background:
      linear-gradient(
        180deg,
        rgba(3,16,29,.35),
        rgba(3,16,29,.84)
      );
  }


  .acg-home-slide:before{
    top:63%;
    left:-7%;

    font-size:52vw;
  }


  .acg-home-slide:after{
    display:none;
  }


  .acg-home-slider__brand{
    top:20px;
    right:18px;
  }


  .acg-home-slider__brand-mark{
    width:46px;
    height:46px;

    font-size:14px;
  }


  .acg-home-slider__brand strong{
    font-size:12px;
  }


  .acg-home-slide__inner{
    width:calc(100% - 36px);

    min-height:850px;

    display:flex;
    flex-direction:column;

    padding:
      96px
      0
      100px;
  }


  .acg-home-slide__content{
    width:100%;
    max-width:none;
  }


  .acg-home-slide h1,
  .acg-home-slide h2{
    max-width:100%;

    font-size:
      clamp(
        42px,
        11vw,
        62px
      );

    line-height:1.12;
  }


  .acg-home-slide h1 small,
  .acg-home-slide h2 small{
    max-width:100%;

    margin-top:12px;

    font-size:17px;
  }


  .acg-home-slide__content > p{
    max-width:100%;

    margin-top:15px;

    font-size:13px;

    line-height:1.9;
  }


  .acg-home-slide__actions{
    margin-top:20px;
  }


  .acg-home-slide__visual{
    width:100%;

    height:330px;
    min-height:330px;

    margin-top:auto;
  }


  .acg-home-slide__render{
    width:115%;
    height:110%;

    margin-left:-8%;
  }


  .acg-home-slide.is-active
  .acg-home-slide__render img,

  .acg-home-slide.is-active
  .acg-home-slide__render--brand img,

  .acg-home-slide.is-active
  .acg-home-slide__render--gantry img{

    transform:
      translateX(0)
      translateY(0)
      scale(1.04);
  }


  .acg-home-slider__controls{
    min-height:72px;
  }


  .acg-home-slider__tabs{
    min-height:72px;
  }


  .acg-home-slider__tabs button{
    min-height:72px;

    padding:0 6px;

    display:flex;
    flex-direction:column;

    gap:4px;
  }


  .acg-home-slider__tabs span{
    font-size:11px;
  }


  .acg-home-slider__tabs strong{
    display:block;

    max-width:80px;

    overflow:hidden;

    font-size:8px;

    white-space:nowrap;

    text-overflow:ellipsis;
  }

}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media(max-width:520px){

  .acg-home-slider{
    min-height:820px;
  }


  .acg-home-slide__inner{
    min-height:820px;

    padding-bottom:85px;
  }


  .acg-home-slide h1,
  .acg-home-slide h2{
    font-size:39px;
  }


  .acg-home-slide h1 small,
  .acg-home-slide h2 small{
    font-size:15px;

    line-height:1.65;
  }


  .acg-home-slide__content > p{
    display:-webkit-box;

    overflow:hidden;

    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
  }


  .acg-home-slide__actions{
    grid-template-columns:1fr 1fr;

    display:grid;
  }


  .acg-home-slide__btn{
    min-width:0;
    min-height:48px;

    padding:0 10px;

    font-size:10px;
  }


  .acg-home-slide__visual{
    height:300px;
    min-height:300px;
  }


  .acg-home-slider__tabs strong{
    display:none;
  }

}


/* =========================================================
   ACG INDUSTRIAL HERO V2 END
   ========================================================= */
