@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito/Nunito-Light.woff2') format('woff2'),
       url('../fonts/nunito/Nunito-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito/Nunito-Regular.woff2') format('woff2'),
       url('../fonts/nunito/Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito/Nunito-Bold.woff2') format('woff2'),
       url('../fonts/nunito/Nunito-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #32363a;
  --bg-soft: #32363a;
  --surface: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.82);
  --border: #e7eaf3;
  --text: #363b3f;
  --text-soft: rgba(54, 59, 63, 0.85);
  --primary: #fde04e;
  --primary-dark: #f3cc30;
  --accent: #c050ff;
  --red: #fde04e;
  --blue: #fde04e;
  --shadow-lg: none;
  --shadow-md: none;
  --radius-xl: 22px;
  --radius-lg: 22px;
  --radius-md: 10px;
  --container: 1000px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background-color: #309de5;
  position: relative;
  overflow-x: hidden;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  outline: none;
  border: none;
}

h1,
p,
dl,
dd {
  margin: 0;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 14px;
}

.site-header {
  padding: 20px 0;
  background: transparent;
  box-shadow: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-header__nav a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: #fde04e;
}

.site-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 12px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  width: 150px;
  height: auto;
}

.hero {
  padding: 30px 0 8px;
}

.section-head__label,
.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
}

.section-head__label {
  color: var(--blue);
  background: #fff;
  border: 1px solid #ebeff8;
}

.section-title {
  margin-top: 14px;
  font-size: clamp(20px, 2.7vw, 32px);
  line-height: 1.05;
  font-weight: 500;
  color: #fff;
}

.section-title--card {
  margin-top: 0;
  text-align: center;
  font-size: 1.28rem;
}

h1 {
  max-width: 840px;
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero__subtitle {
  color: #ffffff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.filter-card {
  position: relative;
  min-height: 50px;
  padding: 5px 16px 10px 16px;
  border: 1px solid rgb(223, 243, 228);
  border-radius: 8px 8px 3px 3px;
  background: #ffffff;
}

.filter-card__label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-soft);
}

.filter-card__input-row {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-right: 34px;
}

.filter-card__input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  color: #41c063;
}

.filter-card__input::placeholder {
  color: #97a3b5;
}

.filter-card__hint {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.95rem;
  font-weight: 600;
  color: #334b73;
}

.filter-card__range {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #d5e4ff;
  outline: none;
}

.filter-card__range::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 999px;
  background: transparent;
}

.filter-card__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  background: #41c063;
  box-shadow: 0 0 0 2px rgba(79, 100, 134, 0.15);
  cursor: pointer;
  margin-top: -7px;
}

.filter-card__range::-moz-range-track {
  height: 2px;
  border-radius: 999px;
  background: #d5e4ff;
}

.filter-card__range::-moz-range-progress {
  height: 2px;
  border-radius: 999px;
  background: #1f82f8;
}

.filter-card__range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #4f6486;
  box-shadow: 0 0 0 2px rgba(79, 100, 134, 0.15);
  cursor: pointer;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  text-decoration: none;
  color: #41c063;
  background: #fff;
  border: 1px solid #ebeff8;
}

.hero__tag--active {
  color: #ffffff;
  background: linear-gradient(135deg, #5acd78, #41c063);
  border-color: #41c063;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.offers-section {
  padding: 20px 0 24px;
}
.offers-section .section-title {
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 700;
  margin-top: 0;
}
.offers-section .section-title span {
  color: #3ba354;
}
@media (min-width: 767px) {
  .offers-section .section-head__inner {
    padding: 20px 0;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto 24px;
}

.section-head__text {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.2;
  margin-top: 8px;
  font-size: clamp(14px, 1vw, 16px);
}

.section-head__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.meta-pill {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
}

.info-card,
.empty-state {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 12px;
  border: 0;
  border-radius: 100px;
  text-decoration: none;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.button--anim {
    overflow: hidden;
}
.button--anim:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.button--primary {
  color: #ffffff;
  background: #FD3E01;
  box-shadow: -1px 0px 6px rgba(11, 95, 97, 0.2);
}

.button--blue {
  color: #309de5;
  background: #ffffff;
  box-shadow: -1px 0px 6px rgba(11, 95, 97, 0.2);
}

.button--header {
  width: auto;
  min-width: auto;
  padding-inline: 26px;
  font-size: 14px;
  font-weight: 400;
  height: 38px;
  min-height: auto;
}

.button--hero {
  height: 100%;
  border-radius: 8px;
  font-size: 16px;
  background: linear-gradient(135deg, #5acd78, #41c063);
  box-shadow: 0 6px 12px rgba(50, 84, 232, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.empty-state {
  padding: 24px;
  color: var(--text-soft);
  text-align: center;
}

.lender-details-section {
  padding: 18px 0 46px;
}

.lender-details-section__head {
  max-width: 900px;
  margin-bottom: 20px;
}

.lender-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.lender-details-card {
  overflow: hidden;
  border: 1px solid #ececf2;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(23, 58, 124, 0.06);
  padding: 16px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.lender-details-card:hover,
.lender-details-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(48, 95, 231, 0.2);
  box-shadow: 0 18px 34px rgba(23, 58, 124, 0.1);
}

.lender-details-card__header {
  padding: 18px 6px;
  border-radius: 16px;
  background: #f1f1f1;
  text-align: center;
}

.lender-details-card__name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.lender-details-card__rows {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.lender-details-card__row {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 3px;
  align-items: start;
}

.lender-details-card__row span,
.lender-details-card__row strong {
  display: block;
  padding: 6px;
  background: #f1f1f1;
  color: #5f636d;
  font-size: 13px;
  line-height: 1.15;
}

.lender-details-card__row span {
  font-weight: 500;
}

.lender-details-card__row strong {
  font-weight: 500;
  color: #4a4e57;
}

.lender-details-card__row a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

.lender-details-card__row--full {
  grid-template-columns: 1fr
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 31, 56, 0.2);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-backdrop__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 31, 56, 0.52);
  backdrop-filter: blur(4px);
}

.offer-modal {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 28px;
  background: #ffffff;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 30px 80px rgba(16, 36, 72, 0.2);
}

.offer-modal__content {
  padding: 28px 0 0;
}

.offer-modal__top-group {
  margin: 0 16px;
  border-radius: 22px;
  background: #f3f8ff;
}

.offer-modal__close {
  position: absolute;
  top: 36px;
  right: 24px;
  z-index: 2;
  border: 0;
  background: transparent;
  color: #808183;
  font-size: 1.95rem;
  line-height: 1;
  cursor: pointer;
}

.offer-modal__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px;
}

.offer-modal__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.offer-modal__logo-badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 16px;
  background: #171717;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 18px rgba(35, 55, 93, 0.08);
}

.offer-modal__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
}

.offer-modal__eyebrow {
  font-size: 12px;
  color: var(--text-soft);
}

.offer-modal__title {
  margin-top: 3px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.02;
}

.offer-modal__hero {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px;
}

.offer-modal__metric span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.offer-modal__metric strong {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
}

.offer-modal__cta {
  flex: 0 0 180px;
  min-height: 50px;
  font-size: 15px;
  margin-left: auto;
}

.offer-modal__tabs {
  display: flex;
  gap: 24px;
  padding: 0 20px;
  border-top: 1px solid rgba(25, 59, 120, 0.08);
}

.offer-modal__tab {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #69758c;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.offer-modal__tab.is-active {
  color: var(--text);
  border-bottom-color: #4d68f2;
}

.offer-modal__tab--link:hover {
  color: var(--text);
}

.offer-modal__panel {
  display: none;
  padding: 20px;
  border-top: 1px solid rgba(25, 59, 120, 0.08);
}

.offer-modal__panel.is-active {
  display: block;
}

.offer-modal__panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 42px;
}

.offer-modal__list p {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.2;
}

.offer-modal__list p:first-child {
  margin-top: 0;
}

.offer-modal__list strong {
  color: var(--text);
  font-weight: 500;
}

.faq-section {
  padding: 0 0 72px;
}

.service-section {
  padding: 50px 0;
}

.service-section__head {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 22px;
  margin-top: 26px;
}

.service-card,
.glossary-card {
  padding: 28px;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(23, 58, 124, 0.05);
}

.service-card p,
.glossary-item p {
  color: var(--text-soft);
  line-height: 1.75;
}

.service-card__subtitle,
.glossary-card__title,
.glossary-item__term {
  font-weight: 700;
}

.service-card__subtitle {
  margin-top: 22px;
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.service-list {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--text);
}

.service-list li {
  margin-top: 10px;
  line-height: 1.65;
}

.service-list li::marker {
  color: #4d68f2;
}

.glossary-card__title {
  font-size: 1.4rem;
}

.glossary-item {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(25, 59, 120, 0.1);
}

.glossary-item:first-of-type {
  padding-top: 16px;
}

.glossary-item__term {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.faq-section__head {
  max-width: 720px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list--compact {
  gap: 10px;
  margin-top: 20px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 10px rgba(23, 58, 124, 0.05);
}

.faq-item[open] {
  box-shadow: 0 18px 34px rgba(23, 58, 124, 0.08);
}

.faq-list--compact .faq-item {
  border-radius: 14px;
  box-shadow: 0 5px 12px rgba(23, 58, 124, 0.04);
}

.faq-item__summary {
  position: relative;
  display: block;
  padding: 24px 68px 24px 28px;
  list-style: none;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-list--compact .faq-item__summary {
  padding: 18px 56px 18px 20px;
  font-size: 1rem;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__summary::before,
.faq-item__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #2e9ce4;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq-item__summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-item__summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item__content {
  padding: 0 28px 26px;
}

.faq-list--compact .faq-item__content {
  padding: 0 20px 18px;
}

.faq-item__content p {
  max-width: 940px;
  color: var(--text-soft);
  line-height: 1.75;
}

.faq-list--compact .faq-item__content p {
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  padding: 34px 0 26px;
  background: transparent;
  border-top: 0;
  box-shadow: none;
  color: #153656;
}

.site-footer .container {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(22, 84, 144, 0.16);
  backdrop-filter: blur(8px);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__brand {
  display: grid;
  gap: 5px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  max-width: none;
  color: #153656;
  font-size: 30px;
  font-weight: 900;
  line-height: 30px;
  text-decoration: none;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer__nav a {
  color: #153656;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.site-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(21, 54, 86, 0.14);
  color: rgba(21, 54, 86, 0.78);
  font-size: 12px;
}

.site-footer__contacts a {
  font-size: 12px;
  color: #153656;
  text-decoration: none;
  font-weight: 600;
}

.site-footer__nav a,
.site-footer__bottom a {
  color: #153656;
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__bottom a:hover {
  color: #309de5;
}

.site-footer__text {
  padding: 20px 0 0;
}

.site-footer__text p {
  color: rgba(21, 54, 86, 0.78);
  line-height: 1.4;
  font-size: 12px;
}

.site-footer__text p + p {
  margin-top: 12px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(21, 54, 86, 0.14);
  color: rgba(21, 54, 86, 0.78);
  font-size: 12px;
}

.site-footer__bottom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--text-soft);
  font-size: 12px;
}

.policy-page {
  padding-bottom: 44px;
}

.policy-hero {
  padding: 8px 0 24px;
}

.policy-hero__card {
  padding: 34px;
  border: 1px solid rgba(19, 125, 127, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(63, 97, 243, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(19, 125, 127, 0.08), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: var(--shadow-lg);
}

.policy-hero__subtitle {
  max-width: 920px;
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.policy-content {
  padding: 0 0 24px;
}

.policy-grid {
  display: grid;
  gap: 18px;
}

.policy-card {
  padding: 28px;
  border: 1px solid rgba(25, 59, 120, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 32px rgba(23, 58, 124, 0.06);
}

.policy-card p {
  margin-top: 16px;
  color: var(--text-soft);
  line-height: 1.75;
}

.policy-card .section-title {
  color: var(--text);
}

.seo-text {
  color: #fff;
  padding-bottom: 50px;
}

@media (max-width: 1100px) {
  .lender-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /*.button--hero {
    min-height: 60px;
  }*/
}

@media (max-width: 767px) {
  .site-header__inner {
    align-items: center;
    position: relative;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .site-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(25, 59, 120, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(23, 58, 124, 0.08);
    z-index: 20;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__nav a {
    padding: 12px 14px;
    border-radius: 12px;
    color: #000;
  }

  .site-header__nav a:hover,
  .site-header__nav a:focus-visible {
    background: #f4f7fc;
  }

  .site-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .site-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__subtitle {
    max-width: 320px;
    margin: 0 auto;
  }

  .info-card {
    padding: 22px;
  }

  .section-head {
    flex-direction: column;
  }

  .section-head__inner {
    text-align: center;
  }

  .section-head__meta {
    justify-content: flex-start;
  }

  .lender-details-card {
    padding: 16px;
    border-radius: 18px;
  }
  .lender-details-card__header {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .lender-details-card__row,
  .lender-details-card__row--full {
/*    grid-template-columns: 1fr;*/
    gap: 6px;
  }
  .lender-details-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }

  .offer-modal {
    border-radius: 18px;
  }

  .offer-modal__content {
    padding-top: 24px;
  }

  .offer-modal__top-group {
    margin: 0 10px;
    border-radius: 18px;
  }

  .offer-modal__header {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .offer-modal__hero {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 20px 22px;
  }

  .offer-modal__tabs {
    gap: 18px;
    padding: 0 20px;
    overflow-x: auto;
  }

  .offer-modal__panel {
    padding: 22px 20px 24px;
  }

  .offer-modal__panel-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .offer-modal__cta {
    flex: 1;
  }

  /*.filter-card {
    min-height: 98px;
    padding: 14px 18px 24px;
  }*/

  /*.hero__tag {
    min-height: 46px;
    padding-inline: 16px;
  }*/
  .hero__tags {
    justify-content: center;
    gap: 4px;
  }
  .button--hero {
    margin-top: 18px;
    height: auto;
  }

  .faq-item__summary {
    padding: 20px 58px 20px 20px;
    font-size: 1.02rem;
  }

  .faq-item__summary::before,
  .faq-item__summary::after {
    right: 22px;
  }

  .faq-item__content {
    padding: 0 20px 22px;
  }

  .policy-hero__card,
  .policy-card,
  .service-card,
  .glossary-card {
    padding: 22px;
  }

  .site-footer .container {
    padding: 18px;
    border-radius: 20px;
  }

  .site-footer__top,
  .site-footer__contacts,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .container {
    border-radius: 20px 20px 0 0;
  }
}

.site-header .head-logo a {
  font-weight: 900;
  font-size: 30px;
  line-height: 30px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 5px;
}

.site-header .head-logo .head-rating {
  font-weight: 900;
  font-size: 13px;
  line-height: 19px;
  color: #309de5;
  background: #ffffff;
  border-radius: 38px;
  padding: 3px 10px;
  text-align: center;
}

.hero__intro {
  font-family: 'Nunito', sans-serif;
}

.hero__intro h1 {
  color: #ffffff;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
  margin: 0 auto 10px;
}

.hero__intro h1 span {
  display: inline-block;
  padding: 1px 14px 3px;
  border-radius: 100px;
  background: #ffffff;
  color: #309de5;
  line-height: 1.08;
}

.innerCont.offers-shell {
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  outline: 0;
}

.offers_wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 32px;
  overflow: visible;
}

.offers_wrapper .offer {
  position: relative;
  isolation: isolate;
  overflow: visible;
  z-index: 0;
  padding: 14px 16px 16px;
  border: 0;
  border-radius: 36px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(24, 84, 146, 0.12);
}

.offers_wrapper .offer::before {
  content: "";
  position: absolute;
  inset: 28px -10px -10px;
  width: auto;
  height: auto;
  border-radius: 24px 24px 36px 36px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 38px rgba(26, 91, 157, 0.14);
  z-index: -1;
  pointer-events: none;
}

.offers_wrapper .offer > a,
.offers_wrapper .offer-main-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.offers_wrapper .offer .offer-bg {
  width: 100%;
  height: 80px;
  margin-bottom: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-decoration: none;
}

.offers_wrapper .offer .offer-percent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid #ffe4d0;
  border-bottom: 1px solid #ffe4d0;
}

.offers_wrapper .offer .offer-percent .text {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  color: #1b1b1b;
}

.offers_wrapper .offer .offer-percent .bold {
  padding: 2px 5px;
  border-radius: 50px;
  background: rgba(71, 169, 255, 0.1);
  color: #46a9ff;
  font-size: 16px;
  font-weight: 600;
}

.offers_wrapper .offer .offer-info {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 17px 0 0;
}

.offers_wrapper .offer .offer-info li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #2d4562;
  font-size: 12px;
}

.offers_wrapper .offer .offer-info li:last-child {
  margin-bottom: 0;
}

.offers_wrapper .offer .offer-info li span {
  display: block;
  color: #1b1b1b;
  font-size: 15px;
  font-weight: 400;
}

.offers_wrapper .offer .offer-info li span.bold {
  color: #1b1b1b;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.offers_wrapper .offer .btn-wrapper {
  text-align: center;
}

.offers_wrapper .offer .btn-offer-details {
  display: inline-flex;
  position: relative;
  min-height: 0;
  margin: 15px 0;
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #309de5;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.offers_wrapper .offer .btn-offer-details::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #46a9ff;
}

.offers_wrapper .offer .general_button_wrapper .button {
  position: relative;
  width: 100%;
  min-height: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offers_wrapper .offer .general_button_wrapper .btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  min-height: 0;
  padding: 12px 10px;
  border: 0;
  border-radius: 50px;
  outline: none;
  background: #FD3E01;
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 5px 11px rgba(43, 99, 206, 0.2);
  cursor: pointer;
}

.offer-present[hidden],
.offer-links {
  display: none;
}

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

@media (max-width: 620px) {
  .offers_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .offers_wrapper .offer {
    border-radius: 24px;
    padding: 14px 10px 16px;
  }

  .offers_wrapper .offer .offer-info li {
    margin-bottom: 2px;
  }

  .offers_wrapper .offer::before {
    content: none;
  }
}
