
/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  color: #111;
}
/* Loader */
.preloader {
  position: fixed;
  inline-size: 100%;
  block-size: 100%;
  background-color: #fff;
  display: grid;
  place-items: center;
}
.theme-dark .preloader {
  background-color: #111;
  color: #FFF;
}
.preloader-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.preloader-brand-logo {
  width: 200px;
  height: auto;
}
.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(229, 0, 0, 0.2);
  border-top-color: #e50000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.theme-dark .spinner {
  border-color: rgba(229, 0, 0, 0.15);
  border-top-color: #e50000;
}
/* Header */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 5rem;
  background-color: #fff;
  box-shadow: 0px 6px 12px -3px rgba(4, 97, 165, 0.1);
}
.theme-dark .header {
  background-color: #222;
  color: #FFF;
}
.header-container {
  max-inline-size: 1200px;
  margin-inline: auto;
  padding: 1.28rem 1.6rem;
  border-radius: 0 0 0.625rem 0.625rem;
}
.header .logo {
  max-block-size: 2.315rem;
}
@media (max-width: 1024px) {
  .header {
    display: none;
  }
}
.placeholder {
  block-size: 0.825rem;
  inline-size: 3rem;
  background-color: #F5F5F5;
  border-radius: 0.3rem;
}
.theme-dark .placeholder {
  background-color: #555;
}
.placeholder-wide {
  inline-size: 12rem;
}
/* Common Classes */
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.flex-column {
  flex-direction: column;
}
.text-center {
  text-align: center;
}
.gap-3 {
  gap: 1rem;
}
.gap-4 {
  gap: 1.5rem;
}
.gap-5 {
  gap: 3rem;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}