:root {
  --ink: #172033;
  --muted: #687386;
  --line: #dfe5ee;
  --paper: #fff;
  --dark: #0c1424;
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg, #f6f8fb);
  line-height: 1.7;
}
a {
  text-decoration: none;
}
.container {
  max-width: 1180px;
}
.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
@keyframes fa-beat {
  0%,
  90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  /* 5% {
    transform: scale(1.25);
  } */
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
#button.show,
.socio span:hover {
  opacity: 1;
}
#button.show {
  visibility: visible;
}

.new-back {
  color: #fff;
}
#preloader {
  width: 100%;
}
#button {
  text-align: center;
}
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#preloader img {
  width: 450px;
}
#button {
  display: inline-block;
  background-color: #ff9800;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  bottom: 65px;
  right: 30px;
  transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
#button::after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
/* /Nav Css start */
.social-icon {
  width: 100%;
  background: #f7f8fa;
  border-bottom: 1px solid #e9ecef;
}

.main-box {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 30px;
  gap: 8px;
}

.small-box {
  display: flex;
  align-items: center;
  gap: 5px;
}

.small-box a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #343a40;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  font-size: 14px;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.small-box a:hover {
  color: #fff;
  background: #0d6efd;
  transform: translateY(-2px);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1055;
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.main-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}

.desktop-navigation {
  display: flex;
  align-items: center;
}

.list-nav {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.list-nav .nav-item {
  position: relative;
}

.list-nav .link {
  display: flex;
  align-items: center;
  padding: 11px 15px;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.list-nav .link:hover,
.list-nav .link.active {
  color: #0d6efd;
}

.list-nav .dropdown-menu {
  min-width: 220px;
  padding: 8px;
  margin-top: 8px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.12);
}

.list-nav .dropdown-item {
  padding: 9px 12px;
  border-radius: 7px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.list-nav .dropdown-item:hover {
  color: #0d6efd;
  background: #f1f6ff;
}

.wa-btn {
  width: 43px;
  height: 43px;
  margin-left: 8px;
  padding: 0 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: #ffffff !important;
  background: #25d366;
  border-radius: 50%;
}

.wa-btn:hover {
  color: #ffffff !important;
  background: #1ebe5d;
  transform: translateY(-2px);
}

.wa-btn i {
  font-size: 20px;
}

.custom-toggler {
  width: 45px;
  height: 42px;
  padding: 8px;
  display: none;
  border: 0;
  border-radius: 8px;
  background: #f5f7fa;
  box-shadow: none !important;
}

.toggler-line {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: #222;
  border-radius: 5px;
}

.mobile-offcanvas {
  width: min(390px, 88vw) !important;
  background: #fff;
}

.mobile-offcanvas .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-logo {
  width: 175px;
  max-width: 100%;
  height: auto;
}

.mobile-offcanvas .offcanvas-body {
  padding: 20px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list > li {
  margin-bottom: 7px;
}

.mobile-link {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 10px;
  background: #fff0;
  color: #222;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.mobile-link:hover,
.mobile-link.active {
  color: #0d6efd;
  background: #f2f6ff;
}

.mobile-link i {
  width: 22px;
  text-align: center;
  font-size: 17px;
}

.location-button {
  justify-content: space-between;
  cursor: pointer;
}

.location-button span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.location-arrow {
  transition: transform 0.3s ease;
}

.location-button[aria-expanded="true"] .location-arrow {
  transform: rotate(180deg);
}

.mobile-location-list {
  list-style: none;
  padding: 8px 0 8px 35px;
  margin: 0;
}

.mobile-location-list li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-location-list li:last-child {
  border-bottom: 0;
}

.mobile-location-list a {
  display: block;
  padding: 10px 12px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.mobile-location-list a:hover {
  color: #0d6efd;
  background: #f3f7ff;
}

.mobile-whatsapp {
  min-height: 52px;
  margin-top: 15px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #25d366;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.mobile-whatsapp:hover {
  color: #fff;
  background: #1ebe5d;
  transform: translateY(-2px);
}

.mobile-whatsapp i {
  font-size: 21px;
}

.mobile-social {
  margin-top: 35px;
  padding-top: 25px;
  text-align: center;
  border-top: 1px solid #eee;
}

.mobile-social p {
  margin-bottom: 15px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}

.mobile-social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.mobile-social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  background: #f5f6f8;
  border-radius: 50%;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.mobile-social-icons a:hover {
  color: #fff;
  background: #0d6efd;
  transform: translateY(-3px);
}

@media (max-width: 1199.98px) {
  .nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-logo {
    width: 170px;
  }

  .list-nav {
    gap: 0;
  }

  .list-nav .link {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
  .main-box {
    padding: 6px 20px;
  }

  .desktop-navigation {
    display: none;
  }

  .custom-toggler {
    display: block;
  }

  .nav-container {
    min-height: 58px;
  }

  .main-logo {
    width: 175px;
  }
}

@media (max-width: 767.98px) {
  .main-box {
    justify-content: center;
    padding: 6px 15px;
  }

  .small-box a {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .navbar-1 {
    padding: 8px 0;
  }

  .main-logo {
    width: 160px;
  }

  .custom-toggler {
    width: 42px;
    height: 40px;
  }
}

@media (max-width: 420px) {
  .main-box {
    gap: 3px;
  }

  .small-box {
    gap: 3px;
  }

  .small-box a {
    width: 27px;
    height: 27px;
  }

  .main-logo {
    width: 145px;
  }

  .mobile-offcanvas {
    width: 92vw !important;
  }
}

/* /Nav Css end */

.cg-hero {
  position: relative;
  overflow: hidden;
}
.eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.cg-city-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cg-city-breadcrumb a {
  color: var(--primary);
  opacity: 0.85;
}
.hero-title {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
  margin: 0 0 24px;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 700px;
}
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn-main {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 800;
}
.btn-main:hover {
  color: #fff;
  filter: brightness(0.95);
  background: var(--primary);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 750;
  background: #fff;
}
.btn-ghost:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.cg-section {
  padding: 92px 0;
}
.section-kicker {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin: 9px 0 18px;
}
.section-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.cg-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 50px rgba(18, 31, 55, 0.07);
}
.cg-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 25px;
  color: #778297;
  font-size: 11px;
}
.cg-trust i {
  color: var(--primary);
  margin-right: 6px;
}
.cg-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  padding: 25px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 210px;
}
.step-num {
  font-size: 11px;
  font-weight: 900;
  color: var(--primary);
}
.step i {
  display: block;
  font-size: 21px;
  color: var(--primary);
  margin: 25px 0 16px;
}
.step h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.eeat {
  background: var(--eeat);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 40px;
}
.eeat p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.faq-wrap {
  max-width: 980px;
  margin: auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: #fff;
  border: 0;
  text-align: left;
  padding: 20px 55px 20px 20px;
  position: relative;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.faq-q i {
  position: absolute;
  right: 20px;
  top: 25px;
  color: var(--primary);
}
.faq-a {
  padding: 0 20px 22px 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.cg-related {
  background: #fff;
  padding: 70px 0;
}
.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-links a {
  border: 1px solid var(--line);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  color: #566175;
}
.city-links a:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.cg-cta {
  background: var(--primary);
  color: #fff;
  padding: 65px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 7px 0 10px;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin: 0;
  font-size: 13px;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border: 0;
  border-radius: 12px;
  padding: 13px 18px;
  font-weight: 800;
  white-space: nowrap;
}
.cg-footer {
  background: #0b1220;
  color: #8190a7;
  padding: 55px 0 20px;
}
.cg-footer h3 {
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.cg-footer a {
  color: #8190a7;
  font-size: 13px;
  display: block;
  margin: 7px 0;
}
.cg-footer a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 35px;
  padding-top: 18px;
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.design-editorial {
  --primary: #075fc7;
  --bg: #f3f6fa;
  --eeat: #eaf2fc;
}
.design-editorial .cg-hero {
  padding: 95px 0;
  background: #f3f6fa;
}
.design-editorial .hero-title {
  max-width: 760px;
}
.design-editorial .hero-art {
  background: #fff;
  border: 1px solid #d7e0eb;
  box-shadow: 20px 25px 60px rgba(25, 44, 70, 0.12);
  padding: 36px;
  transform: rotate(2deg);
  border-radius: 4px;
}
.document {
  min-height: 390px;
  border: 1px solid #e4e7ed;
  padding: 28px;
  text-align: center;
}
.document .seal {
  width: 70px;
  height: 70px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--primary);
}
.document h2 {
  font:
    800 30px/1.05 Georgia,
    serif;
}
.design-editorial .step {
  border-radius: 3px;
}

.design-dashboard {
  --primary: #087f73;
  --bg: #eef7f6;
  --eeat: #e4f3f0;
}
.design-dashboard .cg-hero {
  padding: 70px 0;
  background: #071f24;
  color: #fff;
}
.design-dashboard .hero-title {
  font-size: clamp(40px, 5vw, 65px);
}
.design-dashboard .hero-lead {
  color: #b7cecc;
}
.dash {
  background: #101f28;
  border: 1px solid #27434a;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 25px 70px #0006;
}
.dash-top {
  display: flex;
  justify-content: space-between;
  color: #8ea8a8;
  font-size: 10px;
}
.dash-status {
  padding: 22px;
  background: #132a30;
  border-radius: 14px;
  margin-top: 12px;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5eead4;
  margin-right: 7px;
}
.dash-line {
  height: 7px;
  background: #29434a;
  border-radius: 5px;
  margin: 12px 0;
}
.dash-line.short {
  width: 55%;
}
.design-dashboard .cg-steps {
  grid-template-columns: repeat(2, 1fr);
}

.design-saas {
  --primary: #7048c8;
  --bg: #f7f5ff;
  --eeat: #eee9ff;
}
.design-saas .cg-hero {
  padding: 80px 0;
  background:
    radial-gradient(circle at 80% 10%, #d8ccff, transparent 32%), #f7f5ff;
}
.design-saas .hero-title {
  max-width: 760px;
}
.cloud {
  position: relative;
  min-height: 430px;
}
.cloud-card {
  position: absolute;
  background: #fff;
  border: 1px solid #e6defb;
  border-radius: 20px;
  box-shadow: 0 20px 55px #4c369018;
  padding: 22px;
}
.cloud-main {
  inset: 50px 10px 40px 35px;
}
.cloud-small.a {
  right: 0;
  top: 10px;
}
.cloud-small.b {
  left: 0;
  bottom: 0;
}
.cloud-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #eee9ff;
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}
.design-saas .step {
  border-radius: 20px;
}

.design-control {
  --primary: #4655d9;
  --bg: #f4f6ff;
  --eeat: #e9ecff;
}
.design-control .cg-hero {
  padding: 70px 0;
  background: #10174a;
  color: #fff;
}
.design-control .hero-lead {
  color: #b7bde2;
}
.control-screen {
  background: #171f5c;
  border: 1px solid #38417b;
  border-radius: 8px;
  padding: 20px;
}
.control-row {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #30386e;
  padding: 15px 0;
  color: #aeb6df;
  font-size: 10px;
}
.control-row:last-child {
  border-bottom: 0;
}
.bar {
  height: 8px;
  background: #30386e;
  border-radius: 5px;
}
.bar span {
  display: block;
  width: 78%;
  height: 100%;
  background: #8f9bff;
  border-radius: 5px;
}
.design-control .faq-item {
  border-radius: 5px;
}

.design-magazine {
  --primary: #dc5b45;
  --bg: #fbf7f5;
  --eeat: #fff0ec;
}
.design-magazine .cg-hero {
  padding: 70px 0 110px;
  background: #fbf7f5;
}
.design-magazine .hero-title {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 90px);
}
.mag-image {
  height: 470px;
  background: #171a22;
  position: relative;
  overflow: hidden;
}
.mag-image:before {
  content: "EXPERIENCE";
  position: absolute;
  font-size: 75px;
  font-weight: 900;
  color: #fff1;
  left: -10px;
  bottom: 15px;
  letter-spacing: -0.08em;
}
.mag-card {
  position: absolute;
  left: 30px;
  top: 30px;
  background: #fff;
  padding: 25px;
  width: 230px;
  box-shadow: 15px 15px 0 var(--primary);
}
.design-magazine .step {
  border: 0;
  border-top: 3px solid var(--primary);
  border-radius: 0;
  background: transparent;
  padding-left: 0;
}

.design-ledger {
  --primary: #c47a0b;
  --bg: #faf7f0;
  --eeat: #fff2d9;
}
.design-ledger .cg-hero {
  padding: 85px 0;
  background: #f7f0df;
}
.ledger-sheet {
  background: #fff;
  border: 1px solid #e4d9c2;
  box-shadow: 10px 18px 50px #72541d18;
  padding: 30px;
}
.ledger-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee7da;
  font-size: 12px;
}
.ledger-row b {
  color: #8b6b2b;
}
.design-ledger .step {
  border-radius: 0;
}

.design-timeline {
  --primary: #087a9c;
  --bg: #f1f8fa;
  --eeat: #e4f4f8;
}
.design-timeline .cg-hero {
  padding: 80px 0;
  background: #073342;
  color: #fff;
}
.design-timeline .hero-lead {
  color: #b5d1d9;
}
.timeline-art {
  position: relative;
  padding: 15px 0 15px 45px;
}
.timeline-art:before {
  content: "";
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #70d5ed;
}
.tl-node {
  position: relative;
  background: #0d4658;
  border: 1px solid #2c6270;
  padding: 17px;
  margin: 10px 0;
  border-radius: 12px;
}
.tl-node:before {
  content: "";
  position: absolute;
  left: -35px;
  top: 22px;
  width: 10px;
  height: 10px;
  border: 3px solid #70d5ed;
  background: #073342;
  border-radius: 50%;
}
/* .design-timeline .cg-steps {
  grid-template-columns: 1fr;
} */

.design-classic {
  --primary: #b74469;
  --bg: #faf5f7;
  --eeat: #f8e9ef;
}
.design-classic .cg-hero {
  padding: 85px 0;
  background: #fff8fa;
}
.classic-card {
  background: #fff;
  border: 1px solid #d9b7c4;
  outline: 8px double #ead2dc;
  outline-offset: -16px;
  padding: 55px;
  text-align: center;
}
.classic-card .seal {
  width: 64px;
  height: 64px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: auto;
  color: var(--primary);
}
.classic-card h2 {
  font:
    700 36px Georgia,
    serif;
}
.design-classic .step {
  border: 1px solid #e2c6d0;
  background: #fff;
}

.design-dossier {
  --primary: #77418d;
  --bg: #f8f5fa;
  --eeat: #f2eaf6;
}
.design-dossier .cg-hero {
  padding: 65px 0;
  background: #f0e8f3;
}
.dossier-stack {
  position: relative;
  height: 450px;
}
.folder {
  position: absolute;
  inset: 35px 15px 20px;
  background: #fff;
  border: 1px solid #dbcde1;
  padding: 30px;
  box-shadow: 12px 15px 0 #d8c5df;
}
.folder.back {
  inset: 10px 35px 50px;
  transform: rotate(-4deg);
  background: #e8ddeb;
  box-shadow: none;
}
.folder h3 {
  font:
    800 30px Georgia,
    serif;
}
.design-dossier .faq-item {
  border-radius: 0;
}

.design-workspace {
  --primary: #2e7d5b;
  --bg: #f3f8f5;
  --eeat: #e6f3ec;
}
.design-workspace .cg-hero {
  padding: 75px 0;
  background: #eaf5ef;
}
.workspace-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}
.workspace-card {
  background: #fff;
  border: 1px solid #d9e9df;
  border-radius: 14px;
  padding: 25px;
  min-height: 190px;
}
.workspace-card.big {
  grid-row: span 2;
}
.design-workspace .step {
  border-radius: 12px;
}

.design-checklist {
  --primary: #a56c14;
  --bg: #fbf8f0;
  --eeat: #f6eedb;
}
.design-checklist .cg-hero {
  padding: 80px 0;
  background: #fffdf8;
}
.check-list {
  background: #fff;
  border: 1px solid #e8dfc9;
  padding: 12px;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border-bottom: 1px dashed #ded5c2;
  font-size: 13px;
}
.check-row:last-child {
  border: 0;
}
.check-row i {
  color: var(--primary);
}
.design-checklist .step {
  border-radius: 10px;
}

.design-swiss {
  --primary: #2878b9;
  --bg: #f6f9fc;
  --eeat: #edf5fc;
}
.design-swiss .cg-hero {
  padding: 85px 0;
  background: #fff;
  border-bottom: 1px solid #dbe4ee;
}
.design-swiss .hero-title {
  font-size: clamp(45px, 7vw, 88px);
}
.swiss-art {
  border-left: 10px solid var(--primary);
  padding: 30px 0 30px 35px;
}
.swiss-number {
  font-size: 150px;
  line-height: 0.7;
  font-weight: 900;
  color: #dfeaf4;
}
.design-swiss .cg-steps {
  gap: 0;
}
.design-swiss .step {
  border-radius: 0;
  border-right: 0;
}
.design-swiss .step:last-child {
  border-right: 1px solid var(--line);
}

.design-executive {
  --primary: #3b5bdb;
  --bg: #f2f5fb;
  --eeat: #e7ebfa;
}
.design-executive .cg-hero {
  padding: 65px 0;
  background: #111a35;
  color: #fff;
}
.design-executive .hero-lead {
  color: #aeb8cf;
}
.exec-panel {
  background: #182444;
  border: 1px solid #2d3a60;
  border-radius: 18px;
  padding: 22px;
  color: #fff;
}
.exec-kpi {
  font-size: 34px;
  font-weight: 800;
}
.exec-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8f9bb5;
}
.exec-divider {
  height: 1px;
  background: #2d3a60;
  margin: 20px 0;
}
.design-executive .step {
  border-radius: 8px;
}

.design-layers {
  --primary: #16877a;
  --bg: #f1f9f7;
  --eeat: #e5f5f1;
}
.design-layers .cg-hero {
  padding: 75px 0;
  background: #e9f7f4;
}
.layer-art {
  height: 440px;
  position: relative;
}
.layer {
  position: absolute;
  border-radius: 25px;
  border: 1px solid #cde7e2;
  background: #fff;
  box-shadow: 0 20px 50px #176f6518;
  padding: 28px;
}
.layer.one {
  inset: 25px 5px 55px 55px;
}
.layer.two {
  inset: 55px 45px 25px 15px;
  transform: rotate(-5deg);
  background: #f7fffd;
}
.layer.three {
  inset: 80px 85px 5px 45px;
  transform: rotate(4deg);
}
.design-layers .faq-item {
  border-radius: 20px;
}
.cg-footer-brand img {
  display: block;
  width: 60%;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  font-size: 13px;
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: #075fc7;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px 20px;
}
@media (max-width: 991px) {
  .cg-steps {
    grid-template-columns: 1fr 1fr !important;
  }
  .workspace-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    display: block;
  }
  .btn-white {
    display: inline-block;
    margin-top: 22px;
  }
  .hero-title {
    font-size: 50px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 7px;
  }
}
@media (max-width: 767px) {
  .cg-section {
    padding: 65px 0;
  }
  .cg-hero {
    padding: 60px 0 !important;
  }
  .hero-title {
    font-size: 43px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .cg-steps {
    grid-template-columns: 1fr !important;
  }
  .cg-panel,
  .eeat {
    padding: 25px;
  }
  .hero-art,
  .cloud,
  .dossier-stack,
  .layer-art,
  .mag-image,
  .control-screen {
    margin-top: 25px;
  }
  .footer-bottom {
    font-size: 9px;
  }
}
