/* Dark color for header elements on white background */
* {
  box-sizing: border-box;
}

html {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100%;
  height: auto;
}

body {
  font-family: "overpass-variable", sans-serif !important;
  font-weight: 400;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 100vh;
  height: auto;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* ========================================
   IFP New Footer Styles
   ======================================== */
.footer-container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  background: linear-gradient(to right, #191C2A 29.3%, #24293b 29.3%) !important;
  padding-left: 60px;
  padding-right: 60px;
  /* Responsive: Adjust gradient at tablet and below */
}
@media screen and (max-width: 980px) {
  .footer-container {
    background: #191C2A !important;
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* 
 * Footer Structure:
 * - Two-column layout (side by side)
 * - Total height: 86px
 * - Left column (~29.3%): Logo section with dark background
 * - Right column (~70.7%): Copyright section with lighter dark background
 */
.ifp-footer-new {
  display: flex;
  height: 86px;
  width: 100%;
  max-width: 1440px;
  margin: 0;
  padding: 0;
  /* Responsive: Stack columns at tablet and below (980px) */
  /* ========================================
    Left Column: Logo Section
    ======================================== */
  /* ========================================
    Right Column: Copyright Section
    ======================================== */
}
@media screen and (max-width: 980px) {
  .ifp-footer-new {
    flex-direction: column;
    height: auto;
  }
}
.ifp-footer-new .footer-logo-column {
  width: 29.3%;
  background-color: #191C2A; /* #191C2A - Darker background */
  display: flex;
  align-items: center;
  padding: 0;
  padding-left: 0px;
  flex-shrink: 1; /* Allow shrinking */
  min-width: 0; /* Override default min-width to allow shrinking */
  /* Medium screens: Reduce padding */
  /* Responsive: Stack and center at tablet and below (980px) */
  /* Responsive: Mobile - smaller padding */
}
@media (max-width: 1240px) {
  .ifp-footer-new .footer-logo-column {
    padding-left: 0px;
  }
}
@media screen and (max-width: 980px) {
  .ifp-footer-new .footer-logo-column {
    width: 100%;
    height: 86px;
    padding: 0 30px;
    justify-content: center; /* Center the content */
  }
}
@media screen and (max-width: 576px) {
  .ifp-footer-new .footer-logo-column {
    padding: 0 20px;
  }
}
.ifp-footer-new .footer-logo-column .footer-logo-content {
  display: flex;
  align-items: center;
  gap: 20px; /* 20px gap between logo, separator, and IFP text */
  flex-shrink: 1; /* Allow content to shrink */
  min-width: 0; /* Allow content to shrink below min content size */
  /* Medium screens: Reduce gap */
  /* Logo Link Wrapper */
  /* Logo Icon */
  /* Vertical Separator Bar */
  /* IFP Text */
}
@media (max-width: 1240px) {
  .ifp-footer-new .footer-logo-column .footer-logo-content {
    gap: 15px;
  }
}
.ifp-footer-new .footer-logo-column .footer-logo-content .logo-link {
  display: flex;
  align-items: center;
  gap: 20px; /* 20px gap between logo, separator, and IFP text */
  text-decoration: none !important;
  flex-shrink: 1; /* Allow content to shrink */
  min-width: 0; /* Allow content to shrink below min content size */
  /* Medium screens: Reduce gap */
}
@media (max-width: 1240px) {
  .ifp-footer-new .footer-logo-column .footer-logo-content .logo-link {
    gap: 15px;
  }
}
.ifp-footer-new .footer-logo-column .footer-logo-content .logo-link span::after {
  display: none !important;
}
.ifp-footer-new .footer-logo-column .footer-logo-content .footer-logo-icon {
  display: flex;
  align-items: center;
  padding-bottom: 13px;
  flex-shrink: 1; /* Allow logo to shrink */
}
@media screen and (max-width: 1240px) {
  .ifp-footer-new .footer-logo-column .footer-logo-content .footer-logo-icon {
    padding-bottom: 7px !important;
  }
}
.ifp-footer-new .footer-logo-column .footer-logo-content .footer-logo-icon svg {
  width: 180px !important;
  height: 46.45px !important;
  max-width: 100%; /* Allow SVG to shrink */
  transition: width 0.3s ease;
  /* Medium screens: Scale down logo */
}
@media (max-width: 1240px) {
  .ifp-footer-new .footer-logo-column .footer-logo-content .footer-logo-icon svg {
    width: 140px !important;
    height: auto !important;
  }
}
@media screen and (max-width: 576px) {
  .ifp-footer-new .footer-logo-column .footer-logo-content .footer-logo-icon svg {
    width: 120px !important;
    height: auto !important;
  }
}
.ifp-footer-new .footer-logo-column .footer-logo-content .footer-separator {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.5;
  /* Medium screens: Scale down separator */
}
@media (max-width: 1240px) {
  .ifp-footer-new .footer-logo-column .footer-logo-content .footer-separator {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .ifp-footer-new .footer-logo-column .footer-logo-content .footer-separator {
    font-size: 18px;
  }
}
.ifp-footer-new .footer-logo-column .footer-logo-content .footer-ifp-text {
  /* Typography: Futura PT Cond Extra Bold */
  font-family: "futura-pt-condensed", sans-serif;
  font-weight: 800; /* Extra Bold */
  font-size: 29px;
  line-height: 95%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #ffffff;
  /* Medium screens: Scale down text */
}
@media (max-width: 1240px) {
  .ifp-footer-new .footer-logo-column .footer-logo-content .footer-ifp-text {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .ifp-footer-new .footer-logo-column .footer-logo-content .footer-ifp-text {
    font-size: 20px;
  }
}
.ifp-footer-new .footer-copyright-column {
  flex: 1;
  background-color: #24293b;
  display: flex;
  align-items: center;
  padding: 0 0px 0 34px;
  min-width: 0; /* Allow shrinking */
  /* Medium screens: Reduce padding */
  /* Responsive: Stack and center at tablet and below (980px) */
  /* Responsive: Mobile - smaller padding */
}
@media (max-width: 1240px) {
  .ifp-footer-new .footer-copyright-column {
    padding: 0 0px 0 24px;
  }
}
@media screen and (max-width: 980px) {
  .ifp-footer-new .footer-copyright-column {
    width: 100%;
    height: 86px;
    padding: 0 40px;
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .ifp-footer-new .footer-copyright-column {
    padding: 0 20px;
  }
}
.ifp-footer-new .footer-copyright-column .footer-copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  min-width: 0; /* Allow shrinking */
  /* Responsive: Stack at tablet and below */
  /* Copyright Text */
  /* Footer Links Container */
}
@media screen and (max-width: 980px) {
  .ifp-footer-new .footer-copyright-column .footer-copyright-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px 0 !important;
  }
}
@media screen and (max-width: 576px) {
  .ifp-footer-new .footer-copyright-column .footer-copyright-content {
    gap: 8px;
  }
}
.ifp-footer-new .footer-copyright-column .footer-copyright-content .footer-copyright-text {
  font-family: "overpass-variable", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #d7d7d7;
  margin: 0;
  min-width: 0; /* Allow text to wrap */
}
@media screen and (max-width: 576px) {
  .ifp-footer-new .footer-copyright-column .footer-copyright-content .footer-copyright-text {
    text-align: center;
  }
}
.ifp-footer-new .footer-copyright-column .footer-copyright-content .footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 1; /* Allow links to shrink if needed */
  /* Individual Footer Link */
}
@media screen and (max-width: 576px) {
  .ifp-footer-new .footer-copyright-column .footer-copyright-content .footer-links {
    gap: 12px;
  }
}
.ifp-footer-new .footer-copyright-column .footer-copyright-content .footer-links .footer-link {
  /* Typography: Same as copyright */
  font-family: "overpass-variable", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #d7d7d7;
  text-decoration: none !important;
  transition: color 0.3s ease;
  white-space: nowrap;
  /* Hover state */
}
.ifp-footer-new .footer-copyright-column .footer-copyright-content .footer-links .footer-link::after {
  display: none !important;
}
.ifp-footer-new .footer-copyright-column .footer-copyright-content .footer-links .footer-link:hover {
  color: #ffffff;
}
