@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
/* @font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype');        
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat-medium';
    src: url('../fonts/montserrat/Montserrat-Medium.ttf') format('truetype');        
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat-bold';
    src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');        
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat-semibold';
    src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');        
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');        
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins-medium';
    src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');        
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins-semibold';
    src: url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');        
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins-bold';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');        
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} */
.btn-outline-primary {
  --bs-btn-color: #002D97;
  --bs-btn-border-color: #002D97;
  --bs-btn-hover-bg: #002D97;
  --bs-btn-active-bg: #002D97;
}

div#wpadminbar {
  display: none;
}

/* Custom dark blue background to match the image */
.bg-custom-darkblue {
  background-color: #1a2d59;
}

/* Custom button for EN to match the image */
.lang-buttons-group {
  gap: 0.8rem;
}
.lang-buttons-group .btn {
  font-family: "Poppins-medium";
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 100%;
  border-radius: 0;
  text-align: center;
  padding: 0.4rem 1.3rem;
  color: #4B5563;
}
.lang-buttons-group .btn.current {
  border: 1px solid #002D97;
  color: #002D97;
}
.lang-buttons-group .btn.current:hover {
  background-color: #002D97;
  color: #fff;
}
.lang-buttons-group .btn:hover {
  color: #002D97;
}

/* Custom button for ES to match the image */
.btn-es {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-es:hover {
  background-color: white;
  color: #2563eb;
  border-color: white;
}

/* Custom styling for the logo text to ensure line breaks */
.navbar-brand .logo-text {
  line-height: 1.2;
  font-size: 1.25rem;
  /* text-xl */
  font-weight: 700;
  /* font-bold */
}

/* Ensure nav links are rounded */
.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  /* text-lg */
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  /* Slight white overlay on hover */
}

/* Main content area styling */
.main-content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.main-content p {
  color: #374151;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.main-content p:last-child {
  margin-bottom: 0;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #002D97;
}
.menu-toggle:hover {
  border: 1px solid #002D97 !important;
}
.menu-toggle .menu-icon {
  display: inline-block;
  cursor: pointer;
}
.menu-toggle .menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background: #002D97; /* change color as needed */
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  transition: left 0.3s ease;
}
.mobile-nav.active {
  left: 0;
}
@media (max-width: 767px) {
  .mobile-nav {
    display: block;
    position: fixed;
    width: 100%;
    background: #fff;
    left: -100%;
    padding: 20px 15px;
    top: 105px;
    height: 100vh;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .mobile-nav.main-navigation ul {
    display: block;
  }
}
.mobile-nav.main-navigation ul li {
  margin-bottom: 10px;
}
.mobile-nav.main-navigation ul li a {
  font-size: 18px;
  font-weight: 700;
}

.main-navigation ul li {
  margin-bottom: 10px;
}
.main-navigation ul li a {
  color: #002D97;
  font-weight: 500;
}
.main-navigation ul li a:visited {
  color: #002D97;
}
@media (max-width: 1200px) {
  .main-navigation ul li a {
    font-size: 18px;
  }
}
@media (max-width: 920px) {
  .main-navigation ul li a {
    font-size: 14px;
  }
}

/* Responsive adjustments for nav links for better spacing on larger screens */
@media (min-width: 768px) {
  .navbar-nav .nav-item:not(:last-child) {
    margin-right: 1.5rem;
    /* Equivalent to md:space-x-6 */
  }
}
a.nav-link {
  font-family: "Poppins-medium";
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #002D97;
}
a.nav-link:hover {
  color: #4B5563;
}

.site-footer {
  background: #002D97;
}
.site-footer .copywrite-text {
  color: rgb(209, 213, 219);
}

html {
  scroll-behavior: smooth;
  margin: 0 !important;
}

body {
  font-family: "Montserrat", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
}

.max-container-width {
  max-width: 1520px;
}

.gender-option .name {
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 100%;
}

.custom-radio-group {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 16px;
}

.custom-radio input[type=radio] {
  display: none;
}

/* Outer circle */
.radio-circle {
  width: 26.67px;
  height: 26.67px;
  border: 2px solid #323232;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  position: relative;
  flex-shrink: 0;
}

/* Inner filled circle */
.radio-circle::after {
  content: "";
  width: 13px;
  height: 13px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  transition: background-color 0.3s ease;
}

/* When selected */
.custom-radio input[type=radio]:checked + .radio-circle {
  border-color: #0033AB;
}

.custom-radio input[type=radio]:checked + .radio-circle::after {
  background-color: #0033AB;
}

.tooltip-label {
  gap: 1.6rem;
}

/* Custom Tooltip Styles */
.custom-medicare-tooltip .tooltip-inner {
  background-color: #f3f7ff; /* Light blue/purple background from your image */
  color: #000; /* Darker text color */
  border-radius: 0.8rem; /* Slightly rounded corners */
  padding: 12px 15px; /* Adjust padding as needed */
  font-size: 1.4rem; /* Slightly smaller font for tooltip */
  text-align: center; /* Ensure text aligns left within the tooltip */
  line-height: 1.6rem; /* Improve readability */
  font-family: "Montserrat";
}

/* IMPORTANT: Styling the Arrow Shape and Color */
/* This targets the pseudo-element that forms the arrow */
.custom-medicare-tooltip .tooltip-arrow::before {
  /* Crucially: Ensure no background color is applied to this element.
     Bootstrap uses transparent borders to create the triangle. */
  background-color: transparent !important;
  /* Reset all border colors to transparent first */
  border-color: transparent !important;
  /* Now, set the specific border color that forms the visible part of the arrow.
     For a tooltip placed at the 'bottom', the arrow points 'upwards',
     which means the 'top' border of this pseudo-element forms the triangle. */
}

/* Specific rule for 'bottom' placement: arrow points up, so top border is colored */
.custom-medicare-tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-top-color: #E6EFFE !important; /* Match the tooltip body color */
  /* Also ensure the border-width is correctly set for a triangle.
     Bootstrap sets this by default, but overriding it here can fix issues. */
  border-width: 0.4rem 0.4rem 0 !important; /* Standard Bootstrap arrow dimensions */
}

/* If you use other placements with this custom tooltip, ensure their arrow styles are also explicit */
.custom-medicare-tooltip.bs-tooltip-top .tooltip-arrow::before {
  background-color: transparent !important;
  border-color: transparent !important;
  border-bottom-color: #E6EFFE !important;
  border-width: 0 0.4rem 0.4rem 0.4rem !important;
}

.custom-medicare-tooltip.bs-tooltip-right .tooltip-arrow::before {
  background-color: transparent !important;
  border-color: transparent !important;
  border-right-color: #E6EFFE !important;
  border-width: 0.4rem 0.4rem 0.4rem 0 !important;
}

.custom-medicare-tooltip.bs-tooltip-left .tooltip-arrow::before {
  background-color: transparent !important;
  border-color: transparent !important;
  border-left-color: #E6EFFE !important;
  border-width: 0.4rem 0 0.4rem 0.4rem !important;
}

/* If you are using Bootstrap 5.3+ and the CSS Variables for custom styling
   (this is generally the cleaner way), make sure this block is also present,
   but the explicit border-color rules above will act as a stronger override
   if variables alone aren't fully fixing the arrow. */
/*
.custom-medicare-tooltip {
    --bs-tooltip-bg: #E6EFFE; 
    --bs-tooltip-color: #333333;
    --bs-tooltip-border-radius: 8px;
    --bs-tooltip-padding-x: 15px;
    --bs-tooltip-padding-y: 12px;
}
*/
.question-label {
  font-family: "Poppins-medium";
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

.form-label {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.8rem;
}

.checkbox-container {
  padding: 2rem;
  background-color: #F7FAFF;
  border-radius: 12px;
}

.custom-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.custom-checkbox-wrapper input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
}

.custom-checkbox-wrapper input[type=checkbox]:checked {
  background-color: #0d1846;
  border-color: #0d1846;
}

.custom-checkbox-wrapper input[type=checkbox]:checked::after {
  content: "✓";
  color: white;
  font-size: 14px;
  position: absolute;
  top: -3px;
  left: 4px;
}

.custom-checkbox-wrapper label {
  font-family: "Poppins";
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
}

.checkbox-container .subheading {
  font-family: "Poppins-medium";
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 3.2rem;
}

.modal-style1 .modal-content {
  background: #f7faff;
  border: 0;
}

.modal-style1 .modal-title {
  font-size: 1.8rem;
  font-family: "Poppins-medium";
}

.modal-style1 .modal-body h3 {
  margin-top: 1.5rem;
  font-family: "Poppins";
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-style1 .modal-body {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.4rem;
  color: #333;
  padding: 0 2rem 2rem 2rem;
}

.modal-style1 .modal-dialog.custom-width {
  max-width: 675px;
}

.modal-style1 .btn-close {
  opacity: 1;
}

.congrats-card {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.bottom-part.mt-auto img {
  width: 300px;
}

.congrats-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 46px;
  letter-spacing: 0%;
  margin-bottom: 10px;
}

.congrats-subtitle {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
}

.form-sidebar.sample {
  padding-bottom: 0 !important;
}

.sample-step h4 {
  font-family: "Poppins-medium";
  margin-bottom: 20px;
  font-size: 18px;
}

fieldset.form-step.sample-step.active img {
  position: relative;
  left: -60px;
  overflow: hidden;
  z-index: 9999;
  margin-top: 40px;
}/*# sourceMappingURL=main.css.map */