@font-face {
  font-family: "Matter";
  src: url("../fonts/matter-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("../fonts/matter-semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("../fonts/cormorant-light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("../fonts/cormorant-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --color-navy-950: #011641;
  --color-navy-900: #0f182d;
  --color-navy-800: #182b52;
  --color-blue-600: #0064ff;
  --color-green-700: #3f7652;
  --color-sky-100: #dfedf8;
  --color-blue-100: #bed8ff;
  --color-surface: #f5f8fd;
  --color-surface-alt: #ebf0f7;
  --color-body: #50617b;
  --color-muted: #97a1b1;
  --color-label: #7f7379;
  --color-white: #ffffff;
  --color-dark: #252023;
  --shadow-form: 0 0 35px rgba(0, 100, 255, 0.15);
  --font-body: "Matter", "Inter", "Segoe UI", Arial, sans-serif;
  --font-heading: "Cormorant", "Cormorant Garamond", Georgia, serif;
  --container: 1320px;
  --transition-cta: 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.56;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 100, 255, 0.55);
  outline-offset: 4px;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--color-white);
  color: var(--color-navy-950);
}

.site-container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
}

.header-utility {
  height: 76px;
  background: var(--color-white);
}

.header-utility__inner {
  position: relative;
  display: block;
  height: 100%;
}

.brand {
  position: absolute;
  top: 16px;
  left: 0;
}

.brand img {
  width: 187px;
  height: 43px;
  object-fit: contain;
}

.header-identity {
  position: absolute;
  top: 28px;
  left: 230px;
  margin: 0;
  color: var(--color-navy-950);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}

.header-contact {
  position: absolute;
  top: 18px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 557px;
  height: 40px;
  color: var(--color-navy-900);
  font-size: 14px;
}

.header-contact__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #7f7f7f;
}

.header-contact__icon img {
  width: 16px;
  height: 16px;
}

.header-contact__phone {
  margin-left: auto;
  color: var(--color-blue-600);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.header-nav {
  height: 55px;
  background: var(--color-navy-900);
}

.primary-nav,
.submenu,
.footer-grid ul,
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  gap: 0;
}

.primary-nav > li {
  flex: 0 0 auto;
  text-align: center;
}

.primary-nav a,
.submenu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav > li {
  overflow: visible;
}

.primary-nav > li > a,
.primary-nav > li > .submenu-toggle {
  justify-content: center;
  max-width: 100%;
}

.primary-nav > li > a::after,
.primary-nav > li > .submenu-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -19px;
  left: 0;
  height: 2px;
  background: var(--color-blue-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.primary-nav > li > a:hover::after,
.primary-nav > li > a:focus-visible::after,
.primary-nav > li > a[aria-current="page"]::after,
.primary-nav > li > .submenu-toggle:hover::after,
.primary-nav > li > .submenu-toggle:focus-visible::after,
.primary-nav > li > .submenu-toggle[aria-current="page"]::after {
  transform: scaleX(1);
}

.submenu-toggle img {
  width: 14px;
  height: 14px;
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 230px;
  padding: 12px;
  background: var(--color-white);
  box-shadow: 0 16px 30px rgba(1, 22, 65, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
}

.submenu a {
  display: block;
  padding: 12px 14px;
  color: var(--color-navy-950);
  font-size: 14px;
  letter-spacing: 0.6px;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(1, 22, 65, 0.22);
  background: transparent;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--color-navy-950);
}

.hero {
  position: relative;
  height: 480px;
  min-height: 480px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(1, 22, 65, 0.05) 0%, rgba(223, 237, 248, 0.72) 54%, rgba(190, 216, 255, 0.5) 100%),
    var(--color-surface);
  color: var(--color-navy-950);
  text-align: center;
}

.hero__image,
.hero__shade,
.hero__vector {
  position: absolute;
}

.hero__image {
  display: none;
  z-index: -3;
  top: -260px;
  left: -120px;
  width: 1920px;
  height: 1080px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
  transform-origin: center;
}

.hero__shade {
  display: none;
}

.hero__vector {
  display: none;
  z-index: -1;
  inset: 0 0 auto auto;
  width: 860px;
  height: 430px;
  object-fit: fill;
  object-position: right top;
  opacity: 1;
}

.hero__content {
  position: absolute;
  top: 62px;
  left: 50%;
  width: min(100% - 40px, 990px);
  height: 320px;
  margin: 0;
  transform: translateX(-50%);
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  color: var(--color-navy-950);
  font-family: var(--font-heading);
  font-size: clamp(42px, 3.4vw, 65px);
  font-weight: 700;
  letter-spacing: -1.1px;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero h1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--color-navy-950);
  font-size: clamp(40px, 3.9vw, 58px);
  line-height: 1.08;
}

.hero h1 span,
.section-heading h2 span {
  display: block;
  font-weight: 300;
}

.hero__content > p:not(.hero__types) {
  position: absolute;
  top: 124px;
  left: 50%;
  width: min(100%, 721px);
  max-width: 721px;
  margin: 0;
  color: var(--color-navy-800);
  font-size: 16px;
  line-height: 26px;
  transform: translateX(-50%);
}

.hero__content > p.hero__scenario {
  position: absolute;
  top: 350px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  width: min(100%, 835px);
  max-width: 900px;
  margin: 0;
  color: var(--color-green-700);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 6px;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero__content > p.hero__scenario::before,
.hero__content > p.hero__scenario::after {
  content: "";
  flex: 1 1 150px;
  max-width: 160px;
  height: 1px;
  background: rgba(54, 119, 81, 0.62);
}

.hero__types {
  position: absolute;
  top: 196px;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: var(--color-navy-950);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 19px;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero__types span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-green-700);
}

.button {
  position: relative;
  z-index: 0;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 10px 30px;
  border: 0;
  background-image: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.28) 48%, transparent 58%, transparent 100%);
  background-size: 260% 100%;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--transition-cta);
  animation: buttonshimmer 3s linear infinite;
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  animation: none;
}

.button img {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-cta);
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  transform: translate3d(10px, 10px, 0);
}

.hero .button--white:hover,
.hero .button--white:focus-visible {
  transform: translate3d(calc(-50% + 7.5px), 10px, 0);
}

.button:hover img,
.button:focus-visible img {
  transform: translate3d(5px, 0, 0);
}

.button--white {
  position: absolute;
  z-index: 0;
  isolation: isolate;
  top: 248px;
  left: 50%;
  min-height: 60px;
  width: 276px;
  min-width: 276px;
  margin: 0;
  padding-inline: 30px;
  background: var(--color-green-700);
  background-image: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.28) 48%, transparent 58%, transparent 100%);
  background-size: 260% 100%;
  color: var(--color-white);
  animation: buttonshimmer 3s linear infinite;
  transform: translateX(-50%);
}

.hero .button--white::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 7.5px;
  z-index: -2;
  width: 276px;
  height: 60px;
  border: 1px solid var(--color-green-700);
  pointer-events: none;
  transition: transform var(--transition-cta);
  will-change: transform;
}

.hero .button--white:hover::before,
.hero .button--white:focus-visible::before {
  transform: translate3d(-7.5px, -10px, 0);
}

.interior-hero {
  position: relative;
  height: 508px;
  min-height: 508px;
  overflow: hidden;
  isolation: isolate;
  padding-top: 130px;
  color: var(--color-white);
  text-align: center;
}

.interior-hero__image,
.interior-hero__shade,
.interior-hero__vector {
  position: absolute;
}

.interior-hero__image {
  z-index: -3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 43%;
}

.interior-hero__shade {
  z-index: -2;
  inset: 0;
  background: linear-gradient(0deg, rgba(1, 22, 65, 0.7) 0%, rgba(3, 57, 167, 0) 61.72%);
}

.interior-hero__vector {
  z-index: -1;
  top: 129px;
  right: 0;
  width: 542px;
  height: 378px;
  object-fit: cover;
  object-position: right top;
}

.interior-hero__content {
  position: absolute;
  top: 242px;
  left: 50%;
  width: min(100% - 40px, 550px);
  transform: translateX(-50%);
}

.interior-hero h1 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 65px;
  font-weight: 700;
  letter-spacing: -1.3px;
  line-height: 70px;
  text-transform: uppercase;
}

.interior-hero h1 span {
  display: block;
  font-weight: 300;
  letter-spacing: -0.32px;
}

.interior-hero p {
  width: 286px;
  margin: 20px auto 0;
  color: var(--color-white);
  font-size: 16px;
  line-height: 26px;
}

.interior-hero--loan-options .interior-hero__image {
  object-position: center 69%;
}

.interior-hero--loan-options .interior-hero__content {
  top: 263px;
}

.interior-hero--contact .interior-hero__image {
  object-position: center;
}

.interior-hero--contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(72vw, 760px);
  height: 210px;
  border-radius: 999px;
  background: #011641;
  opacity: 1;
  filter: blur(139.5px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.interior-hero--contact .interior-hero__content {
  top: 263px;
}

.interior-hero--default .interior-hero__image {
  object-position: center;
}

.button--green {
  background: var(--color-green-700);
  background-image: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.28) 48%, transparent 58%, transparent 100%);
  background-size: 260% 100%;
  min-width: max-content;
}

.button--green[data-rate-quote-trigger] {
  box-shadow: 0 4px 10px rgba(1, 22, 65, 0.12);
}

.button--green::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  width: calc(100% - 1px);
  height: 100%;
  border: 1px solid var(--color-green-700);
  pointer-events: none;
  transition: transform var(--transition-cta);
  will-change: transform;
}

.button--green[data-rate-quote-trigger]::before {
  border-color: var(--color-green-700);
}

.button--green:hover::before,
.button--green:focus-visible::before {
  transform: translate3d(-10px, -10px, 0);
}

.button--green[data-rate-quote-trigger]:hover,
.button--green[data-rate-quote-trigger]:focus-visible {
  box-shadow: 0 10px 20px rgba(1, 22, 65, 0.16);
}

@keyframes buttonshimmer {
  0% {
    background-position: 160% 0;
  }

  100% {
    background-position: -160% 0;
  }
}

@keyframes buttonshimmerLayered {
  0% {
    background-position: 160% 0, 0 0;
  }

  100% {
    background-position: -160% 0, 0 0;
  }
}

.button--full {
  width: 100%;
}

.trust-strip {
  position: relative;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
}

.trust-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) repeat(2, minmax(180px, 0.7fr));
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 172px;
  padding: 28px 0;
}

.trust-strip__inner::before,
.trust-strip__inner::after {
  display: none;
}

.trust-strip__inner > * {
  position: relative;
  z-index: 1;
  justify-self: center;
}

.trust-strip__inner > * + * {
  border-left: 0;
}

.trust-strip p,
.trust-strip__headline {
  justify-self: start;
  width: min(100%, 540px);
  margin: 0;
  color: var(--color-navy-950);
  font-family: var(--font-body);
  font-size: clamp(27px, 2.35vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.trust-strip__headline-line {
  display: block;
  white-space: nowrap;
}

.trust-strip__headline-underlined {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.trust-strip__headline-bold {
  font-weight: 700;
}

.trust-strip__headline-light {
  font-weight: 400;
}

.trust-strip img:first-of-type {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.trust-strip img:last-of-type {
  width: 156px;
  height: 140px;
  object-fit: contain;
}

.trust-strip--reviews .trust-strip__inner {
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.62fr);
  gap: clamp(48px, 4vw, 72px);
}

.trust-strip--reviews p,
.trust-strip--reviews .trust-strip__headline {
  width: min(100%, 560px);
}

.trust-strip--reviews .trust-strip__headline {
  max-width: 100%;
  font-size: clamp(27px, 2vw, 32px);
}

.trust-reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.trust-review {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 122px;
  padding: 18px 20px;
  border: 1px solid rgba(1, 22, 65, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-navy-950);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(1, 22, 65, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-review:hover,
.trust-review:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(1, 22, 65, 0.14);
}

.trust-review strong {
  display: block;
  color: var(--color-navy-950);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.trust-review__label {
  color: var(--color-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.trust-review__stars {
  display: block;
  margin: 12px 0 0;
  color: #f5b301;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 1px;
}

.trust-review[class*="trust-review--google" i] strong {
  color: transparent;
  background: linear-gradient(90deg,
    #4285f4 0 11.5%,
    #ea4335 11.5% 22.5%,
    #fbbc05 22.5% 33.5%,
    #4285f4 33.5% 45%,
    #34a853 45% 49.5%,
    #ea4335 49.5% 60.5%,
    var(--color-navy-950) 60.5% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-review--experience strong {
  max-width: 100%;
  color: #173f73;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.05;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.trust-review--zillow strong {
  color: #4777bd;
}

.trust-review--yelp strong {
  color: #d32323;
  font-size: 34px;
  text-transform: lowercase;
}

.trust-review--yelp .trust-review__stars {
  color: #d32323;
}

.quote-card-anchor {
  scroll-margin-top: 110px;
  background: linear-gradient(180deg, #eef7ff 0%, #f8fbff 100%);
  padding: 80px 0;
}

.quote-card-anchor .personal-credentials {
  padding: 0;
  background: transparent;
}

.personal-credentials {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 28px 0 0;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(105deg, #05070d 0%, #0a0b12 45%, #24222e 100%);
  color: var(--color-white);
}

.personal-credentials .site-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: start;
  gap: clamp(36px, 7vw, 104px);
}

.personal-credentials__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 0 52px;
}

.personal-credentials__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 7px 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.personal-credentials__badge img {
  width: 96px;
  height: auto;
  margin-right: 3px;
  border-radius: 3px;
  background: var(--color-white);
  padding: 3px 6px;
}

.personal-credentials__badge strong {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
}

.personal-credentials__badge span {
  color: #ffbd17;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.personal-credentials__badge small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.personal-credentials__badge i {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1473e6;
}

.personal-credentials__badge i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 5px;
  height: 3px;
  border-bottom: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.personal-credentials__content > h2 {
  margin: 0 0 18px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.personal-credentials__content > p {
  margin: 0 0 30px;
  color: var(--color-white);
  font-size: 21px;
  line-height: 1.35;
}

.personal-credentials__recognition {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 121, 0, 0.16);
  padding: 5px 12px;
  color: #ff9b36;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.personal-credentials__help-heading {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.personal-credentials__help-heading h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(28px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.personal-credentials__help-heading h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.personal-credentials__help-heading span {
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 36px;
  line-height: 1;
  transform: rotate(-18deg);
}

.personal-credentials__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin-bottom: 22px;
}

.personal-credentials__actions button {
  position: relative;
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  background-size: 260% 100%, 100% 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: buttonshimmerLayered 3s linear infinite;
}

.personal-credentials__actions button:first-child {
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.26) 48%, transparent 58%, transparent 100%),
    linear-gradient(135deg, #1768e8 0%, #315f42 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(23, 104, 232, 0.22);
}

.personal-credentials__actions button:nth-child(n+2) {
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(23, 104, 232, 0.12) 48%, transparent 58%, transparent 100%),
    linear-gradient(135deg, #ffffff 0%, #d7d8dc 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  color: #18191f;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.1);
}

.personal-credentials__actions button:hover,
.personal-credentials__actions button:focus-visible {
  transform: translateY(-2px);
}

.personal-credentials__privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.personal-credentials__privacy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #08b75d;
  color: #071126;
  font-size: 15px;
  font-weight: 900;
}

.personal-credentials__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 462px;
  align-self: end;
}

.personal-credentials__media::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 72%;
  height: 82%;
  border-radius: 999px 999px 0 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 64%);
  filter: blur(10px);
}

.personal-credentials__media img {
  position: relative;
  width: min(100%, 423px);
  max-height: 590px;
  object-fit: contain;
  object-position: bottom center;
}

.about-profile {
  position: relative;
  min-height: 879px;
  padding: 96px 0 80px;
  overflow: hidden;
  background: var(--color-white);
}

.about-profile::after {
  content: "W";
  position: absolute;
  right: -15px;
  bottom: -18px;
  color: rgba(0, 100, 255, 0.04);
  font-family: var(--font-heading);
  font-size: 280px;
  font-weight: 700;
  line-height: 0.7;
  pointer-events: none;
}

.about-profile__grid {
  display: grid;
  grid-template-columns: 637px 640px;
  gap: 35px;
  align-items: start;
}

.about-profile__media {
  width: 637px;
  height: 680px;
  margin-top: 3px;
  overflow: hidden;
}

.about-profile__media img {
  width: 874px;
  height: 683px;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  transform: translate(-130px, -3px);
}

.about-profile__content {
  padding-top: 38px;
}

.about-profile .section-heading {
  gap: 35px;
}

.about-profile .section-heading h2,
.about-benefits .section-heading h2,
.about-testimonials .section-heading h2 {
  width: 100%;
  font-size: 55px;
  letter-spacing: -1.1px;
  line-height: 60px;
}

.about-profile .section-heading h2 {
  max-width: 599px;
}

.about-profile__content > p {
  width: 640px;
  margin: 25px 0 0;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
}

.about-profile__stats {
  display: grid;
  grid-template-columns: 0.9fr 1.18fr 0.82fr;
  width: 640px;
  margin: 28px 0 8px;
  padding: 18px 22px;
  background: linear-gradient(90deg, #e9f4ff 0%, #dceeff 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 100, 255, 0.08);
}

.about-profile__stat {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 0 20px 0 0;
}

.about-profile__stat + .about-profile__stat {
  padding-left: 20px;
}

.about-profile__stat + .about-profile__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #a9c9ea;
}

.about-profile__stat-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f8fbff;
  color: #365a83;
  box-shadow: 0 8px 18px rgba(0, 57, 118, 0.1);
}

.about-profile__stat-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.about-profile__stat strong {
  display: block;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.about-profile__stat span:not(.about-profile__stat-icon) {
  display: block;
  max-width: 150px;
  margin-top: 3px;
  color: #25486f;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.18;
  text-transform: uppercase;
}

.about-benefits {
  position: relative;
  min-height: 677px;
  padding: 74px 0 102px;
  background: linear-gradient(89.72deg, #A7CAFF -65.68%, rgba(255, 255, 255, 0) 136.26%);
}

.about-benefits .site-container {
  position: relative;
  height: 100%;
}

.about-benefits .section-heading {
  gap: 14px;
}

.about-benefits .section-heading h2 {
  text-align: center;
  white-space: nowrap;
}

.about-benefits .section-heading h2 span {
  display: inline;
}

.about-benefits .section-heading p:not(.eyebrow) {
  width: min(100%, 690px);
  margin: -8px 0 0;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}

.about-benefit-grid {
  position: absolute;
  top: 200px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 424px);
  gap: 24px;
  margin-top: 0;
}

.about-benefit-card {
  width: 424px;
  height: auto;
  min-height: 276px;
  padding: 22px 23px 28px;
  background: var(--color-surface);
  text-align: center;
  transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.about-benefit-card:hover,
.about-benefit-card:focus-visible {
  background: var(--color-blue-600);
  color: var(--color-white);
}

.about-benefit-card span {
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  margin: 0 auto 30px;
}

.about-benefit-card img {
  width: 105px;
  height: 105px;
  object-fit: contain;
}

.about-benefit-card h3 {
  margin: 0 0 10px;
  color: var(--color-navy-950);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.about-benefit-card p {
  width: min(100%, 378px);
  margin: 0 auto;
  color: var(--color-body);
  font-size: 16px;
  line-height: 26px;
}

.about-benefit-card:hover h3,
.about-benefit-card:hover p,
.about-benefit-card:focus-visible h3,
.about-benefit-card:focus-visible p {
  color: var(--color-white);
}

.about-testimonials {
  position: relative;
  min-height: 817px;
  padding: 100px 0 100px;
  overflow: hidden;
  background: var(--color-blue-100);
}

.about-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../images/testimonial-background.png") center / cover no-repeat;
}

.about-testimonials > .site-container {
  position: relative;
  z-index: 1;
}

.about-testimonials__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 31px;
}

.about-testimonials .section-heading {
  width: 573px;
  gap: 35px;
}

.about-testimonials .section-heading h2 span {
  display: inline;
}

.about-testimonials__controls {
  display: flex;
  gap: 30px;
  padding-top: 17px;
}

.about-testimonials__controls button {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 0;
  background: transparent;
}

.about-testimonials__controls img {
  width: 68px;
  height: 68px;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 424px);
  gap: 24px;
}

.testimonial-slider .testimonial-grid {
  display: flex;
  gap: 0;
}

.testimonial-card {
  width: 424px;
  height: 474px;
  min-height: 474px;
  padding: 37px 22px 32px 25px;
  background: var(--color-white);
}

.testimonial-card header {
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 23px;
}

.testimonial-card__avatar {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--color-green-700);
  color: var(--color-white);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.testimonial-card__avatar--blue {
  background: var(--color-blue-600);
}

.testimonial-card h3 {
  margin: 3px 0 1px;
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}

.testimonial-card header p {
  margin: 0;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
}

.testimonial-card__source {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: #4285f4;
  font-size: 22px;
  font-weight: 600;
}

.testimonial-card > p {
  display: -webkit-box;
  height: 249px;
  min-height: 249px;
  margin: 0 0 34px;
  overflow: hidden;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}

.testimonial-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-blue-600);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-card a img {
  width: 16px;
  height: 16px;
}

.section {
  padding: 105px 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: flex-start;
}

.section-heading--center {
  align-items: center;
  text-align: center;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(36px, 2.9vw, 55px);
  line-height: 1.09;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-blue-600);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow img {
  width: 23px;
  height: 16px;
}

.loan-programs {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.loan-programs::after {
  content: "";
  position: absolute;
  top: 517px;
  right: 0;
  width: 287px;
  height: 201px;
  background: url("../images/loan-programs-w.svg") center / contain no-repeat;
}

.loan-programs .section-heading {
  width: 544px;
  margin-inline: auto;
  gap: 35px;
}

.loan-programs .section-heading h2 {
  font-size: 55px;
  letter-spacing: -1.1px;
  line-height: 60px;
  white-space: nowrap;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.loan-programs .section-heading h2 span {
  display: inline;
}

.loan-carousel {
  position: relative;
  margin-top: 33px;
  overflow: visible;
}

.loan-carousel__viewport,
.loan-carousel__viewport.swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.loan-grid {
  align-items: stretch;
}

.loan-grid::-webkit-scrollbar {
  display: none;
}

.loan-card {
  width: 312px;
  max-width: 312px;
  height: 408px;
  min-height: 408px;
  padding: 22px 17px 45px;
  background: var(--color-surface);
  text-align: center;
  transition: 180ms ease;
}

.loan-card--active {
  background: var(--color-blue-600);
  color: var(--color-white);
}

.loan-card__icon {
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 15px 24px rgba(0, 100, 255, 0.13);
}

.loan-card__icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.loan-card__icon img[src$="icon-loan-conventional.svg"] {
  filter: brightness(0) saturate(100%) invert(31%) sepia(99%) saturate(4118%) hue-rotate(213deg) brightness(104%) contrast(108%);
}

.loan-card--active .loan-card__icon {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.loan-card--active .loan-card__icon img {
  --fill-0: #ffffff;
  filter: brightness(0) invert(1);
  width: 60px;
  height: 60px;
}

.loan-card h3 {
  margin: 0 0 17px;
  color: var(--color-navy-950);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.loan-card--active h3 {
  color: var(--color-white);
}

.loan-card p {
  display: -webkit-box;
  width: 278px;
  height: 106px;
  min-height: 106px;
  margin: 0 auto 21px;
  overflow: hidden;
  color: var(--color-body);
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.loan-card--active p {
  color: #cddbf1;
}

.loan-card a,
.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
  color: var(--color-blue-600);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 250ms ease, transform var(--transition-cta);
}

.loan-card a:hover,
.loan-card a:focus-visible,
.blog-card a:hover,
.blog-card a:focus-visible {
  border-bottom-color: currentColor;
}

.loan-card--active a {
  color: var(--color-white);
}

.loan-card a img,
.blog-card a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.loan-options-programs {
  min-height: 1182px;
  padding: 111px 0 100px;
}

.loan-options-programs::after {
  top: 981px;
}

.loan-options-programs .section-heading {
  gap: 35px;
}

.loan-options-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 424px);
  gap: 30px 24px;
  margin-top: 40px;
}

.loan-options-grid .loan-card {
  width: 424px;
  max-width: 424px;
  height: auto;
  padding: 22px 23px 45px;
}

.loan-options-grid .loan-card p {
  display: block;
  width: min(100%, 391px);
  height: auto;
  min-height: 0;
  overflow: visible;
  text-overflow: clip;
  -webkit-line-clamp: unset;
}

.loan-options-grid .loan-card:hover,
.loan-options-grid .loan-card:focus-within {
  background: var(--color-blue-600);
  color: var(--color-white);
}

.loan-options-grid .loan-card:hover .loan-card__icon,
.loan-options-grid .loan-card:focus-within .loan-card__icon {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.loan-options-grid .loan-card:hover .loan-card__icon img,
.loan-options-grid .loan-card:focus-within .loan-card__icon img {
  --fill-0: #ffffff;
  filter: brightness(0) invert(1);
  width: 60px;
  height: 60px;
}

.loan-options-grid .loan-card:hover h3,
.loan-options-grid .loan-card:focus-within h3,
.loan-options-grid .loan-card:hover a,
.loan-options-grid .loan-card:focus-within a {
  color: var(--color-white);
}

.loan-options-grid .loan-card:hover p,
.loan-options-grid .loan-card:focus-within p {
  color: #cddbf1;
}

.loan-options-grid .loan-card:hover a img,
.loan-options-grid .loan-card:focus-within a img {
  filter: brightness(0) invert(1);
}

.loan-options-process {
  background: url("../images/smart-rates-bg.svg") center top / cover no-repeat;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: box-shadow var(--transition-base);
}

.carousel-button::before {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-blue-600);
  box-shadow: 0 14px 28px rgba(0, 102, 255, 0.24);
  content: "";
  opacity: 0;
  transform: scale(0.94);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.carousel-button--prev {
  left: -98px;
}

.carousel-button--next {
  right: -98px;
}

.carousel-button img {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  object-fit: contain;
  transition: filter var(--transition-base);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  outline: 0;
}

.carousel-button:hover::before,
.carousel-button:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.carousel-button:hover img,
.carousel-button:focus-visible img {
  filter: brightness(0) invert(1);
}

.smart-rates {
  position: relative;
  height: 822px;
  padding: 0;
  overflow: hidden;
  background: var(--color-white);
}

.smart-rates::before,
.smart-rates::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 100%;
  pointer-events: none;
  background: url("../images/smart-rates-bg.svg") center top / 1920px 822px no-repeat;
}

.smart-rates::before {
  left: 0;
}

.smart-rates::after {
  right: 0;
  transform: scaleX(-1);
}

.smart-rates--white::before,
.smart-rates--white::after {
  display: none;
}

.smart-rates__grid {
  position: relative;
  z-index: 1;
  height: 822px;
}

.smart-rates__content {
  position: absolute;
  top: 101px;
  left: 0;
  width: 568px;
}

.smart-rates .section-heading {
  gap: 35px;
}

.smart-rates .section-heading h2 {
  width: 540px;
  font-size: 55px;
  letter-spacing: -1.1px;
  line-height: 60px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.smart-rates__content > p {
  width: 520px;
  max-width: 520px;
  margin: 25px 0 25px;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  width: 568px;
  max-width: 100%;
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--color-navy-950);
  font-size: 16px;
  line-height: 22px;
  white-space: normal;
}

.feature-list img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  margin: -10px -16px -20px -16px;
  max-width: none;
  object-fit: fill;
}

.smart-rates .button--green {
  position: absolute;
  top: 549px;
  left: 1px;
  width: 274px;
  min-height: 60px;
}

.smart-rates .button--green::before {
  top: 10px;
  left: 10px;
  width: 274px;
  height: 60px;
}

.smart-rates__media {
  position: absolute;
  top: 100px;
  left: 640px;
  width: 680px;
  height: 622px;
}

.smart-rates__photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 567px;
  height: 622px;
  object-fit: cover;
  object-position: center;
}

.smart-rates__overlap-frame {
  position: absolute;
  left: 0;
  top: 214px;
  width: 294px;
  height: 382px;
  background: url("../images/smart-rates-overlap-frame.svg") center / 284px 382px no-repeat;
}

.smart-rates__photo-overlap {
  position: absolute;
  top: 10px;
  left: 0;
  width: 284px;
  height: 362px;
  object-fit: cover;
  object-position: center;
}

.process {
  position: relative;
  height: 786px;
  padding: 0;
  background: var(--color-white);
}

.process.loan-options-process {
  background: url("../images/smart-rates-bg.svg") center top / cover no-repeat;
}

.interior-hero--conventional .interior-hero__image {
  object-position: center 48%;
}

.interior-hero--conventional .interior-hero__content {
  top: 263px;
}

.loan-detail {
  min-height: 2142px;
  padding: 56px 0 92px;
  background: var(--color-white);
}

.loan-detail__grid {
  display: grid;
  grid-template-columns: 648px 626px;
  gap: 34px;
  align-items: start;
}

.loan-detail__main {
  padding-top: 44px;
}

.loan-detail h2,
.loan-detail h3,
.quick-contact h2,
.calculator-card h2,
.other-loans h2 {
  margin: 0;
  color: var(--color-navy-950);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1;
  text-transform: uppercase;
}

.loan-detail__main > h2 {
  width: 675px;
  max-width: 100%;
  font-size: 55px;
  letter-spacing: -1.1px;
  line-height: 60px;
}

.loan-detail__main > h2 span {
  font-weight: 300;
}

.loan-detail__main > p {
  width: 640px;
  max-width: 100%;
  margin: 22px 0 0;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
}

.loan-detail__panel {
  width: 648px;
  max-width: 100%;
  min-height: 315px;
  margin-top: 35px;
  padding: 40px;
  background: var(--color-surface);
}

.loan-detail__panel h3,
.eligibility h3,
.loan-detail__fit h3,
.other-loans h2 {
  font-size: 30px;
  line-height: 60px;
}

.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  min-height: 26px;
  padding-left: 30px;
  color: var(--color-navy-950);
  font-size: 16px;
  line-height: 26px;
}

.check-list li + li {
  margin-top: 9px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url("../images/icon-list-check-blue.svg") center / contain no-repeat;
}

.eligibility {
  margin-top: 36px;
}

.eligibility__grid {
  display: grid;
  grid-template-columns: repeat(2, 312px);
  gap: 30px 24px;
  margin-top: -1px;
}

.eligibility-card {
  display: grid;
  grid-template-columns: 41px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 15px 20px;
  background: var(--color-surface);
}

.eligibility-card img {
  grid-row: 1 / 3;
  width: 41px;
  height: 41px;
  object-fit: contain;
}

.eligibility-card span {
  color: var(--color-navy-950);
  font-size: 16px;
  line-height: 26px;
}

.eligibility-card strong {
  color: var(--color-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}

.loan-detail__image {
  position: relative;
  width: 648px;
  max-width: 100%;
  height: 504px;
  margin: 50px 0 0;
  overflow: hidden;
}

.loan-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.loan-detail__image figcaption {
  position: absolute;
  left: 40px;
  bottom: 36px;
  width: 575px;
  max-width: calc(100% - 80px);
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 30px;
  text-transform: uppercase;
}

.loan-detail__fit {
  margin-top: 44px;
}

.loan-detail__fit p {
  width: 648px;
  max-width: 100%;
  margin: 14px 0 0;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
}

.loan-detail__fit .check-list {
  margin-top: 20px;
}

.loan-detail__fit .check-list li + li {
  margin-top: 4px;
}

.loan-detail__sidebar {
  display: grid;
  gap: 30px;
  min-width: 0;
  width: 100%;
}

.quick-contact {
  width: 626px;
  max-width: 100%;
  min-height: 813px;
  padding: 40px 48px;
  background: var(--color-white);
  box-shadow: var(--shadow-form);
}

.quick-contact h2 {
  font-size: 30px;
  line-height: 40px;
}

.quick-contact .form-intro {
  margin: 5px 0 34px;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
}

.quick-contact .form-field + .form-field {
  margin-top: 35px;
}

.quick-contact .form-field {
  width: 100%;
  margin: 0;
}

.quick-contact label {
  color: var(--color-label);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  line-height: 26px;
}

.quick-contact input,
.quick-contact textarea {
  width: 545px;
  max-width: 100%;
  border: 0;
  border-radius: 0;
  background: var(--color-surface);
  color: var(--color-navy-950);
}

.quick-contact input {
  height: 50px;
  margin-top: 2px;
  padding: 0 15px;
}

.quick-contact textarea {
  min-height: 156px;
  margin-top: 2px;
  padding: 14px 15px;
  resize: vertical;
}

.quick-contact input::placeholder,
.quick-contact textarea::placeholder {
  color: var(--color-muted);
}

.quick-contact .button {
  display: flex;
  width: 162px;
  height: 60px;
  margin: 35px auto 0;
  padding: 10px 40px;
}

.quick-contact .button::before {
  display: none;
}

.calculator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 626px;
  max-width: 100%;
  min-height: 328px;
  padding: 45px 60px 34px;
  background: var(--color-blue-600);
  text-align: center;
}

.calculator-card__icon {
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
}

.calculator-card__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.calculator-card h2 {
  margin-top: 30px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.calculator-card p {
  width: 375px;
  max-width: 100%;
  margin: 14px 0 0;
  color: #cddbf1;
  font-size: 16px;
  line-height: 26px;
}

.calculator-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.calculator-card a img {
  width: 16px;
  height: 16px;
}

.mortgage-tools {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-white) 100%);
}

.mortgage-tools__shell {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(1, 22, 65, 0.08);
  background: var(--color-white);
  box-shadow: 0 26px 70px rgba(1, 22, 65, 0.1);
}

.mortgage-tools__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(1, 22, 65, 0.08);
}

.mortgage-tools__tab {
  min-height: 70px;
  padding: 16px 18px;
  border: 0;
  background: var(--color-white);
  color: var(--color-navy-950);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: color var(--transition-cta), background var(--transition-cta), box-shadow var(--transition-cta);
}

.mortgage-tools__tab:hover,
.mortgage-tools__tab:focus-visible,
.mortgage-tools__tab.is-active {
  background: var(--color-navy-950);
  color: var(--color-white);
}

.mortgage-tools__tab:focus-visible {
  outline: 3px solid rgba(0, 100, 255, 0.35);
  outline-offset: -3px;
}

.mortgage-tools__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 32px;
  padding: 36px;
}

.mortgage-tools__panel[hidden] {
  display: none;
}

.mortgage-tools [hidden] {
  display: none !important;
}

.mortgage-tools__form h3,
.mortgage-tools__results h3 {
  margin: 0 0 10px;
  color: var(--color-navy-950);
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
}

.mortgage-tools__form p {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--color-body);
}

.mortgage-tools__fields,
.mortgage-tools__arm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.mortgage-tools__arm {
  grid-column: 1 / -1;
}

.mortgage-tools__fields label,
.mortgage-tools__fields fieldset,
.mortgage-tools__arm label {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--color-navy-950);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.mortgage-tools__fields fieldset {
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  padding: 0;
}

.mortgage-tools__fields legend {
  grid-column: 1 / -1;
  padding: 0;
  color: var(--color-navy-950);
}

.mortgage-tools__fields fieldset label {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 50px;
  padding: 0 16px 0 48px;
  border: 1px solid rgba(151, 161, 177, 0.4);
  background: var(--color-white);
  color: var(--color-navy-950);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--transition-cta), background var(--transition-cta), color var(--transition-cta), box-shadow var(--transition-cta);
}

.mortgage-tools__fields input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mortgage-tools__fields fieldset label::before,
.mortgage-tools__fields fieldset label::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  transition: border-color var(--transition-cta), background var(--transition-cta), transform var(--transition-cta);
}

.mortgage-tools__fields fieldset label::before {
  left: 16px;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(1, 22, 65, 0.28);
  background: var(--color-white);
}

.mortgage-tools__fields fieldset label::after {
  left: 21px;
  width: 10px;
  height: 10px;
  background: var(--color-white);
  transform: scale(0);
}

.mortgage-tools__fields fieldset label:has(input:checked) {
  border-color: var(--color-blue-600);
  background: var(--color-blue-600);
  color: var(--color-white);
  box-shadow: 0 14px 24px rgba(0, 100, 255, 0.18);
}

.mortgage-tools__fields fieldset label:has(input:checked)::before {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.mortgage-tools__fields fieldset label:has(input:checked)::after {
  transform: scale(1);
}

.mortgage-tools__fields fieldset label:has(input:focus-visible) {
  outline: 3px solid rgba(0, 100, 255, 0.22);
  outline-offset: 2px;
}

.mortgage-tools__fields span {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.mortgage-tools__fields input,
.mortgage-tools__fields select {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 1px solid rgba(151, 161, 177, 0.45);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-navy-950);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.2;
  padding: 0 15px;
  transition: border-color var(--transition-cta), box-shadow var(--transition-cta);
}

.mortgage-tools__fields input:focus,
.mortgage-tools__fields select:focus {
  border-color: var(--color-blue-600);
  box-shadow: 0 0 0 4px rgba(0, 100, 255, 0.12);
  outline: 0;
}

.mortgage-tools__fields input[type="month"] {
  color-scheme: light;
  cursor: pointer;
}

.mortgage-tools__fields input[type="month"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
}

.mortgage-tools__fields input[type="month"]:focus::-webkit-calendar-picker-indicator,
.mortgage-tools__fields input[type="month"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

.mortgage-tools__fields input.is-error {
  border-color: #c83535;
}

.mortgage-tools__fields small {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 0 12px;
  border: 1px solid rgba(151, 161, 177, 0.45);
  border-left: 0;
  background: var(--color-surface);
  color: var(--color-body);
  font-size: 14px;
  font-weight: 500;
}

.mortgage-tools__split input {
  flex: 1 1 70px;
}

.mortgage-tools__error {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  margin-top: 3px;
  color: #c83535;
  font-size: 12px;
  font-weight: 600;
}

.mortgage-tools__submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 170px;
  min-height: 56px;
  margin-top: 28px;
  margin-bottom: 26px;
  border: 0;
  background: linear-gradient(110deg, var(--color-green-700) 0%, var(--color-green-700) 38%, rgba(255, 255, 255, 0.28) 48%, var(--color-green-700) 58%, var(--color-green-700) 100%);
  background-size: 260% 100%;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition-cta), background var(--transition-cta), box-shadow var(--transition-cta);
  animation: buttonshimmer 3s linear infinite;
}

.mortgage-tools__submit::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 42%;
  background: rgba(255, 255, 255, 0.14);
  transform: skewX(-18deg);
  transition: left 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mortgage-tools__submit:hover,
.mortgage-tools__submit:focus-visible {
  background: linear-gradient(110deg, #336343 0%, #336343 38%, rgba(255, 255, 255, 0.28) 48%, #336343 58%, #336343 100%);
  background-size: 260% 100%;
  transform: translateY(-2px);
}

.mortgage-tools__submit:hover::before,
.mortgage-tools__submit:focus-visible::before {
  left: 110%;
}

.mortgage-tools__disclaimer {
  clear: both;
  margin: 0;
  color: var(--color-body);
  font-size: 13px;
  line-height: 1.5;
}

.mortgage-tools__results {
  align-self: start;
  padding: 28px;
  background: var(--color-navy-950);
  color: var(--color-white);
  box-shadow: 18px 18px 0 rgba(0, 100, 255, 0.08);
}

.mortgage-tools__results h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 34px;
}

.mortgage-tools__results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.mortgage-tools__results-head button,
.mortgage-tools__report-link {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.mortgage-tools__results-head button {
  min-height: 38px;
  padding: 0 16px;
}

.mortgage-tools__result {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mortgage-tools__result span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.mortgage-tools__result strong {
  color: var(--color-white);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.mortgage-tools__result.is-hidden,
.mortgage-tools__report-link.is-hidden {
  display: none;
}

.mortgage-tools__report-link {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 16px;
}

.mortgage-tools__report {
  grid-column: 1 / -1;
}

.mortgage-tools__table-block {
  margin-top: 30px;
  border: 1px solid rgba(1, 22, 65, 0.08);
  background: var(--color-white);
}

.mortgage-tools__table-block h4 {
  margin: 0;
  padding: 18px 20px;
  background: var(--color-surface);
  color: var(--color-navy-950);
  font-size: 18px;
  font-weight: 700;
}

.mortgage-tools__table-scroll {
  overflow-x: auto;
}

.mortgage-tools__table-block table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
}

.mortgage-tools__table-block th,
.mortgage-tools__table-block td {
  padding: 13px 16px;
  border-top: 1px solid rgba(1, 22, 65, 0.08);
  text-align: left;
  white-space: nowrap;
}

.mortgage-tools__table-block th {
  color: var(--color-navy-950);
  font-weight: 700;
}

.mortgage-tools__table-block td {
  color: var(--color-body);
}

@media (max-width: 1199px) {
  .mortgage-tools__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mortgage-tools__panel {
    grid-template-columns: 1fr;
  }

  .mortgage-tools__results {
    width: min(100%, 520px);
  }
}

@media (max-width: 767px) {
  .mortgage-tools__tabs {
    grid-template-columns: 1fr;
  }

  .mortgage-tools__tab {
    min-height: 56px;
    text-align: left;
  }

  .mortgage-tools__panel {
    gap: 24px;
    padding: 22px;
  }

  .mortgage-tools__form h3 {
    font-size: 32px;
  }

  .mortgage-tools__results h3 {
    font-size: 28px;
  }

  .mortgage-tools__fields,
  .mortgage-tools__arm {
    grid-template-columns: 1fr;
  }

  .mortgage-tools__fields fieldset {
    grid-template-columns: 1fr;
  }

  .mortgage-tools__results {
    padding: 22px;
    box-shadow: 10px 10px 0 rgba(0, 100, 255, 0.08);
  }

  .mortgage-tools__result strong {
    font-size: 25px;
  }
}

.other-loans {
  width: 626px;
  max-width: 100%;
  padding-top: 14px;
}

.other-loans ul {
  list-style: none;
  margin: 17px 0 0;
  padding: 0;
}

.other-loans li + li {
  margin-top: 20px;
}

.other-loans a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 24px;
  background: var(--color-surface);
  color: var(--color-navy-950);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.other-loans a img {
  width: 15px;
  height: 11px;
}

.interior-hero--videos .interior-hero__image {
  object-position: center 49%;
}

.interior-hero--videos .interior-hero__content {
  top: 263px;
}

.interior-hero--blog-detail .interior-hero__content {
  top: 210px;
  width: min(100% - 40px, 1040px);
}

.interior-hero--blog-detail h1 {
  font-size: clamp(42px, 3.6vw, 58px);
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-align: center;
}

.videos-archive {
  min-height: 1712px;
  padding: 100px 0 110px;
  background: var(--color-white);
}

.videos-archive__grid {
  display: grid;
  grid-template-columns: minmax(0, 858px) minmax(300px, 424px);
  gap: 38px;
  align-items: start;
}

.video-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 409px));
  gap: 55px 40px;
}

.video-post-card img {
  width: 100%;
  height: 254px;
  object-fit: cover;
}

.video-post-card h3 {
  width: min(100%, 383px);
  margin: 28px 0 0;
  color: var(--color-navy-950);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.video-post-card h3 a,
.video-post-card__media {
  color: inherit;
  text-decoration: none;
}

.video-post-card__media {
  display: block;
}

.video-post-card p {
  width: min(100%, 383px);
  margin: 18px 0 0;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
}

.videos-sidebar {
  display: grid;
  gap: 45px;
  min-width: 0;
}

.archive-search {
  display: grid;
  grid-template-columns: 1fr 52px;
  align-items: center;
  width: 100%;
  height: 60px;
  border: 1px solid var(--color-blue-600);
  overflow: hidden;
  background: var(--color-white);
}

.archive-search input {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0 20px;
  color: var(--color-navy-950);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  appearance: none;
  background: transparent;
}

.archive-search input::placeholder {
  color: #808080;
  opacity: 1;
}

.archive-search button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 100%;
  border: 0;
  background: transparent;
}

.archive-search button img {
  width: 22px;
  height: 22px;
}

.archive-panel {
  width: 424px;
  min-height: 527px;
  padding: 34px 33px 38px;
  border: 1px solid var(--color-blue-600);
}

.archive-panel h2,
.latest-posts > h2 {
  margin: 0;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 37px;
}

.archive-panel h2::after {
  content: "";
  display: block;
  width: 322px;
  max-width: 100%;
  height: 1px;
  margin: 27px 0 39px;
  background: #d7dce8;
}

.archive-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-panel li + li {
  margin-top: 29px;
}

.archive-panel a {
  position: relative;
  display: inline-block;
  padding-left: 29px;
  color: #666666;
  font-size: 22px;
  line-height: 32px;
}

.archive-panel a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-blue-600);
}

.latest-posts {
  width: 424px;
}

.latest-posts article {
  display: grid;
  grid-template-columns: 174px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 30px;
}

.latest-posts article + article {
  margin-top: 23px;
}

.latest-posts article > img {
  width: 174px;
  height: 161px;
  object-fit: cover;
}

.latest-posts h3 {
  display: -webkit-box;
  margin: 17px 0 0;
  overflow: hidden;
  color: var(--color-navy-950);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.latest-posts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: var(--color-blue-600);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.latest-posts a img {
  width: 16px;
  height: 16px;
}

.archive-pagination {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 3px;
  color: var(--color-navy-950);
  font-size: 16px;
  line-height: 26px;
}

.archive-pagination a,
.archive-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 35px;
}

.archive-pagination a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

.archive-pagination a:hover,
.archive-pagination a:focus-visible {
  color: var(--color-blue-600);
  opacity: 1;
  outline: 0;
}

.archive-pagination .is-current {
  width: 35px;
  border: 1px solid var(--color-navy-950);
}

.archive-pagination__prev,
.archive-pagination__next,
.archive-pagination .prev,
.archive-pagination .next {
  min-width: auto;
  text-transform: capitalize;
}

.archive-pagination__prev,
.archive-pagination .prev {
  opacity: 0.5;
}

.blog-detail {
  padding: 100px 0 110px;
  background: var(--color-white);
}

.blog-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 858px) minmax(300px, 424px);
  gap: 38px;
  align-items: start;
}

.blog-detail__main {
  min-width: 0;
}

.blog-detail__image {
  margin: 0 0 34px;
}

.blog-detail__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

.blog-detail__main h2 {
  margin: 0;
  color: var(--color-navy-950);
  font-family: var(--font-heading);
  font-size: 55px;
  font-weight: 700;
  line-height: 1.09;
  text-transform: uppercase;
}

.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: var(--color-blue-600);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.blog-detail__content {
  margin-top: 30px;
  color: var(--color-body);
  font-size: 18px;
  line-height: 30px;
}

.blog-detail__content > * {
  margin-top: 0;
}

.blog-detail__content > * + * {
  margin-top: 22px;
}

.blog-detail__content h2,
.blog-detail__content h3,
.blog-detail__content h4 {
  color: var(--color-navy-950);
  line-height: 1.2;
}

.blog-detail__content h2 {
  font-size: 36px;
}

.blog-detail__content h3 {
  font-size: 28px;
}

.blog-detail__content a {
  color: var(--color-blue-600);
  font-weight: 600;
}

.blog-detail__content img {
  max-width: 100%;
  height: auto;
}

.process .site-container {
  position: relative;
  height: 786px;
}

.process .section-heading {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 815px;
  gap: 35px;
  transform: translateX(-50%);
}

.process .section-heading h2 {
  width: 815px;
  font-size: 55px;
  line-height: 60px;
  letter-spacing: -1.1px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.process .section-heading h2 span {
  display: inline;
}

.process-steps {
  position: relative;
  display: block;
  width: 100%;
  height: 305px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 315px;
  left: 360.5px;
  width: 164px;
  height: 21px;
  border: 0;
  background: url("../images/process-arrow-1.svg") center / contain no-repeat;
}

.process-steps::after {
  content: "";
  position: absolute;
  top: 296px;
  left: 808px;
  width: 165px;
  height: 24px;
  background: url("../images/process-arrow-2.png") center / contain no-repeat;
}

.process-steps li {
  position: absolute;
  top: 248px;
  z-index: 1;
}

.process-steps li:nth-child(1) {
  left: 31px;
  width: 368px;
}

.process-steps li:nth-child(2) {
  left: 456px;
  width: 410px;
}

.process-steps li:nth-child(3) {
  left: 960px;
  width: 294px;
}

.process-steps span {
  display: block;
  width: 172px;
  height: 181px;
  margin: -7px auto 18px;
}

.process-steps span img {
  width: 172px;
  height: 181px;
  object-fit: contain;
}

.process-steps h3 {
  margin: 0 0 24px;
  color: var(--color-navy-950);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
  white-space: nowrap;
}

.process-steps p {
  max-width: none;
  margin: 0 auto;
  color: var(--color-body);
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.process-steps li:nth-child(1) p {
  width: 368px;
}

.process-steps li:nth-child(2) p {
  width: 340px;
}

.process-steps li:nth-child(3) p {
  width: 294px;
}

.center-action {
  display: flex;
  justify-content: center;
}

.process .center-action {
  position: absolute;
  top: 616px;
  left: 523px;
}

.process .button--green {
  width: 274px;
  min-height: 60px;
}

.process .button--green::before {
  top: 10px;
  left: 10px;
  width: 274px;
  height: 60px;
}

.quote {
  position: relative;
  min-height: 1436px;
  padding: 100px 0 104px;
  overflow: visible;
  background: #b9d8ff;
}

.quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 917px;
  pointer-events: none;
  background: url("../images/quote-wave-render.png") center top / 1920px 917px no-repeat;
  transform: translateX(-50%);
}

.quote__inner {
  position: relative;
  z-index: 1;
  height: auto;
  min-height: 1232px;
}

.quote .section-heading {
  position: relative;
  width: 815px;
  gap: 35px;
  margin: 0 auto 72px;
  transform: none;
}

.quote .section-heading h2 {
  width: 727px;
  font-size: 55px;
  line-height: 60px;
  letter-spacing: -1.1px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.quote .section-heading h2 span {
  display: inline;
}

.quote-form {
  position: relative;
  z-index: 1;
  top: auto;
  left: auto;
  display: flex;
  flex-direction: column;
  width: 888px;
  min-height: 1095px;
  margin: 0 auto;
  padding: 44px 42px 48px;
  transform: none;
}

.form {
  background: var(--color-white);
  box-shadow: var(--shadow-form);
}

.contact-form {
  padding: 42px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 804px;
  margin: 0 0 35px;
}

.form-field label {
  color: var(--color-label);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  line-height: 26px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.form input,
.form select,
.form textarea,
.newsletter input {
  width: 100%;
  min-height: 50px;
  border: 0;
  background: var(--color-surface);
  color: var(--color-navy-950);
  padding: 10px 15px;
  font-size: 16px;
  line-height: 30px;
}

.quote-form select {
  appearance: none;
  background-image: url("../images/icon-chevron-down.svg");
  background-position: calc(100% - 19px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.form textarea {
  height: 156px;
  min-height: 156px;
  resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--color-muted);
  opacity: 1;
}

.form select {
  color: var(--color-muted);
}

.consent {
  position: relative;
  display: block;
  width: 804px;
  min-height: 115px;
  margin: -5px 0 38px;
  padding: 21px 20px;
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 16px;
  line-height: 30px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.consent input {
  position: absolute;
  top: 21px;
  left: 20px;
  width: 21px;
  height: 21px;
  margin: 0;
  appearance: none;
  box-sizing: border-box;
  cursor: pointer;
  opacity: 0;
}

.consent::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 20px;
  width: 21px;
  height: 21px;
  border: 1px solid var(--color-navy-950);
  border-radius: 2px;
  background: var(--color-white);
  box-sizing: border-box;
  pointer-events: none;
}

.consent:has(input:checked)::before {
  background: var(--color-blue-600);
  border-color: var(--color-blue-600);
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.75L4.75 8.5L12 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 10px;
}

.consent:has(input:focus-visible)::before {
  outline: 2px solid var(--color-blue-600);
  outline-offset: 3px;
}

.consent span {
  display: block;
  width: 721px;
  max-width: calc(100% - 59px);
  margin: 2px 0 0 39px;
}

.quote-form .button--full {
  width: 804px;
  min-height: 60px;
  margin: 0;
}

.quote-form .button--green::before {
  display: none;
}

.quote-form .button--green:hover,
.quote-form .button--green:focus-visible {
  transform: none;
}

.quote-form .button--green:hover img,
.quote-form .button--green:focus-visible img {
  transform: none;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--color-green-700);
  font-size: 14px;
  font-weight: 600;
}

.rate-quote-page[hidden],
.rate-quote-page__intro[hidden],
.rate-quote-page__calculator[hidden] {
  display: none;
}

body.rate-quote-open {
  overflow: hidden;
}

.rate-quote-page {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 24px 0;
  background: #f5f8fd;
  overflow: auto;
}

.rate-quote-page__inner {
  width: 100%;
  min-height: calc(100vh - 48px);
}

.rate-quote-page__close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy-950);
  box-shadow: 0 12px 32px rgba(1, 22, 65, 0.16);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.rate-quote-page__intro {
  display: grid;
  justify-items: center;
  gap: 26px;
  width: min(100%, 1040px);
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  padding: 32px 0;
  align-content: center;
  text-align: center;
}

.rate-quote-page h2 {
  margin: 0;
  color: var(--color-navy-950);
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.5vw, 65px);
  font-weight: 700;
  line-height: 1.08;
}

.rate-quote-page__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.rate-quote-page__actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(110deg, var(--color-green-700) 0%, var(--color-green-700) 38%, rgba(255, 255, 255, 0.26) 48%, var(--color-green-700) 58%, var(--color-green-700) 100%);
  background-size: 260% 100%;
  color: var(--color-white);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  padding: 18px 22px;
  text-align: center;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  animation: buttonshimmer 3s linear infinite;
}

.rate-quote-page__actions button:nth-child(2) {
  background: linear-gradient(110deg, var(--color-blue-600) 0%, var(--color-blue-600) 38%, rgba(255, 255, 255, 0.26) 48%, var(--color-blue-600) 58%, var(--color-blue-600) 100%);
  background-size: 260% 100%;
}

.rate-quote-page__actions button:nth-child(3) {
  background: linear-gradient(110deg, var(--color-navy-950) 0%, var(--color-navy-950) 38%, rgba(255, 255, 255, 0.26) 48%, var(--color-navy-950) 58%, var(--color-navy-950) 100%);
  background-size: 260% 100%;
}

.rate-quote-page__actions button:hover,
.rate-quote-page__actions button:focus-visible {
  box-shadow: 0 16px 34px rgba(1, 22, 65, 0.16);
  transform: translateY(-2px);
}

.rate-quote-page p {
  margin: 0;
  color: var(--color-body);
  font-size: 16px;
  line-height: 1.6;
}

.rate-quote-page__calculator {
  display: grid;
  align-content: start;
  gap: 20px;
  width: min(760px, calc(100% - 32px));
  min-height: auto;
  margin: 32px auto;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(1, 22, 65, 0.1);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 24px 70px rgba(1, 22, 65, 0.12);
}

.rate-quote-page__back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(1, 22, 65, 0.12);
  border-radius: 999px;
  background: #f7f9fc;
  color: var(--color-navy-950);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 16px;
}

.rate-quote-page__back::before {
  content: "\2190";
  font-size: 16px;
  line-height: 1;
}

.rate-quote-page__progress {
  height: 10px;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 100, 255, 0.12);
}

.rate-quote-page__progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-green-700), #0fbf71);
  transition: width 0.25s ease;
}

.rate-quote-page__calculator > .eyebrow {
  justify-self: center;
  margin-top: 2px;
}

.rate-quote-page__calculator h2 {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.15;
  text-align: center;
}

.rate-quote-page__calculator > p[data-rate-quote-description] {
  max-width: 620px;
  margin: -6px auto 0;
  color: #395476;
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

.rate-quote-page__fields {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.rate-quote-page__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rate-quote-page__choice {
  cursor: pointer;
}

.rate-quote-page__choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rate-quote-page__choice span {
  display: flex;
  align-items: center;
  min-height: 64px;
  border: 1px solid rgba(1, 22, 65, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--color-navy-950);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(1, 22, 65, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.rate-quote-page__choice:hover span {
  border-color: rgba(26, 143, 45, 0.42);
  transform: translateY(-1px);
}

.rate-quote-page__choice input:checked + span,
.rate-quote-page__choice input:focus-visible + span {
  border-color: var(--color-green-700);
  background: #ecfff0;
  box-shadow: 0 0 0 3px rgba(26, 143, 45, 0.14);
}

.rate-quote-page__input,
.rate-quote-page__range {
  display: grid;
  gap: 12px;
  color: var(--color-navy-950);
  font-size: 15px;
  font-weight: 700;
}

.rate-quote-page__input span {
  font-size: 14px;
  letter-spacing: 0;
}

.rate-quote-page__input input {
  min-height: 60px;
  border: 1px solid rgba(1, 22, 65, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--color-navy-950);
  font: inherit;
  font-size: 18px;
  padding: 0 16px;
  box-shadow: 0 10px 24px rgba(1, 22, 65, 0.05);
}

.rate-quote-page__input input:focus {
  border-color: var(--color-green-700);
  box-shadow: 0 0 0 3px rgba(26, 143, 45, 0.14);
  outline: 0;
}

.rate-quote-page__range span {
  justify-self: center;
  color: var(--color-green-700);
  font-size: 34px;
  font-weight: 800;
}

.rate-quote-page__range input {
  width: 100%;
  accent-color: var(--color-green-700);
}

.rate-quote-page__nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
}

.rate-quote-page__nav button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  padding: 12px 26px;
}

.rate-quote-page__nav button[type="button"] {
  border: 1px solid rgba(1, 22, 65, 0.12);
  background: #f7f9fc;
  color: var(--color-navy-950);
}

.rate-quote-page__nav button[type="submit"] {
  margin-left: auto;
  background: var(--color-green-700);
  color: var(--color-white);
  box-shadow: 0 14px 28px rgba(26, 143, 45, 0.2);
}

.rate-quote-page__nav button:hover,
.rate-quote-page__nav button:focus-visible {
  transform: translateY(-1px);
}

.rate-quote-page__nav button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.rate-quote-page__status {
  min-height: 24px;
  color: var(--color-green-700);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.rate-quote-page__calculator > p:last-child {
  color: #496486;
  font-size: 14px;
  text-align: center;
}

.rate-quote-page__calculator.is-success {
  align-content: center;
  max-width: 820px;
  min-height: min(720px, calc(100vh - 96px));
  padding: clamp(34px, 6vw, 64px) clamp(22px, 6vw, 72px);
}

.rate-quote-page__calculator.is-success > p:last-child {
  display: none;
}

.rate-quote-page__success {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.rate-quote-page__success-logo {
  width: min(100%, 430px);
  height: auto;
  margin-bottom: 8px;
}

.rate-quote-page__success h2 {
  margin: 0 0 4px;
  color: var(--color-navy-950);
  font-family: var(--font-body);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.18;
}

.rate-quote-page__success p {
  max-width: 640px;
  color: var(--color-navy-950);
  font-size: 16px;
  line-height: 1.65;
}

.rate-quote-page__success a {
  color: var(--color-blue-600);
  font-weight: 800;
  text-decoration: underline;
}

.rate-quote-page__success-note {
  margin-top: 8px;
  font-style: italic;
}

.rate-quote-page__success-privacy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 2px;
  color: var(--color-navy-950);
  font-size: 14px;
  font-weight: 800;
}

.rate-quote-page__success-privacy::before {
  content: "\1F512";
  font-size: 13px;
  line-height: 1;
}

.form .gform_wrapper,
.newsletter .gform_wrapper {
  margin: 0;
}

.form .gform_wrapper .gform_fields {
  display: block;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.form .gform_wrapper .gfield {
  width: 100%;
  margin: 0 0 35px;
}

.form .gform_wrapper .gfield--type-html {
  margin-bottom: 19px;
}

.form .gform_wrapper .gfield_label {
  display: block;
  margin: 0 0 17px;
  color: var(--color-label);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  line-height: 26px;
}

.form .gform_wrapper .gfield_required_text,
.newsletter .gform_wrapper .gfield_required_text {
  display: none;
}

.form .gform_wrapper .gfield_required,
.newsletter .gform_wrapper .gfield_required {
  color: #e3341c;
}

.form .gform_wrapper input[type="text"],
.form .gform_wrapper input[type="email"],
.form .gform_wrapper input[type="tel"],
.form .gform_wrapper select,
.form .gform_wrapper textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 0;
  background-color: var(--color-surface);
  color: var(--color-navy-950);
  padding: 10px 15px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 30px;
}

.form .gform_wrapper select {
  appearance: none;
  background-image: url("../images/icon-chevron-down.svg");
  background-position: calc(100% - 19px) 50%;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  color: var(--color-muted);
}

.form .gform_wrapper textarea {
  height: 156px;
  min-height: 156px;
  resize: vertical;
}

.contact-form .gform_wrapper textarea.textarea.large {
  height: 156px;
  min-height: 156px;
}

.form .gform_wrapper input::placeholder,
.form .gform_wrapper textarea::placeholder {
  color: var(--color-muted);
  opacity: 1;
}

.form .gform_wrapper .gform-phone .gform-field-label--type-sub {
  display: none;
}

.form .gform_wrapper .gform-phone__input-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 50px;
}

.form .gform_wrapper .ginput_country-selector_container {
  flex: 0 0 98px;
  width: 98px;
}

.form .gform_wrapper .gform-phone__country-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  border: 1px solid var(--color-muted);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-navy-950);
}

.form .gform_wrapper .ginput_phone_container {
  flex: 1 1 auto;
  min-width: 0;
}

.form .gform_wrapper .gform-phone__input {
  height: 50px;
  min-height: 50px;
  border-radius: 0;
}

.form .gform_wrapper .gfield_checkbox {
  position: relative;
  display: block;
  width: 100%;
  min-height: 29px;
  margin: 0;
}

.form .gform_wrapper .gfield_checkbox .gchoice {
  position: relative;
  min-height: 29px;
}

.form .gform_wrapper .gfield_checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 24px;
  height: 24px;
  margin: 0;
  appearance: none;
  opacity: 0;
  cursor: pointer;
}

.form .gform_wrapper .gfield_checkbox label {
  display: block;
  max-width: 100%;
  margin: 0;
  padding-left: 38px;
  color: var(--color-muted);
  cursor: pointer;
  font-size: 13px;
  line-height: 20px;
}

.form .gform_wrapper .gfield_description {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 20px;
  overflow: visible;
}

.form .gform_wrapper .gfield--type-checkbox .gfield_description {
  max-width: calc(100% - 38px);
  margin: 12px 0 0 38px;
}

.form .gform_wrapper .gfield_checkbox label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
  pointer-events: none;
  border: 1px solid var(--color-navy-950);
  border-radius: 2px;
  background: var(--color-white);
  box-sizing: border-box;
}

.form .gform_wrapper .gfield_checkbox input:checked + label::before {
  background-color: var(--color-blue-600);
  border-color: var(--color-blue-600);
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.75L4.75 8.5L12 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px 10px;
}

.form .gform_wrapper .gfield_checkbox input:focus-visible + label::before {
  outline: 2px solid var(--color-blue-600);
  outline-offset: 3px;
}

.form .gform_wrapper .gform_footer,
.form .gform_wrapper .gform_page_footer {
  margin: 0;
  padding: 0;
}

.form .gform_wrapper .gform_button,
.newsletter .gform_wrapper .gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border: 0;
  border-radius: 0;
  background: var(--color-green-700);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.quote-form .gform_wrapper .gform_button {
  width: 100%;
}

.quote-form .gform_wrapper input[type="submit"].gform_button.button {
  display: flex !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 60px !important;
  min-height: 60px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  appearance: none !important;
  background: var(--color-green-700) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transform: none !important;
}

.quote-form .gform_wrapper input[type="submit"].gform_button.button:hover,
.quote-form .gform_wrapper input[type="submit"].gform_button.button:focus-visible {
  background: var(--color-green-700) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
  transform: none !important;
}

.contact-form .gform_wrapper .gform_button,
.quick-contact .gform_wrapper .gform_button {
  min-width: 162px;
}

.contact-form .gform_wrapper input[type="submit"].gform_button.button {
  display: flex !important;
  width: 199px !important;
  min-width: 199px !important;
  height: 60px !important;
  min-height: 60px !important;
  margin: 25px auto 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  appearance: none !important;
  background: var(--color-green-700) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transform: none !important;
}

.contact-form .gform_wrapper input[type="submit"].gform_button.button:hover,
.contact-form .gform_wrapper input[type="submit"].gform_button.button:focus-visible {
  background: var(--color-green-700) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
  transform: none !important;
}

.quick-contact .gform_wrapper input[type="submit"].gform_button.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 162px !important;
  min-width: 162px !important;
  height: 60px !important;
  min-height: 60px !important;
  margin: 35px auto 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  appearance: none !important;
  background: var(--color-green-700) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transform: none !important;
}

.quick-contact .gform_wrapper input[type="submit"].gform_button.button:hover,
.quick-contact .gform_wrapper input[type="submit"].gform_button.button:focus-visible {
  background: var(--color-green-700) !important;
  color: var(--color-white) !important;
  box-shadow: none !important;
  transform: none !important;
}

.quote-form .gform_wrapper input[type="submit"].gform_button.button,
.contact-form .gform_wrapper input[type="submit"].gform_button.button,
.quick-contact .gform_wrapper input[type="submit"].gform_button.button {
  background: linear-gradient(110deg, var(--color-green-700) 0%, var(--color-green-700) 38%, rgba(255, 255, 255, 0.32) 48%, var(--color-green-700) 58%, var(--color-green-700) 100%) !important;
  background-size: 260% 100% !important;
  box-shadow: 0 4px 10px rgba(1, 22, 65, 0.12) !important;
  animation: wcl-submit-buttonshimmer 3s linear infinite !important;
}

.quote-form .gform_wrapper input[type="submit"].gform_button.button:hover,
.quote-form .gform_wrapper input[type="submit"].gform_button.button:focus-visible,
.contact-form .gform_wrapper input[type="submit"].gform_button.button:hover,
.contact-form .gform_wrapper input[type="submit"].gform_button.button:focus-visible,
.quick-contact .gform_wrapper input[type="submit"].gform_button.button:hover,
.quick-contact .gform_wrapper input[type="submit"].gform_button.button:focus-visible {
  background: var(--color-green-700) !important;
  box-shadow: 0 10px 20px rgba(1, 22, 65, 0.16) !important;
  animation: none !important;
}

.form .gform_wrapper input[type="submit"].gform_button,
.newsletter .gform_wrapper input[type="submit"].gform_button {
  background-image: linear-gradient(110deg, var(--color-green-700) 0%, var(--color-green-700) 38%, rgba(255, 255, 255, 0.3) 48%, var(--color-green-700) 58%, var(--color-green-700) 100%) !important;
  background-size: 260% 100% !important;
  box-shadow: 0 4px 10px rgba(1, 22, 65, 0.12) !important;
  animation: wcl-submit-buttonshimmer 3s linear infinite !important;
}

.form .gform_wrapper input[type="submit"].gform_button:hover,
.form .gform_wrapper input[type="submit"].gform_button:focus-visible,
.newsletter .gform_wrapper input[type="submit"].gform_button:hover,
.newsletter .gform_wrapper input[type="submit"].gform_button:focus-visible {
  background-color: var(--color-green-700) !important;
  box-shadow: 0 10px 20px rgba(1, 22, 65, 0.16) !important;
  animation: none !important;
}

@keyframes wcl-submit-buttonshimmer {
  0% {
    background-position: 160% 0;
  }

  100% {
    background-position: -160% 0;
  }
}

.contact-form .gform_wrapper .gform_footer,
.quick-contact .gform_wrapper .gform_footer {
  justify-content: center;
  text-align: center;
}

.form .gform_wrapper .gform_validation_errors {
  margin: 0 0 24px;
  border-color: var(--color-blue-600);
  box-shadow: none;
  padding: 22px 24px;
}

.form .gform_wrapper .gform_validation_errors > h2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: #e3341c;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 22px;
  text-transform: none;
  word-spacing: 2px;
}

.form .gform_wrapper .gform_validation_errors .gform-icon {
  flex: 0 0 auto;
  margin: 1px 0 0;
}

.quote-form:has(.gform_confirmation_wrapper) {
  min-height: 0;
  padding: 42px;
}

.contact-form:has(.gform_confirmation_wrapper) {
  min-height: 0;
  padding: 42px;
}

.quote-form .gform_confirmation_wrapper {
  width: 100%;
}

.contact-form .gform_confirmation_wrapper {
  width: 100%;
}

.quote-form .gform_confirmation_message {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  margin: 0;
  padding: 32px;
  background: var(--color-surface);
  color: var(--color-navy-950);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}

.contact-form .gform_confirmation_message {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  margin: 0;
  padding: 32px;
  background: var(--color-surface);
  color: var(--color-navy-950);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}

.form .gform_wrapper .gfield_validation_message,
.form .gform_wrapper .validation_message {
  border: 0;
  background: transparent;
  margin: 8px 0 0;
  padding: 0;
  color: #b3261e;
  font-size: 13px;
  line-height: 20px;
}

.contact-form .gform_wrapper .gfield,
.quick-contact .gform_wrapper .gfield {
  margin-bottom: 24px;
}

.contact-form .gform_wrapper .gfield_label,
.quick-contact .gform_wrapper .gfield_label {
  margin-bottom: 12px;
}

.contact-form .gform_wrapper .gfield_validation_message,
.quick-contact .gform_wrapper .gfield_validation_message,
.contact-form .gform_wrapper .validation_message,
.quick-contact .gform_wrapper .validation_message {
  margin-top: 7px;
}

.contact-form .gform_wrapper .gfield_error,
.quick-contact .gform_wrapper .gfield_error {
  margin-bottom: 30px;
}

.blogs {
  height: 1050px;
  padding: 100px 0 110px;
  background: var(--color-white);
}

.blogs .site-container {
  height: 100%;
}

.blogs .section-heading {
  gap: 35px;
}

.blogs .section-heading h2 {
  width: 491px;
  max-width: 100%;
  font-size: 55px;
  line-height: 60px;
  white-space: nowrap;
}

.blogs .section-heading h2 span {
  display: inline;
}

.blog-layout {
  display: grid;
  grid-template-columns: 648px 648px;
  gap: 24px;
  width: 1320px;
  max-width: 100%;
  height: 600px;
  margin: 35px auto 60px;
}

.blog-feature {
  position: relative;
  width: 648px;
  height: 600px;
  overflow: hidden;
  color: var(--color-white);
}

.blog-feature::after {
  content: "";
  position: absolute;
  right: -227px;
  bottom: -41px;
  left: -115px;
  height: 352px;
  background: linear-gradient(180deg, rgba(44, 41, 48, 0) 0%, #2c2930 100%);
}

.blog-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-feature__action {
  position: absolute;
  z-index: 2;
  top: 19px;
  right: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--color-white);
}

.blog-feature__action img {
  width: 38px;
  height: 38px;
}

.blog-feature__content {
  position: absolute;
  z-index: 1;
  top: 441px;
  left: 20px;
  width: 580px;
}

.blog-feature h3,
.blog-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.blog-feature p,
.blog-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.blog-feature h3 {
  width: 516px;
  min-height: 57px;
  margin-bottom: 25px;
}

.blog-feature p {
  width: 580px;
  min-height: 40px;
}

.blog-card {
  display: grid;
  grid-template-columns: 312px 312px;
  gap: 24px;
  width: 648px;
  height: 285px;
}

.blog-card + .blog-card {
  margin-top: 30px;
}

.blog-card > img {
  width: 312px;
  height: 285px;
  object-fit: cover;
  object-position: center;
}

.blog-card > div {
  padding-top: 28px;
  overflow: visible;
}

.blog-card h3 {
  display: -webkit-box;
  width: 312px;
  height: auto;
  max-height: none;
  margin-bottom: 12px;
  overflow: hidden;
  color: var(--color-navy-950);
  text-overflow: ellipsis;
  text-box-edge: auto;
  text-box-trim: none;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

.blog-card p {
  display: -webkit-box;
  width: 312px;
  height: auto;
  max-height: none;
  margin-bottom: 14px;
  overflow: hidden;
  color: var(--color-body);
  text-overflow: ellipsis;
  text-box-edge: auto;
  text-box-trim: none;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blogs .center-action .button {
  width: 215px;
  height: 60px;
  min-height: 60px;
  padding-inline: 30px;
}

.blogs .center-action .button::before {
  width: 215px;
}

.home-quote-cta {
  padding: 72px 0;
  background: var(--color-white);
}

.home-quote-cta__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
  margin: 0 auto;
  padding: 34px 38px;
  background: linear-gradient(135deg, var(--color-navy-950) 0%, var(--color-navy-900) 62%, #162341 100%);
  color: var(--color-white);
  box-shadow: 0 24px 60px rgba(6, 18, 42, 0.18);
}

.home-quote-cta__copy {
  width: min(100%, 610px);
}

.home-quote-cta .eyebrow {
  margin-bottom: 15px;
  color: var(--color-white);
}

.home-quote-cta h2 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
}

.home-quote-cta h2 span {
  display: block;
  font-weight: 300;
}

.home-quote-cta__copy > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.6;
}

.home-quote-cta .button {
  flex: 0 0 auto;
  width: 245px;
  min-height: 58px;
}

.home-quote-cta .button::before {
  width: 245px;
}

.reviews {
  min-height: 744px;
  padding: 100px 0 96px;
  background: var(--color-sky-100);
}

.reviews__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.reviews .section-heading {
  width: 510px;
  gap: 35px;
}

.reviews .section-heading h2 {
  width: 510px;
  font-size: 55px;
  line-height: 60px;
  white-space: nowrap;
}

.reviews .section-heading h2 span {
  display: inline;
}

.reviews__action {
  display: flex;
  align-items: flex-start;
  gap: 41px;
  padding-top: 8px;
}

.reviews__action p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  color: var(--color-navy-950);
  font-size: 25px;
  font-weight: 400;
  line-height: 28px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.reviews__action p img {
  width: 137px;
  height: 19px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.reviews__action .button {
  width: 232px;
  height: 60px;
  min-height: 60px;
  padding-inline: 30px;
}

.reviews__action .button::before {
  top: 10px;
  left: 8.5px;
  width: 234px;
  height: 60px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
  scrollbar-color: var(--color-green-700) rgba(2, 8, 19, 0.16);
  scrollbar-width: thin;
}

.review-grid::-webkit-scrollbar {
  width: 8px;
}

.review-grid::-webkit-scrollbar-track {
  background: rgba(2, 8, 19, 0.12);
}

.review-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--color-green-700);
}

.review-grid__sentinel {
  grid-column: 1 / -1;
  min-height: 48px;
  padding: 14px;
  color: var(--color-navy-950);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.review-card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 28px 23px 23px;
  flex-direction: column;
  background: #020813;
  color: var(--color-white);
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.review-card__source::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #74c043;
}

.review-card__stars {
  color: #74c043;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
}

.review-card__quote {
  margin: 24px 0 20px;
  color: #ecf5ff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.review-card__toggle {
  display: inline;
  margin: 0 0 0 4px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #3f7652;
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  cursor: pointer;
}

.review-card__toggle:hover,
.review-card__toggle:focus {
  color: #3f7652;
  text-decoration: underline;
}

.review-card footer {
  margin-top: auto;
  border: 1px solid #243249;
  padding: 16px;
  color: #dcecff;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact {
  min-height: 1045px;
  padding: 100px 0 60px;
  background: var(--color-white);
}

.contact h2 {
  margin-bottom: 26px;
  text-align: center;
  font-size: 55px;
  line-height: 60px;
}

.contact h2 span {
  font-weight: 300;
}

.contact__grid {
  display: grid;
  grid-template-columns: 473px 648px;
  gap: 199px;
  align-items: start;
  min-height: 799px;
}

.contact-info h3 {
  width: 312px;
  height: auto;
  margin: 21px 0 21px 3px;
  overflow: hidden;
  color: var(--color-blue-600);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.contact-info__role {
  width: 139px;
  margin: 0 0 27px 3px;
  color: var(--color-navy-950);
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.contact-info > p:not(.contact-info__role) {
  width: 467px;
  margin: 0 0 42px;
  color: var(--color-navy-950);
  font-size: 18px;
  line-height: 30px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.contact-info dl,
.contact-info dd {
  margin: 0;
}

.contact-info dl {
  display: grid;
  gap: 30px;
  margin-bottom: 72px;
}

.contact-info dl > div {
  display: grid;
  grid-template-columns: 85px 1fr;
  row-gap: 22px;
  column-gap: 16px;
  align-items: start;
}

.contact-info dt {
  display: contents;
}

.contact-info dt img {
  grid-row: 1 / span 2;
  width: 85px;
  height: 85px;
  border: 11px solid #d6e7ff;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 15px 30px rgba(0, 100, 255, 0.15);
  object-fit: contain;
  padding: 20px;
}

.contact-info dt span {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin-top: 13px;
  color: var(--color-blue-600);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.contact-info dd {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  color: var(--color-dark);
  font-size: 24px;
  line-height: 34px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.contact-info .button {
  width: auto;
  min-width: 320px;
  max-width: 100%;
  height: 60px;
  min-height: 60px;
  margin-left: 0;
  padding-inline: 30px;
}

.contact-info .button::before {
  width: calc(100% - 4px);
}

.contact-form {
  width: 648px;
  min-height: 799px;
  margin-left: auto;
  padding: 52px 44px 29px;
}

.form-intro {
  width: 467px;
  margin: 0 0 19px;
  color: var(--color-navy-950);
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.contact-form .form-field {
  width: 568px;
  margin-bottom: 35px;
}

.contact-form .form-field:nth-of-type(4) {
  margin-bottom: 16px;
}

.contact-form .button {
  display: flex;
  width: 199px;
  height: 60px;
  min-height: 60px;
  margin: 25px auto 0;
  padding-inline: 70px;
}

.contact-form .button::before {
  display: none;
}

.contact-form .button:hover,
.contact-form .button:focus-visible {
  transform: none;
}

.contact-form .button:hover img,
.contact-form .button:focus-visible img {
  transform: none;
}

.contact-form .consent {
  width: 546px;
  min-height: 29px;
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 13px;
  line-height: 20px;
}

.contact-form .consent input {
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
}

.contact-form .consent::before {
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
}

.contact-form .consent span {
  width: 508px;
  max-width: calc(100% - 38px);
  margin: 0 0 0 38px;
}

.default-page {
  padding: 100px 0 110px;
  background: var(--color-white);
}

.default-page__content {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 58px 64px 64px;
  background: var(--color-white);
  box-shadow: var(--shadow-form);
  overflow-wrap: anywhere;
}

.default-page__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-green-700);
}

.default-page__content > *:first-child {
  margin-top: 0;
}

.default-page__content > *:last-child {
  margin-bottom: 0;
}

.default-page__content h1,
.default-page__content h2,
.default-page__content h3 {
  color: var(--color-navy-950);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.default-page__content h1 {
  margin: 0 0 28px;
  font-size: clamp(36px, 3.4vw, 52px);
}

.default-page__content h2 {
  margin: 42px 0 20px;
  font-size: clamp(28px, 2.6vw, 38px);
}

.default-page__content h3 {
  margin: 34px 0 16px;
  font-size: 24px;
}

.default-page__content p,
.default-page__content li {
  color: var(--color-body);
  font-size: 18px;
  line-height: 1.75;
}

.default-page__content p {
  margin: 0 0 22px;
}

.default-page__content ul,
.default-page__content ol {
  margin: 0 0 26px;
  padding-left: 26px;
}

.default-page__content a {
  color: var(--color-blue-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.default-page__content a:hover,
.default-page__content a:focus-visible {
  color: var(--color-green-700);
}

.map__fallback,
.map__fallback img,
.map__embed {
  display: block;
  width: 100%;
  height: 580px;
}

.map__fallback img,
.map__embed {
  border: 0;
  object-fit: cover;
}

.not-found {
  padding: 110px 0 120px;
  background: var(--color-white);
}

.not-found__inner {
  max-width: 780px;
  text-align: center;
}

.not-found .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.not-found h2 {
  margin: 0;
  color: var(--color-navy-950);
  font-family: var(--font-heading);
  font-size: 55px;
  font-weight: 700;
  letter-spacing: -1.1px;
  line-height: 60px;
  text-transform: uppercase;
}

.not-found h2 span {
  display: block;
  font-weight: 300;
}

.not-found__inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--color-body);
  font-size: 18px;
  line-height: 30px;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 38px;
}

.button--blue {
  background: var(--color-blue-600);
  background-image: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.28) 48%, transparent 58%, transparent 100%);
  background-size: 260% 100%;
}

.button--blue::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
  width: calc(100% - 1px);
  height: 100%;
  border: 1px solid var(--color-blue-600);
  pointer-events: none;
  transition: transform var(--transition-cta);
  will-change: transform;
}

.button--blue:hover::before,
.button--blue:focus-visible::before {
  transform: translate3d(-10px, -10px, 0);
}

.site-footer {
  position: relative;
  height: 697px;
  overflow: hidden;
  background: var(--color-navy-950);
  color: var(--color-white);
  padding: 0;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: block;
  height: 564px;
}

.footer-brand__logo {
  position: absolute;
  top: 125px;
  left: 0;
  width: 352px;
  height: 82px;
  margin: 0;
  display: block;
}

.footer-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.footer-brand p {
  position: absolute;
  top: 257px;
  left: 0;
  width: 389px;
  min-height: 103px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links {
  position: absolute;
  top: 406px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  width: auto;
  height: 40px;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.social-links li {
  position: static;
  display: flex;
  width: 40px;
  height: 40px;
  margin: 0;
}

.footer-grid .social-links li + li {
  margin: 0;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  transition: background-color 250ms ease, border-color 250ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--color-blue-600);
  background: var(--color-blue-600);
}

.social-links img {
  display: block;
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.social-links a[aria-label="Facebook"] img {
  width: 9px;
  height: 16px;
}

.social-links a[aria-label="YouTube"] img {
  width: 17px;
  height: 12px;
}

.social-links a[aria-label="LinkedIn"] img {
  width: 15px;
  height: 15px;
}

.footer-grid nav,
.newsletter {
  position: absolute;
  top: 125px;
}

.footer-grid nav:first-of-type {
  left: 465px;
  width: 162px;
}

.footer-grid nav:nth-of-type(2) {
  left: 703px;
  width: 154px;
}

.newsletter {
  left: 932px;
  width: 388px;
}

.footer-grid h2,
.newsletter h2 {
  margin: 0 0 36px;
  color: var(--color-blue-600);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.footer-grid li + li {
  margin-top: 14px;
}

.footer-grid a {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-transform: uppercase;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.newsletter input {
  width: 388px;
  height: 60px;
  min-height: 60px;
  margin-bottom: 25px;
  background: #182B52;
  color: #8393B4;
}

.newsletter button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 388px;
  height: 60px;
  min-height: 60px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(63, 118, 82, 0.16) 48%, transparent 58%, transparent 100%),
    var(--color-white);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  color: var(--color-navy-950);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  animation: buttonshimmerLayered 3s linear infinite;
}

.newsletter .gform_wrapper .gform_fields {
  display: block;
}

.newsletter .gform_wrapper .gfield {
  margin: 0 0 18px;
}

.newsletter .gform_wrapper .gform_validation_errors {
  width: 388px;
  max-width: 100%;
  margin: 0 0 26px;
  padding: 18px 20px;
  border: 1px solid rgba(227, 52, 28, 0.75);
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
}

.newsletter .gform_wrapper .gform_validation_errors > h2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: #ff4a35;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 21px;
  text-transform: none;
  word-spacing: 2px;
}

.newsletter .gform_wrapper .gform_validation_errors .gform-icon {
  flex: 0 0 auto;
  margin: 1px 0 0;
}

.newsletter .gform_wrapper .gfield_label {
  display: none;
}

.newsletter .gform_wrapper input[type="email"] {
  width: 388px;
  max-width: 100%;
  height: 60px;
  min-height: 60px;
  border: 0;
  border-radius: 0;
  background: #182B52;
  color: #8393B4;
  padding: 10px 15px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 30px;
}

.newsletter .gform_wrapper input[type="email"]::placeholder {
  color: #8393B4;
  opacity: 1;
}

.newsletter .gform_wrapper .gfield_validation_message,
.newsletter .gform_wrapper .validation_message {
  margin: 8px 0 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: #ff4a35;
  font-size: 13px;
  line-height: 20px;
}

.newsletter .gform_wrapper .gform_footer {
  margin: 0;
  padding: 0;
}

.newsletter .gform_wrapper .gform_button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 388px !important;
  height: 60px !important;
  max-width: 100%;
  min-height: 60px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  appearance: none !important;
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(63, 118, 82, 0.16) 48%, transparent 58%, transparent 100%),
    var(--color-white) !important;
  background-size: 260% 100%, 100% 100% !important;
  background-position: 160% 0, 0 0 !important;
  color: var(--color-navy-950) !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  transform: none !important;
  animation: buttonshimmerLayered 3s linear infinite !important;
}

.footer-bottom {
  position: absolute;
  top: 564px;
  left: 50%;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: min(100% - 40px, 1320px);
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  transform: translateX(-50%);
}

.footer-bottom p {
  width: 509px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

.footer-watermark {
  position: absolute;
  top: 347px;
  right: 0;
  width: 440px;
  height: 307px;
  pointer-events: none;
}

@media (max-width: 1600px) {
  .hero__image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1439px) {
  .site-container {
    width: min(100% - 48px, var(--container));
  }

  .primary-nav {
    justify-content: space-between;
    gap: 0;
  }

  .carousel-button--prev {
    left: -18px;
  }

  .carousel-button--next {
    right: -18px;
  }
}

@media (max-width: 1599px) and (min-width: 1280px) {
  .loan-carousel {
    display: grid;
    grid-template-columns: 1fr 54px 24px 54px 1fr;
    justify-content: center;
    row-gap: 22px;
    margin-top: 48px;
    padding-bottom: 0;
  }

  .loan-carousel__viewport {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .loan-carousel .carousel-button {
    position: relative;
    top: auto;
    bottom: auto;
    width: 54px;
    height: 54px;
    transform: none;
  }

  .loan-carousel .carousel-button--prev {
    grid-column: 2;
    grid-row: 2;
    left: auto;
  }

  .loan-carousel .carousel-button--next {
    grid-column: 4;
    grid-row: 2;
    right: auto;
    left: auto;
  }

  .loan-carousel .carousel-button img {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 1320px) and (min-width: 1280px) {
  .hero__image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
  }

  .contact__grid {
    grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
    gap: 40px;
  }

  .contact-info,
  .contact-info > p:not(.contact-info__role),
  .contact-form,
  .contact-form .form-field,
  .contact-form .consent,
  .form-intro {
    width: 100%;
  }

  .contact-form {
    margin-left: 0;
  }

  .contact-form .consent span {
    width: auto;
    max-width: calc(100% - 38px);
  }

  .blog-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    gap: 20px;
  }

  .blog-feature,
  .blog-list,
  .blog-card {
    width: 100%;
  }

  .blog-card {
    grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
    gap: 20px;
  }

  .blog-card > img,
  .blog-card h3,
  .blog-card p {
    width: 100%;
  }

  .loan-grid {
    width: 100%;
  }

  .loan-card {
    width: auto;
    max-width: none;
  }

  .loan-card p {
    width: 100%;
  }

  .smart-rates__content {
    width: 520px;
  }

  .smart-rates__media {
    left: 552px;
    width: 680px;
  }

  .footer-grid nav:first-of-type {
    left: 430px;
  }

  .footer-grid nav:nth-of-type(2) {
    left: 625px;
  }

  .newsletter {
    left: 844px;
    width: 388px;
  }

  .footer-watermark {
    right: 0;
    left: auto;
    width: 360px;
    height: auto;
  }
}

.section.about-profile {
  min-height: 879px;
  padding: 96px 0 80px;
}

.section.about-benefits {
  height: 677px;
  min-height: 677px;
  padding: 74px 0 102px;
}

.section.about-testimonials {
  height: 817px;
  min-height: 817px;
  padding: 100px 0;
}

@media (max-width: 1279px) {
  .interior-hero--videos {
    height: 360px;
    min-height: 360px;
  }

  .interior-hero--videos .interior-hero__image {
    height: 360px;
    object-position: 39% center;
  }

  .interior-hero--videos .interior-hero__vector {
    top: 92px;
  }

  .interior-hero--videos .interior-hero__content {
    top: 165px;
  }

  .site-container {
    width: min(100% - 48px, var(--container));
  }

  .site-header {
    position: fixed;
  }

  .header-utility {
    height: auto;
    min-height: 76px;
  }

  .header-utility__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
  }

  .brand,
  .header-identity,
  .header-contact {
    position: static;
  }

  .header-identity {
    margin-right: auto;
    font-size: 14px;
  }

  .header-contact {
    width: auto;
    height: auto;
  }

  .header-contact__phone {
    margin-left: 0;
  }

  .header-contact__label {
    display: none;
  }

  .header-contact {
    margin-right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    box-shadow: 0 18px 34px rgba(1, 22, 65, 0.22);
  }

  body.menu-open .header-nav {
    display: block;
  }

  .primary-nav {
    display: block;
    height: auto;
    min-height: 0;
    padding: 22px 0;
  }

  .primary-nav > li,
  .primary-nav > li:nth-child(n) {
    width: 100%;
  }

  .primary-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .primary-nav a,
  .submenu-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 17px 0;
  }

  .primary-nav > li > a::after,
  .primary-nav > li > .submenu-toggle::after {
    display: none;
  }

  .submenu {
    position: static;
    max-height: 0;
    min-width: 0;
    padding: 0 0 0 18px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 180ms ease;
  }

  .has-submenu.is-open .submenu {
    max-height: 260px;
  }

  .submenu a {
    color: var(--color-white);
  }

  .hero {
    height: auto;
    min-height: 580px;
  }

  .hero__image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
  }

  .hero__vector {
    inset: 120px 0 auto auto;
    width: 70%;
    height: calc(100% - 120px);
    object-fit: cover;
  }

  .hero__content {
    top: 50%;
    height: auto;
    transform: translate(-50%, -42%);
  }

  .hero h1 {
    position: static;
    font-size: clamp(42px, 7vw, 58px);
    line-height: 1.08;
  }

  .hero__content > p:not(.hero__types),
  .hero__types,
  .hero .button--white {
    position: static;
    transform: none;
  }

  .hero__content > p:not(.hero__types) {
    margin: 18px auto 0;
  }

  .hero__types {
    margin-top: 24px;
    font-size: 22px;
    line-height: 1.2;
    flex-wrap: wrap;
    white-space: normal;
  }

  .hero .button--white {
    margin-top: 32px;
    margin-bottom: 36px;
  }

  .hero__content > p.hero__scenario {
    position: static;
    gap: 22px;
    width: min(100%, 760px);
    margin: 28px auto 0;
    font-size: 18px;
    letter-spacing: 3px;
    transform: none;
    white-space: normal;
  }

  .hero__content > p.hero__scenario::before,
  .hero__content > p.hero__scenario::after {
    flex-basis: 80px;
    max-width: 120px;
  }

  .hero .button--white:hover,
  .hero .button--white:focus-visible {
    transform: translate3d(7.5px, 10px, 0);
  }

  .trust-strip__inner,
  .smart-rates__grid,
  .blog-layout,
  .reviews__top,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    height: auto;
  }

  .trust-strip__inner {
    height: auto;
  }

  .trust-strip__inner::before,
  .trust-strip__inner::after {
    display: none;
  }

  .trust-strip__inner > :nth-child(3) {
    grid-column: auto;
  }

  .trust-strip--reviews .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .trust-review {
    min-height: 112px;
    padding: 16px 14px;
  }

  .trust-review strong,
  .trust-review--experience strong {
    font-size: 22px;
  }

  .trust-review--yelp strong {
    font-size: 28px;
  }

  .site-footer {
    height: auto;
    padding: 72px 0 32px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    gap: 44px 36px;
  }

  .footer-brand__logo,
  .footer-brand p,
  .social-links,
  .footer-grid nav,
  .footer-grid nav:first-of-type,
  .footer-grid nav:nth-of-type(2),
  .newsletter,
  .footer-bottom,
  .footer-watermark {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    transform: none;
  }

  .footer-grid nav:first-of-type,
  .footer-grid nav:nth-of-type(2) {
    left: auto;
    width: auto;
  }

  .footer-brand__logo {
    width: min(100%, 352px);
    height: 82px;
    margin-bottom: 30px;
  }

  .footer-brand p {
    width: min(100%, 389px);
    margin-bottom: 28px;
  }

  .social-links {
    width: 188px;
  }

  .newsletter input,
  .newsletter button,
  .newsletter .gform_wrapper .gform_button {
    width: 100% !important;
  }

  .footer-bottom {
    width: min(100% - 48px, 1320px);
    margin: 54px auto 0;
  }

  .footer-bottom p {
    width: min(100%, 509px);
  }

  .footer-watermark {
    position: absolute;
    right: 0;
    bottom: -70px;
    left: auto;
    width: 320px;
    height: auto;
  }

  .trust-strip__inner {
    gap: 28px;
    padding: 34px 0;
    text-align: center;
  }

  .trust-strip p,
  .trust-strip__headline {
    justify-self: center;
    width: min(100%, 500px);
    height: auto;
    margin: 0;
  }

  .loan-programs .section-heading {
    width: min(100%, 544px);
  }

  .loan-programs .section-heading h2 {
    width: 100%;
    white-space: normal;
  }

  .loan-grid {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding: 0;
  }

  .loan-carousel {
    display: grid;
    grid-template-columns: 1fr 54px 24px 54px 1fr;
    justify-content: center;
    row-gap: 22px;
    max-width: 100%;
    margin-top: 48px;
    padding-bottom: 0;
    overflow: visible;
  }

  .loan-carousel__viewport {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .loan-card {
    width: 100%;
    max-width: none;
  }

  .loan-card p {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .loan-carousel .carousel-button {
    position: relative;
    top: auto;
    bottom: auto;
    width: 54px;
    height: 54px;
    transform: none;
  }

  .loan-carousel .carousel-button--prev {
    grid-column: 2;
    grid-row: 2;
    left: auto;
  }

  .loan-carousel .carousel-button--next {
    grid-column: 4;
    grid-row: 2;
    right: auto;
    left: auto;
  }

  .loan-carousel .carousel-button img {
    width: 54px;
    height: 54px;
  }

  .smart-rates {
    height: auto;
    padding: 86px 0;
  }

  .smart-rates__grid {
    display: grid;
    height: auto;
    gap: 54px;
  }

  .smart-rates__content {
    position: static;
    width: 100%;
  }

  .smart-rates .section-heading h2,
  .smart-rates__content > p {
    width: min(100%, 620px);
    max-width: 620px;
  }

  .feature-list {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 568px);
    height: auto;
    gap: 18px 24px;
    margin-bottom: 40px;
  }

  .feature-list li {
    position: static;
    white-space: normal;
  }

  .smart-rates .button--green {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
  }

  .smart-rates .button--green::before {
    width: 100%;
  }

  .smart-rates__photo-main {
    position: absolute;
    right: 0;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .smart-rates__media {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 680px);
    height: 560px;
  }

  .smart-rates__overlap-frame {
    left: 0;
    top: 178px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    gap: 38px;
    margin: 0;
  }

  .process,
  .process .site-container {
    height: auto;
  }

  .process {
    padding: 86px 0;
  }

  .process .section-heading {
    position: static;
    width: 100%;
    margin: 0 auto 58px;
    transform: none;
  }

  .process .section-heading h2 {
    width: 100%;
  }

  .process-steps::before,
  .process-steps::after {
    display: none;
  }

  .process-steps li,
  .process-steps li:nth-child(1),
  .process-steps li:nth-child(2),
  .process-steps li:nth-child(3) {
    position: static;
    width: 100%;
  }

  .process-steps h3 {
    white-space: normal;
  }

  .process-steps li:nth-child(1) p,
  .process-steps li:nth-child(2) p,
  .process-steps li:nth-child(3) p {
    width: min(100%, 420px);
  }

  .process .center-action {
    position: static;
    margin-top: 44px;
  }

  .quote,
  .quote__inner {
    height: auto;
  }

  .quote {
    padding: 86px 0;
  }

  .quote__inner::before,
  .quote__inner::after {
    width: 520px;
    height: 640px;
  }

  .quote__inner::before {
    left: -360px;
  }

  .quote__inner::after {
    right: -300px;
  }

  .quote .section-heading {
    position: static;
    width: 100%;
    margin: 0 auto 58px;
    transform: none;
  }

  .quote .section-heading h2 {
    width: 100%;
  }

  .quote-form {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 888px);
    height: auto;
    margin: 0 auto;
    transform: none;
  }

  .form-field,
  .consent,
  .quote-form .button--full {
    width: 100%;
  }

  .home-quote-cta {
    padding: 64px 0;
  }

  .home-quote-cta__card {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .blogs {
    height: auto;
    padding: 86px 0;
  }

  .blogs .site-container {
    height: auto;
  }

  .blogs .section-heading h2 {
    width: 100%;
    white-space: normal;
  }

  .reviews {
    height: auto;
    padding: 86px 0;
  }

  .reviews__top {
    align-items: flex-start;
  }

  .reviews .section-heading,
  .reviews .section-heading h2 {
    width: 100%;
    white-space: normal;
  }

  .reviews__action {
    padding-top: 0;
  }

  .contact {
    height: auto;
    padding: 86px 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 54px;
  }

  .contact-info,
  .contact-info h3,
  .contact-info__role,
  .contact-info > p:not(.contact-info__role) {
    width: 100%;
  }

  .contact-form {
    width: min(100%, 648px);
    height: auto;
    margin-inline: auto;
  }

  .form-intro {
    width: 100%;
  }

  .contact-form .form-field {
    width: 100%;
  }

  .contact-form .consent {
    width: 100%;
  }

  .blog-layout {
    grid-template-columns: 1fr;
    width: min(100%, 648px);
    height: auto;
    gap: 30px;
    margin: 42px auto 50px;
  }

  .blog-feature {
    width: 100%;
    height: auto;
    aspect-ratio: 648 / 600;
    min-height: 480px;
  }

  .blog-feature__content {
    top: auto;
    left: 20px;
    right: 20px;
    bottom: 31px;
    width: auto;
  }

  .blog-feature h3,
  .blog-feature p {
    width: min(100%, 580px);
  }

  .blog-card {
    grid-template-columns: 312px 1fr;
    width: 100%;
    max-width: 648px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    width: 100%;
    margin-left: 0;
  }

  .map__fallback,
  .map__fallback img,
  .map__embed {
    height: 430px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero h1 {
    font-size: clamp(48px, 5.2vw, 56px);
    line-height: 1.16;
  }

  .section-heading h2,
  .loan-programs .section-heading h2,
  .smart-rates .section-heading h2,
  .process .section-heading h2,
  .quote .section-heading h2,
  .blogs .section-heading h2,
  .reviews .section-heading h2,
  .contact h2 {
    font-size: clamp(40px, 4.5vw, 46px);
    line-height: 1.18;
  }

  .loan-card h3,
  .process-steps h3,
  .blog-feature h3,
  .blog-card h3,
  .contact-info h3 {
    font-size: clamp(28px, 3.1vw, 34px);
    line-height: 1.22;
  }

  .contact-info dt span {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
  }

  .contact-info dd {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
  }

  .eyebrow,
  .loan-card p,
  .loan-card a,
  .blog-card a,
  .form-field input,
  .form-field select,
  .form-field textarea,
  .footer-brand p,
  .footer-grid a {
    font-size: 16px;
  }

  .form-status,
  .review-card footer {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .hero .button--white::before,
  .button--green::before {
    display: none;
  }

  .contact-info .button {
    min-width: 0;
    width: 100%;
    padding-inline: 16px;
    font-size: 14px;
  }

  body {
    font-size: 16px;
    line-height: 1.7;
  }

  .site-container {
    width: min(100% - 36px, var(--container));
  }

  .videos-archive {
    padding: 56px 0 68px;
  }

  .video-post-grid,
  .videos-sidebar {
    grid-template-columns: 1fr;
  }

  .video-post-card h3 {
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.3;
  }

  .video-post-card p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 26px;
  }

  .archive-search {
    height: 56px;
    grid-template-columns: 1fr 48px;
  }

  .archive-search input {
    font-size: 16px;
  }

  .archive-search button {
    width: 48px;
  }

  .archive-panel {
    padding: 26px 22px 30px;
  }

  .archive-panel h2,
  .latest-posts > h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .archive-panel a {
    font-size: 18px;
    line-height: 28px;
  }

  .archive-panel li + li {
    margin-top: 20px;
  }

  .latest-posts article {
    grid-template-columns: 112px 1fr;
    gap: 14px;
  }

  .latest-posts article > img {
    width: 112px;
    height: 104px;
  }

  .latest-posts h3 {
    font-size: 18px;
    line-height: 24px;
  }

  .latest-posts a {
    margin-top: 14px;
    font-size: 14px;
  }

  .archive-pagination {
    flex-wrap: wrap;
    gap: 16px;
  }

  .loan-detail {
    padding: 56px 0 70px;
  }

  .loan-detail__main > h2 {
    font-size: clamp(36px, 11vw, 44px);
    line-height: 1.08;
  }

  .loan-detail__main > p,
  .loan-detail__fit p,
  .quick-contact .form-intro {
    font-size: 16px;
    line-height: 26px;
  }

  .loan-detail__panel,
  .quick-contact,
  .calculator-card {
    padding: 28px 20px;
  }

  .loan-detail__panel h3,
  .eligibility h3,
  .loan-detail__fit h3,
  .other-loans h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .eligibility__grid {
    grid-template-columns: 1fr;
  }

  .eligibility-card {
    min-height: 76px;
  }

  .eligibility-card strong,
  .other-loans a {
    font-size: 20px;
  }

  .loan-detail__image figcaption {
    left: 20px;
    bottom: 22px;
    max-width: calc(100% - 40px);
    font-size: 18px;
    line-height: 26px;
  }

  .calculator-card__icon {
    width: 86px;
    height: 86px;
  }

  .calculator-card__icon img {
    width: 50px;
    height: 50px;
  }

  .header-utility__inner {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 10px 0;
  }

  .brand img {
    width: 154px;
  }

  .header-identity {
    order: 2;
    width: 100%;
    margin: -2px 0 0;
    text-align: center;
  }

  .header-contact {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .header-contact__icon {
    display: none;
  }

  .header-contact__phone {
    font-size: 15px;
  }

  .header-nav {
    max-height: calc(100vh - 97px);
  }

  .hero {
    min-height: 620px;
  }

  .hero__content {
    width: min(100% - 36px, 620px);
    margin-top: 0;
    transform: translate(-50%, -50%);
  }

  .hero__content > p:not(.hero__types) {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero__vector {
    width: 100%;
    opacity: 0.7;
  }

  .hero__types {
    flex-wrap: wrap;
    font-size: 14px;
    letter-spacing: 1.4px;
  }

  .hero__content > p.hero__scenario {
    gap: 12px;
    margin-top: 22px;
    font-size: 14px;
    letter-spacing: 2px;
  }

  .hero__content > p.hero__scenario::before,
  .hero__content > p.hero__scenario::after {
    flex-basis: 40px;
    max-width: 64px;
  }

  .loan-grid {
    grid-template-columns: 1fr;
  }

  .loan-carousel {
    grid-template-columns: 1fr 46px 20px 46px 1fr;
    row-gap: 18px;
    margin-top: 42px;
  }

  .loan-carousel .carousel-button {
    width: 46px;
    height: 46px;
  }

  .loan-carousel .carousel-button--prev {
    left: auto;
  }

  .loan-carousel .carousel-button--next {
    right: auto;
    left: auto;
  }

  .loan-carousel .carousel-button img {
    width: 46px;
    height: 46px;
  }

  .button {
    min-height: 52px;
    padding-inline: 22px;
    font-size: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    gap: 18px;
  }

  .smart-rates__grid {
    gap: 38px;
  }

  .smart-rates .section-heading h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.05;
  }

  .smart-rates__content > p {
    font-size: 16px;
    line-height: 26px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    gap: 18px;
    margin-inline: auto;
  }

  .feature-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    width: 100%;
    color: var(--color-navy-950);
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
  }

  .feature-list img {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  .smart-rates__media {
    width: 100%;
    height: 420px;
    min-height: 420px;
  }

  .smart-rates__photo-main {
    width: 78%;
    height: 420px;
  }

  .smart-rates__overlap-frame {
    top: 150px;
    width: 190px;
    height: 258px;
    background-size: 190px 258px;
  }

  .smart-rates__photo-overlap {
    top: 8px;
    width: 184px;
    height: 242px;
  }

  .quote {
    padding: 72px 0;
  }

  .quote .section-heading h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.05;
  }

  .quote-form {
    padding: 28px 18px;
  }

  .quote-form:has(.gform_confirmation_wrapper) {
    padding: 24px 18px;
  }

  .home-quote-cta {
    padding: 54px 0;
  }

  .home-quote-cta__card {
    padding: 28px 22px;
  }

  .home-quote-cta h2 {
    font-size: 30px;
  }

  .home-quote-cta .button,
  .home-quote-cta .button::before {
    width: 100%;
  }

  .contact-form:has(.gform_confirmation_wrapper) {
    padding: 24px 18px;
  }

  .quote-form .gform_confirmation_message {
    min-height: 140px;
    padding: 24px 18px;
    font-size: 16px;
    line-height: 26px;
  }

  .contact-form .gform_confirmation_message {
    min-height: 140px;
    padding: 24px 18px;
    font-size: 16px;
    line-height: 26px;
  }

  .form-field {
    gap: 12px;
    margin-bottom: 24px;
  }

  .consent {
    grid-template-columns: 21px 1fr;
    gap: 14px;
    min-height: 0;
    margin: 4px 0 24px;
    padding: 18px;
    font-size: 13px;
    line-height: 1.6;
  }

  .quote-form,
  .contact-form {
    padding: 24px 18px;
  }

  .consent {
    padding: 16px;
  }

  .blog-layout {
    width: 100%;
    gap: 26px;
  }

  .blog-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    gap: 18px;
  }

  .blog-card > img {
    width: 100%;
    height: 210px;
  }

  .blog-card > div {
    padding-top: 0;
    min-height: 0;
    overflow: visible;
  }

  .blog-card h3,
  .blog-card p {
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
    display: block;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    text-box-edge: auto;
    text-box-trim: none;
  }

  .blog-card h3 {
    margin-bottom: 12px;
  }

  .blog-card p {
    margin-bottom: 18px;
  }

  .blog-feature {
    min-height: 440px;
  }

  .blog-feature__action {
    top: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }

  .blog-feature__action img {
    width: 24px;
    height: 24px;
  }

  .reviews__top,
  .reviews__action {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact h2 {
    margin-bottom: 34px;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.05;
  }

  .contact-info h3,
  .contact-info__role,
  .contact-info > p:not(.contact-info__role) {
    margin-left: 0;
  }

  .contact-info dl {
    gap: 28px;
    margin-bottom: 40px;
  }

  .contact-info dl > div {
    grid-template-columns: 62px minmax(0, 1fr);
    column-gap: 14px;
  }

  .contact-info,
  .contact-info dl,
  .contact-info dl > div,
  .contact-info dt span,
  .contact-info dd,
  .contact-form,
  .form-intro,
  .contact-form .form-field,
  .contact-form .consent,
  .contact-form .consent span {
    min-width: 0;
    max-width: 100%;
  }

  .contact-info dd,
  .contact-info dt span,
  .contact-form .consent span {
    overflow-wrap: anywhere;
  }

  .contact-info dt span {
    margin-top: 8px;
    font-size: 20px;
    line-height: 28px;
  }

  .contact-info dt img {
    width: 62px;
    height: 62px;
    border-width: 8px;
    padding: 14px;
  }

  .contact-info dd {
    padding-left: 0;
    font-size: 19px;
    line-height: 28px;
  }

  .contact-form .consent {
    margin: 4px 0 24px;
    padding: 0;
    line-height: 20px;
  }

  .contact-form .consent span {
    width: auto;
    max-width: calc(100% - 34px);
    margin-left: 34px;
  }

  .map__fallback,
  .map__fallback img,
  .map__embed {
    height: 330px;
  }

  .not-found {
    padding: 64px 0 76px;
  }

  .not-found h2 {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.14;
  }

  .not-found__inner > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 26px;
  }

  .not-found__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-watermark {
    right: 0;
    width: 230px;
  }

  .footer-grid h2,
  .newsletter h2 {
    margin-bottom: 18px;
  }

  .footer-grid li + li {
    margin-top: 12px;
  }

  .footer-brand p,
  .footer-grid a {
    font-size: 15px;
    line-height: 26px;
  }

  .footer-bottom {
    width: min(100% - 40px, 1320px);
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.22;
  }

  .section-heading h2,
  .loan-programs .section-heading h2,
  .smart-rates .section-heading h2,
  .process .section-heading h2,
  .quote .section-heading h2,
  .blogs .section-heading h2,
  .reviews .section-heading h2,
  .contact h2 {
    font-size: clamp(28px, 9vw, 34px);
    line-height: 1.24;
  }

  .loan-card h3,
  .process-steps h3,
  .blog-feature h3,
  .blog-card h3,
  .contact-info h3 {
    font-size: clamp(22px, 6.4vw, 26px);
    line-height: 1.25;
  }

  .contact-info dt span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
  }

  .contact-info dd {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
  }

  .trust-strip p,
  .trust-strip__headline {
    font-size: clamp(23px, 7vw, 32px);
    line-height: 1.08;
  }

  .trust-reviews {
    grid-template-columns: 1fr;
    width: min(100%, 320px);
  }

  .trust-review {
    min-height: 108px;
  }

  .process-steps p,
  .blog-feature p,
  .blog-card p,
  .contact-info__role,
  .contact-info > p:not(.contact-info__role),
  .footer-brand p,
  .footer-grid a {
    font-size: 15px;
    line-height: 1.7;
  }

  .eyebrow,
  .consent,
  .review-card footer {
    font-size: 14px;
  }
}

@media (max-width: 1279px) {
  .videos-archive {
    min-height: 0;
    padding: 80px 0 86px;
  }

  .videos-archive__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 32px;
  }

  .video-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 24px;
  }

  .video-post-card img,
  .video-post-card h3,
  .video-post-card p,
  .archive-search,
  .archive-panel,
  .latest-posts {
    width: 100%;
  }

  .video-post-card img {
    height: auto;
    aspect-ratio: 409 / 254;
  }

  .archive-panel {
    min-height: 0;
    padding-inline: 26px;
  }

  .latest-posts article {
    grid-template-columns: 130px 1fr;
  }

  .latest-posts article > img {
    width: 130px;
    height: 120px;
  }

  .latest-posts h3 {
    margin-top: 2px;
    font-size: 20px;
    line-height: 28px;
  }

  .latest-posts a {
    margin-top: 20px;
  }

  .loan-detail {
    min-height: 0;
    padding: 72px 0 86px;
  }

  .loan-detail__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 30px;
  }

  .loan-detail__main {
    padding-top: 0;
  }

  .loan-detail__main > h2,
  .loan-detail__main > p,
  .loan-detail__panel,
  .loan-detail__fit p,
  .loan-detail__image,
  .quick-contact,
  .calculator-card,
  .other-loans {
    width: 100%;
  }

  .loan-detail__sidebar > .quick-contact,
  .loan-detail__sidebar > .calculator-card,
  .loan-detail__sidebar > .other-loans {
    inline-size: 100%;
    max-inline-size: 100%;
    min-inline-size: 0;
  }

  .eligibility__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .loan-detail__image {
    height: auto;
    aspect-ratio: 648 / 504;
  }

  .quick-contact {
    min-height: 0;
    padding: 34px 30px;
  }

  .quick-contact input,
  .quick-contact textarea {
    width: 100%;
  }

  .calculator-card {
    min-height: 0;
    padding-inline: 30px;
  }

  .loan-options-programs {
    min-height: 0;
  }

  .loan-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loan-options-grid .loan-card {
    width: auto;
    max-width: none;
  }

  .section.about-profile,
  .about-profile {
    min-height: 0;
    padding: 80px 0;
  }

  .about-profile__grid {
    grid-template-columns: minmax(280px, 424px) 1fr;
    gap: 56px;
  }

  .about-profile__media {
    width: 100%;
    height: auto;
    aspect-ratio: 424 / 500;
  }

  .about-profile__media img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .about-profile__content > p,
  .about-profile__stats,
  .about-profile__content,
  .about-profile .section-heading h2 {
    width: 100%;
  }

  .about-profile .section-heading {
    align-items: center;
    text-align: center;
  }

  .about-profile .section-heading h2 {
    margin-inline: auto;
  }

  .section.about-benefits,
  .about-benefits {
    height: auto;
    min-height: 0;
    padding: 80px 0;
  }

  .about-benefit-grid,
  .testimonial-grid {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .about-benefit-card {
    width: auto;
    height: auto;
    padding-inline: 18px;
  }

  .section.about-testimonials,
  .about-testimonials {
    height: auto;
    min-height: 0;
    padding: 80px 0;
  }

  .testimonial-card {
    width: auto;
    height: auto;
    padding-inline: 20px;
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .about-profile {
    min-height: 0;
    padding: 80px 0;
  }

  .about-profile__grid {
    grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
    gap: 36px;
  }

  .about-profile__media {
    width: 100%;
    height: auto;
    aspect-ratio: 637 / 680;
  }

  .about-profile__media img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .about-profile__content,
  .about-profile__content > p,
  .about-profile__stats,
  .about-profile .section-heading h2 {
    width: 100%;
    max-width: 100%;
  }

  .about-benefits {
    min-height: 0;
    padding: 80px 0;
  }

  .about-benefit-grid {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 46px;
  }

  .about-benefit-card {
    width: auto;
    height: auto;
    min-height: 276px;
    padding-inline: 18px;
  }
}

@media (min-width: 900px) and (max-width: 1279px) {
  .about-profile__stats {
    grid-template-columns: 0.92fr 1.18fr 0.9fr;
    padding: 14px 14px;
  }

  .about-profile__stat {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 9px;
    min-height: 52px;
    padding-right: 12px;
  }

  .about-profile__stat + .about-profile__stat {
    padding-left: 12px;
  }

  .about-profile__stat-icon {
    width: 36px;
    height: 36px;
  }

  .about-profile__stat-icon svg {
    width: 18px;
    height: 18px;
  }

  .about-profile__stat strong {
    font-size: 28px;
  }

  .about-profile__stat span:not(.about-profile__stat-icon) {
    max-width: 92px;
    font-size: 8px;
    letter-spacing: 0.2px;
    line-height: 1.08;
  }
}

@media (min-width: 1280px) and (max-width: 1359px) {
  .loan-options-programs {
    min-height: 0;
  }

  .loan-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loan-options-grid .loan-card {
    width: auto;
    max-width: none;
  }

  .videos-archive {
    min-height: 0;
    padding: 80px 0 86px;
  }

  .videos-archive__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 32px;
  }

  .video-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 24px;
  }

  .video-post-card img,
  .video-post-card h3,
  .video-post-card p,
  .archive-search,
  .archive-panel,
  .latest-posts {
    width: 100%;
  }

  .video-post-card img {
    height: auto;
    aspect-ratio: 409 / 254;
  }

  .archive-panel {
    min-height: 0;
    padding-inline: 26px;
  }

  .latest-posts article {
    grid-template-columns: 130px 1fr;
  }

  .latest-posts article > img {
    width: 130px;
    height: 120px;
  }

  .latest-posts h3 {
    margin-top: 2px;
    font-size: 20px;
    line-height: 28px;
  }

  .latest-posts a {
    margin-top: 20px;
  }

  .loan-detail {
    min-height: 0;
    padding: 72px 0 86px;
  }

  .loan-detail__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 30px;
  }

  .loan-detail__main {
    padding-top: 0;
  }

  .loan-detail__main > h2,
  .loan-detail__main > p,
  .loan-detail__panel,
  .loan-detail__fit p,
  .loan-detail__image,
  .quick-contact,
  .calculator-card,
  .other-loans {
    width: 100%;
  }

  .loan-detail__sidebar > .quick-contact,
  .loan-detail__sidebar > .calculator-card,
  .loan-detail__sidebar > .other-loans {
    inline-size: 100%;
    max-inline-size: 100%;
    min-inline-size: 0;
  }

  .eligibility__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .loan-detail__image {
    height: auto;
    aspect-ratio: 648 / 504;
  }

  .quick-contact {
    min-height: 0;
    padding: 34px 30px;
  }

  .quick-contact input,
  .quick-contact textarea {
    width: 100%;
  }

  .calculator-card {
    min-height: 0;
    padding-inline: 30px;
  }
}

@media (max-width: 1023px) {
  .interior-hero--blog-detail .interior-hero__content {
    top: 148px;
    width: min(100% - 40px, 860px);
  }

  .interior-hero--blog-detail h1 {
    font-size: clamp(34px, 5vw, 42px);
    line-height: 1.16;
  }

  .videos-archive__grid {
    grid-template-columns: 1fr;
  }

  .videos-sidebar {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .archive-search {
    grid-column: 1 / -1;
  }

  .latest-posts {
    grid-column: 1 / -1;
  }

  .latest-posts article {
    grid-template-columns: 174px 1fr;
  }

  .latest-posts article > img {
    width: 174px;
    height: 161px;
  }

  .loan-detail__grid {
    grid-template-columns: 1fr;
  }

  .loan-detail__sidebar {
    gap: 24px;
    justify-items: stretch;
  }

  .loan-detail__sidebar > .quick-contact,
  .loan-detail__sidebar > .calculator-card,
  .loan-detail__sidebar > .other-loans {
    inline-size: 100%;
    max-inline-size: 100%;
    min-inline-size: 0;
  }

  .loan-detail__panel {
    min-height: 0;
  }

  .eligibility__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .other-loans {
    padding-top: 0;
  }

  .loan-options-grid {
    grid-template-columns: 1fr;
  }

  .default-page {
    padding: 80px 0 90px;
  }

  .default-page__content {
    padding: 46px 40px 50px;
  }

  .about-profile__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-profile__media {
    width: min(100%, 424px);
    height: auto;
    aspect-ratio: 424 / 500;
    margin: 0 auto;
  }

  .about-profile__content {
    padding-top: 0;
  }

  .about-benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .about-testimonials__top {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .about-testimonials .section-heading {
    width: 100%;
  }

  .testimonial-card {
    min-height: 0;
  }

  .testimonial-card > p {
    min-height: 0;
    -webkit-line-clamp: unset;
  }
}

@media (max-width: 767px) {
  .interior-hero {
    height: 430px;
    min-height: 430px;
  }

  .interior-hero__image {
    width: 100%;
    height: 430px;
    object-position: center;
  }

  .interior-hero--videos {
    height: 290px;
    min-height: 290px;
  }

  .interior-hero--videos .interior-hero__image {
    height: 290px;
    object-position: 36% center;
  }

  .interior-hero__vector {
    top: 145px;
    width: 330px;
    height: 230px;
    opacity: 0.82;
  }

  .interior-hero--videos .interior-hero__vector {
    top: 70px;
  }

  .interior-hero__content {
    top: 205px;
  }

  .interior-hero--conventional .interior-hero__content {
    top: 205px;
  }

  .interior-hero--videos .interior-hero__content {
    top: 128px;
  }

  .interior-hero--blog-detail .interior-hero__content {
    top: 175px;
    width: min(100% - 32px, 100%);
  }

  .interior-hero--blog-detail h1 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.18;
  }

  .interior-hero h1,
  .about-profile .section-heading h2,
  .about-benefits .section-heading h2,
  .about-testimonials .section-heading h2 {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.14;
  }

  .about-benefits .section-heading h2 {
    white-space: normal;
  }

  .interior-hero p {
    width: min(100%, 286px);
    margin-top: 16px;
  }

  .section.about-profile,
  .section.about-benefits,
  .section.about-testimonials,
  .about-profile,
  .about-benefits,
  .about-testimonials {
    padding: 64px 0;
  }

  .about-profile__content > p,
  .about-profile__stats,
  .about-benefits .section-heading p:not(.eyebrow),
  .testimonial-card > p {
    font-size: 16px;
    line-height: 26px;
  }

  .about-profile__stats {
    grid-template-columns: 0.92fr 1.16fr 0.92fr;
    gap: 0;
    padding: 14px 12px;
  }

  .about-profile__stat,
  .about-profile__stat + .about-profile__stat {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 8px;
    min-height: 48px;
    padding: 0 9px;
  }

  .about-profile__stat + .about-profile__stat::before {
    display: block;
    top: 5px;
    bottom: 5px;
  }

  .about-profile__stat-icon {
    width: 32px;
    height: 32px;
  }

  .about-profile__stat-icon svg {
    width: 17px;
    height: 17px;
  }

  .about-profile__stat strong {
    font-size: 27px;
  }

  .about-profile__stat span:not(.about-profile__stat-icon) {
    max-width: 82px;
    font-size: 8px;
    letter-spacing: 0.15px;
    line-height: 1.08;
  }
}

@media (max-width: 1279px) {
  .about-profile__stats {
    padding: 12px 9px;
  }

  .about-profile__stat,
  .about-profile__stat + .about-profile__stat {
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 7px;
    padding: 0 7px;
  }

  .about-profile__stat-icon {
    width: 28px;
    height: 28px;
  }

  .about-profile__stat-icon svg {
    width: 15px;
    height: 15px;
  }

  .about-profile__stat strong {
    font-size: 24px;
  }

  .about-profile__stat span:not(.about-profile__stat-icon) {
    max-width: 76px;
    font-size: 7px;
    line-height: 1.08;
  }
}

@media (max-width: 767px) {
  .about-benefit-grid {
    margin-top: 42px;
  }

  .about-benefit-card span,
  .about-benefit-card img {
    width: 88px;
    height: 88px;
  }

  .about-testimonials__controls {
    display: none;
  }

  .testimonial-card header {
    grid-template-columns: 58px 1fr auto;
    gap: 14px;
    margin-bottom: 28px;
  }

  .testimonial-card__avatar {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 767px) {
  .video-post-grid,
  .videos-sidebar {
    grid-template-columns: 1fr;
  }

  .archive-search,
  .latest-posts {
    grid-column: auto;
  }

  .archive-search,
  .archive-panel,
  .latest-posts {
    inline-size: 100%;
    max-inline-size: 100%;
    min-inline-size: 0;
    width: 100%;
  }

  .latest-posts article {
    inline-size: 100%;
    max-inline-size: 100%;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
  }

  .latest-posts article > img {
    width: 112px;
    height: 104px;
  }

  .eligibility__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199px) {
  .personal-credentials {
    padding: 28px 0 0;
  }

  .personal-credentials .site-container {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 34px;
  }

  .personal-credentials__content {
    padding: 0 0 44px;
  }

  .personal-credentials__content > h2 {
    font-size: clamp(48px, 6vw, 66px);
  }

  .personal-credentials__media {
    min-height: 420px;
  }


  .blog-detail__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 424px);
    gap: 30px;
  }

  .blog-detail__main h2 {
    font-size: clamp(40px, 4.5vw, 46px);
    line-height: 1.18;
  }
}

@media (max-width: 767px) {
  .personal-credentials {
    padding: 44px 0 0;
  }

  .personal-credentials .site-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .personal-credentials__content {
    max-width: none;
    padding-bottom: 26px;
  }

  .personal-credentials__badge {
    margin-bottom: 20px;
    padding: 7px 10px;
  }

  .personal-credentials__badge img {
    width: 82px;
  }

  .personal-credentials__badge span {
    font-size: 14px;
  }

  .personal-credentials__content > h2 {
    margin-bottom: 12px;
    font-size: clamp(42px, 13vw, 54px);
  }

  .personal-credentials__content > p {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .personal-credentials__recognition {
    margin-bottom: 22px;
    font-size: 11px;
  }

  .personal-credentials__help {
    padding: 0;
  }

  .personal-credentials__help-heading {
    align-items: flex-start;
    gap: 18px;
  }

  .personal-credentials__help-heading h2 {
    font-size: 28px;
  }

  .personal-credentials__help-heading h3 {
    font-size: 28px;
  }

  .personal-credentials__help-heading span {
    font-size: 34px;
  }

  .personal-credentials__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .personal-credentials__actions button {
    min-height: 54px;
    font-size: 15px;
  }

  .personal-credentials__privacy {
    align-items: flex-start;
    font-size: 13px;
  }

  .personal-credentials__media {
    min-height: 0;
  }

  .personal-credentials__media img {
    width: min(86vw, 330px);
    margin-top: 6px;
  }

  .rate-quote-page {
    padding: 12px 0;
  }

  .rate-quote-page__inner,
  .rate-quote-page__intro,
  .rate-quote-page__calculator {
    min-height: calc(100vh - 24px);
  }

  .rate-quote-page__close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .rate-quote-page__actions {
    grid-template-columns: 1fr;
  }

  .rate-quote-page__actions button {
    min-height: 58px;
    font-size: 16px;
  }

  .rate-quote-page__calculator {
    align-content: start;
    width: min(100% - 24px, 760px);
    min-height: auto;
    margin: 56px auto 18px;
    padding: 24px 16px;
  }

  .rate-quote-page__calculator.is-success {
    align-content: start;
    min-height: auto;
    padding: 30px 18px 34px;
  }

  .rate-quote-page__calculator h2 {
    font-size: clamp(27px, 9vw, 34px);
  }

  .rate-quote-page__calculator > p[data-rate-quote-description] {
    font-size: 15px;
  }

  .rate-quote-page__fields {
    gap: 12px;
  }

  .rate-quote-page__choices {
    grid-template-columns: 1fr;
  }

  .rate-quote-page__choice span {
    min-height: 56px;
    font-size: 15px;
    padding: 13px 14px;
  }

  .rate-quote-page__input input {
    min-height: 54px;
    font-size: 16px;
  }

  .rate-quote-page__range span {
    font-size: 28px;
  }

  .rate-quote-page__nav {
    flex-direction: column;
  }

  .rate-quote-page__nav button {
    width: 100%;
  }

  .rate-quote-page__nav button[type="submit"] {
    margin-left: 0;
  }

  .rate-quote-page__success {
    gap: 12px;
  }

  .rate-quote-page__success-logo {
    width: min(100%, 300px);
  }

  .rate-quote-page__success h2 {
    font-size: clamp(24px, 8vw, 29px);
  }

  .rate-quote-page__success p {
    font-size: 15px;
    line-height: 1.55;
  }

  .interior-hero--blog-detail .interior-hero__content {
    top: 126px;
    width: min(100% - 32px, 100%);
  }

  .interior-hero--blog-detail h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.18;
  }

  .blog-detail {
    padding: 64px 0 76px;
  }

  .blog-detail__grid {
    grid-template-columns: 1fr;
  }

  .blog-detail__image {
    margin-bottom: 26px;
  }

  .blog-detail__main h2 {
    font-size: clamp(28px, 9vw, 34px);
    line-height: 1.24;
  }

  .blog-detail__content {
    font-size: 16px;
    line-height: 28px;
  }

  .default-page {
    padding: 64px 0 76px;
  }

  .default-page__content {
    padding: 38px 24px 42px;
  }

  .default-page__content h1 {
    font-size: clamp(24px, 6.2vw, 28px);
    line-height: 1.18;
    overflow-wrap: normal;
    word-break: normal;
  }

  .default-page__content p,
  .default-page__content li {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .interior-hero--blog-detail .interior-hero__content {
    top: 148px;
    width: min(100% - 28px, 100%);
  }

  .interior-hero--blog-detail h1 {
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.14;
  }
}

@media (max-width: 360px) {
  .interior-hero--blog-detail .interior-hero__content {
    top: 150px;
    width: min(100% - 24px, 100%);
  }

  .interior-hero--blog-detail h1 {
    font-size: clamp(23px, 7vw, 25px);
    line-height: 1.13;
  }
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) {
  overflow: visible;
  padding: 40px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5fc 100%);
  color: var(--color-navy-950);
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .site-container {
  display: block;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  align-items: center;
  gap: 34px;
  border: 1px solid rgba(12, 26, 55, 0.12);
  background: linear-gradient(135deg, #071021 0%, #0e1830 62%, #171927 100%);
  padding: 28px 34px;
  color: var(--color-white);
  box-shadow: 0 22px 54px rgba(13, 31, 58, 0.14);
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__summary {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__copy {
  min-width: 0;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__copy > h2 {
  margin: 0 0 7px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(32px, 3.3vw, 50px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__copy > p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.35;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__badge {
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin-bottom: 13px;
  border-radius: 6px;
  padding: 7px 12px;
  gap: 7px;
  white-space: nowrap;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__badge img {
  flex: 0 0 auto;
  width: 95px;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__recognition {
  margin: 0;
  font-size: 12px;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__media {
  width: 142px;
  height: 142px;
  min-height: 0;
  align-self: center;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 18%, #3d414b, #101827 76%);
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__media::before {
  display: none;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin-top: 0;
  object-fit: cover;
  object-position: center 22%;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__help {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__help-heading {
  margin-bottom: 16px;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__help-heading h3 {
  font-size: clamp(26px, 2.5vw, 34px);
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__help-heading span {
  right: 4px;
  font-size: 34px;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  margin-bottom: 18px;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__actions button {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  min-width: 0;
  white-space: normal;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__actions button:first-child {
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.26) 48%, transparent 58%, transparent 100%),
    linear-gradient(135deg, var(--color-green-700) 0%, #315f42 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(63, 118, 82, 0.28);
  animation: buttonshimmerLayered 3s linear infinite;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__actions button:nth-child(2),
.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__actions button:nth-child(3) {
  border-color: rgba(63, 118, 82, 0.32);
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(63, 118, 82, 0.12) 48%, transparent 58%, transparent 100%),
    linear-gradient(135deg, #ffffff 0%, #f3f8f5 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  color: var(--color-green-700);
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.08);
  animation: buttonshimmerLayered 3s linear infinite;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__actions button:hover,
.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__actions button:focus-visible {
  animation: none;
}

.personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__actions button:nth-child(3) {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) {
    padding: 32px 0;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__help {
    width: 100%;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__help-heading span {
    display: none;
  }
}

@media (max-width: 767px) {
  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) {
    padding: 28px 0;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__card {
    gap: 24px;
    padding: 24px 18px;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__summary {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__media {
    width: 118px;
    height: 118px;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__badge {
    margin-right: auto;
    margin-left: auto;
    white-space: normal;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__copy > h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__copy > p {
    font-size: 16px;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__help-heading {
    justify-content: center;
    margin-bottom: 18px;
    text-align: center;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__help-heading h3 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .personal-credentials:not(.personal-credentials--sidebar):not(.personal-credentials--home-banner) .personal-credentials__privacy {
    justify-content: center;
    text-align: left;
  }
}

.personal-credentials--home-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 165px 0 0;
  background:
    linear-gradient(112deg, rgba(63, 118, 82, 0.2) 0%, rgba(63, 118, 82, 0) 34%),
    linear-gradient(108deg, var(--color-navy-950) 0%, var(--color-navy-900) 54%, var(--color-navy-800) 100%);
  color: var(--color-white);
}

.personal-credentials--home-banner .site-container {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(40px, 7vw, 96px);
  min-height: 548px;
}

.personal-credentials--home-banner .personal-credentials__content {
  position: relative;
  z-index: 2;
  max-width: 665px;
  padding: 52px 0 76px;
}

.personal-credentials--home-banner .personal-credentials__badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 7px 12px;
  gap: 6px;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.personal-credentials--home-banner .personal-credentials__badge img {
  flex: 0 0 auto;
  width: 96px;
  height: auto;
  margin-right: 3px;
  border-radius: 3px;
  background: var(--color-white);
  padding: 3px 6px;
}

.personal-credentials--home-banner .personal-credentials__badge strong {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
}

.personal-credentials--home-banner .personal-credentials__badge span {
  color: #ffbd17;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.personal-credentials--home-banner .personal-credentials__badge small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.personal-credentials--home-banner .personal-credentials__badge i {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1473e6;
}

.personal-credentials--home-banner .personal-credentials__badge i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 5px;
  height: 3px;
  border-bottom: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

.personal-credentials--home-banner .personal-credentials__content > h2 {
  margin: 0 0 16px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(58px, 5vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.personal-credentials--home-banner .personal-credentials__content > p {
  margin: 0 0 40px;
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.35;
}

.personal-credentials--home-banner .personal-credentials__help {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.personal-credentials--home-banner .personal-credentials__help-heading {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 440px;
  margin-bottom: 18px;
}

.personal-credentials--home-banner .personal-credentials__help-heading h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(32px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.personal-credentials--home-banner .personal-credentials__help-heading span {
  display: none;
}

.personal-credentials--home-banner .personal-credentials__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 665px;
  margin-bottom: 24px;
}

.personal-credentials--home-banner .personal-credentials__actions button {
  min-width: 0;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 12px 20px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: normal;
  cursor: pointer;
  background-size: 260% 100%, 100% 100%;
  transition: transform var(--transition-cta), box-shadow var(--transition-cta), background-color var(--transition-cta);
  animation: buttonshimmerLayered 3s linear infinite;
}

.personal-credentials--home-banner .personal-credentials__actions button:first-child {
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.26) 48%, transparent 58%, transparent 100%),
    linear-gradient(135deg, var(--color-green-700) 0%, #315f42 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  color: var(--color-white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.personal-credentials--home-banner .personal-credentials__actions button:nth-child(2),
.personal-credentials--home-banner .personal-credentials__actions button:nth-child(3) {
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(63, 118, 82, 0.16) 48%, transparent 58%, transparent 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, #f3f8f5 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  color: var(--color-navy-950);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.1);
}

.personal-credentials--home-banner .personal-credentials__actions button:hover,
.personal-credentials--home-banner .personal-credentials__actions button:focus-visible {
  transform: translateY(-2px);
}

.personal-credentials--home-banner .personal-credentials__privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.personal-credentials--home-banner .personal-credentials__privacy span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #08b75d;
  color: var(--color-navy-950);
  font-size: 15px;
  font-weight: 900;
}

.personal-credentials--home-banner .personal-credentials__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 548px;
  align-self: end;
}

.personal-credentials--home-banner .personal-credentials__media::before {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 82%;
  height: 82%;
  border-radius: 999px 999px 0 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 64%);
  filter: blur(12px);
}

.personal-credentials--home-banner .personal-credentials__media img {
  position: relative;
  width: min(100%, 392px);
  max-height: 590px;
  object-fit: contain;
  object-position: bottom center;
}

.loan-detail__sidebar > .personal-credentials--sidebar {
  width: 626px;
  max-width: 100%;
  padding: 0;
  background: transparent;
  color: var(--color-white);
  overflow: visible;
}

.personal-credentials--sidebar .personal-credentials__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 30px;
  border: 0;
  background: linear-gradient(135deg, #071021 0%, #0d1830 58%, #171927 100%);
  box-shadow: var(--shadow-form);
}

.personal-credentials--sidebar .personal-credentials__summary {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.personal-credentials--sidebar .personal-credentials__media {
  width: 112px;
  height: 112px;
  min-height: 0;
  align-self: center;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 18%, #3d414b, #101827 76%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.personal-credentials--sidebar .personal-credentials__media::before {
  display: none;
}

.personal-credentials--sidebar .personal-credentials__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin-top: 0;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.1);
}

.personal-credentials--sidebar .personal-credentials__badge {
  width: 100%;
  min-width: 0;
  min-height: 34px;
  gap: 6px;
  padding: 6px 10px;
  overflow: visible;
}

.personal-credentials--sidebar .personal-credentials__badge img {
  flex: 0 0 auto;
  width: 82px;
  padding: 2px 4px;
}

.personal-credentials--sidebar .personal-credentials__badge strong,
.personal-credentials--sidebar .personal-credentials__badge span {
  flex: 0 0 auto;
  font-size: 12px;
}

.personal-credentials--sidebar .personal-credentials__badge small {
  flex: 0 0 auto;
  font-size: 10px;
}

.personal-credentials--sidebar .personal-credentials__badge i {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
}

.personal-credentials--sidebar .personal-credentials__copy > h2 {
  color: var(--color-white);
  font-family: var(--font-body);
  margin-bottom: 6px;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.personal-credentials--sidebar .personal-credentials__copy > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 11px;
  font-size: 15px;
}

.personal-credentials--sidebar .personal-credentials__recognition {
  width: max-content;
  max-width: 100%;
  font-size: 10px;
}

.personal-credentials--sidebar .personal-credentials__help-heading h3 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: clamp(27px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.12;
  text-transform: none;
}

.personal-credentials--sidebar .personal-credentials__help-heading span {
  right: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.personal-credentials--sidebar .personal-credentials__actions {
  grid-template-columns: 1fr;
  gap: 10px;
}

.personal-credentials--sidebar .personal-credentials__actions button {
  width: 100%;
}

.personal-credentials--sidebar .personal-credentials__actions button:first-child {
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(255, 255, 255, 0.26) 48%, transparent 58%, transparent 100%),
    linear-gradient(135deg, var(--color-green-700) 0%, #315f42 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(63, 118, 82, 0.28);
  animation: buttonshimmerLayered 3s linear infinite;
}

.personal-credentials--sidebar .personal-credentials__actions button:nth-child(2),
.personal-credentials--sidebar .personal-credentials__actions button:nth-child(3) {
  border-color: rgba(63, 118, 82, 0.32);
  background:
    linear-gradient(110deg, transparent 0%, transparent 38%, rgba(63, 118, 82, 0.12) 48%, transparent 58%, transparent 100%),
    linear-gradient(135deg, #ffffff 0%, #f3f8f5 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  color: var(--color-green-700);
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.08);
  animation: buttonshimmerLayered 3s linear infinite;
}

.personal-credentials--sidebar .personal-credentials__privacy {
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1199px) {
  .personal-credentials__card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .personal-credentials__help {
    max-width: 640px;
  }

  .loan-detail__sidebar > .personal-credentials--sidebar {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .personal-credentials--home-banner .site-container {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .personal-credentials--home-banner .personal-credentials__content {
    max-width: none;
    padding: 38px 0 24px;
  }

  .personal-credentials--home-banner .personal-credentials__content > h2 {
    font-size: 32px;
    white-space: nowrap;
  }

  .personal-credentials--home-banner .personal-credentials__content > p {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .personal-credentials--home-banner .personal-credentials__help-heading h3 {
    font-size: 32px;
  }

  .personal-credentials--home-banner .personal-credentials__help-heading span {
    display: none;
  }

  .personal-credentials--home-banner .personal-credentials__help-heading,
  .personal-credentials--home-banner .personal-credentials__actions {
    max-width: none;
  }

  .personal-credentials--home-banner .personal-credentials__actions {
    grid-template-columns: 1fr;
  }

  .personal-credentials--home-banner .personal-credentials__media {
    width: auto;
    height: auto;
    min-height: 350px;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }

  .personal-credentials--home-banner .personal-credentials__media img {
    width: min(82%, 330px);
    height: auto;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .personal-credentials {
    padding: 30px 0;
  }

  .personal-credentials--home-banner {
    padding: 128px 0 0;
  }

  .personal-credentials__card {
    padding: 24px 18px;
  }

  .personal-credentials__summary {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .personal-credentials__media {
    width: 88px;
    height: 88px;
  }

  .personal-credentials__media img {
    width: 100%;
    margin-top: 0;
  }

  .personal-credentials__badge {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    gap: 4px;
    padding: 7px 6px;
    overflow: hidden;
  }

  .personal-credentials__badge img {
    width: 68px;
    padding: 2px 4px;
  }

  .personal-credentials__badge strong {
    font-size: 12px;
  }

  .personal-credentials__badge span {
    font-size: 12px;
  }

  .personal-credentials__badge small {
    font-size: 10px;
  }

  .personal-credentials__badge i {
    width: 10px;
    height: 10px;
  }

  .personal-credentials__copy > h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .personal-credentials__copy > p {
    font-size: 15px;
  }

  .personal-credentials__recognition {
    font-size: 10px;
  }

  .personal-credentials__help-heading h3 {
    font-size: 27px;
  }

  .personal-credentials__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .personal-credentials__actions button {
    min-height: 52px;
    font-size: 15px;
    white-space: normal;
  }

  .personal-credentials--home-banner .site-container {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .personal-credentials--home-banner .personal-credentials__content {
    max-width: none;
    padding: 38px 0 24px;
  }

  .personal-credentials--home-banner .personal-credentials__content > h2 {
    font-size: 32px;
    white-space: nowrap;
  }

  .personal-credentials--home-banner .personal-credentials__content > p {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .personal-credentials--home-banner .personal-credentials__help-heading h3 {
    font-size: 32px;
  }

  .personal-credentials--home-banner .personal-credentials__help-heading span {
    display: none;
  }

  .personal-credentials--home-banner .personal-credentials__help-heading,
  .personal-credentials--home-banner .personal-credentials__actions {
    max-width: none;
  }

  .personal-credentials--home-banner .personal-credentials__actions {
    grid-template-columns: 1fr;
  }

  .personal-credentials--home-banner .personal-credentials__media {
    width: auto;
    height: auto;
    min-height: 350px;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }

  .personal-credentials--home-banner .personal-credentials__media img {
    width: min(82%, 330px);
    height: auto;
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .personal-credentials--sidebar .personal-credentials__summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .personal-credentials--sidebar .personal-credentials__media {
    width: 106px;
    height: 106px;
  }

  .personal-credentials--sidebar .personal-credentials__badge {
    width: 100%;
    justify-content: flex-start;
    gap: 5px;
    padding-inline: 8px;
  }

  .personal-credentials--sidebar .personal-credentials__badge img {
    width: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .button,
  .form .gform_wrapper input[type="submit"].gform_button,
  .newsletter .gform_wrapper input[type="submit"].gform_button {
    animation: none;
  }
}

.home-quote-cta {
  display: none !important;
}

@media (max-width: 1279px) {
  .about-profile__stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .about-profile__stat,
  .about-profile__stat + .about-profile__stat {
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 78px;
    padding: 13px 14px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(0, 100, 255, 0.08);
  }

  .about-profile__stat + .about-profile__stat::before {
    display: none;
  }

  .about-profile__stat-icon {
    width: 52px;
    height: 52px;
  }

  .about-profile__stat-icon svg,
  .about-profile__stat-icon img {
    width: 25px;
    height: 25px;
  }

  .about-profile__stat strong {
    font-size: 36px;
    font-weight: 900;
  }

  .about-profile__stat span:not(.about-profile__stat-icon) {
    max-width: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.1px;
    line-height: 1.2;
  }
}
