:root {
  --lp-blue: #005ed2;
  --lp-text: #1f1f1f;
  --lp-muted: #4c4c4c;
  --lp-gray: #f4f4f4;
}

.lp-kan-auth a.btn-blue,
.lp-kan-auth a.btn-blue:is(:active, :visited) {
  display: inline-block;
  position: relative;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
  background-color: var(--lp-blue);
  border: 2px solid var(--lp-blue);
  color: #fff;
  border-radius: 0;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.lp-kan-auth a.btn-blue:is(:hover, :focus, :focus-within) {
  text-decoration: none;
  color: var(--lp-blue);
  background-color: #fff;
}

.lp-kan-auth a.btn-white,
.lp-kan-auth a.btn-white:is(:active, :visited) {
  display: inline-block;
  position: relative;
  padding: 10px 30px;
  font-weight: bold;
  font-size: 21px;
  line-height: 34px;
  background-color: #fff;
  border: 2px solid #fff;
  color: var(--lp-blue);
  border-radius: 0;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.lp-kan-auth a.btn-white:is(:hover, :focus, :focus-within) {
  text-decoration: none;
  color: #fff;
  background-color: var(--lp-blue);
}

.lp-kan-auth a {
  position: fixed !important;
  top: 0;
  right: 0;
  z-index: 1000;
  margin: 0 !important;
  transform: rotate(-90deg) translate3d(0, 0, 0);
}

.lp-kan-auth a.btn-white {
  top: 177px;
  right: -74px;
}

.lp-kan-auth a.btn-blue {
  top: 407px;
  right: -95px;
}

.mob-only {
  display: none;
}

* {
  box-sizing: border-box;
}

.lp-page {
  margin: 0;
  font-family: "Lexend Deca", sans-serif;
  color: var(--lp-text);
  background: #fff;
}

.lp-container {
  max-width: 1374px;
  padding-left: 30px;
  padding-right: 30px;
}

.lp-topbar {
  background: #fff;
  padding: 28px 0;
}

.lp-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-topbar-logo,
.lp-topbar-logo:hover,
.lp-topbar-logo:focus,
.lp-topbar-title {
  color: var(--lp-text);
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03px;
}

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

.lp-topbar-logo img {
  width: 130px;
  height: 45px;
  object-fit: contain;
  display: block;
}

.lp-hero {
  position: relative;
  min-height: 666px;
  overflow: hidden;
}

.lp-hero-bg,
.lp-hero-mark,
.lp-hero-overlay {
  position: absolute;
  inset: 0;
}

.lp-hero-bg {
  background-color: var(--lp-blue);
}

.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.lp-hero-overlay {
  background: linear-gradient(180deg, rgba(0, 94, 210, 0.4) 0%, rgba(0, 48, 108, 0) 100%);
}

.lp-hero-mark {
  inset: 0 auto 0 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.lp-hero-mark svg {
  position: absolute;
  right: -290px;
  top: 0;
  width: 608px;
  height: 665px;
  transform: scaleX(-1);
  fill: #005ed2;
  opacity: 0.2;
}

.lp-hero .lp-container {
  position: relative;
  z-index: 2;
  min-height: 666px;
}

.lp-hero-content {
  position: absolute;
  left: 0;
  top: 96px;
  width: 672px;
  min-height: 426px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  z-index: 2;
}

.lp-hero-copy {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19.3px;
  padding-bottom: 42.5px;
}

.lp-hero-copy h1 {
  margin: 0 0 19px;
  color: #fff;
  font-size: 49.3px;
  line-height: 1.2;
  font-weight: 500;
}

.lp-hero-copy p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  max-width: 642px;
}

.lp-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 24px;
  padding: 10px 28px;
  background: var(--lp-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.lp-btn-hero {
  width: 192px;
  margin-top: 0;
  white-space: nowrap;
}

.lp-hero-cta-arrow {
  width: 6px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-cta-arrow svg {
  width: 6px;
  height: 12px;
  display: block;
}

.lp-hero-cta-arrow path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.03;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.lp-btn-primary:hover,
.lp-btn-primary:focus {
  color: #fff;
}

.lp-btn-wide {
  min-width: 438px;
}

.lp-hero-figure {
  position: absolute;
  z-index: 2;
  width: 977px;
  height: 652px;
  left: 551px;
  top: 13px;
}

.lp-hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-account {
  padding: 50px 0;
}

.lp-account h2 {
  margin: 0 0 19px;
  font-size: 38.6px;
  line-height: 1.218;
  font-weight: 500;
}

.lp-account p {
  margin: 0;
  max-width: 1075px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.lp-cards {
  padding: 10px 0 50px 0;
}

.lp-card {
  height: 100%;
}

.lp-card-info {
  background: var(--lp-gray);
}

.lp-card-info img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.lp-card-content {
  padding: 47px 35px 36px;
}

.lp-card-content h3 {
  margin: 0 0 24px;
  font-size: 17.1px;
  font-weight: 500;
  line-height: 1.5;
}

.lp-card-content p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

.lp-reasons {
  padding: 82px 0 130px;
  background: var(--lp-gray);
  position: relative;
  overflow: hidden;
}

.lp-reasons .lp-container {
  max-width: 1380px;
}

.lp-reasons-head {
  max-width: 1045px;
}

.lp-reasons-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 74px;
}

.lp-reasons-head h2 {
  margin: 0 0 19px;
  font-size: 38.6px;
  line-height: 1.218;
  font-weight: 500;
}

.lp-reasons-head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}

.lp-reasons-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

.lp-carousel-btn {
  width: 56px;
  height: 56px;
  border: 0;
  padding: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lp-carousel-btn svg {
  width: 56px;
  height: 56px;
  display: block;
}

.lp-carousel-btn .ring,
.lp-carousel-btn .chevron {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-carousel-btn.is-prev .ring,
.lp-carousel-btn.is-prev .chevron {
  stroke: #c5c5c5;
}

.lp-carousel-btn.is-next .ring,
.lp-carousel-btn.is-next .chevron {
  stroke: #005ed2;
}

.lp-carousel-btn:disabled {
  cursor: default;
}

.lp-reasons-viewport {
  --lp-carousel-peek: 220px;
  width: calc(100% + var(--lp-carousel-peek));
  /* overflow: hidden; */
}

.lp-reasons-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.lp-card-reason {
  flex: 0 0 315px;
  width: 315px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 13px rgba(175, 175, 175, 0.25);
  padding: 15px 20px 20px;
  min-height: 392px;
}

.lp-card-reason img {
  width: 172px;
  height: 197px;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 20px;
}

.lp-card-reason h3 {
  margin: 0 0 10px;
  font-size: 21.4px;
  line-height: 1.5;
  font-weight: 500;
}

.lp-card-reason p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}

.lp-cta {
  position: relative;
  overflow: hidden;
  min-height: 454px;
  padding: 120px 0;
}

.lp-cta-bg,
.lp-cta-overlay {
  position: absolute;
  inset: 0;
}

.lp-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-cta-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 34.86%, rgba(0, 0, 0, 0) 100%);
}

.lp-cta .lp-container {
  position: relative;
  z-index: 2;
}

.lp-cta-content {
  max-width: 655px;
}

.lp-cta-content h2 {
  margin: 0 0 19px;
  color: #fff;
  font-size: 38.6px;
  line-height: 1.218;
  font-weight: 500;
}

.lp-cta-content p {
  margin: 0 0 30px;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}

.lp-footer {
  background: var(--lp-gray);
  padding-top: 30px;
}

.lp-footer-main {
  padding: 0 0 30px;
}

.lp-footer h3 {
  margin: 0 0 11px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.lp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer li {
  margin-bottom: 12px;
}

.lp-footer a {
  color: var(--lp-text);
  text-decoration: none;
  font-size: 12.8px;
  line-height: 1.49;
  font-weight: 300;
}

.lp-footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.02;
  font-weight: 500;
}

.lp-footer-social-title {
  margin-bottom: 15px;
  font-size: 12.8px;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.lp-footer-socials {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.lp-footer-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}

.lp-language-btn {
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.1);
  color: var(--lp-text);
  min-height: 48px;
  width: 228px;
  font-size: 12.8px;
  line-height: 1.49;
  font-weight: 400;
}

.lp-footer-bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 30px;
  background: #fff;
}

.lp-footer-bottom small {
  color: var(--lp-muted);
  font-size: 12.8px;
  line-height: 1.49;
  letter-spacing: 0.2px;
  font-weight: 300;
}

.lp-back-top {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.1);
}

.lp-back-top::before {
  content: "";
  width: 16px;
  height: 8px;
  border-top: 2px solid var(--lp-muted);
  border-left: 2px solid var(--lp-muted);
  transform: rotate(45deg);
  margin-top: 5px;
}

@media (max-width: 1199.98px) {
  .lp-kan-auth a.btn-blue,
  .lp-kan-auth a.btn-blue:is(:active, :visited),
  .lp-kan-auth a.btn-white,
  .lp-kan-auth a.btn-white:is(:active, :visited) {
    font-size: 18px;
    line-height: 18px;
    padding: 7px 14px;
    border-width: 1px;
  }

  .lp-kan-auth a.btn-white {
    top: 147px;
    right: -58px;
  }

  .lp-kan-auth a.btn-blue {
    top: 310px;
    right: -66px;
  }

  .lp-topbar {
    padding: 20px 20px;
    min-height: 86px;
    box-sizing: border-box;
  }

  .lp-topbar .lp-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .lp-topbar-inner {
    justify-content: space-between;
    align-items: center;
    gap: 42px;
    max-width: 100%;
  }

  .lp-topbar-logo img {
    object-fit: contain;
  }

  .lp-topbar-title {
    font-size: 18px;
    line-height: 1.023;
    letter-spacing: 0.03px;
    text-align: left;
    flex: 0 1 auto;
    margin-left: 0;
  }

  .lp-hero {
    position: relative;
    min-height: 732px;
    height: 732px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .lp-hero-overlay {
    background: linear-gradient(180deg, rgba(0, 94, 210, 0.4) 0%, rgba(0, 48, 108, 0) 100%);
  }

  .lp-hero-mark {
    display: block;
  }

  .lp-hero-mark svg {
    right: -80px;
    top: 40px;
    width: 320px;
    height: 380px;
    opacity: 0.2;
  }

  .lp-hero .lp-container {
    position: relative;
    z-index: 3;
    min-height: 732px;
    height: 732px;
    max-width: 375px;
    padding: 33px 20px 0;
    display: block;
    overflow: visible;
  }

  .lp-hero-figure {
    position: absolute;
    top: auto;
    right: auto;
    left: 50%;
    bottom: 0;
    width: 450px;
    max-width: 120%;
    height: 450px;
    margin: 0;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
  }

  .lp-hero-figure img {
    width: auto;
    height: 100%;
    max-width: 100%;
    min-width: 320px;
    object-fit: contain;
    object-position: center bottom;
    display: block;
  }

  .lp-hero-content {
    position: relative;
    left: auto;
    top: auto;
    z-index: 3;
    width: 100%;
    max-width: 335px;
    min-height: 0;
    padding: 0;
    padding-left: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .lp-hero-copy {
    max-width: 335px;
    width: 100%;
    margin: 0;
    gap: 20px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .lp-hero-copy h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.03px;
  }

  .lp-hero-copy p {
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    max-width: none;
  }

  .lp-hero-cta-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    max-width: 100%;
    margin: 12px 0 0;
    padding: 0;
  }

  .lp-btn-hero {
    width: auto;
    min-width: 192px;
    flex-shrink: 0;
  }

  .lp-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lp-topbar .lp-container {
    padding-left: 0;
    padding-right: 0;
  }

  .lp-account,
  .lp-cards {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .lp-card-info img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
  }

  .lp-reasons {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .lp-reasons .lp-container {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .lp-reasons-top {
    display: contents;
  }

  .lp-reasons-head {
    order: 1;
    flex: none;
    min-width: 0;
    margin-bottom: 24px;
    max-width: 335px;
  }

  .lp-reasons-head h2 {
    font-size: 30px;
    line-height: 1.57;
    margin-bottom: 8px;
  }

  .lp-reasons-head p {
    font-size: 15px;
  }

  .lp-reasons-nav {
    order: 3;
    flex-shrink: 0;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    gap: 20px;
  }

  .lp-carousel-btn {
    width: 56px;
    height: 56px;
    touch-action: manipulation;
    cursor: pointer;
  }

  .lp-carousel-btn svg {
    width: 56px;
    height: 56px;
  }

  .lp-reasons-viewport {
    order: 2;
    --lp-carousel-peek: 0px;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }

  .lp-reasons-track {
    gap: 16px;
  }

  .lp-card-reason {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding-bottom: 24px;
  }

  .lp-card-reason img {
    width: 172px;
    height: 197px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto 16px;
  }

  .lp-card-reason h3 {
    font-size: 18px;
  }

  .lp-cta {
    padding: 64px 0;
    min-height: auto;
  }

  .lp-cta-content h2 {
    font-size: 26px;
  }

  .lp-btn-wide {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 991.98px) {
  .lp-kan-auth a.btn-blue, .lp-kan-auth a.btn-blue:is(:active, :visited), .lp-kan-auth a.btn-white, .lp-kan-auth a.btn-white:is(:active, :visited) {
    font-size: 16px;
    line-height: 16px;
    padding: 6px 12px;
    border-width: 1px;
  }
  .lp-kan-auth a.btn-white {
    top: 141px;
    right: -53px;
  }

  .lp-kan-auth a.btn-blue {
    top: 287px;
    right: -60px;
  }
  .lp-topbar-title{
    font-size: 16px;
  }
  .lp-hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .lp-hero-copy h1 {
    font-size: 36px;
  }

  .lp-account h2,
  .lp-reasons-head h2,
  .lp-cta-content h2 {
    font-size: 30px;
  }

  .lp-reasons-track {
    gap: 12px;
  }

  .lp-card-reason {
    flex-basis: 100%;
    width: 100%;
  }

  .lp-reasons-viewport {
    --lp-carousel-peek: 0px;
    width: 100%;
  }
  
  .lp-cards {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 990px) {
  .desk-only {
    display: none;
  }

  .mob-only {
    display: block;
  }
  
}
