@import "https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/scss/functions";
@import "https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/scss/variables";
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
  padding-top: 70px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #050a1e;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #050a1e;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #050a1e;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #050a1e;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
  color: inherit;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
}

.font-size-xs {
  font-size: 0.75rem;
}

.font-size-sm {
  font-size: 0.875rem;
}

.font-size-regular {
  font-size: 1rem;
}

.font-size-md {
  font-size: 1.125rem;
}

.font-size-lg {
  font-size: 1.25rem;
}

.font-size-xl {
  font-size: 1.5rem;
}

.font-size-xxl {
  font-size: 2rem;
}

.display-inline {
  display: inline;
}

.content-wrapper {
  flex: 1;
}

@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  .font-size-xs {
    font-size: 0.9rem;
  }
  .font-size-sm {
    font-size: 1.05rem;
  }
  .font-size-regular {
    font-size: 1.2rem;
  }
  .font-size-md {
    font-size: 1.35rem;
  }
  .font-size-lg {
    font-size: 1.5rem;
  }
  .font-size-xl {
    font-size: 1.8rem;
  }
  .font-size-xxl {
    font-size: 2.4rem;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 1.25rem;
  }
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 2.5rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.75rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  .font-size-xs {
    font-size: 1.125rem;
  }
  .font-size-sm {
    font-size: 1.3125rem;
  }
  .font-size-regular {
    font-size: 1.5rem;
  }
  .font-size-md {
    font-size: 1.6875rem;
  }
  .font-size-lg {
    font-size: 1.875rem;
  }
  .font-size-xl {
    font-size: 2.25rem;
  }
  .font-size-xxl {
    font-size: 3rem;
  }
}
a {
  color: #278aed;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: #1171d0;
  text-decoration: underline;
}

.container-narrow {
  max-width: 768px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  background: linear-gradient(to right, #f5f5f5, #ffffff);
  text-align: center;
  padding: 5rem 2rem;
  border-bottom: 1px solid #cccccc;
}

.hero-logo {
  max-width: 200px;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #278aed;
  border-color: #278aed;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}
.btn-primary:hover {
  background-color: #1171d0;
  border-color: #1171d0;
}

.btn-outline-primary {
  color: #278aed;
  border-color: #278aed;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
}
.btn-outline-primary:hover {
  background-color: #278aed;
  color: #ffffff;
}

footer {
  font-size: 0.9rem;
  color: gray;
  padding: 2rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
}

.navbar-light .navbar-nav .nav-link {
  color: #333333;
  font-weight: 500;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #278aed;
}

.btn-custom {
  background-color: #333333;
  color: white;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.btn-custom:hover {
  background-color: #FFFFFF;
  color: #333333;
  text-decoration: none;
  border: 1px solid #333333;
}
.btn-custom--small {
  padding: 0.2rem 1rem;
  font-size: 0.875rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  text-transform: capitalize;
}
.btn-custom--small svg {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}
.btn-custom--small:hover::after {
  background: #0d0d0d;
  color: white;
}

.quote-text {
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
}

.highlight-text {
  color: #278aed;
  font-weight: 700;
}

.highlight-tertiary {
  color: #333333;
  font-weight: 700;
}

.white-text {
  color: white;
}

.width-100 {
  width: 100%;
}

.icon {
  vertical-align: middle;
  width: 75px;
  height: 75px;
}

.rounded-shadow {
  border-radius: 60px;
  /* Adjust for more/less rounding */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  /* Soft shadow effect */
  transition: box-shadow 0.3s ease-in-out;
  /* Smooth transition on hover */
  width: 100%;
  /* Ensures responsiveness */
  height: auto;
  /* Maintains aspect ratio */
  display: block;
  /* Removes unwanted spacing */
}

/* Optional: Enhance shadow effect on hover */
.rounded-shadow:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.background-60 {
  background: rgba(0, 0, 0, 0.6);
  /* Dark semi-transparent background */
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
}
.background-60 p {
  position: relative;
  z-index: 2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* Text shadow for better contrast */
}

.bg-structure {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.fearlus-motif {
  background: radial-gradient(circle at 20% 20%, rgba(39, 138, 237, 0.02), transparent 70%);
}/*# sourceMappingURL=main.css.map */