@charset "UTF-8";
.header {
  padding: clamp(24px, 2vw, 48px);
  position: relative;
  z-index: 10;
  font-family: "Montserrat", sans-serif;
}
.header .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header .logo img {
  height: 59px;
  aspect-ratio: 57/59;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.header .nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .nav__link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}
.header .nav__link.active {
  font-weight: 600;
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
}
.header .btn {
  padding: 8px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  line-height: normal;
}
.header .btn--outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  transition: 0.2s;
}
.header .btn--outline:hover {
  background: #fff;
  color: #0b3f91;
}
.header .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}
.header .nav-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .header .logo img {
    height: 48px;
  }
  .header .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #174E99;
    padding: 80px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1000;
  }
  .header .nav__list {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .header .nav__list .nav__link {
    font-size: 20px;
    font-weight: 600;
  }
  .header .nav.nav--open {
    display: flex;
  }
  .header .btn {
    display: none;
  }
  .header .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1100;
  }
  .header .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .header .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .header .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
.btn--light {
  background: #fff;
  color: #0E2243;
  border: 0;
  line-height: normal;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.btn--light:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero {
  background: linear-gradient(90deg, #0b3f91, #174E99);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 63px;
  width: 665px;
  height: 860px;
  background: url("../img/hero-bg.svg") no-repeat top right;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 90px;
  width: 603px;
  height: 295px;
  background: url("../img/m.svg") no-repeat bottom left;
  background-size: contain;
  pointer-events: none;
}
.hero .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}
.hero .hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 1;
}
.hero .hero__content {
  max-width: 708px;
}
.hero .hero__eyebrow {
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #77A6FC;
  margin-bottom: clamp(8px, 1.2vw, 12px);
  font-size: clamp(14px, 1.4vw, 14px);
}
.hero .hero__title {
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(34px, 5.2vw, 52px);
  margin: 0 0 clamp(14px, 2vw, 24px);
}
.hero .hero__title strong {
  font-weight: 800;
}
.hero .hero__subtitle {
  color: #A5C0F0;
  font-size: clamp(18px, 1.9vw, 28px);
  max-width: 720px;
  margin: 0 0 clamp(22px, 2.4vw, 30px);
}
.hero .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}
.hero .hero__actions .btn {
  border-radius: 6px;
  font-weight: 700;
  padding: 8px 24px;
}
.hero .hero__media {
  position: relative;
  align-self: end;
}
.hero .hero__media img {
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero::after, .hero::before, body::after {
    display: none;
  }
  .hero .hero__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero .hero__media img {
    display: none;
  }
}
@media (max-width: 640px) {
  .hero .hero__actions {
    gap: 12px;
    margin-bottom: 0;
  }
  .hero .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1280px) {
  .hero::before {
    left: 17px;
  }
  .hero::after {
    right: -30px;
  }
}
@media (min-width: 1920px) {
  .hero::before {
    left: 320px;
  }
  .hero::after {
    right: 295px;
  }
}
.solutions {
  position: relative;
  overflow: hidden;
  background: #F2F7FF;
  padding: clamp(40px, 6vw, 80px) 0;
}
.solutions::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 267px;
  height: 100%;
  background-color: #CED8E9;
  z-index: 0;
}
.solutions::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 451px;
  height: 463px;
  background: url("../img/solution-bg.svg") no-repeat bottom right;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}
.solutions .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.solutions__grid {
  display: grid;
  grid-template-columns: 2fr 0.95fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
}
.solutions__main {
  max-width: 980px;
}
.solutions__title {
  color: #0E2243;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(28px, 4.2vw, 44px);
  margin-bottom: clamp(10px, 1.6vw, 16px);
}
.solutions__title strong {
  font-weight: 800;
}
.solutions__lead {
  color: #717C8E;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  margin-bottom: clamp(22px, 2.4vw, 28px);
  max-width: 72ch;
}
.solutions__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.solutions__aside {
  position: relative;
}

.feature-card {
  background: #E7ECF4;
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 30px 30px 0 0;
  min-height: 180px;
}
.feature-card__icon {
  margin-bottom: 10px;
}
.feature-card__icon img {
  margin-bottom: 22px;
  margin-top: 15px;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.feature-card__title {
  font-size: clamp(16px, 1.6vw, 16px);
  color: #0E2243;
  font-weight: 700;
  margin: 6px 0 8px;
}
.feature-card__text {
  color: #717C8E;
  font-size: clamp(14px, 1.35vw, 14px);
  line-height: 1.6;
}

.aside-card {
  background: #E7ECF4;
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: 30px 30px 0 0;
  background: #E7ECF4;
}
.aside-card__head {
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.aside-card__head img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.aside-card__head h3 {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 16px);
  color: #0E2243;
  font-weight: 700;
}
.aside-card__list {
  margin: 0 0 10px 0;
  padding-left: 18px;
  color: #717C8E;
  font-size: clamp(14px, 1.35vw, 14px);
  line-height: 1.7;
}
.aside-card__list li {
  margin: 6px 0;
}
.aside-card__head {
  color: #717C8E;
  font-size: clamp(14px, 1.35vw, 14px);
}
.aside-card__foot {
  color: #717C8E;
  font-size: clamp(14px, 1.35vw, 14px);
  margin: 20px 0 5px;
}

@media (max-width: 1100px) {
  .solutions__grid {
    grid-template-columns: 1.4fr 1fr;
  }
}
@media (max-width: 992px) {
  .solutions__grid {
    grid-template-columns: 1fr;
  }
  .solutions__aside {
    order: 2;
  }
  .solutions__cards {
    grid-template-columns: 1fr 1fr;
  }
  .solutions::after {
    display: none;
  }
}
@media (max-width: 640px) {
  .solutions__cards {
    grid-template-columns: 1fr;
  }
}
hr {
  height: 4px;
  border: 0;
  background: linear-gradient(270deg, #F2F7FF, #005DFF 36.77%, #005DFF 47.29%, #005DFF 57.69%, #F2F7FF 100%);
}

.credit {
  padding: clamp(32px, 6vw, 72px) 0;
  position: relative;
  overflow: hidden;
  background-color: #F2F7FF;
}
.credit .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  z-index: 1;
  position: relative;
}
.credit__tabs {
  display: flex;
  margin-bottom: clamp(18px, 3vw, 28px);
}
.credit::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 453px;
  height: 435px;
  background: url("../img/credit-top-bg.svg") no-repeat top right;
  z-index: 0;
}
.credit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 513px;
  height: 411px;
  background: url("../img/credit-bg.svg") no-repeat bottom left;
  background-size: contain;
  pointer-events: none;
}
.credit .tab {
  z-index: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  color: rgba(14, 34, 67, 0.4);
  font-weight: 700;
  font-size: clamp(18px, 3vw, 24px);
  padding: 15px 80px 15px 15px;
  line-height: normal;
  cursor: pointer;
  transition: 0.2s;
  text-align: left;
  border-left: 8px solid transparent;
}
.credit .tab.is-active {
  border-left: 8px solid #87B0F6;
  background: #D9E1F0;
  color: #0E2243;
}
.credit__panel.is-active {
  display: block;
}
.credit__panel:not(.is-active) {
  display: none;
}
.credit__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: clamp(18px, 4vw, 36px);
  align-items: start;
}
.credit__title {
  color: #0E2243;
  font-weight: 800;
  line-height: 1.12;
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: clamp(10px, 2vw, 14px);
}
.credit__lead {
  color: #717C8E;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  margin-bottom: clamp(50px, 3vw, 28px);
}
.credit__features {
  display: grid;
  gap: 65px;
  max-width: 45ch;
}
.credit__features li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 25px;
  align-items: center;
}
.credit__features li img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.credit__features li h3 {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 18px;
  color: #0E2243;
}
.credit__features li p {
  margin: 0;
  color: #717C8E;
  font-size: 16px;
  line-height: 1.6;
}
.credit .form-card {
  z-index: 1;
  border-radius: 30px 30px 0 0;
  background: #FFF;
  box-shadow: 0 0 10px 0 #E7EDF7;
  padding: clamp(16px, 2.6vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}
.credit .form-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #575757;
}
.credit .form-card label {
  display: block;
  font-size: 13px;
  color: #575757;
  width: 100%;
  font-weight: 500;
}
.credit .form-card input {
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  height: 52px;
  padding: 8px 16px;
  border: 0;
  border-radius: 6px;
  background: #F3F4F6;
  outline: none;
  transition: border 0.2s, background 0.2s;
}
.credit .form-card .btn {
  width: 100%;
}
.credit .form-card .btn--blue {
  border-radius: 6px;
  background: #0063C2;
  display: flex;
  height: 46px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: 0;
  line-height: normal;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 992px) {
  .credit__features {
    gap: 25px;
  }
  .credit__grid {
    grid-template-columns: 1fr;
  }
  .credit__form {
    order: 2;
    margin-top: 15px;
  }
}
.stats {
  background: #0063C2;
  color: #fff;
  padding: clamp(16px, 3vw, 35px) 0;
}
.stats .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 3vw, 32px);
  align-items: center;
}
.stats__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-areas: "icon number" "icon label";
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 6px;
  align-items: center;
  min-height: 64px;
}
.stats__icon {
  grid-area: icon;
  color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats__number {
  grid-area: number;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1;
  letter-spacing: 0.3px;
  text-align: center;
}
.stats__label {
  grid-area: label;
  font-size: clamp(16px, 1.3vw, 14px);
  opacity: 0.9;
  white-space: nowrap;
  display: flex;
  gap: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .stats__item {
    grid-template-columns: 0 1fr;
  }
}
.cta {
  position: relative;
  padding: clamp(28px, 7vw, 90px) 0 clamp(36px, 7vw, 90px);
  overflow: hidden;
  background-color: #F2F7FF;
}
.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background-color: #CED8E9;
  z-index: 0;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 484px;
  height: 340px;
  background: url("../img/cta-bg.svg") no-repeat top right;
  background-size: contain;
  pointer-events: none;
}
.cta .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}
.cta__card {
  position: relative;
  background: linear-gradient(90deg, #0063C2 0%, #00478C 52.89%, #0063C2 100%);
  color: #fff;
  border-radius: 12px;
  padding: clamp(20px, 3.2vw, 42px) clamp(20px, 5.8vw, 48px);
  overflow: hidden;
  z-index: 1;
}
.cta__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.35;
  pointer-events: none;
}
.cta__title {
  font-weight: 700;
  line-height: 1.15;
  color: #EDF4FF;
  font-size: clamp(30px, 4.4vw, 44px);
  margin: 0 0 clamp(10px, 1.8vw, 14px);
}
.cta__text {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  margin: 0 0 clamp(16px, 2.2vw, 28px);
  color: #EDF4FF;
}
.cta .btn {
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  display: inline-block;
  border-radius: 6px;
  border: 1px solid #FFF;
  background: #FFF;
  color: #0063C2;
}

@media (max-width: 640px) {
  .cta__text {
    max-width: none;
  }
  .cta .btn {
    width: 100%;
    text-align: center;
  }
}
.footer {
  background: #fafafa;
  font-size: 14px;
  color: rgba(52, 52, 52, 0.4);
  position: relative;
}
.footer .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer__top {
  display: grid;
  grid-template-columns: 176px 252px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 4vw, 40px) 0;
  align-items: start;
}
.footer__col {
  padding: clamp(10px, 2vw, 60px) 0;
}
.footer__col--wide {
  color: rgba(52, 52, 52, 0.4);
  line-height: 1.6;
}
.footer__logo img {
  width: 80px;
  height: auto;
  display: block;
  margin-bottom: 15px;
}
.footer__title {
  font-size: 14px;
  font-weight: 700;
  color: #343434;
  margin: 8px 0 15px;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer__list a {
  color: rgba(52, 52, 52, 0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__list a:hover {
  color: #374151;
}
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}
.footer__contact li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  color: rgba(52, 52, 52, 0.4);
}
.footer__contact li .icon {
  color: rgba(52, 52, 52, 0.4);
  display: inline-flex;
}
.footer__contact li a {
  color: rgba(52, 52, 52, 0.4);
  text-decoration: none;
}
.footer__contact li a:hover {
  text-decoration: underline;
}
.footer .social__row {
  display: flex;
  gap: 10px;
}
.footer .social__btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(0, 99, 194, 0.15);
  color: #0063C2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.2s;
}
.footer .social__btn:hover {
  transform: translateY(-1px);
  background: #dfe7fb;
}
.footer__bottom {
  border-top: 1px solid #E3E3E3;
  padding: 24px 0;
  font-size: 14px;
  color: #444444;
  font-weight: 400;
}
.footer__bottom__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}
.footer__links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.footer__links li {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.footer__links li + li::before {
  content: "•";
  color: rgba(52, 52, 52, 0.6);
  font-size: 22px;
}
.footer__links a {
  color: inherit;
  text-decoration: none;
}
.footer__links a:hover {
  color: #6b7280;
  text-decoration: underline;
}
.footer .to-top {
  position: fixed;
  right: clamp(12px, 2vw, 18px);
  bottom: clamp(12px, 2vw, 18px);
  width: 20px;
  height: 46px;
  border-radius: 999px;
  border: 1.5px solid #343434;
  background: transparent;
  color: #343434;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  pointer-events: none;
}
.footer .to-top.show {
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.footer .to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 240px 1fr;
  }
}
@media (max-width: 760px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.store-locator {
  background: #174E99;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0;
}
.store-locator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 528px;
  height: 328px;
  background: url("../img/map-top-bg.svg") no-repeat top left;
  z-index: 0;
}
.store-locator::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 513px;
  height: 411px;
  background: url("../img/map-bg.svg") no-repeat bottom right;
  background-size: contain;
  pointer-events: none;
}
.store-locator .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
}
.store-locator .sl__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}
.store-locator .sl__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}
.store-locator .sl__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.store-locator .sl__search input {
  color: rgba(255, 255, 255, 0.4);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
}
.store-locator .sl__search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.store-locator .sl__search input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.store-locator .sl__search svg {
  color: rgba(255, 255, 255, 0.8);
}
.store-locator .sl__count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.store-locator .sl__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
}
.store-locator .sl__list::-webkit-scrollbar {
  width: 6px;
}
.store-locator .sl__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}
.store-locator .sl__list::-webkit-scrollbar-track {
  background: transparent;
}
.store-locator .sl__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #F2F7FF;
  color: #717C8E;
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
}
.store-locator .sl__item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #343434;
}
.store-locator .sl__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #717C8E;
}
.store-locator .sl__item__cta {
  flex-shrink: 0;
  width: 40px;
  height: 51px;
  border-radius: 10px;
  display: inline-flex;
  align-items: self-start;
  justify-content: center;
}
.store-locator .sl__item:hover .sl__item__cta {
  transform: translateX(2px);
}
.store-locator .sl__item__cta svg {
  display: block;
}
.store-locator .sl__map {
  width: 100%;
  height: 800px;
  overflow: hidden;
}
.store-locator .sl__list::-webkit-scrollbar {
  width: 6px;
}
.store-locator .sl__list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}
.store-locator .sl__list::-webkit-scrollbar-track {
  background: transparent;
}
@media (max-width: 960px) {
  .store-locator .container {
    grid-template-columns: 1fr;
  }
  .store-locator .sl__map {
    height: 380px;
  }
}

.gm-style .gm-style-iw-d {
  font-size: 14px;
  line-height: 1.5;
  color: #717C8E;
  font-family: "Montserrat", sans-serif;
}

/* ---------------------------
   RESET BÁSICO
--------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  color: #717C8E;
  background: linear-gradient(90deg, #0b3f91, #174E99);
  position: relative;
}
body::after {
  content: "";
  position: absolute;
  top: 0;
  right: 150px;
  width: 496px;
  height: 228px;
  background: url(../img/hero-top-bg.svg) no-repeat top right;
  z-index: 0;
}

@media (max-width: 1280px) {
  body::after {
    right: 56px;
  }
}
@media (min-width: 1920px) {
  body::after {
    right: 395px;
  }
}