body.sidebar-home {
  background: var(--cream);
}

.side-nav {
  position: fixed;
  z-index: 90;
  left: 0;
  top: 0;
  bottom: 0;
  width: 310px;
  padding: 34px 28px;
  background: radial-gradient(circle at 0 100%,rgba(201,117,77,.13),transparent 28%),var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 18px 0 55px rgba(9,25,31,.15);
}

.side-brand {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.side-brand .brand {
  display: flex;
}

.side-menu {
  display: grid;
  margin-top: 28px;
  overflow: auto;
  padding-right: 4px;
}

.side-menu-group,.side-menu-direct {
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.side-menu-button,.side-menu-direct {
  width: 100%;
  min-height: 50px;
  background: transparent;
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font: 700 15px "Manrope";
  padding: 0;
}

.side-menu-button i {
  font-style: normal;
  color: #f2b692;
  font-size: 20px;
}

.side-submenu {
  display: none;
  padding: 0 0 12px;
}

.side-menu-group.open .side-submenu {
  display: grid;
}

.side-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  transition: .25s;
}

.side-submenu a:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
  transform: translateX(3px);
}

.side-submenu b {
  font: 800 9px "Manrope";
  color: #f2b692;
}

.side-bottom {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.side-bottom .socials a {
  background: rgba(255,255,255,.04);
}

.side-bottom .socials a:hover {
  background: #fff;
  color: var(--navy);
}

.side-main {
  margin-left: 310px;
  min-height: 100vh;
}

.side-mobile-header {
  display: none;
}

.side-hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.side-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s;
}

.side-hero-slide.active {
  opacity: 1;
}

.side-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82);
  transform: scale(1.07);
  transition: transform 7s;
}

.side-hero-slide.active img {
  transform: scale(1);
}

.side-hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(11,28,35,.92),rgba(11,28,35,.46),rgba(11,28,35,.14)),linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.38));
}

.side-hero-content {
  position: relative;
  z-index: 3;
  min-height: 860px;
  display: flex;
  align-items: center;
  padding: 80px 7vw;
}

.side-hero-copy {
  max-width: 820px;
}

.side-hero-copy h1 {
  font-size: clamp(52px,6.4vw,94px);
}

.side-hero-copy p {
  font-size: 19px;
  color: rgba(255,255,255,.7);
  max-width: 620px;
}

.side-hero-copy .eyebrow {
  color: #f2b692;
}

.side-slide-controls {
  position: absolute;
  z-index: 5;
  right: 42px;
  top: 50%;
  display: grid;
  gap: 10px;
}

.side-slide-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.27);
  background: rgba(255,255,255,.05);
  color: #fff;
  transition: .25s;
}

.side-slide-controls button:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}

.side-slide-index {
  position: absolute;
  z-index: 4;
  right: 48px;
  bottom: 36px;
  font: 700 12px "Manrope";
  letter-spacing: .18em;
  color: rgba(255,255,255,.65);
}

.side-hero-card {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 70px;
  width: 250px;
  background: rgba(255,253,249,.94);
  color: var(--ink);
  padding: 23px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.side-hero-card strong {
  display: block;
  font: 800 38px "Manrope";
  color: var(--terracotta-dark);
}

.side-hero-card span {
  font-size: 13px;
  color: var(--muted);
}

.side-logo-strip {
  background: var(--sand-2);
  padding: 24px 6vw;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
}

.side-logo-strip span {
  min-height: 62px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(23,39,45,.08);
  font: 800 14px "Manrope";
  color: #6f7979;
  transition: .3s;
}

.side-logo-strip span:hover {
  transform: translateY(-4px);
  background: #fff;
  color: var(--navy);
}

.side-section {
  padding: 105px 6vw;
}

.side-section.alt {
  background: var(--sand-2);
}

.side-section.dark {
  background: var(--navy);
  color: #fff;
}

.side-section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.side-section-head h2 {
  max-width: 760px;
  margin: 0;
}

.side-section-head p {
  max-width: 420px;
  color: var(--muted);
}

.side-section.dark .side-section-head p {
  color: rgba(255,255,255,.62);
}

.side-services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.side-work {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}

.side-work .image-card:first-child {
  min-height: 620px;
}

.side-work-column {
  display: grid;
  gap: 18px;
}

.side-work-column .image-card {
  min-height: 300px;
}

.side-industries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.13);
}

.side-industry {
  padding: 28px;
  background: var(--navy-2);
  transition: .35s;
}

.side-industry:hover {
  background: var(--navy-3);
  padding-left: 36px;
}

.side-industry h3 {
  margin-bottom: 9px;
}

.side-industry p {
  color: rgba(255,255,255,.6);
  margin: 0;
}

.side-cta {
  margin: 0 6vw 90px;
  background: linear-gradient(135deg,var(--terracotta-dark),var(--terracotta));
  color: #fff;
  border-radius: 28px;
  padding: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 28px 75px rgba(157,78,48,.25);
}

.side-cta h2 {
  max-width: 720px;
  margin: 0;
}

.side-footer {
  background: #102027;
  color: rgba(255,255,255,.62);
  padding: 45px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.side-mobile-overlay {
  display: none;
}

@media (max-width:1150px) {
  .side-nav {
    width: 270px;
  }

  .side-main {
    margin-left: 270px;
  }

  .side-services {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:900px) {
  .side-nav {
    transform: translateX(-100%);
    transition: .35s var(--ease);
    width: min(360px,90vw);
  }

  .side-nav.open {
    transform: none;
  }

  .side-main {
    margin-left: 0;
  }

  .side-mobile-header {
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    top: 0;
    height: 76px;
    padding: 0 20px;
    background: rgba(27,43,50,.94);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .side-mobile-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.23);
    background: transparent;
    color: #fff;
  }

  .side-mobile-overlay {
    position: fixed;
    z-index: 85;
    inset: 0;
    background: rgba(5,17,21,.68);
  }

  .side-mobile-overlay.show {
    display: block;
  }

  .side-hero-content {
    padding-top: 125px;
  }

  .side-work {
    grid-template-columns: 1fr;
  }

  .side-industries {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .side-hero,.side-hero-content {
    min-height: 760px;
  }

  .side-hero-copy h1 {
    font-size: 48px;
  }

  .side-hero-card {
    display: none;
  }

  .side-slide-controls {
    right: 14px;
  }

  .side-logo-strip {
    grid-template-columns: 1fr 1fr;
    padding: 20px 15px;
  }

  .side-services {
    grid-template-columns: 1fr;
  }

  .side-section {
    padding: 80px 15px;
  }

  .side-section-head {
    display: block;
  }

  .side-section-head p {
    margin-top: 17px;
  }

  .side-cta {
    margin: 0 15px 70px;
    padding: 38px 24px;
    display: block;
  }

  .side-cta .btn {
    margin-top: 25px;
  }

  .side-footer {
    padding: 35px 15px;
    display: block;
  }
}

/*=========================================================
 *   HOME 04 — SIDEBAR & HERO PREMIUM REFINEMENT
 *   =========================================================
 */

/* Keep scrolling functional while hiding every visible scrollbar. */

.side-nav, .side-menu, .side-submenu, .blog-sidebar, .offcanvas, .mobile-drawer {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.side-nav::-webkit-scrollbar,
.side-menu::-webkit-scrollbar,
.side-submenu::-webkit-scrollbar,
.blog-sidebar::-webkit-scrollbar,
.offcanvas::-webkit-scrollbar,
.mobile-drawer::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* Full sidebar shell */

.side-nav {
  width: 330px !important;
  padding: 24px 22px 22px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  background: radial-gradient(circle at -8% 100%,rgba(201,117,77,.18),transparent 31%),
    radial-gradient(circle at 110% -5%,rgba(255,255,255,.055),transparent 27%),
    linear-gradient(180deg,#1c3038 0%,#14262d 100%) !important;
  box-shadow: 22px 0 70px rgba(7,20,25,.20) !important;
}

.side-nav::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 330px;
  height: 100%;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg,#000,transparent 72%);
}

.side-main {
  margin-left: 330px !important;
}

.side-nav-close {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  color: #fff;
  transition: .25s;
}

.side-nav-close:hover {
  background: #fff;
  color: var(--navy);
  transform: rotate(6deg);
}

.side-brand {
  position: relative;
  z-index: 2;
  padding: 17px 16px 19px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045);
}

.side-brand::after {
  content: "Global advisory";
  display: block;
  margin: 15px 0 0 54px;
  font: 800 8px "Manrope";
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #eab296;
}

.side-menu {
  position: relative;
  z-index: 2;
  display: block !important;
  overflow: visible !important;
  margin-top: 20px !important;
  padding: 0 !important;
  flex: 0 0 auto;
}

.side-menu-group, .side-menu-direct {
  border: 1px solid transparent !important;
  border-radius: 14px;
  margin-bottom: 6px;
  transition: background .28s,border-color .28s,box-shadow .28s;
}

.side-menu-group:hover, .side-menu-group.open, .side-menu-direct:hover {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.075) !important;
}

.side-menu-group.open {
  box-shadow: inset 3px 0 0 var(--terracotta);
}

.side-menu-button, .side-menu-direct {
  min-height: 48px !important;
  padding: 0 13px !important;
  border: 0 !important;
  font-size: 14px !important;
  letter-spacing: .01em;
}

.side-menu-button span, .side-menu-direct {
  transition: color .25s;
}

.side-menu-button:hover span, .side-menu-direct:hover {
  color: #f3c3aa;
}

.side-menu-button i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201,117,77,.10);
  border: 1px solid rgba(201,117,77,.15);
  font-size: 16px !important;
  transition: .28s;
}

.side-menu-group.open .side-menu-button i {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

.side-submenu {
  padding: 0 8px 10px !important;
  max-height: none !important;
  overflow: visible !important;
}

.side-submenu a {
  min-height: 39px;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  border: 1px solid transparent;
  color: rgba(255,255,255,.62) !important;
}

.side-submenu a b {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(201,117,77,.09);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.side-submenu a:hover, .side-submenu a.current {
  background: rgba(255,255,255,.075) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,.08);
  transform: none !important;
}

.side-submenu a.current b {
  background: var(--terracotta);
  color: #fff;
}

.side-bottom {
  position: relative;
  z-index: 2;
  margin-top: 24px !important;
  padding: 20px 16px !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 17px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.58) !important;
}

.side-bottom strong {
  display: block;
  color: #fff;
  font: 700 13px "Manrope";
  margin-bottom: 2px;
}

.side-bottom p {
  margin: 17px 0 0;
  line-height: 1.7;
}

.side-bottom .socials {
  margin-top: 13px;
}

.side-bottom .socials a {
  width: 39px;
  height: 39px;
  background: rgba(255,255,255,.045) !important;
  box-shadow: none;
}

.side-bottom .socials a:hover {
  background: #fff !important;
  color: var(--navy) !important;
}

/* More premium hero structure */

.side-hero {
  min-height: 900px !important;
  background: #10232a !important;
}

.side-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg,#000,transparent 80%);
}

.side-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  right: -280px;
  top: -300px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 0 76px rgba(255,255,255,.022),0 0 0 152px rgba(255,255,255,.014);
  pointer-events: none;
}

.side-hero-slide img {
  filter: saturate(.76) contrast(1.02) !important;
}

.side-hero-slide:after {
  background: linear-gradient(90deg,rgba(8,25,31,.97) 0%,rgba(9,29,36,.79) 46%,rgba(10,30,36,.25) 100%),
    linear-gradient(180deg,rgba(0,0,0,.03),rgba(0,0,0,.42)) !important;
}

.side-hero-content {
  min-height: 900px !important;
  padding: 82px 6.5vw !important;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) 315px;
  gap: 70px;
  align-items: center;
}

.side-hero-copy {
  max-width: 790px !important;
  position: relative;
}

.side-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font: 800 10px "Manrope";
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #f1bea3;
}

.side-hero-label span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201,117,77,.14);
  border: 1px solid rgba(201,117,77,.24);
  color: #fff;
}

.side-hero-label i {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg,var(--terracotta),transparent);
}

.side-hero-label b {
  font-weight: 800;
}

.side-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 28px !important;
  font-size: clamp(54px,6.3vw,96px) !important;
  text-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.side-hero-copy .serif {
  color: #efd7c3;
}

.side-hero-copy p {
  font-size: 19px !important;
  max-width: 610px !important;
}

.side-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.side-hero-proof {
  display: flex;
  gap: 0;
  margin-top: 45px;
  width: max-content;
  max-width: 100%;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.side-hero-proof div {
  padding: 17px 32px 17px 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,.13);
}

.side-hero-proof div:last-child {
  border-right: 0;
  margin-right: 0;
}

.side-hero-proof strong {
  display: block;
  font: 800 24px "Manrope";
  color: #f2c1a8;
  letter-spacing: -.04em;
}

.side-hero-proof span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
}

.side-hero-panel {
  position: relative;
  z-index: 4;
  padding: 26px;
  border-radius: 23px;
  background: linear-gradient(150deg,rgba(255,253,249,.96),rgba(244,236,225,.88));
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 30px 82px rgba(3,18,23,.30),inset 0 1px 0 #fff;
  overflow: hidden;
  animation: sidePanelFloat 7.8s ease-in-out infinite;
}

.side-hero-panel::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  right: -90px;
  top: -100px;
  background: rgba(201,117,77,.13);
}

.side-hero-panel::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg,transparent,var(--terracotta),transparent);
}

@keyframes sidePanelFloat {
  50% {
    transform: translate(-3px,-7px);
  }
}

.side-panel-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 800 9px "Manrope";
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.side-panel-head i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4f806f;
}

.side-panel-head i::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6da58b;
  box-shadow: 0 0 0 5px rgba(109,165,139,.12);
}

.side-panel-score {
  position: relative;
  margin: 28px 0 20px;
}

.side-panel-score strong {
  display: block;
  font: 800 62px/1 "Manrope";
  letter-spacing: -.075em;
  color: var(--terracotta-dark);
}

.side-panel-score span {
  display: block;
  max-width: 190px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 8px;
}

.side-panel-progress {
  height: 7px;
  border-radius: 999px;
  background: #e4d8ca;
  overflow: hidden;
  margin-bottom: 25px;
}

.side-panel-progress i {
  display: block;
  width: 94%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,var(--terracotta-dark),var(--terracotta));
  animation: sideProgress 2s var(--ease) both;
}

@keyframes sideProgress {
  from {
    width: 0;
  }
}

.side-panel-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.side-panel-list div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.side-panel-list span {
  font-size: 12px;
  color: var(--muted);
}

.side-panel-list b {
  font: 800 12px "Manrope";
  color: var(--navy);
}

.side-hero-panel>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  color: var(--terracotta-dark);
  font: 800 11px "Manrope";
  text-transform: uppercase;
  letter-spacing: .08em;
}

.side-hero-panel>a span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201,117,77,.10);
  transition: .25s;
}

.side-hero-panel>a:hover span {
  background: var(--terracotta);
  color: #fff;
  transform: translate(2px,-2px);
}

.side-slide-controls {
  right: 28px !important;
}

.side-slide-controls button {
  background: rgba(12,34,41,.52) !important;
  backdrop-filter: blur(10px);
}

.side-slide-index {
  right: 34px !important;
  bottom: 27px !important;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0 !important;
}

.side-slide-index span,.side-slide-index b {
  font: 800 11px "Manrope";
  color: #fff;
}

.side-slide-index b {
  color: rgba(255,255,255,.46);
}

.side-slide-index i {
  width: 35px;
  height: 1px;
  background: rgba(255,255,255,.30);
}

/* Refined partner row */

.side-logo-strip {
  padding: 22px 4vw !important;
  background: linear-gradient(180deg,#f1e6d8,#e9dac7) !important;
}

.side-logo-strip span {
  min-height: 68px !important;
  border-radius: 17px !important;
  background: linear-gradient(180deg,rgba(255,255,255,.65),rgba(255,255,255,.38)) !important;
  box-shadow: 0 9px 25px rgba(27,43,50,.055),inset 0 1px 0 rgba(255,255,255,.62);
  letter-spacing: .035em;
}

@media (max-width:1150px) {
  .side-nav {
    width: 290px !important;
  }

  .side-nav::before {
    width: 290px;
  }

  .side-main {
    margin-left: 290px !important;
  }

  .side-hero-content {
    grid-template-columns: minmax(0,1fr) 285px;
    gap: 42px;
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }

  .side-hero-copy h1 {
    font-size: clamp(50px,5.6vw,78px) !important;
  }
}

@media (max-width:900px) {
  .side-nav {
    width: min(370px,91vw) !important;
    margin-left: 0 !important;
    padding-top: 76px !important;
    overflow-y: auto !important;
  }

  .side-nav::before {
    width: min(370px,91vw);
  }

  .side-main {
    margin-left: 0 !important;
  }

  .side-nav-close {
    display: grid;
    place-items: center;
  }

  .side-brand {
    margin-top: 0;
  }

  .side-hero-content {
    grid-template-columns: 1fr;
    padding-top: 135px !important;
  }

  .side-hero-panel {
    max-width: 360px;
  }
}

@media (max-width:640px) {
  .side-hero,.side-hero-content {
    min-height: 840px !important;
  }

  .side-hero-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    align-content: center;
  }

  .side-hero-copy h1 {
    font-size: 48px !important;
  }

  .side-hero-label b {
    max-width: 210px;
  }

  .side-hero-proof div {
    padding-right: 18px;
    margin-right: 18px;
  }

  .side-hero-panel {
    display: none;
  }

  .side-slide-controls {
    right: 12px !important;
  }

  .side-slide-index {
    right: 18px !important;
  }
}

@media (prefers-reduced-motion:reduce) {
  .side-hero-panel {
    animation: none !important;
  }
}

/*=========================================================
 *   ELVARIS 1.6.0 — SIDEBAR HOMEPAGE GRID CONSISTENCY
 *   =========================================================
 */

:root {
  --side-layout-gutter: 6vw;
}

.side-hero-content, .side-logo-strip, .side-section {
  padding-left: var(--side-layout-gutter) !important;
  padding-right: var(--side-layout-gutter) !important;
}

.side-cta {
  margin-left: var(--side-layout-gutter);
  margin-right: var(--side-layout-gutter);
}

.side-services > *,
.side-work > *,
.side-work-column > *,
.side-industries > *,
.side-logo-strip > *,
.side-hero-content > * {
  min-width: 0;
}

.side-services, .side-work, .side-work-column, .side-industries, .side-logo-strip {
  align-items: stretch;
}

.side-services > *, .side-industries > *, .side-logo-strip > * {
  height: 100%;
}

.side-services .premium-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.side-services .premium-card .text-link {
  margin-top: auto;
  padding-top: 12px;
}

@media (max-width:1150px) {
  :root {
    --side-layout-gutter: 5vw;
  }
}

@media (max-width:900px) {
  :root {
    --side-layout-gutter: 24px;
  }
}

@media (max-width:640px) {
  :root {
    --side-layout-gutter: 15px;
  }

  .side-hero-content, .side-logo-strip, .side-section {
    padding-left: var(--side-layout-gutter) !important;
    padding-right: var(--side-layout-gutter) !important;
  }

  .side-cta {
    margin-left: var(--side-layout-gutter);
    margin-right: var(--side-layout-gutter);
  }

  .side-services .premium-card {
    padding: 24px;
  }
}

/*=========================================================
 *   ELVARIS 1.6.2 — FIXED SIDEBAR RESPONSIVE SCROLL
 *   The navigation list scrolls independently on short viewports.
 *   =========================================================
 */

.side-nav {
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden !important;
  overscroll-behavior: contain;
}

.side-brand, .side-bottom {
  flex: 0 0 auto;
}

.side-menu {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 6px !important;
  padding-bottom: 18px !important;
}

@media (max-width: 900px) {
  .side-nav {
    top: 0;
    bottom: auto;
  }
}

@media (max-height: 680px) {
  .side-nav {
    padding-top: 68px !important;
    padding-bottom: 14px !important;
  }

  .side-brand {
    padding-top: 12px !important;
    padding-bottom: 14px !important;
  }

  .side-menu {
    margin-top: 12px !important;
  }

  .side-bottom {
    padding-top: 14px;
  }
}
