/* Reset */
:root {
  --primary-color: #027A7C;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Loader */
.preloader {
  position: fixed;
  inline-size: 100%;
  block-size: 100%;
  background-color: #000;
  color: #FFF;
  display: grid;
  place-items: center;
}
.preloader-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.preloader-ring {
  position: relative;
  width: min(440px, 78vw);
  display: grid;
  place-items: center;
}
.preloader-logo {
  width: 100%;
  animation: pulse 1600ms ease-in-out infinite;
}
.preloader-text {
  letter-spacing: 6px;
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
}
/* Header */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  background-color: #fff;
  box-shadow: 0px 6px 12px -3px rgba(4, 97, 165, 0.1);
}
.theme-dark .header{
   background-color: rgba(255, 255, 255, 0.15);
 }
 .header-end {
   color: #C3CAD9;
 }
 .theme-dark .header-end {
     color: #C3CAD9;
 }
.header-container {
  max-inline-size: 1290px;
  margin-inline: auto;
  padding: 1.45rem 1.6rem;
  border-radius: 0 0 0.625rem 0.625rem;
}
.header-top-line {
  padding: 1rem;
  background-color: #EDF4F2;
}
.theme-dark .header-top-line {
  background-color: #82CAB6;
}
.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: rgba(224, 224, 224, 0.2);
}
.placeholder-wide {
  inline-size: 20rem;
}
/* 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);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.45;
  }
}