body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #FFFFFF;
  color: #081131;
  line-height: 1.5;
  margin-top: 76px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.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;
}

@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
    margin-top: 106px;
  }
  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;
    margin-top: 126px;
  }
  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;
  }
}
.btn-custom {
  background-color: #FE8B4A;
  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: #FE8B4A;
  text-decoration: none;
  border: 1px solid #FE8B4A;
}
.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: #fa5b01;
  color: white;
}

.headline-style-2 {
  display: inline-block;
  /* Ensures underline only spans text width */
  border-bottom: 4px solid #0D73EC;
  /* Adjust thickness and color */
  padding-bottom: 10px;
  /* Adjust spacing between text and underline */
  padding-right: 60px;
}

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

.highlight-text {
  color: #0D73EC;
  font-weight: 700;
}

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

.white-text {
  color: white;
}

.separator-primary, .separator-primary50 {
  border: none;
  border-top: 5px solid #0D73EC;
  margin: 20px 0;
  width: 100%;
  opacity: 1;
}

.separator-primary50 {
  width: 50%;
}

.process-hr {
  border: none;
  position: relative;
  border-top: 10px dashed #808080;
  margin: 0px;
  margin-bottom: -125px;
  width: 100%;
  z-index: -1000;
}

.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);
}

.primary-card {
  border: 3px solid #FE8B4A;
  border-radius: 45px;
  text-align: center;
}
.primary-card .metric {
  font-weight: bold;
  color: #0D73EC;
}
.primary-card p {
  margin-bottom: 0px;
}
.primary-card .row {
  margin: 0px;
  padding: 0px;
}
.primary-card hr {
  border: none;
  border-top: 4px dashed #081131;
  margin: 20px 0;
  opacity: 1;
}

.secondary-card {
  border: 2px solid #0D73EC;
  border-radius: 20px;
  padding-top: 10px;
}
.secondary-card .row {
  margin: 0px;
  margin-bottom: 40px;
  padding: 0px;
}
.secondary-card h3 {
  color: #0D73EC;
}

.section-card {
  background-color: #081131;
  color: white;
}
.section-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.roundedrow {
  border-radius: 90px;
  background-color: #0D73EC;
  color: #FFFFFF;
  padding: 10px;
  margin: 20px;
}
.roundedrow p {
  color: #FFFFFF;
}
.roundedrow h3 {
  color: #FFFFFF;
}
.roundedrow .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.roundedrow img {
  width: 80%;
  max-width: 120px;
  height: auto;
}

.hero {
  position: relative;
  width: 100%;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(8, 17, 49), rgba(13, 115, 236, 0.4));
  z-index: -1;
}
.hero .hero-content {
  text-align: left;
  color: white;
  z-index: 1000;
  max-width: 704px;
  /* Prevents excessive width */
  min-width: 320px;
  /* Prevents excessive width */
  padding: 20px;
}
.hero .hero-content h1 {
  font-weight: bold;
}

.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 */
}

footer {
  background: linear-gradient(to bottom, #0D73EC 5%, #081131 34%);
  color: white;
}
footer hr {
  height: 2px;
  background-color: #081131;
  border: none;
  margin: auto;
  opacity: 1;
}
footer a {
  color: white;
}
footer .headline {
  color: #081131;
}
footer img {
  height: 70px;
  width: auto;
}
footer .icon {
  vertical-align: middle;
  width: 30px;
  height: 30px;
}

@media (min-width: 768px) {
  footer img {
    height: 80px;
  }
}
@media (min-width: 992px) {
  footer img {
    height: 100px;
  }
}
.navbar {
  background-color: #081131;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav .nav-link {
  font-size: 1.125rem;
  color: white;
  transition: color 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
  color: #FE8B4A;
  text-decoration: none;
}
.navbar-nav .nav-link.active {
  font-weight: 700;
  color: #FE8B4A;
  border-bottom: 2px solid #FE8B4A;
}

@media (min-width: 768px) {
  .navbar-nav .nav-link {
    font-size: 1.25rem;
  }
  .navbar-brand img {
    height: 80px;
  }
  .roundedrow {
    padding: 5px;
  }
  .roundedrow .icon-container {
    justify-content: flex-start;
    margin-bottom: 3px;
  }
  .force-stack {
    display: flex;
    flex-direction: column;
    align-items: start; /* Align items properly */
  }
}
@media (min-width: 992px) {
  .navbar-nav .nav-link {
    font-size: 1.5rem;
  }
  .navbar-brand img {
    height: 100px;
  }
}
/*
@include respond(md) {}
@include respond(lg) {}
*//*# sourceMappingURL=main.css.map */