:root {
  --inda-bg-dark: #1e1e1e;
  --inda-text-light: #ffffff;
  --inda-text-muted: #a6a6a6;
}
.et_pb_column_0_tb_header {
	min-height:0!important;
}
.indaweb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10030;
  background: transparent;
  color: var(--inda-text-light);
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease;
}

.indaweb-header.is-scrolled,
.indaweb-header.has-open-panel {
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.indaweb-header__inner {
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
}

.indaweb-header__logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}

.indaweb-header__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1) saturate(0) contrast(2.1);
}

.indaweb-header__toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--inda-text-light);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 8px 0;
  position: relative;
  z-index: 10040;
}

.indaweb-header__toggle--left {
  justify-self: start;
}

.indaweb-header__toggle--right {
  justify-self: end;
}

.indaweb-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.indaweb-lang-flag {
  width: 16px;
  height: 16px;
  object-fit: cover;
  border-radius: 50%;
}

.indaweb-burger {
  display: inline-flex;
  flex-direction: column;
  width: 22px;
  gap: 6px;
}

.indaweb-burger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.indaweb-left-open .indaweb-burger span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

body.indaweb-left-open .indaweb-burger span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

body.indaweb-right-open [data-indaweb-right-label] {
  font-size: 0;
}

body.indaweb-right-open [data-indaweb-right-label]::before {
  content: "X";
  font-size: 14px;
}

.indaweb-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 16.6667vw;
  min-width: 280px;
  max-width: 420px;
  background: var(--inda-bg-dark);
  z-index: 10020;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

.indaweb-panel--left {
  left: 0;
  transform: translateX(-100%);
  overflow-x: hidden;
}

.indaweb-panel--right {
  inset: 0;
  width: 100vw;
  min-width: 0;
  max-width: none;
  background: #0b0b0b;
  transform: scale(1.015);
  transform-origin: center center;
  filter: saturate(0.92) brightness(0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.62s cubic-bezier(0.19, 1, 0.22, 1), filter 0.55s ease, visibility 0.5s ease;
}

.indaweb-panel--right::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(130% 65% at 50% 0%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 65%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.indaweb-left-open .indaweb-panel--left {
  transform: translateX(0);
}

body.indaweb-right-open .indaweb-panel--right {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  filter: none;
}

body.indaweb-right-open .indaweb-panel--right::before {
  opacity: 1;
}
.indaweb-panel--right .menu-item-has-children{
	margin-bottom: 35px!important;
}
.indaweb-panel__inner {
  padding: 120px 30px 40px;
}

.indaweb-left-menu-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: calc(100vh - 160px);
}

.indaweb-left-menu-primary {
  position: relative;
  width: 100%;
  min-width: 0;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.indaweb-left-menu-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--inda-bg-dark);
  border-left: 0;
  padding: 10px 6px 0 0;
  opacity: 0;
  transform: translateX(112%);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  overflow-y: auto;
}

.indaweb-panel--left.is-submenu-open .indaweb-left-menu-secondary {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.indaweb-panel--left.is-submenu-open .indaweb-left-menu-primary {
  transform: translateX(-16%) scale(0.985);
  opacity: 0.16;
  filter: blur(2px) brightness(0.8);
  pointer-events: none;
}

.indaweb-left-menu-back {
  background: transparent;
  border: 0;
  color: var(--inda-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  padding: 0;
  margin-bottom: 24px;
  cursor: pointer;
}

.indaweb-left-menu-title {
  margin: 0 0 30px;
  color: var(--inda-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.indaweb-panel--right .indaweb-panel__inner {
  height: 100%;
  padding: 88px 0 0;
}

.indaweb-group-grid {
  display: grid;
  grid-template-columns: repeat(var(--inda-group-columns, 4), minmax(0, 1fr));
  grid-template-rows: repeat(var(--inda-group-rows, 1), minmax(0, 1fr));
  height: 100%;
  min-height: 100%;
}

.indaweb-group-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transform: translateY(82px) scale(0.94);
  transition: clip-path 0.88s cubic-bezier(0.19, 1, 0.22, 1), transform 0.82s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
}

body.indaweb-right-open .indaweb-group-card {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
  transition-delay: calc(var(--inda-group-item-index, 0) * 0.072s);
}

.indaweb-group-card__media,
.indaweb-group-card__overlay {
  position: absolute;
  inset: 0;
}

.indaweb-group-card__media {
  background-color: #101010;
  background-image: var(--inda-group-bg-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.18);
  filter: blur(10px) brightness(0.65) saturate(0.8);
  transition: transform 1.05s cubic-bezier(0.19, 1, 0.22, 1), filter 1.05s ease;
}

body.indaweb-right-open .indaweb-group-card__media {
  transform: scale(1.02);
  filter: blur(0) brightness(1);
}

.indaweb-group-card__overlay {
  background: linear-gradient(165deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.72));
  transition: background 0.45s ease, opacity 0.45s ease;
}

.indaweb-group-card__logo,
.indaweb-group-card__title {
  position: relative;
  z-index: 2;
}

.indaweb-group-card__logo {
  width: min(70%, 260px);
  max-width: 260px;
  max-height: 42%;
  object-fit: contain;
  margin: auto;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  filter: brightness(0) invert(1) saturate(0) contrast(2.1) drop-shadow(0 8px 26px rgba(0, 0, 0, 0.55));
  transition: opacity 0.45s ease, transform 0.62s cubic-bezier(0.19, 1, 0.22, 1), filter 0.45s ease;
}

body.indaweb-right-open .indaweb-group-card__logo {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: calc(0.16s + (var(--inda-group-item-index, 0) * 0.07s));
}

.indaweb-group-card picture {
  position: relative;
  z-index: 2;
  display: block;
  width: min(70%, 260px);
  max-width: 260px;
  margin: auto;
}

.indaweb-group-card picture .indaweb-group-card__logo,
.indaweb-group-card picture img.indaweb-group-card__logo {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  object-position: center;
  filter: inherit;
}

.indaweb-group-card__title {
  color: #fff;
  font-size: clamp(18px, 1.5vw, 28px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
}

.indaweb-group-card:hover .indaweb-group-card__media,
.indaweb-group-card:focus-visible .indaweb-group-card__media {
  transform: scale(1.12);
  filter: brightness(1.08);
}

.indaweb-group-card:hover .indaweb-group-card__overlay,
.indaweb-group-card:focus-visible .indaweb-group-card__overlay {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.62));
}

.indaweb-group-card:hover .indaweb-group-card__logo,
.indaweb-group-card:focus-visible .indaweb-group-card__logo {
  transform: scale(1.06);
  filter: brightness(0) invert(1) saturate(0) contrast(2.2) drop-shadow(0 12px 36px rgba(0, 0, 0, 0.58));
}

.indaweb-group-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: -4px;
}

.indaweb-menu,
.indaweb-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.indaweb-menu li {
  margin-bottom: 14px;
  list-style: none !important;
}

.indaweb-menu li::marker {
  content: "" !important;
}

.indaweb-menu li::before,
.indaweb-menu li::after {
  content: none !important;
  display: none !important;
}

.indaweb-menu a {
  color: var(--inda-text-light);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
}

.indaweb-menu--brand > li {
  margin-bottom: 24px;
}

.indaweb-menu--brand > li.menu-item-has-children {
  margin-bottom: 18px;
}

.indaweb-menu--brand > li.menu-item-has-children.is-last-parent {
  margin-bottom: 40px;
}

.indaweb-menu--brand > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.01em;
  padding: 10px 0 12px;
  transition: color 0.2s ease, transform 0.22s ease;
}

.indaweb-menu--brand > li.menu-item-has-children > a::after {
  content: none;
}

.indaweb-menu--brand > li:not(.menu-item-has-children) > a {
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--inda-text-muted);
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.22s ease;
}

.indaweb-menu--brand > li.menu-item-has-children > a:hover,
.indaweb-menu--brand > li.menu-item-has-children > a:focus-visible {
  color: #f2f2f2;
  transform: translateX(3px);
}

.indaweb-menu--brand > li:not(.menu-item-has-children) > a:hover,
.indaweb-menu--brand > li:not(.menu-item-has-children) > a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.indaweb-menu--brand > li.is-active-parent > a {
  color: #fff;
}

.indaweb-menu--brand .sub-menu {
  display: none;
}

.indaweb-left-menu-subitems .sub-menu,
.indaweb-left-menu-subitems ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.indaweb-left-menu-subitems li {
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.indaweb-left-menu-subitems a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.indaweb-panel--left.is-submenu-open .indaweb-left-menu-subitems li {
  opacity: 1;
  transform: translateX(0);
}

.indaweb-panel--left.is-submenu-open .indaweb-left-menu-subitems li:nth-child(1) { transition-delay: 0.04s; }
.indaweb-panel--left.is-submenu-open .indaweb-left-menu-subitems li:nth-child(2) { transition-delay: 0.08s; }
.indaweb-panel--left.is-submenu-open .indaweb-left-menu-subitems li:nth-child(3) { transition-delay: 0.12s; }
.indaweb-panel--left.is-submenu-open .indaweb-left-menu-subitems li:nth-child(4) { transition-delay: 0.16s; }
.indaweb-panel--left.is-submenu-open .indaweb-left-menu-subitems li:nth-child(5) { transition-delay: 0.2s; }
.indaweb-panel--left.is-submenu-open .indaweb-left-menu-subitems li:nth-child(6) { transition-delay: 0.24s; }

.indaweb-menu .menu-item-has-children.menu-depth-0 > a {
  font-size: 13px;
  color: var(--inda-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.indaweb-menu.indaweb-menu--brand > li.menu-item-has-children.menu-depth-0 > a {
  font-size: 26px;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.01em;
}

.indaweb-menu .sub-menu {
  margin-top: 10px;
  padding-left: 14px;
}

.indaweb-menu .sub-menu a {
  font-size: 16px;
}

.indaweb-overlay {
  position: fixed;
  inset: 0;
  z-index: 10005;
  border: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.indaweb-left-open .indaweb-overlay,
body.indaweb-right-open .indaweb-overlay {
  opacity: 1;
  visibility: visible;
}

body.indaweb-right-open .indaweb-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.indaweb-left-open,
body.indaweb-right-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .indaweb-header__inner {
    height: 76px;
    padding: 0 16px;
  }

  .indaweb-panel {
    width: min(85vw, 360px);
    min-width: 0;
  }

  .indaweb-panel--right {
    width: 100vw;
  }

  .indaweb-panel__inner {
    padding: 100px 20px 30px;
  }

  .indaweb-left-menu-shell {
    min-height: calc(100vh - 140px);
  }

  .indaweb-left-menu-secondary {
    transform: translateX(104%);
  }

  .indaweb-panel--right .indaweb-panel__inner {
    padding: 76px 0 0;
  }

  .indaweb-group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
  }

  .indaweb-header__logo {
    max-width: 170px;
  }

  .indaweb-header__toggle {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 640px) {
  .indaweb-group-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(0, 1fr);
  }
}
