@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
  --centerWidth: 1200px;
  --bodyBg: #0D0D0E;
  --textColor: rgba(255, 255, 255, 0.98);
  --textColorMuted: #848484;
  --colorAccent: #D01635;
  --fontFamily: "Roboto", serif;
  --textFont: 400 18px/1.7 var(--fontFamily);
  --textFontSmall: 400 16px/1.7 var(--fontFamily);
  --textBtn: 700 18px/1.4 var(--fontFamily);
  --titleFontH1: 700 62px/normal var(--fontFamily);
  --titleFontH2: 600 36px/normal "Poppins", serif;
  --titleFontH3: 700 24px/normal var(--fontFamily);
  --placeholderColor: var(--textColor);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
  display: block;
  width: 100%;
  background: #111113;
  border: none;
  border-radius: 18px;
  padding: 20px 24px;
  font: var(--textFont);
  line-height: 1.2;
  color: var(--textColor);
  transition: all 0.3s ease;
}

textarea {
  overflow-x: hidden;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}

textarea::-webkit-scrollbar {
  width: 0;
  background-color: transparent;
}

textarea::-webkit-scrollbar-thumb {
  background-color: transparent;
}

input:focus,
textarea:focus {
  transition: all 0.3s ease;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  -webkit-transform: translate(20%, 0);
  transform: translate(20%, 0);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  -webkit-transform: translate(20%, 0);
  transform: translate(20%, 0);
  opacity: 0;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input:focus::-ms-input-placeholder,
textarea:focus::-ms-input-placeholder {
  -webkit-transform: translate(20%, 0);
  transform: translate(20%, 0);
  opacity: 0;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input:focus::placeholder,
textarea:focus::placeholder {
  -webkit-transform: translate(20%, 0);
  transform: translate(20%, 0);
  opacity: 0;
  transition: all 0.3s ease;
}

textarea {
  height: 120px;
  max-width: 100%;
  resize: none;
}

.highlighted {
  color: var(--colorAccent);
}

.section {
  position: relative;
}

.preload {
  height: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

/*main styles*/
body {
  font: var(--textFont);
  color: var(--textColorMuted);
  background: var(--bodyBg);
  position: relative;
  overflow-x: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

::-webkit-input-placeholder {
  color: var(--placeholderColor);
}

:-ms-input-placeholder {
  color: var(--placeholderColor);
}

::-ms-input-placeholder {
  color: var(--placeholderColor);
}

::placeholder {
  color: var(--placeholderColor);
}

.center {
  max-width: var(--centerWidth);
  width: calc(100% - 40px);
  height: inherit;
  margin: 0 auto;
}

.title {
  color: var(--textColor);
  margin-bottom: 24px;
}

.title__h1,
.title__h2 {
  font: var(--titleFontH1);
  margin-bottom: 40px;
}

.title__h3 {
  font: var(--titleFontH2);
}

.title__h4 {
  font: var(--titleFontH3);
}

.btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 62px;
  width: 100%;
  min-width: 220px;
  padding: 10px 24px;
  border: none;
  text-align: center;
  cursor: pointer;
  background: transparent;
  color: var(--textColor);
  border-radius: 100px;
  font: var(--textBtn);
  position: relative;
  z-index: 10;
  transition: all 0.4s ease;
}

.btn:not(.btn__accent, .btn__secondary):hover {
  text-shadow: 5px 5px 15px var(--colorAccent), -5px -5px 15px var(--colorAccent), -5px 5px 15px var(--colorAccent), 5px -5px 15px var(--colorAccent);
}

.btn__secondary {
  background: transparent;
  border: 1px solid #9A9A9A;
}

.btn__secondary:hover {
  border-color: var(--colorAccent);
  background-color: var(--colorAccent);
}

.btn__accent {
  background: var(--colorAccent);
}

.btn__accent:hover {
  -webkit-filter: brightness(1.5);
  filter: brightness(1.5);
}

/*header*/
.header {
  --centerWidth: 1440px;
  height: 90px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 30;
}

.header_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
  width: 100%;
}

.header_logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header_button .btn {
  height: 50px;
  width: 160px;
  min-width: 160px;
  padding: 10px 15px;
  font: 400 16px/normal "Poppins", serif;
}

.section {
  position: relative;
  padding: 70px 0;
}

/*main section*/
.section__main {
  overflow: hidden;
  height: 100vh;
  min-height: 800px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 130px;
}

.main {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.main_intro {
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 4;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: center;
  justify-content: center;
}

.main_title {
  margin-bottom: 40px;
}

.main_subtitle {
  margin-bottom: 40px;
}

.main_actions {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 20;
}

.main_action {
  width: 220px;
  margin-right: 16px;
}

.main_scene-wrap {
  position: absolute;
  left: 38%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1200px;
  height: 600px;
}

.main_scene-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 597px;
  height: 521px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--colorAccent) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.7;
  -webkit-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%);
}

.main_scene {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-52%, -55%);
  transform: translate(-52%, -55%);
  height: 135%;
  width: 135%;
}

.main_scene-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

/*payment logos*/
.payment-logos {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 46px;
}

.payment-logos_item {
  margin: 0 40px;
  opacity: 0.3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.payment-logos_item::before {
  content: '';
  display: block;
  --iconHeight: 46px;
  --iconWidth: 113px;
  height: var(--iconHeight);
  width: var(--iconWidth);
  background: url(../i/payment-logos-sprite.svg) no-repeat calc(var(--iconWidth) * var(--iconIndex)) center;
}

.payment-logos_item__visa::before {
  --iconIndex: 0;
}

.payment-logos_item__mastercard::before {
  --iconIndex: -1;
}

.payment-logos_item__union::before {
  --iconIndex: -2;
}

.payment-logos_item__amex::before {
  --iconIndex: -3;
}

.payment-logos_item__jcb::before {
  --iconIndex: -4;
}

.payment-logos_item__discover::before {
  --iconIndex: -5;
}

/*payment tabs*/
.payment_tabs-items {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-max-content;
  width: max-content;
  margin: 0 auto 20px;
  padding: 16px;
  border-radius: 100px;
  z-index: 10;
}

.payment_tabs-items::before {
  background: linear-gradient(255deg, rgba(255, 255, 255, 0.06) 32.72%, rgba(255, 255, 255, 0.00) 64.86%), var(--bodyBg);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.payment_tabs-items::before,
.payment_tabs-items::after {
  content: '';
  border-radius: inherit;
  position: absolute;
}

.payment_tabs-items::after {
  background: linear-gradient(255deg, rgba(255, 255, 255, 0.08) 32.72%, rgba(255, 255, 255, 0.01) 84.86%);
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: -2;
}

.payment_tabs-item {
  min-width: 210px;
  padding: 16px 24px;
  margin: 0 16px 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100px;
  text-align: center;
  font: var(--textBtn);
  line-height: 1.66;
  color: var(--textColor);
  cursor: pointer;
  transition: all 0.6s ease;
}

.payment_tabs-item:last-of-type {
  margin-right: 0;
}

.payment_tabs-item.is-active,
.payment_tabs-item:hover {
  background: var(--colorAccent);
}

.payment_tabs-content-item.is-visible {
  display: block;
}

.payment_tabs-content-item {
  display: none;
}

.payment_tabs-content-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
}

@-webkit-keyframes tabs {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  45%,
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes tabs {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  45%,
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.payment_tabs-content-col {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.payment_tabs-content-item.is-visible .payment_tabs-content-col {
  -webkit-animation: tabs 1.2s ease-in-out both;
  animation: tabs 1.2s ease-in-out both;
}

.payment_tabs-content-col {
  width: 50%;
  min-height: 640px;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.payment_tabs-content-col__img {
  padding: 0 20px 0 0;
}

.payment_tabs-content-item__2 .payment_tabs-content-col__img {
  padding: 0 0 0 20px;
  -ms-flex-order: 2;
  order: 2;
}

.payment_img-block {
  width: 100%;
  height: 562px;
  position: relative;
}

.payment_description {
  margin-bottom: 40px;
}

.payment_services {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -8px 0 0 -8px;
}

.payment_services-item {
  padding: 8px 16px;
  border-radius: 100px;
  margin: 8px;
  font: var(--textFontSmall);
  line-height: 1.87;
  font-weight: 500;
  color: var(--textColor);
  background: var(--colorAccent);
}

.payment_security {
  margin-top: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.payment_security-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: var(--textColor);
  font: var(--titleFontH3);
}

.payment_security-item:first-of-type {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.payment_security-logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 24px;
  height: 60px;
  background-image: url(../i/payment-logos-sprite.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.payment_security-logo__pci {
  width: 100px;
  background-position: -680px 0;
}

.payment_security-logo__3d {
  width: 53px;
  background-position: -815px 0;
}

/*benefits*/
.benefits_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -20px;
}

.benefits_item {
  position: relative;
  overflow: hidden;
  width: calc(50% - 40px);
  padding: 40px;
  margin: 0 20px 40px;
  border-radius: 40px;
  color: var(--textColor);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
}

.benefits_item::before,
.benefits_item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  transition: all 0.6s ease;
}

.benefits_item::before {
  opacity: 0;
  background: linear-gradient(116deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.35) 95.96%);
}

.benefits_item::after {
  background: linear-gradient(255deg, rgba(255, 255, 255, 0.03) 32.72%, rgba(255, 255, 255, 0.06) 64.86%);
}

.benefits_item:hover::before {
  opacity: 1;
}

.benefits_item:hover::after {
  opacity: 0;
}

.benefits_item:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

.benefits_item-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--colorAccent);
  color: var(--textColor);
  font: var(--textFontSmall);
  padding: 8px 16px;
  border-radius: 100px;
}

.benefits_item-img {
  --imgWidth: 120px;
  width: var(--imgWidth);
  height: var(--imgWidth);
  margin-bottom: 24px;
  background: url(../i/img-sprite.png) no-repeat calc(var(--imgWidth) * var(--imgIndex)) 0/auto 100%;
}

.benefits_item-img__4 {
  width: calc(var(--imgWidth) - 5px);
}

.benefits_item-img__1 {
  --imgIndex: 0;
}

.benefits_item-img__2 {
  --imgIndex: -1;
}

.benefits_item-img__3 {
  --imgIndex: -2;
}

.benefits_item-img__4 {
  --imgIndex: -3;
}

.benefits_item-title {
  margin-bottom: 24px;
}

/*blog*/
.blog_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -20px;
}

.blog_item {
  min-width: 280px;
  width: calc(33.3% - 40px);
  margin: 0 20px;
  transition: all 0.3s ease-in-out;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.blog_item.is-collapsed {
  width: 480px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.blog_item-img-block {
  height: 320px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  border-radius: 40px;
  background: #151516;
}

.blog_item-img-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog_item-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog_item-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog_item.is-collapsed .blog_item-description {
  -webkit-line-clamp: 4;
}

.blog_item-action {
  margin-top: 24px;
}

.blog_item-action .btn {
  min-width: 62px;
  width: 62px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.blog_item:hover .blog_item-action .btn,
.blog_item.is-collapsed .blog_item-action .btn {
  width: 220px;
}

.blog_item-action .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.blog_item.is-collapsed .blog_item-action .icon {
  display: none;
}

.blog_item:hover .blog_item-action .icon {
  -webkit-transform: translate(10px, -50%);
  transform: translate(10px, -50%);
  opacity: 0;
}

.blog_item-action .btn_text {
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
}

.blog_item.is-collapsed .blog_item-action .btn_text,
.blog_item:hover .blog_item-action .btn_text {
  opacity: 1;
}

/*contact us*/
.contact-us {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-us_info {
  -ms-flex: 1;
  flex: 1;
  max-width: calc(100% - 560px);
  padding-right: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-us_img {
  --imgIndex: -4;
  width: 120px;
  height: 120px;
  margin-bottom: 40px;
  background: url(../i/img-sprite.png) no-repeat calc(120px * var(--imgIndex)) 0;
}

.contact-us_form {
  position: relative;
  width: 560px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.contact-us_form::before,
.contact-us_form::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 111px;
  z-index: -1;
  border-radius: 50%;
  background: var(--colorAccent);
  width: 269px;
  height: 269px;
  -webkit-filter: blur(172px);
  filter: blur(172px);
}

.contact-us-custom {
  position: relative;
  z-index: 10;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px;
  border-radius: 40px;
  background: linear-gradient(116deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.35) 95.96%);
  box-shadow: -2px 1px 0px 0px rgba(255, 255, 255, 0.32);
}

.contact-us-custom-fields {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contact-us-custom-field {
  margin-bottom: 20px;
  width: calc(50% - 20px);
}

.contact-us-custom-field .label {
  margin-bottom: 10px;
  line-height: 24px;
  display: block;
  text-transform: capitalize;
}

.contact-us-custom-field__email,
.contact-us-custom-field__message {
  width: 100%;
}

.contact-us-custom_button {
  width: 240px;
  margin: 0 auto;
}

.contact-us-custom_success {
  display: none;
  color: var(--textColor);
  font: var(--titleFontH3);
}

.is-success .contact-us-custom_success {
  display: block;
}

.contact-us-custom-field_error {
  color: red;
  margin-top: 2px;
  font-size: 12px;
}

/*static pages*/
.section__static-page {
  --centerWidth: 1440px;
  padding-top: 130px;
}

.static-page {
  font: var(--textFontSmall);
}

.static-page h1 {
  color: var(--textColor);
  font: var(--titleFontH1);
  margin-bottom: 40px;
}

.static-page h2 {
  color: var(--textColor);
  font: var(--titleFontH2);
  margin-bottom: 24px;
}

.static-page p {
  margin-bottom: 20px;
}

.static-page ul {
  margin-bottom: 20px;
}

.static-page li {
  margin-bottom: 10px;
  list-style: disc;
  list-style-position: outside;
  margin-left: 30px;
}

.static-page a {
  text-decoration: underline;
}

/*animation 1*/
.animation {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.animation::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--colorAccent) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.8;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*animation 1*/
.animation-1 {
  --animationTime: 8s;
}

.animation-1_phone {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../i/animation-1/phone.png) no-repeat center/contain;
  z-index: 1;
}

.animation-1_phone::before {
  content: '';
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(186deg, var(--bodyBg) 6.4%, rgba(115, 115, 115, 0.00) 97.22%);
  -webkit-animation: phone var(--animationTime) ease both infinite;
  animation: phone var(--animationTime) ease both infinite;
}

.animation-1_card-1,
.animation-1_card-2,
.animation-1_card-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 40%;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.animation-1_card-1 {
  -webkit-animation: card-1 var(--animationTime) ease both infinite;
  animation: card-1 var(--animationTime) ease both infinite;
  background-image: url(../i/animation-1/card-1.png);
  z-index: 4;
}

.animation-1_card-2 {
  background-image: url(../i/animation-1/card-2.png);
  z-index: 3;
}

.animation-1_card-3 {
  -webkit-animation: card-2 var(--animationTime) ease both infinite;
  animation: card-2 var(--animationTime) ease both infinite;
  -webkit-transform: translate(0, 25%);
  transform: translate(0, 25%);
  background-image: url(../i/animation-1/card-3.png);
  z-index: 2;
}

.animation-1::after {
  opacity: 0;
  -webkit-animation: shine var(--animationTime) ease both infinite;
  animation: shine var(--animationTime) ease both infinite;
}

@-webkit-keyframes shine {

  0%,
  10%,
  55% {
    opacity: 0;
  }

  20%,
  45% {
    opacity: 1;
  }
}

@keyframes shine {

  0%,
  10%,
  55% {
    opacity: 0;
  }

  20%,
  45% {
    opacity: 1;
  }
}

@-webkit-keyframes phone {

  0%,
  10%,
  55% {
    opacity: 1;
  }

  20%,
  45% {
    opacity: 0;
  }
}

@keyframes phone {

  0%,
  10%,
  55% {
    opacity: 1;
  }

  20%,
  45% {
    opacity: 0;
  }
}

@-webkit-keyframes card-1 {

  0%,
  10%,
  55%,
  100% {
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
  }

  20%,
  45% {
    -webkit-transform: translate(0, -35%);
    transform: translate(0, -35%);
  }
}

@keyframes card-1 {

  0%,
  10%,
  55%,
  100% {
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
  }

  20%,
  45% {
    -webkit-transform: translate(0, -35%);
    transform: translate(0, -35%);
  }
}

@-webkit-keyframes card-2 {

  0%,
  10%,
  55%,
  100% {
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
  }

  20%,
  45% {
    -webkit-transform: translate(0, -15%);
    transform: translate(0, -15%);
  }
}

@keyframes card-2 {

  0%,
  10%,
  55%,
  100% {
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
  }

  20%,
  45% {
    -webkit-transform: translate(0, -15%);
    transform: translate(0, -15%);
  }
}

/*animation 2*/
.animation-2 {
  --animationTime: 8s;
}

.animation-2_phone {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../i/animation-2/phone-2.png) no-repeat center/contain;
  z-index: 1;
  -webkit-animation: phone-2 var(--animationTime) ease both infinite;
  animation: phone-2 var(--animationTime) ease both infinite;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.animation-2_btn {
  position: absolute;
  top: 80%;
  left: 0;
  width: 289px;
  height: 55px;
  right: 0;
  margin: auto;
}

.animation-2_btn .btn {
  pointer-events: none;
  border-radius: 11px;
  font-size: 23px;
  background: linear-gradient(90deg, #261216 0%, #932B3C 48.87%, #5F373E 99.99%);
}

.animation-2_btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
  width: 225px;
  height: 75px;
  background: var(--colorAccent);
  -webkit-filter: blur(27px);
  filter: blur(27px);
  border-radius: 50%;
  z-index: -1;
}

.animation-2_card-1,
.animation-2_card-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
}

.animation-2_card-1 {
  background: url(../i/animation-2/card-1.png) no-repeat center/contain;
  z-index: 4;
}

.animation-2_card-2 {
  background: url(../i/animation-2/card-2.png) no-repeat center/contain;
  z-index: 3;
  -webkit-transform: translate(30px, -20px);
  transform: translate(30px, -20px);
  -webkit-animation: card-2-1 var(--animationTime) ease both infinite;
  animation: card-2-1 var(--animationTime) ease both infinite;
}

.animation-2_cards {
  position: absolute;
  width: 170px;
  height: 130px;
  right: 20%;
  top: 20%;
  z-index: 4;
  -webkit-animation: cards-2 var(--animationTime) ease both infinite;
  animation: cards-2 var(--animationTime) ease both infinite;
}

@-webkit-keyframes phone-2 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  20%,
  45% {
    -webkit-transform: rotate(5.7deg);
    transform: rotate(5.7deg);
  }
}

@keyframes phone-2 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  20%,
  45% {
    -webkit-transform: rotate(5.7deg);
    transform: rotate(5.7deg);
  }
}

@-webkit-keyframes cards-2 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  20%,
  45% {
    -webkit-transform: translate(-25px, 40px);
    transform: translate(-25px, 40px);
  }
}

@keyframes cards-2 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  20%,
  45% {
    -webkit-transform: translate(-25px, 40px);
    transform: translate(-25px, 40px);
  }
}

@-webkit-keyframes card-2-1 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: translate(30px, -20px);
    transform: translate(30px, -20px);
  }

  20%,
  45% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes card-2-1 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: translate(30px, -20px);
    transform: translate(30px, -20px);
  }

  20%,
  45% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

/*animation 3*/
.animation-3 {
  --animationTime: 8s;
}

.animation-3::after {
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
  opacity: 0;
  -webkit-animation: shine-3 var(--animationTime) ease both infinite;
  animation: shine-3 var(--animationTime) ease both infinite;
}

.animation-3::before {
  content: '';
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(186deg, var(--bodyBg) 6.4%, rgba(115, 115, 115, 0.00) 97.22%);
  -webkit-animation: phone var(--animationTime) ease both infinite;
  animation: phone var(--animationTime) ease both infinite;
}

.animation-3_phone {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../i/animation-3/phone-3.png) no-repeat center/contain;
  z-index: 1;
  -webkit-animation: phone-3 var(--animationTime) ease both infinite;
  animation: phone-3 var(--animationTime) ease both infinite;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

.animation-3_card {
  position: absolute;
  width: 410px;
  max-width: 90%;
  height: 258px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../i/animation-3/card-3.png) no-repeat center/contain;
  z-index: 4;
  -webkit-transform: scale(0.6) translate(-25px, 52px);
  transform: scale(0.6) translate(-25px, 52px);
  -webkit-animation: card-3 var(--animationTime) ease both infinite;
  animation: card-3 var(--animationTime) ease both infinite;
}

@-webkit-keyframes card-3 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: scale(0.6) translate(-25px, 52px);
    transform: scale(0.6) translate(-25px, 52px);
  }

  20%,
  45% {
    -webkit-transform: scale(1) translate(5px, 52px);
    transform: scale(1) translate(5px, 52px);
  }
}

@keyframes card-3 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: scale(0.6) translate(-25px, 52px);
    transform: scale(0.6) translate(-25px, 52px);
  }

  20%,
  45% {
    -webkit-transform: scale(1) translate(5px, 52px);
    transform: scale(1) translate(5px, 52px);
  }
}

@-webkit-keyframes phone-3 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  20%,
  45% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
}

@keyframes phone-3 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  20%,
  45% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
}

@-webkit-keyframes shine-3 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: translate(-70%, -70%) scale(0.4);
    transform: translate(-70%, -70%) scale(0.4);
    opacity: 0;
  }

  20%,
  45% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

@keyframes shine-3 {

  0%,
  10%,
  50%,
  100% {
    -webkit-transform: translate(-70%, -70%) scale(0.4);
    transform: translate(-70%, -70%) scale(0.4);
    opacity: 0;
  }

  20%,
  45% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

/*footer*/
.footer {
  --centerWidth: 1440px;
  padding: 70px 0 20px;
  font: var(--textFontSmall);
}

.footer_wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer_info {
  width: 33.3%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.footer_logo {
  margin-bottom: 14px;
  height: 36px;
}

.footer_logo img {
  height: 100%;
}

.footer_menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.footer_menu-title {
  color: var(--textColor);
  font-family: "Poppins", serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer_menu-items {
  width: 50%;
}

.footer_menu-item {
  margin-bottom: 10px;
}

.footer_menu-item:last-of-type {
  margin-bottom: 0;
}