body {
  background: var(--lf-grad-light);
  background-color: #f6f5e5;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  font-family: var(--lf-font);
  color: var(--lf-graphite);
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

img {
  max-width: 100%;
}

.btn {
  display: inline-block;
  outline: none;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  padding: 18px;
  max-width: 100%;
  border-radius: var(--lf-radius);
  text-decoration: none;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn:hover {
  text-decoration: none;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn.btn-lemon {
  background-color: var(--lf-yellow);
  color: var(--lf-graphite);
}
.btn.btn-lemon:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 0;
}
.btn.btn-lemon:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: -6px -6px 12px 0px rgba(255, 255, 255, 0.35);
          box-shadow: -6px -6px 12px 0px rgba(255, 255, 255, 0.35);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 0;
}
.btn.btn-lemon:hover:before {
  -webkit-box-shadow: 6px 6px 20px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 6px 6px 20px 0px rgba(0, 0, 0, 0.25);
}
.btn.btn-lemon:hover:after {
  -webkit-box-shadow: -6px -6px 20px 0px rgba(255, 255, 255, 0.35);
          box-shadow: -6px -6px 20px 0px rgba(255, 255, 255, 0.35);
}
.btn.btn-blue {
  color: #fff;
  background: var(--lf-graphite);
}
.btn.btn-blue:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 0;
}
.btn.btn-blue:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 0;
}
.btn.btn-blue:hover:before {
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
}
.btn.btn-blue:hover:after {
  -webkit-box-shadow: -2px -2px 10px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 10px 0px rgba(255, 255, 255, 0.25);
}
.btn.btn-blue span {
  position: relative;
  padding-right: 34px;
}
.btn.btn-blue span:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url("../img/lemon/next.svg");
}
.btn.btn-blue:hover span:after {
  background-image: url("../img/lemon/next.svg");
}
.btn.btn-lg {
  padding: 26px 15px;
}
.btn.btn-scan {
  min-width: 235px;
}
.btn.btn-scan span {
  padding-left: 44px;
  position: relative;
}
.btn.btn-scan span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  background-image: url("../img/lemon/code.svg");
}
.btn.btn-scan span:after {
  display: none;
}
.btn.btn-scan:hover span:before {
  background-image: url("../img/lemon/code.svg");
}
.btn.btn-contacts {
  width: 248px;
}
.btn.btn-white.btn-lg {
  min-width: 235px;
}

.section-title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--lf-font);
  margin-bottom: 24px;
}

header {
  padding: 16px 0;
  position: relative;
  z-index: 9;
  background: var(--lf-white);
  border-bottom: var(--lf-stroke) solid rgba(46, 50, 61, 0.08);
  -webkit-box-shadow: none;
          box-shadow: none;
}
header .header-row {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-row .header-menu-toggle {
  display: none;
}
header .header-row .header-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
header .header-row .header-menu ul li {
  display: inline-block;
  padding: 18px 16px;
}
header .header-row .header-menu ul li a {
  display: inline-block;
  color: var(--lf-graphite);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: var(--lf-radius);
  position: relative;
}
header .header-row .header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header-row .header-btns .language {
  display: inline-block;
  margin-right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 80px;
  width: 75px;
  height: 40px;
}
header .header-row .header-btns .btn.btn-white {
  padding: 12px 16px;
  min-width: 180px;
}

.home {
  position: relative;
}

.main-slide {
  padding-top: 64px;
  padding-bottom: 48px;
  background: var(--lf-grad-yellow);
  position: relative;
  overflow: hidden;
}
.main-slide .home-lemon-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.main-slide .home-lemon-bg::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--lf-white);
  clip-path: polygon(0% 100%, 100% 70%, 100% 56%, 0% 86%);
}
.main-slide > .container {
  position: relative;
  z-index: 1;
}
.main-slide .slide-row .slide-content h1 {
  color: var(--lf-graphite);
}
.main-slide .slide-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-slide .slide-row .slide-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 61%;
          flex: 0 1 61%;
  padding-top: 58px;
  padding-bottom: 116px;
}
.main-slide .slide-row .slide-content h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--lf-font);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.main-slide .slide-row .slide-content h4 {
  color: var(--lf-graphite);
  font-weight: 400;
  margin-bottom: 70px;
  max-width: 656px;
}
.main-slide .slide-row .slide-content .slide-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 16px;
}
.main-slide .slide-row .slide-content .slide-btns .btn {
  min-height: 64px;
  height: 64px;
  padding: 0 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main-slide .slide-row .slide-content .slide-btns .btn.btn-white span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.main-slide .slide-row .slide-content .slide-btns .btn.btn-store {
  gap: 10px;
  padding: 0 22px;
}
.btn.btn-white {
  background-color: var(--lf-white);
  color: var(--lf-graphite);
  border: var(--lf-stroke) solid rgba(46, 50, 61, 0.1);
  -webkit-box-shadow: var(--lf-shadow-sm);
          box-shadow: var(--lf-shadow-sm);
}
.btn.btn-white:hover {
  -webkit-box-shadow: var(--lf-shadow-md);
          box-shadow: var(--lf-shadow-md);
}
.btn.btn-store {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: var(--lf-black);
  color: var(--lf-yellow);
  min-width: auto;
  padding: 0 22px;
  font-weight: 600;
}
.btn.btn-store img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}
.btn.btn-store span {
  position: relative;
  z-index: 2;
}
.main-slide .slide-row .slide-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 39%;
          flex: 0 1 39%;
  padding-left: 15px;
}

.main-advantages {
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--lf-grad-light);
}
.main-advantages .advantages-header {
  margin-bottom: 40px;
}
.main-advantages .advantages-header .section-title {
  color: var(--lf-graphite);
  margin-bottom: 16px;
}
.main-advantages .advantages-header h4 {
  font-weight: 400;
  color: var(--lf-warm-grey);
  max-width: 560px;
  margin: 0;
}
.main-advantages .advantages-row {
  margin: 0 -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.main-advantages .advantages-row .advantages-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  padding: 0 8px;
  color: var(--lf-graphite);
}
.main-advantages .advantages-row .advantages-item .advantages-item-content {
  background: var(--lf-white);
  padding: 24px;
  height: 100%;
  min-height: 220px;
  position: relative;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: var(--lf-shadow-md);
          box-shadow: var(--lf-shadow-md);
}
.main-advantages .advantages-row .advantages-item .advantages-item-content:before,
.main-advantages .advantages-row .advantages-item .advantages-item-content:after {
  display: none;
}
.main-advantages .advantages-row .advantages-item .advantages-item-content .advantages-item-number {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 38px;
  position: relative;
  z-index: 2;
}
.main-advantages .advantages-row .advantages-item .advantages-item-content .advantages-item-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--lf-font);
  position: relative;
  z-index: 2;
}
.main-advantages .advantages-row .advantages-item .advantages-item-content .advantages-item-desc {
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.main-services {
  padding-top: 56px;
  padding-bottom: 56px;
  overflow: hidden;
  background: var(--lf-grad-light);
}
.main-services .section-title {
  margin-bottom: 66px;
  color: var(--lf-graphite);
}
.main-services .services-items .services-items-col .services-item .services-item-content .services-item-title {
  color: inherit;
}
.main-services .services-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.main-services .services-items .services-items-col {
  padding: 0 8px;
  margin-bottom: 16px;
}
.main-services .services-items .services-items-col.item-sm {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.main-services .services-items .services-items-col.item-md {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.main-services .services-items .services-items-col.item-lg {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.main-services .services-items .services-items-col .services-item {
  height: 100%;
  border-radius: var(--lf-radius);
  overflow: hidden;
  -webkit-box-shadow: var(--lf-shadow-md);
          box-shadow: var(--lf-shadow-md);
}
.main-services .services-items .services-items-col .services-item .services-item-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-services .services-items .services-items-col .services-item .services-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.main-services .services-items .services-items-col .services-item .services-item-icon img {
  width: 24px;
  height: 24px;
  display: block;
}
.main-services .services-items .services-items-col .services-item .services-item-content .services-item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--lf-font);
}
.main-services .services-items .services-items-col .services-item .services-item-content .services-item-desc {
  margin-bottom: 32px;
}
.main-services .services-items .services-items-col .services-item .services-item-btn {
  margin-top: auto;
}
.main-services .services-items .services-items-col .services-item .services-item-content .services-item-btn .btn {
  min-width: 220px;
}

.main-reviews {
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
  background: var(--lf-grad-yellow);
}
.main-reviews .section-title {
  margin-bottom: 56px;
  color: var(--lf-graphite);
}
.main-reviews .reviews-items {
  margin: 0 -16px;
  padding-bottom: 26px;
  padding-left: 88px;
  padding-right: 88px;
}
.main-reviews .reviews-items .reviews-item {
  padding: 16px;
}
.main-reviews .reviews-items .reviews-item .reviews-item-content {
  padding: 24px;
  background: var(--lf-white);
  border-radius: var(--lf-radius);
  position: relative;
  box-shadow: var(--lf-shadow-md);
}
.main-reviews .reviews-items .reviews-item .reviews-item-content:before,
.main-reviews .reviews-items .reviews-item .reviews-item-content:after {
  display: none;
}
.main-reviews .reviews-items .reviews-item .reviews-item-content .reviews-item-desc {
  min-height: 70px;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.main-reviews .reviews-items .reviews-item .reviews-item-content .reviews-item-header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.main-reviews .reviews-items .reviews-item .reviews-item-content .reviews-item-header .reviews-item-name {
  padding-left: 16px;
}
.main-reviews .reviews-items .reviews-item .reviews-item-content .reviews-item-header .reviews-item-name .reviews-item-title {
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--lf-font);
}
.main-reviews .reviews-items .reviews-item .reviews-item-content .reviews-item-header .reviews-item-name .reviews-item-subtitle {
  font-size: 12px;
  color: #fff;
}
.main-reviews .reviews-items .slick-prev {
  right: auto;
  left: 0;
  top: 50%;
  margin-top: -32px;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/prev.svg");
}
.main-reviews .reviews-items .slick-prev:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.main-reviews .reviews-items .slick-prev:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.main-reviews .reviews-items .slick-prev.slick-disabled {
  border-color: #fff;
  opacity: 0.1;
}
.main-reviews .reviews-items .slick-prev:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.main-reviews .reviews-items .slick-next {
  right: 0;
  left: auto;
  top: 50%;
  margin-top: -32px;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/next.svg");
}
.main-reviews .reviews-items .slick-next:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.main-reviews .reviews-items .slick-next:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.main-reviews .reviews-items .slick-next.slick-disabled {
  border-color: #fff;
  opacity: 0.1;
}
.main-reviews .reviews-items .slick-next:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.main-reviews .reviews-items .slick-dots {
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
}
.main-reviews .reviews-items .slick-dots li {
  width: 6px;
  height: 6px;
}
.main-reviews .reviews-items .slick-dots li button {
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  padding: 0;
}
.main-reviews .reviews-items .slick-dots li button:before {
  display: none;
}
.main-reviews .reviews-items .slick-dots li.slick-active button {
  background: #fff;
}

.main-partners {
  padding-top: 118px;
  margin-bottom: 144px;
  overflow: hidden;
}
.main-partners .section-subtitle {
  color: #fff;
  max-width: 432px;
  margin-bottom: 56px;
}
.main-partners .partners-items {
  margin: 0 -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-partners .partners-items .partner-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 8px;
  margin-bottom: 16px;
}
.main-partners .partners-items .partner-item .partner-item-content {
  background-color: rgba(46, 50, 61, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px;
  border-radius: var(--lf-radius);
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-partners .partners-items .partner-item.item-background.item-left .partner-item-content {
  background: -webkit-gradient(linear, left top, right top, from(rgba(17, 19, 25, 0)), to(rgba(46, 50, 61, 0.35)));
  background: linear-gradient(90deg, rgba(17, 19, 25, 0) 0%, rgba(46, 50, 61, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.main-partners .partners-items .partner-item.item-background.item-right .partner-item-content {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.01%, rgba(46, 50, 61, 0.35)), to(rgba(17, 19, 25, 0)));
  background: linear-gradient(90deg, rgba(46, 50, 61, 0.35) 0.01%, rgba(17, 19, 25, 0) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

footer {
  padding: 0 16px 20px 16px;
  background: var(--lf-grad-dark);
}
footer .footer-gradient {
  background: var(--lf-grad-dark);
  padding: 40px 0 0;
  position: relative;
}
footer .footer-gradient:before,
footer .footer-gradient:after,
footer .footer-gradient .footer-bot:before,
footer .footer-gradient .footer-bot:after {
  display: none;
}
footer .footer-gradient .container {
  position: relative;
  z-index: 2;
}
footer .footer-gradient .footer-bot {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0;
}
footer .footer-gradient .footer-bot .footer-bot-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 30px;
  position: relative;
  z-index: 2;
}
footer .footer-gradient .footer-bot .footer-bot-content .footer-bot-title {
  font-family: var(--lf-font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--lf-white);
}
footer .footer-gradient .footer-bot .footer-bot-content .footer-bot-desc {
  color: #fff;
  margin-bottom: 40px;
  max-width: 504px;
}
footer .footer-gradient .footer-bot .footer-bot-content .footer-bot-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 16px;
}
footer .footer-gradient .footer-bot .footer-bot-content .footer-bot-btn .btn {
  width: 280px;
  min-width: 280px;
  max-width: 100%;
  min-height: 64px;
  height: 64px;
  padding: 0 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .footer-gradient .footer-bot .footer-bot-content .footer-bot-btn .btn.btn-store {
  gap: 10px;
  padding: 0 22px;
}
footer .footer-gradient .footer-bot .footer-bot-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 30px;
  position: relative;
  z-index: 2;
  text-align: right;
}
footer .footer-gradient .footer-bot .footer-bot-image .footer-bot-cards,
.main-cards .cards-image .footer-bot-cards,
.slide-referral .slide-referral-items .slide-referral-item.item-right .footer-bot-cards {
  position: relative;
  width: min(520px, 100%);
  height: clamp(160px, 22vw, 220px);
  margin-left: auto;
  margin-right: auto;
}
footer .footer-gradient .footer-bot .footer-bot-image .footer-bot-card,
.main-cards .cards-image .footer-bot-card,
.slide-referral .slide-referral-items .slide-referral-item.item-right .footer-bot-card {
  position: absolute;
  top: 50%;
  width: 52%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
          box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
footer .footer-gradient .footer-bot .footer-bot-image .footer-bot-card--1,
.main-cards .cards-image .footer-bot-card--1,
.slide-referral .slide-referral-items .slide-referral-item.item-right .footer-bot-card--1 {
  left: 0;
  z-index: 1;
  -webkit-transform: translateY(-50%) rotate(-14deg);
          transform: translateY(-50%) rotate(-14deg);
}
footer .footer-gradient .footer-bot .footer-bot-image .footer-bot-card--2,
.main-cards .cards-image .footer-bot-card--2,
.slide-referral .slide-referral-items .slide-referral-item.item-right .footer-bot-card--2 {
  left: 16%;
  z-index: 2;
  -webkit-transform: translateY(-50%) rotate(-5deg);
          transform: translateY(-50%) rotate(-5deg);
}
footer .footer-gradient .footer-bot .footer-bot-image .footer-bot-card--3,
.main-cards .cards-image .footer-bot-card--3,
.slide-referral .slide-referral-items .slide-referral-item.item-right .footer-bot-card--3 {
  left: 32%;
  z-index: 3;
  -webkit-transform: translateY(-50%) rotate(5deg);
          transform: translateY(-50%) rotate(5deg);
}
footer .footer-gradient .footer-bot .footer-bot-image .footer-bot-card--4,
.main-cards .cards-image .footer-bot-card--4,
.slide-referral .slide-referral-items .slide-referral-item.item-right .footer-bot-card--4 {
  left: 48%;
  z-index: 4;
  -webkit-transform: translateY(-50%) rotate(14deg);
          transform: translateY(-50%) rotate(14deg);
}
footer .footer-gradient .footer-row {
  padding: 33px 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  margin-top: 0;
}
footer .footer-gradient .footer-row .footer-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  padding-right: 15px;
}
footer .footer-gradient .footer-row .footer-item .footer-logo .footer-subtitle {
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
}
footer .footer-gradient .footer-row .footer-item .footer-menu .footer-title {
  font-weight: 600;
  padding: 23px 12px;
  font-family: var(--lf-font);
  color: var(--lf-white);
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li {
  margin-bottom: 4px;
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li a {
  display: inline-block;
  padding: 5px 12px;
  color: var(--lf-white);
  border-radius: var(--lf-radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.email a {
  padding-left: 40px;
  position: relative;
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.email a:before {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url("../img/email.svg");
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.phone a {
  padding-left: 40px;
  position: relative;
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.phone a:before {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url("../img/phone.svg");
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.telegram a {
  padding-left: 40px;
  position: relative;
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.telegram a:before {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url("../img/telegram.svg");
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.intagram a {
  padding-left: 40px;
  position: relative;
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.intagram a:before {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url("../img/instagram.svg");
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.facebook a {
  padding-left: 40px;
  position: relative;
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.facebook a:before {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url("../img/facebook-link.svg");
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.linkedin a {
  padding-left: 40px;
  position: relative;
}
footer .footer-gradient .footer-row .footer-item .footer-menu ul li.linkedin a:before {
  content: "";
  display: block;
  position: absolute;
  left: 12px;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background-image: url("../img/linkedin.svg");
}
footer .footer-bottom {
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.main-cards {
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
  text-align: center;
  background: var(--lf-grad-yellow);
}
.main-cards .cards-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--lf-font);
  max-width: 1002px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 40px;
  color: var(--lf-graphite);
}
.main-cards .cards-desc {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 56px;
  color: var(--lf-warm-grey);
}
.main-cards .cards-btns {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 16px;
}
.main-cards .cards-btns .btn {
  min-height: 64px;
  height: 64px;
  padding: 0 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main-cards .cards-btns .btn.btn-store {
  gap: 10px;
  padding: 0 22px;
}
.main-cards .cards-image {
  text-align: center;
  margin-top: 8px;
  padding-bottom: 24px;
}

.how-get-card {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--lf-grad-light);
}
.how-get-card .section-title,
.how-get-card .how-get-card-item-title {
  color: var(--lf-graphite);
}
.how-get-card .how-get-card-item-subtitle {
  color: var(--lf-warm-grey);
}
.how-get-card .section-title {
  margin-bottom: 80px;
}
.how-get-card .how-get-card-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}
.how-get-card .how-get-card-items .how-get-card-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  padding: 0 8px;
}
.how-get-card .how-get-card-items .how-get-card-item .how-get-card-item-content {
  position: relative;
  overflow: hidden;
}
.how-get-card .how-get-card-items .how-get-card-item .how-get-card-item-content:before {
  content: "";
  position: absolute;
  display: block;
  width: 252px;
  height: 1px;
  left: 80px;
  top: 32px;
  background-image: url("../img/border.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.how-get-card .how-get-card-items .how-get-card-item .how-get-card-item-content .how-get-card-item-image {
  margin-bottom: 24px;
}
.how-get-card .how-get-card-items .how-get-card-item .how-get-card-item-content .how-get-card-item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--lf-font);
}
.how-get-card .how-get-card-items .how-get-card-item .how-get-card-item-content .how-get-card-item-subtitle {
  max-width: 284px;
}
.how-get-card .how-get-card-items .how-get-card-item:last-child .how-get-card-item-content:before {
  display: none;
}

.bonuses {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--lf-grad-yellow);
}
.bonuses .section-title,
.bonuses .bonuses-item-title {
  color: var(--lf-graphite);
}
.bonuses .bonuses-item-desc {
  color: var(--lf-warm-grey);
}
.bonuses .bonuses-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bonuses .bonuses-row .bonuses-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.bonuses .bonuses-row .bonuses-content .section-title {
  margin-bottom: 56px;
}
.bonuses .bonuses-row .bonuses-content .bonuses-image-mobile {
  display: none;
}
.bonuses .bonuses-row .bonuses-content .bonuses-items .bonuses-item {
  margin-bottom: 40px;
  position: relative;
}
.bonuses .bonuses-row .bonuses-content .bonuses-items .bonuses-item .bonuses-item-image {
  position: absolute;
  left: 0;
  top: 4px;
}
.bonuses .bonuses-row .bonuses-content .bonuses-items .bonuses-item .bonuses-item-title {
  padding-left: 48px;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--lf-font);
}
.bonuses .bonuses-row .bonuses-content .bonuses-items .bonuses-item .bonuses-item-desc {
  padding-left: 48px;
}
.bonuses .bonuses-row .bonuses-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  text-align: right;
  padding-left: 15px;
}
.bonuses .bonuses-row .bonuses-image img,
.bonuses .bonuses-row .bonuses-content .bonuses-image-mobile img {
  width: min(100%, 560px);
  height: auto;
  border-radius: var(--lf-radius);
}

.commission {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--lf-grad-light);
}
.commission .section-title {
  color: var(--lf-graphite);
}
.commission .section-title {
  margin-bottom: 48px;
}
.commission .commission-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}
.commission .commission-items .commission-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3%;
          flex: 0 1 33.3%;
  padding: 0 8px;
  padding-bottom: 30px;
}
.commission .commission-items .commission-item .commission-item-content {
  height: 100%;
  padding: 32px;
  border-radius: var(--lf-radius);
  position: relative;
}
.commission .commission-items .commission-item .commission-item-content:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.commission .commission-items .commission-item .commission-item-content:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.commission .commission-items .commission-item .commission-item-content .commission-item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 26px;
  font-family: var(--lf-font);
  position: relative;
  z-index: 2;
}
.commission .commission-items .commission-item .commission-item-content .commission-item-values {
  position: relative;
  z-index: 2;
}
.commission .commission-items .commission-item .commission-item-content .commission-item-values .commission-item-value {
  position: relative;
  margin-bottom: 20px;
}
.commission .commission-items .commission-item .commission-item-content .commission-item-values .commission-item-value .commission-item-value-image {
  position: absolute;
  left: 0;
  top: 0;
}
.commission .commission-items .commission-item .commission-item-content .commission-item-values .commission-item-value .commission-item-value-label {
  color: #fff;
  padding-left: 32px;
}

.faq {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 0;
  background: var(--lf-grad-light);
}
.faq .section-title,
.faq .faq-item-title {
  color: var(--lf-graphite);
}
.faq .faq-row .faq-header .section-subtitle {
  color: var(--lf-warm-grey);
}
.faq .faq-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.faq .faq-row .faq-header {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3%;
          flex: 0 1 33.3%;
  padding-right: 8px;
}
.faq .faq-row .faq-header .section-title {
  margin-bottom: 24px;
}
.faq .faq-row .faq-header .section-subtitle {
  max-width: 320px;
}
.faq .faq-row .faq-items {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 66.7%;
          flex: 0 1 66.7%;
  padding-left: 8px;
}
.faq .faq-row .faq-items .faq-item {
  border-radius: var(--lf-radius);
  margin-bottom: 8px;
  position: relative;
}
.faq .faq-row .faq-items .faq-item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.faq .faq-row .faq-items .faq-item:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.faq .faq-row .faq-items .faq-item:last-child {
  margin-bottom: 0;
}
.faq .faq-row .faq-items .faq-item .faq-item-content {
  padding: 32px 40px;
  position: relative;
  z-index: 2;
}
.faq .faq-row .faq-items .faq-item .faq-item-content .faq-item-title {
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  padding-right: 30px;
  position: relative;
}
.faq .faq-row .faq-items .faq-item .faq-item-content .faq-item-title:before {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background-image: url("../img/faq-down.svg");
}
.faq .faq-row .faq-items .faq-item .faq-item-content .faq-item-answer {
  display: none;
  color: var(--lf-warm-grey);
  padding-top: 16px;
}
.faq .faq-row .faq-items .faq-item.active {
  border-color: var(--lf-yellow);
}
.faq .faq-row .faq-items .faq-item.active .faq-item-content .faq-item-title:before {
  background-image: url("../img/faq-up.svg");
}

.slide-services {
  padding-top: 40px;
}
.slide-services .slide-services-row {
  padding: 64px;
  min-height: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--lf-radius);
  background-image: url("../img/slide-sevices-full-bg.png");
  background-repeat: no-repeat;
  background-position: left top;
  position: relative;
}
.slide-services .slide-services-row:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.slide-services .slide-services-row:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.slide-services .slide-services-row .slide-services-content {
  position: relative;
  z-index: 2;
}
.slide-services .slide-services-row .slide-services-content .slide-services-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--lf-font);
  margin-bottom: 32px;
}
.slide-services .slide-services-row .slide-services-content .slide-services-subtitle {
  color: #fff;
  margin-bottom: 48px;
  max-width: 644px;
}

.services-list {
  margin-bottom: 96px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--lf-grad-light);
}
.services-list .services-items .services-item {
  padding: 48px;
  margin-bottom: 24px;
  border-bottom: none;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: var(--lf-shadow-md);
          box-shadow: var(--lf-shadow-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.services-list .services-items .services-item:last-child {
  border: none;
  margin-bottom: 56px;
}
.services-list .services-items .services-item .services-item-header {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3%;
          flex: 0 1 33.3%;
  padding-right: 24px;
}
.services-list .services-items .services-item .services-item-header .services-item-title {
  font-size: 40px;
  font-weight: 700;
  font-family: var(--lf-font);
  line-height: 1.1;
  margin-bottom: 24px;
  color: inherit;
}
.services-list .services-items .services-item .services-item-header .services-item-subtitle {
  margin-bottom: 40px;
  max-width: 320px;
}
.services-list .services-items .services-item .services-item-header .services-item-btn .btn {
  min-width: 180px;
}
.services-list .services-items .services-item .services-item-header .services-item-mobile-image {
  display: none;
}
.services-list .services-items .services-item .services-item-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 66.7%;
          flex: 0 1 66.7%;
  padding-left: 24px;
}
.services-list .services-items .services-item .services-item-content .services-item-desc {
  margin-bottom: 20px;
}
.services-list .services-items .services-item .services-item-content .services-item-tags {
  margin-bottom: 34px;
}
.services-list .services-items .services-item .services-item-content .services-item-tags .services-item-tag {
  display: inline-block;
  border: 1px solid rgba(46, 50, 61, 0.25);
  border-radius: 80px;
  margin-right: 6px;
  padding: 4px 12px;
  margin-bottom: 8px;
}
.services-list .services-items .services-item .services-item-content .services-item-btn-mobile {
  display: none;
}
.services-list .services-items .services-item .services-item-content .services-item-full-image img {
  border-radius: var(--lf-radius);
  -webkit-box-shadow: var(--lf-shadow-sm);
          box-shadow: var(--lf-shadow-sm);
}

.slide-support {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background: var(--lf-grad-yellow);
}
.slide-support .slide-support-row .slide-support-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--lf-font);
  text-align: center;
  margin-bottom: 40px;
  color: var(--lf-graphite);
}
.slide-support .slide-support-row .slide-support-subtitle {
  max-width: 768px;
  text-align: center;
  color: var(--lf-warm-grey);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.slide-support .slide-support-row .slide-support-btns {
  text-align: center;
}

.support-form {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--lf-grad-light);
}
.support-help {
  background: var(--lf-grad-light);
}
.support-help .section-title {
  color: var(--lf-graphite);
}
.support-contacts {
  padding-bottom: 80px;
  background: var(--lf-grad-light);
}
.support-contacts .section-title {
  color: var(--lf-graphite);
}
.support-form .support-form-row {
  border-radius: var(--lf-radius);
  padding: 56px 56px 72px 56px;
}
.support-form .support-form-row:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.support-form .support-form-row:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.support-form .support-form-row .support-form-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--lf-font);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.support-form .support-form-row .support-form-subtitle {
  color: #fff;
  max-width: 488px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.support-form .support-form-row form {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.support-form .support-form-row form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -4px;
}
.support-form .support-form-row form .form-row .form-field {
  padding: 0 4px;
}
.support-form .support-form-row form .form-row .form-field.email-field {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31%;
          flex: 0 1 31%;
}
.support-form .support-form-row form .form-row .form-field.text-field {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.support-form .support-form-row form .form-row .form-field.btn-field {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 200px;
          flex: 0 1 200px;
}
.support-form .support-form-row form .form-row .form-field.btn-field input {
  border: none;
  height: 80px;
  width: 100%;
}
.support-form .support-form-row form .form-row .form-field.input-field input {
  outline: none;
  border-radius: var(--lf-radius);
  background: rgba(255, 255, 255, 0.07);
  border: none;
  -webkit-box-shadow: 1px 4px 12px 2px rgba(255, 255, 255, 0.25) inset;
          box-shadow: 1px 4px 12px 2px rgba(255, 255, 255, 0.25) inset;
  padding: 10px 32px;
  height: 80px;
  color: #fff;
  width: 100%;
}
.support-form .support-form-row form .form-row .form-field.input-field input::-webkit-input-placeholder {
  color: #a3a3a0;
  opacity: 1;
}
.support-form .support-form-row form .form-row .form-field.input-field input::-moz-placeholder {
  color: #a3a3a0;
  opacity: 1;
}
.support-form .support-form-row form .form-row .form-field.input-field input:-ms-input-placeholder {
  color: #a3a3a0;
}
.support-form .support-form-row form .form-row .form-field.input-field input::-ms-input-placeholder {
  color: #a3a3a0;
}
.support-form .support-form-row form .form-row .form-field.input-field input::placeholder {
  color: #a3a3a0;
  opacity: 1;
}
.support-form .support-form-row form .form-row .form-field.input-field input:focus {
  border: 1px solid #fff;
}

.support-help {
  padding-top: 120px;
  overflow: hidden;
}
.support-help .section-subtitle {
  margin-bottom: 48px;
  color: #fff;
  max-width: 488px;
}
.support-help .support-help-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
}
.support-help .support-help-items .support-help-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3%;
          flex: 0 1 33.3%;
  padding: 0 8px;
}
.support-help .support-help-items .support-help-item .support-help-item-content {
  display: block;
  padding: 8px;
  border-radius: var(--lf-radius);
  padding-bottom: 32px;
  background: none;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.support-help .support-help-items .support-help-item .support-help-item-content .support-help-item-image img {
  border-radius: var(--lf-radius);
}
.support-help .support-help-items .support-help-item .support-help-item-content .support-help-item-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 20px 18px 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.support-help .support-help-items .support-help-item .support-help-item-content .support-help-item-desc .support-help-item-header .support-help-item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.support-help .support-help-items .support-help-item .support-help-item-content .support-help-item-desc .support-help-item-header .support-help-item-title a {
  color: #fff;
  text-decoration: none;
}
.support-help .support-help-items .support-help-item .support-help-item-content .support-help-item-desc .support-help-item-header .support-help-item-subtitle {
  color: #fff;
  margin-bottom: 20px;
}
.support-help .support-help-items .support-help-item .support-help-item-content .support-help-item-desc .support-help-item-link {
  color: #fff;
  font-weight: 700;
}
.support-help .support-help-items .support-help-item .support-help-item-content .support-help-item-desc .support-help-item-link a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  position: relative;
  padding-right: 26px;
}
.support-help .support-help-items .support-help-item .support-help-item-content .support-help-item-desc .support-help-item-link a:after {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background-image: url("../img/support-help-link.svg");
}

.support-contacts {
  overflow: hidden;
  padding-top: 144px;
  padding-bottom: 32px;
}
.support-contacts .section-title {
  margin-bottom: 56px;
}
.support-contacts .support-contacts-row .support-contacts-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -4px;
}
.support-contacts .support-contacts-row .support-contacts-items.items-1 .support-contacts-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.support-contacts .support-contacts-row .support-contacts-items.items-2 .support-contacts-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.support-contacts .support-contacts-row .support-contacts-items.items-3 .support-contacts-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item {
  padding: 0 4px;
  margin-bottom: 8px;
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a {
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  border-radius: var(--lf-radius);
  padding-left: 92px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-right: 75px;
  position: relative;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a:before {
  content: "";
  position: absolute;
  display: block;
  left: 40px;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 16px;
  right: 40px;
  top: 50%;
  margin-top: -8px;
  background-image: url("../img/contacts-link.svg");
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a.contacts-email:before {
  background-image: url("../img/contacts-email.svg");
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a.contacts-phone:before {
  background-image: url("../img/contacts-phone.svg");
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a.contacts-map:before {
  background-image: url("../img/contacts-map.svg");
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a.contacts-telegram:before {
  background-image: url("../img/contacts-telegram.svg");
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a.contacts-instagram:before {
  background-image: url("../img/contacts-instagram.svg");
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a.contacts-facebook:before {
  background-image: url("../img/contacts-facebook.svg");
}
.support-contacts .support-contacts-row .support-contacts-items .support-contacts-item .support-contacts-item-content a.contacts-linkedin:before {
  background-image: url("../img/contacts-linkedin.svg");
}

.thank-popup {
  max-width: 280px;
  padding: 32px 20px 40px 20px;
  background-color: var(--lf-graphite);
  border-radius: var(--lf-radius);
}
.thank-popup .thank-image {
  text-align: center;
  margin-bottom: 24px;
}
.thank-popup .thank-title {
  color: #fff;
  text-align: center;
}

.slide-referral {
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
  background: var(--lf-grad-yellow);
}
.slide-referral .slide-referral-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
  padding-bottom: 30px;
}
.slide-referral .slide-referral-items .slide-referral-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 0 8px;
}
.slide-referral .slide-referral-items .slide-referral-item .slide-referral-item-content {
  border-radius: var(--lf-radius);
  padding: 56px 15px 0 40px;
  height: 100%;
  position: relative;
}
.slide-referral .slide-referral-items .slide-referral-item .slide-referral-item-content:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.slide-referral .slide-referral-items .slide-referral-item .slide-referral-item-content:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.slide-referral .slide-referral-items .slide-referral-item .slide-referral-item-content .slide-referral-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--lf-font);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  color: var(--lf-graphite);
}
.slide-referral .slide-referral-items .slide-referral-item .slide-referral-item-content .slide-referral-subtitle {
  color: var(--lf-warm-grey);
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.slide-referral .slide-referral-items .slide-referral-item .slide-referral-item-content .slide-referral-btns {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 16px;
}
.slide-referral .slide-referral-items .slide-referral-item .slide-referral-item-content .slide-referral-btns .btn {
  margin-bottom: 0;
  min-height: 64px;
  height: 64px;
  padding: 0 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.slide-referral .slide-referral-items .slide-referral-item .slide-referral-item-content .slide-referral-btns .btn.btn-store {
  gap: 10px;
  padding: 0 22px;
}
.slide-referral .slide-referral-items .slide-referral-item.item-right .slide-referral-item-content {
  padding: 32px 24px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 360px;
}
.slide-referral .slide-referral-items .slide-referral-item.item-right .footer-bot-cards {
  width: min(100%, 520px);
}

.referral-work {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--lf-grad-light);
}
.referral-work .section-title,
.referral-work .referral-work-item-title {
  color: var(--lf-graphite);
}
.referral-work .referral-work-item-subtitle {
  color: var(--lf-warm-grey);
}
.referral-work .referral-work-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.referral-work .referral-work-row .referral-work-header {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 34%;
          flex: 0 1 34%;
  padding-right: 15px;
}
.referral-work .referral-work-row .referral-work-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 66%;
          flex: 0 1 66%;
}
.referral-work .referral-work-row .referral-work-content .referral-work-items .referral-work-item {
  position: relative;
  padding-left: 104px;
  min-height: 140px;
  margin-bottom: 12px;
}
.referral-work .referral-work-row .referral-work-content .referral-work-items .referral-work-item:before {
  content: "";
  position: absolute;
  display: block;
  left: 32px;
  top: 76px;
  width: 1px;
  height: 64px;
  background-image: url("../img/referral-work-line.svg");
}
.referral-work .referral-work-row .referral-work-content .referral-work-items .referral-work-item:last-child {
  min-height: auto;
  margin-bottom: 0;
}
.referral-work .referral-work-row .referral-work-content .referral-work-items .referral-work-item:last-child:before {
  display: none;
}
.referral-work .referral-work-row .referral-work-content .referral-work-items .referral-work-item .referral-work-item-image {
  position: absolute;
  left: 0;
  top: 0;
}
.referral-work .referral-work-row .referral-work-content .referral-work-items .referral-work-item .referral-work-item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: var(--lf-font);
}

.referral-useful {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--lf-grad-yellow);
}
.referral-useful .section-title {
  max-width: 520px;
  margin-bottom: 56px;
  color: var(--lf-graphite);
}
.referral-useful .referral-useful-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
  padding-bottom: 30px;
}
.referral-useful .referral-useful-row .referral-useful-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.3%;
          flex: 0 1 33.3%;
  padding: 0 8px;
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-items .referral-useful-item {
  margin-bottom: 16px;
  padding: 20px 24px;
  border-radius: var(--lf-radius);
  min-height: 276px;
  position: relative;
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-items .referral-useful-item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-items .referral-useful-item:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-items .referral-useful-item:last-child {
  margin-bottom: 0;
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-items .referral-useful-item .referral-useful-image {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-items .referral-useful-item {
  background: var(--lf-white);
  box-shadow: var(--lf-shadow-sm);
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-items .referral-useful-item .referral-useful-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--lf-font);
  position: relative;
  z-index: 2;
  color: var(--lf-graphite);
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-items .referral-useful-item .referral-useful-subtitle {
  color: var(--lf-warm-grey);
  position: relative;
  z-index: 2;
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-background {
  border-radius: var(--lf-radius);
  height: 100%;
  min-height: 420px;
  background-color: rgba(255, 255, 255, 0.45);
  background-image: url("../img/brand/bonuses-visual.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-background:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.referral-useful .referral-useful-row .referral-useful-col .referral-useful-background:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: var(--lf-radius);
  -webkit-box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
          box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25);
  z-index: 0;
}

.code-popup {
  padding: 40px 48px;
  border-radius: var(--lf-radius);
  max-width: 656px;
}
.code-popup .fancybox-close-small {
  color: #000;
}
.code-popup .code-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--lf-graphite);
  text-align: center;
  margin-bottom: 12px;
}
.code-popup .code-subtitle {
  color: var(--lf-graphite);
  text-align: center;
  margin-bottom: 40px;
}
.code-popup .code-image {
  text-align: center;
  margin-bottom: 32px;
}

.tmpl-404 {
  padding-top: 40px;
  margin-bottom: 80px;
}
.tmpl-404 .error-row {
  border-radius: var(--lf-radius);
  padding-top: 120px;
  padding-bottom: 152px;
  padding-left: 15px;
  padding-right: 15px;
  background-image: url("../img/404.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.tmpl-404 .error-row .error-title {
  font-size: 56px;
  font-weight: 700;
  font-family: var(--lf-font);
  text-align: center;
  margin-bottom: 32px;
}
.tmpl-404 .error-row .error-subtitle {
  text-align: center;
  margin-bottom: 56px;
  max-width: 544px;
  margin-left: auto;
  margin-right: auto;
}
.tmpl-404 .error-row .error-btns {
  text-align: center;
}
.tmpl-404 .error-row .error-btns .btn.btn-white {
  margin-right: 16px;
}