/* =========================
   Home page
   ========================= */

.home-page {
  background: #f5f7f7;
}

.home-page-body .main-footer {
  margin-top: 0;
}

.home-page .btn {
  text-transform: uppercase;
}

.home-btn--equal {
  min-width: 260px;
}

.home-btn__icon {
  margin-right: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-body, "IBM Plex Sans", sans-serif);
  font-size: 15px;
  text-decoration: none  ;

  color: #000;
  background: transparent;
  border: 1.5px solid currentColor;
  box-shadow: none;

  transform: none;
  transform-origin: center;
  will-change: transform;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}


.btn:hover {
  background: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
} 


/* =========================
   Responsive
   ========================= */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-shared-modules {
    grid-template-columns: 1fr;
  }

  .home-shared-panel {
    height: auto;
    min-height: 340px;
  }

  .home-shared-btn {
    width: min(340px, 100%);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    max-width: 350px;
  }

}
