:root {
  --mslp-primary: #0A192F;
  --mslp-accent: #1D8CF8;
  --mslp-accent-soft: #EAF4FF;
  --mslp-line: #D8E7F7;
}

.mslp-footer,
footer .mslp-footer {
  color: var(--mslp-primary) !important;
  background: #fff !important;
  border-top: 1px solid var(--mslp-line);
}

.mslp-footer__container {
  padding-top: 56px;
  padding-bottom: 22px;
}

.mslp-footer__grid {
  align-items: start;
  column-gap: clamp(30px, 5vw, 72px);
  row-gap: 34px;
}

.mslp-footer__brand-col {
  padding-inline-start: 8px;
}

.mslp-footer__desc {
  max-width: 290px;
  color: rgba(10, 25, 47, .72) !important;
  line-height: 1.9;
}

.mslp-footer__col h3 {
  margin-bottom: 15px;
  color: var(--mslp-primary) !important;
  font-size: 17px;
}

.mslp-footer__col ul {
  display: grid;
  gap: 6px;
}

.mslp-footer__col li a {
  position: relative;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 3px 14px 5px 0;
  color: rgba(10, 25, 47, .72) !important;
  text-decoration: none !important;
  transition: color .24s ease, transform .24s ease;
}

.mslp-footer__col li a::before {
  content: '\2039';
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--mslp-accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform .24s ease;
}

.mslp-footer__col li a::after {
  content: '';
  position: absolute;
  right: 14px;
  bottom: 2px;
  width: calc(100% - 14px);
  height: 1px;
  background: var(--mslp-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .32s ease;
}

.mslp-footer__col li a:hover,
.mslp-footer__col li a:focus-visible {
  color: var(--mslp-primary) !important;
  transform: translateX(-2px);
}

.mslp-footer__col li a:hover::before,
.mslp-footer__col li a:focus-visible::before {
  transform: translate(-2px, -50%);
}

.mslp-footer__col li a:hover::after,
.mslp-footer__col li a:focus-visible::after {
  transform: scaleX(1);
}

.mslp-footer__social {
  gap: 8px;
  margin-top: 18px;
}

.mslp-footer__social a {
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--mslp-primary) !important;
  background: #fff !important;
  border: 1px solid var(--mslp-line) !important;
  border-radius: 9px !important;
  box-shadow: none !important;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.mslp-footer__social a i {
  width: 18px;
  color: currentColor !important;
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.mslp-footer__social a:hover,
.mslp-footer__social a:focus-visible {
  color: var(--mslp-accent) !important;
  background: var(--mslp-accent-soft) !important;
  border-color: var(--mslp-accent) !important;
  transform: translateY(-2px);
}
.mslp-footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  color: rgba(10, 25, 47, .64);
  border-top: 1px solid var(--mslp-line) !important;
}

.mslp-footer__credit a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mslp-primary) !important;
  font-weight: 600;
  text-decoration: none !important;
}

.mslp-footer__credit a::after {
  content: '\2190';
  display: inline-block;
  color: var(--mslp-accent);
  font-size: 12px;
  transform: rotate(-45deg);
  transition: transform .3s ease;
}

.mslp-footer__credit a:hover::after,
.mslp-footer__credit a:focus-visible::after {
  transform: rotate(0deg);
}

#page-scroll-up.page-scroll-up,
#page-scroll-up {
  width: 42px !important;
  height: 42px !important;
  right: auto !important;
  left: 20px !important;
  bottom: 20px !important;
  color: #fff !important;
  background: var(--mslp-primary) !important;
  border-radius: 50% !important;
  box-shadow: 0 8px 20px rgba(10, 25, 47, .2) !important;
  transition: background-color .22s ease, transform .22s ease, box-shadow .22s ease !important;
}

#page-scroll-up::before,
#page-scroll-up i {
  font-size: 15px !important;
}

#page-scroll-up:hover,
#page-scroll-up:focus-visible {
  background: var(--mslp-accent) !important;
  box-shadow: 0 10px 22px rgba(29, 140, 248, .25) !important;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .mslp-footer__container {
    padding-top: 42px;
  }

  .mslp-footer__bottom {
    margin-top: 30px;
  }

  #page-scroll-up.page-scroll-up,
  #page-scroll-up {
    width: 38px !important;
    height: 38px !important;
    left: 14px !important;
    bottom: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mslp-footer *,
  .mslp-footer *::before,
  .mslp-footer *::after,
  #page-scroll-up {
    transition-duration: .01ms !important;
  }
}