body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  background-color: #374981;
  color: #FEE9A1;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

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;
  }
  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;
  }
}
@font-face {
  font-family: "Black Mango";
  src: url("../fonts/BlackMango-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
.Montserrat {
  font-family: "Montserrat", sans-serif;
}

.BlackMango {
  font-family: "Black Mango", sans-serif;
}

.btn-pill {
  border-radius: 50rem; /* makes it a pill shape */
  padding: 0.4rem 2.5rem; /* adjust padding as needed */
  font-weight: 600;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: #FFFFFF;
  color: #374981;
  border: 2px solid #FFFFFF;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #f7cf4c; /* optional hover color */
  color: #374981; /* optional hover text color */
  border-color: #f7cf4c; /* optional hover border color */
}

.btn-outline-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  text-transform: uppercase;
}

.btn-outline-secondary:hover {
  background-color: #FFFFFF;
  color: #374981;
}

.btn-cta {
  background-color: #f7cf4c;
  color: #374981;
  border: 2px solid #FFFFFF;
}

.btn-cta:hover {
  background-color: #FFFFFF;
  color: #374981;
  border: 2px solid #374981;
}

.btn-custom {
  background-color: #8491D3;
  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: #8491D3;
  text-decoration: none;
  border: 1px solid #8491D3;
}
.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: #4c5fbf;
  color: white;
}

.accordion-button {
  padding-right: 1rem; /* prevent clipping */
  color: #f7cf4c;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

.accordion-button::after {
  display: none; /* removes the default arrow icon */
}

/* Center the content inside the accordion body 
.accordion-body {
  //text-align: center;
}
*/
.accordion-body ul {
  padding-left: 0;
  list-style: none;
  display: inline-block; /* helps keep ul centered */
  text-align: left; /* left-align text inside the list */
}

.list-wrapper {
  background-color: #374981;
  padding: 1.5rem;
  border-radius: 4px;
}
.list-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 4px solid #f7cf4c;
  padding-left: 1rem;
}
.list-wrapper li {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.white-bg {
  background-color: #FFFFFF;
}

.primary-bg {
  background-color: #374981;
}

.lavender-bg {
  background-color: #8491D3;
}

.yellow-cream-bg {
  background-color: #FEE9A1;
}

.gold-bg {
  background-color: #f7cf4c;
}

.headline {
  font-family: "Black Mango", sans-serif;
  color: #FFFFFF;
}

.bold-text {
  font-weight: bold;
}

.accent-color {
  color: #f7cf4c;
}

.secondary-color {
  color: #FEE9A1;
}

.white-color {
  color: #FFFFFF;
}

.black-color {
  color: #000000;
}

.primary-color {
  color: #374981;
}

.font-secondary {
  font-family: "Black Mango", sans-serif;
}

.heading-style-1 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  color: #374981;
  font-family: "Black Mango", sans-serif;
}
.heading-style-1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 110%;
  height: 4px;
  background-color: #f7cf4c;
}

.heading-style-2 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  color: #f7cf4c;
  font-family: "Black Mango", sans-serif;
}
.heading-style-2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 240%;
  height: 4px;
  background-color: #FFFFFF;
}

.heading-style-3 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
}
.heading-style-3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 125%;
  height: 4px;
  background-color: #f7cf4c;
}

.heading-style-4 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  color: #000000;
  font-family: "Black Mango", sans-serif;
}
.heading-style-4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 110%;
  height: 4px;
  background-color: #f7cf4c;
}

.heading-style-5 {
  font-family: "Montserrat";
  font-weight: 600;
  text-transform: uppercase;
  color: #FFFFFF;
}

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

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

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

.white-text {
  color: white;
}

.gold-color {
  color: #f7cf4c;
}

.capitalize-text {
  text-transform: capitalize;
}

.uppercase-text {
  text-transform: uppercase;
}

.separator-primary, .separator-primary50 {
  border: none;
  border-top: 5px solid #374981;
  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%;
}

.logo-img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

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

.profile-image {
  width: 100%; /* or use max-width: 100% for responsiveness */
  max-width: 320px;
  height: auto; /* maintains aspect ratio */
  border-radius: 12px; /* optional: rounded corners */
  -o-object-fit: cover;
     object-fit: cover; /* ensures nice cropping if dimensions are fixed */
  display: block;
  margin-top: 1rem auto;
}

.home-logo {
  width: 100%;
  max-width: 700px;
  min-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 5px solid #f7cf4c;
}

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq p {
  margin-bottom: 5px;
}

.faq .row {
  margin-bottom: 2rem;
}

#testimonialCarousel p {
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1rem;
}

#testimonialCarousel .carousel-inner {
  min-height: 250px;
}

#testimonialCarousel .carousel-item {
  padding: 2rem;
}

#testimonialCarousel .carousel-item p:last-child {
  font-style: normal;
  font-weight: bold;
  margin-top: 1rem;
}

#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
  filter: brightness(0); /* turns white SVG black */
  background-color: transparent;
}

.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 {
  color: white;
  padding-top: 25px;
}
footer hr {
  height: 2px;
  background-color: #FEE9A1;
  border: none;
  margin: auto;
  opacity: 1;
}
footer a {
  color: white;
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

header {
  color: #FEE9A1;
}

header.sticky-top {
  z-index: 1020; /* Bootstrap's default is 1020 for sticky-top */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
  background-color: #FFFFFF;
  margin-top: 10px;
}

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

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

@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 */
  }
  .profile-image {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .navbar-nav .nav-link {
    font-size: 1.5rem;
  }
  .navbar-brand img {
    height: 100px;
  }
  .profile-image {
    max-width: 500px;
  }
}
/*
@include respond(md) {}
@include respond(lg) {}
*//*# sourceMappingURL=main.css.map */