:root {
  --cia-primary-color: #091b29;
  --cia-secondary-color: #06768b;
  --cia-button-primary-color: #091b29;
  --cia-button-secondary-color: #06768b;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1500px !important;
  }
}

@media (max-width: 991px) {

  .container,
  .container-sm {
    max-width: 90vw !important;
  }
}

@media (min-width: 992px) and (max-width: 1600px) {

  .container,
  .container-sm {
    max-width: 95vw !important;
  }
}

@media (max-width: 255px) {

  html,
  body {
    font-size: 4vw !important;
  }
}

.text-align-justify {
  text-align: justify !important;
}

body {
  font-family: "Quicksand", sans-serif !important;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Quicksand", sans-serif !important;
}

/* Preloader.module.css */
#preloader-root {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader-spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #06768b;
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.blog-content,
.blog-content * {
  font-family: "Quicksand", sans-serif !important;
  line-height: 1.8;
  color: #333;
}

.blog-content p {
  margin-bottom: 1rem;
  font-size: 16px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.2rem;
}

.blog-content img {
  max-width: 100%;
  border-radius: 8px;
}