.bim-page {
  --bim-black: var(--color-principal, #040c10);
  --bim-ink: #060606;
  --bim-green: #58d900;
  --bim-green-soft: #76ff2a;
  --bim-border: #d9dfdc;
  --bim-text: #111;
  --bim-muted: #5f6864;
  color: var(--bim-text);
}

.bim-page .container {
  max-width: 1320px;
}

.bim-hero {
  position: relative;
  min-height: 455px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
 /* background:
    linear-gradient(90deg, #fff 0%, #fff 30%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.1) 55%, rgba(0, 0, 0, 0.12) 100%),
    url("/images/bim-hero.jpg") center right / cover no-repeat;
    */
}

.bim-hero .container {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 455px;
}

.bim-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 58px 0 50px;
}

.bim-title {
  color: #000;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0 0 24px;
}

.bim-intro {
  max-width: 440px;
  color: #050505;
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 34px;
}

.bim-hero-actions,
.bim-search-form,
.bim-category-tabs {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid #111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.bim-btn:hover {
  text-decoration: none;
}

.bim-btn-primary {
  background: #000;
  color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.bim-btn-primary:hover,
.bim-btn-primary:focus {
  color: #fff;
}

.bim-btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: #000;
}

.bim-btn i {
  color: var(--bim-green);
}

.bim-hero-beam {
  position: absolute;
  top: 28px;
  right: 140px;
  width: min(38vw, 520px);
  height: 390px;
  clip-path: polygon(48% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.9), transparent 6%),
    linear-gradient(150deg, rgba(85, 166, 255, 0.7), rgba(73, 147, 255, 0.1) 45%, rgba(73, 147, 255, 0.24));
  border: 2px solid rgba(91, 166, 255, 0.7);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.bim-method {
  margin-top: 25px;
  padding: 0 0 28px;
  position: relative;
  z-index: 3;
}

.bim-method-card,
.bim-feature-card,
.bim-time-card,
.bim-file-card {
  background: var(--bim-black);
  border: 1px solid #202020;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.bim-method-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 28px 58px;
}

.bim-method-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 34px;
}

.bim-method-card h2,
.bim-feature-card h3,
.bim-time-card h3,
.bim-file-card h3 {
  color: #fff;
  font-weight: 800;
  margin: 0;
}

.bim-method-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.bim-method-card p,
.bim-feature-card li,
.bim-time-card p,
.bim-file-card p {
  color: #fff;
  line-height: 1.55;
}

.bim-method-card p,
.bim-time-card p,
.bim-file-card p {
  margin: 0 0 14px;
}

.bim-summary {
  padding: 2px 0 28px;
}

.bim-summary .row {
  align-items: stretch;
}

.bim-summary [class*="col-"] {
  display: flex;
}

.bim-feature-card {
  width: 100%;
  min-height: 250px;
  padding: 32px 30px;
}

.bim-feature-card > i,
.bim-time-copy > i,
.bim-file-copy > i {
  color: var(--bim-green);
  font-size: 25px;
  margin-bottom: 16px;
  margin-right: 10px;
}

.bim-feature-card h3 {
  position: relative;
  display: inline-block;
  font-size: 22px;
  margin-bottom: 24px;
}

.bim-feature-card h3::after,
.bim-file-data strong::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 8px;
  background: var(--bim-green);
}

.bim-feature-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bim-feature-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 13px;
  font-size: 15px;
}

.bim-feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bim-green);
}

.bim-detail {
  padding: 0 0 26px;
}

.bim-time-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 42px;
  padding: 14px;
  margin-bottom: 22px;
}

.bim-model-preview {
  min-height: 410px;
  overflow: hidden;
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #f3f5f4, #ffffff);
  background-size: 30px 30px, 30px 30px, cover;
  border: 1px solid #d8dcda;
  position: relative;
}

.bim-model-toolbar {
  display: flex;
  gap: 16px;
  height: 42px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #d8dcda;
  background: #fafafa;
}

.bim-model-toolbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #8d9491;
}

.bim-building {
  position: absolute;
  left: 9%;
  right: 8%;
  bottom: 8%;
  height: 74%;
  transform: skewY(-6deg);
  border: 3px solid rgba(34, 34, 34, 0.45);
  background:
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(0, 0, 0, 0.15) 50px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(0, 0, 0, 0.13) 44px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(220, 226, 226, 0.62));
  box-shadow: 35px 20px 0 rgba(0, 0, 0, 0.08);
}

.bim-building span {
  position: absolute;
  height: 8px;
  border-radius: 999px;
  opacity: 0.9;
}

.bim-building-blue {
  width: 74%;
  left: 9%;
  top: 26%;
  background: #0b88ff;
}

.bim-building-red {
  width: 52%;
  left: 28%;
  top: 48%;
  background: #db441c;
}

.bim-building-yellow {
  width: 64%;
  left: 16%;
  top: 67%;
  background: #d6b519;
}

.bim-time-copy {
  padding: 44px 26px 24px 0;
}

.bim-time-card h3,
.bim-file-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.bim-file-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  padding: 28px;
}

.bim-file-copy h3 {
  line-height: 1.05;
}

.bim-file-graphic {
  display: grid;
  grid-template-columns: 64px minmax(170px, 0.8fr) minmax(180px, 1fr) 130px;
  gap: 22px;
  align-items: center;
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
}

.bim-file-index {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #000;
  background: #fff;
  font-size: 34px;
  font-weight: 900;
}

.bim-file-data strong {
  display: block;
  color: #fff;
  font-size: 24px;
  margin-bottom: 28px;
}

.bim-file-data span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
}

.bim-file-data i {
  color: var(--bim-green);
  font-size: 25px;
}

.bim-wireframe {
  height: 215px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50% 50% 44% 44%;
  background:
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.22) 25px),
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(255, 255, 255, 0.18) 21px),
    radial-gradient(ellipse at 50% 20%, transparent 0 35%, rgba(255, 255, 255, 0.2) 36% 38%, transparent 39%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 32px rgba(255, 255, 255, 0.1);
}

.bim-format-stack {
  display: grid;
  gap: 10px;
}

.bim-format-stack span {
  display: block;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  line-height: 1.1;
}

.bim-format-stack b {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  min-height: 28px;
  margin-right: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.bim-formats {
  padding: 0 0 28px;
}

.bim-section-title,
.bim-category-title,
.bim-subcategory-title {
  color: #111;
  font-weight: 900;
}

.bim-section-title {
  font-size: 27px;
  margin: 0 0 18px;
}

.bim-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.bim-format-card {
  min-height: 86px;
  display: grid;
  grid-template-columns: 54px auto;
  grid-template-rows: 1fr 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 17px 34px;
  background: #fff;
  border: 1px solid #dde3e0;
  border-radius: 6px;
}

.bim-format-card span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-weight: 900;
  font-size: 23px;
}

.bim-format-card strong {
  align-self: end;
  color: #111;
  font-size: 18px;
  line-height: 1.1;
}

.bim-format-card small {
  align-self: start;
  color: #111;
  font-size: 15px;
}

.bim-format-rvt span {
  background: linear-gradient(135deg, #62a7ff, #0754e5);
}

.bim-format-dwg span {
  background: linear-gradient(135deg, #ff4c91, #d61159);
}

.bim-format-stl span {
  color: var(--bim-green);
  border: 2px solid var(--bim-green);
}

.bim-format-stp span {
  color: #a320ff;
  border: 2px solid #a320ff;
}

.bim-search-band {
  padding: 0 0 22px;
  scroll-margin-top: 110px;
}

.bim-search-form {
  margin-bottom: 18px;
  gap: 12px;
  align-items: center;
}

.bim-search-form .form-control {
  width: min(100%, 540px);
  height: 72px;
  padding: 0 24px;
  border-color: #d9dfdc;
  border-radius: 5px;
}

.bim-search-form .button {
  margin-top: 0 !important;
  height: 72px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 34px;
  line-height: 1;
  margin-top:0;
}

.bim-category-tabs {
  gap: 20px;
}

.bim-category-tabs a {
  min-width: 190px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #d9dfdc;
  border-radius: 5px;
  color: #111;
  background: #fff;
  text-decoration: none;
}

.bim-category-tabs a.active,
.bim-category-tabs a:hover,
.bim-category-tabs a:focus {
  color: var(--bim-green);
  background: #000;
  border-color: #000;
  text-decoration: none;
}

.bim-content {
  padding: 0 0 70px;
  scroll-margin-top: 110px;
}

.bim-category {
  scroll-margin-top: 110px;
  margin-bottom: 34px;
}

.bim-category-title {
  font-size: 22px;
  margin: 0 0 18px;
}

.bim-category-desc {
  max-width: 920px;
  color: var(--bim-muted);
  margin: -8px 0 18px;
}

.bim-subcategory {
  margin-top: 26px;
}

.bim-subcategory-title {
  font-size: 18px;
  margin-bottom: 16px;
}

.bim-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.bim-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid #dde3e0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.bim-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.55 / 1;
  background: #fff;
}

.bim-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px 22px;
  max-height: 250px;
}

.bim-card-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: var(--bim-green);
  font-size: 48px;
}

.bim-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0;
  text-align: center;
}

.bim-card-title {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px 4px;
  color: #000;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.bim-download {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: auto;
  background: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.bim-download:hover,
.bim-download:focus {
  color: #fff;
  text-decoration: none;
}

.bim-download i {
  color: var(--bim-green);
  font-size: 13px;
}

.bim-download-disabled {
  opacity: 0.7;
}

.bim-empty {
  padding: 28px;
  background: #fff;
  border: 1px solid #dde3e0;
  border-radius: 6px;
  color: var(--bim-muted);
}

@media (max-width: 1199px) {
  .bim-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bim-formats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bim-file-graphic {
    grid-template-columns: 58px minmax(170px, 1fr) 150px;
  }

  .bim-wireframe {
    display: none;
  }
}

@media (max-width: 991px) {
  .bim-hero {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.9) 55%, rgba(255, 255, 255, 0.15) 100%),
      url("/images/bim-hero.jpg") center right / cover no-repeat;
  }


 

  .bim-method-card,
  .bim-time-card,
  .bim-file-card {
    grid-template-columns: 1fr;
  }

  .bim-time-copy {
    padding: 16px 18px 18px;
  }

  .bim-file-graphic {
    grid-template-columns: 58px minmax(0, 1fr) 130px;
  }
}

@media (max-width: 767px) {
  .bim-hero,
  .bim-hero .container {
    min-height: 390px;
  }

  .bim-hero-content {
    padding: 42px 0;
  }

  .bim-intro {
    font-size: 16px;
  }

  .bim-hero-beam {
    right: -80px;
    width: 320px;
    height: 300px;
  }

  .bim-method {
    margin-top: 0;
    padding-top: 22px;
  }

  .bim-method-card,
  .bim-feature-card,
  .bim-file-card {
    padding: 24px;
  }

  .bim-method-card {
    gap: 18px;
  }

  .bim-model-preview {
    min-height: 280px;
  }

  .bim-file-graphic {
    grid-template-columns: 1fr;
  }

  .bim-format-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bim-search-form {
    align-items: stretch;
  }

  .bim-search-form .form-control,
  .bim-search-form .button {
    width: 100%;
  }

  .bim-category-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .bim-category-tabs a {
    min-width: 0;
  }

  .bim-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .bim-formats-grid,
  .bim-category-tabs,
  .bim-grid {
    grid-template-columns: 1fr;
  }

  .bim-format-card {
    padding: 16px 22px;
  }
}


 .bim-hero .container{
    
        background: linear-gradient(90deg, #fff 0%, #fff 30%, rgba(255, 255, 255, 0.1) 55%, rgb(111 111 111 / 12%) 100%), url(/images/bim-hero.jpg) center right / cover no-repeat
  }