:root {
  --primary-color: #ff0081;
  --on-primary-color: #FFF;
  --primary-99-color: #FFFBFF;
  --neutral-20-color: #212020;
  --neutral-30-color: #484646;
  --neutral-40-color: #605E5E;
  --neutral-50-color: #797676;
  --surface-color: #F6FEFF;
  --on-surface-variant-color: #3F484A;
  --surface-neutral: #FAFAFA;
  --on-surface-variant: var(--neutral-40-color);
  --space-xxxlarge: 120px;
  --space-xxlarge: 72px;
  --space-xlarge: 46px;
  --space-large: 32px;
  --space-medium: 24px;
  --space-small: 16px;
  --space-xsmall: 8px;
}

* {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
*:focus, *:focus-visible, button:focus {
  outline: none;
}

html {
  background: linear-gradient(#fff, #fbf2f7, #fbf2f7, #fbf2f7, #fff);
}

body {
  color: var(--neutral-30-color);
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  background: linear-gradient(#fff, #fbf2f7, #fbf2f7, #fbf2f7, #fff);
}

a {
  color: var(--neutral-40-color);
}

a:hover {
  color: var(--primary-color);
}

strong {
  color: var(--neutral-20-color);
}

/* font style */

.display-large {
  font-weight: 600;
  font-size: 56px;
  line-height: 1.3;
  color: var(--neutral-20-color);
}
.display-medium {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.3;
  color: var(--neutral-20-color);
}
.display-small {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
  color: var(--neutral-20-color);
}

.headline-large {
  font-weight: normal;
  font-size: 32px;
  line-height: 1.8;
}
.headline-medium {
  font-weight: normal;
  font-size: 26px;
  line-height: 1.6;
}
.headline-small {
  font-weight: normal;
  font-size: 20px;
  line-height: 1.3;
}

.title-large {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
}
.title-medium {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.3;
}
.title-small {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: var(--space-large);
}

.body-large {
  font-weight: normal;
  font-size: 22px;
  line-height: 1.4;
}
.body-medium {
  font-weight: normal;
  font-size: 18px;
  line-height: 1.4;
}
.body-small {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.4;
}

.label-large {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.3;
  color: var(--neutral-40-color);
}
.label-medium {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.3;
  color: var(--neutral-40-color);
}
.label-small {
  font-weight: normal;
  font-size: 11px;
  line-height: 1.3;
  color: var(--neutral-40-color);
}

.bolder {
  font-weight: 600;
}


/* bootstrap */

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  border-radius: 30px;
  color: var(--on-primary-color);
  padding: 18px 32px 18px 32px;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  opacity: 0.8;
}

ul {
  padding: 0px;
  margin: 0px;
}

li {
  list-style: none;
}

a.primary-link {
  color: var(--primary-color);
}
a.primary-link:hover {
  opacity: 0.7;
}

.no-padding {
  padding: 0px !important;
}

/* project */

.top-menu {
  background: #ffffff99;
  margin-bottom: var(--space-large);
}
.menu-item {
  height: 30px;
}
.menu-item.menu-right {
  float: right;
}
.app-name {
  color: var(--primary-color) !important;
  display: inline-block;
  height: auto;
}
.app-name img {
  height: 30px;
  margin-right: 12px;
}

/* NAV MENU */

.navbar-collapse {
  transition: opacity ease-in 0.25s, padding ease-in 0.25s;
}
.navbar-collapse.collapsing {
  padding: 56px 0px;
  opacity: 0;
}
.navbar-collapse.show {
  padding: 56px 0px;
  opacity: 1;
}
.navbar-collapse li.nav-item {
  padding: 12px 12px;
}
.navbar-collapse a.nav-link.nav-header-link {
  margin: 0px;
}

.navbar-toggler-icon {
  background: url(/img/menu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  outline-width: 0;
}
.nav-header-logo {
  padding-left: 0px;
  padding-right: 0px;
}
.nav-link.nav-header-link {
  color: var(--neutral-20-color);
  font-size: 16px;
  margin-left: 24px;
  margin-right: 24px;
  border-bottom: 1px solid transparent;
  font-weight: 300;
}
.nav-link.nav-header-link:hover {
  color: var(--primary-color);
  border-bottom: 1.5px solid var(--primary-color);
}

/* HEADER */

.header-content {
  padding: 80px 0px;
}

.header-title {
  font-size: 52px;
  color: var(--neutral-20-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.header-subtitle {
  font-size: 24px;
  color: var(--neutral-40-color);
  font-weight: normal;
  padding: 16px 0px;
}

.header-download {
  padding: 16px 24px;
  background: linear-gradient(92deg, #ff0382, #f00079, #f00079, #ff0081);
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  border-radius: 9px;
  font-size: 18px;
  margin: 64px 0px 32px;
  display: inline-block;
  border: 2px solid #d4d4d4;
  width: 100%;
  text-align: center;
}

.header-download:hover {
  background: linear-gradient(92deg, #ff0382, #f00079, #f00079, #ff0081);
  font-weight: 500;
  color: white;
  text-decoration: none;
}




.header {
  padding: var(--space-large);
  padding-top: 32px;
  padding-bottom: 32px;
}
.container.header {
  max-width: 1400px !important;
}
.header .title-container {
  padding-top: var(--space-xxlarge);
  padding-bottom: var(--space-xxlarge);
}

.header .title-container-small {
  padding-top: var(--space-large);
  padding-bottom: var(--space-large);
}
.header .title-container-small .header-title {
  font-weight: 500;
  margin-bottom: var(--space-medium);
}
.header .title-container-small .header-info {
  font-weight: 300;
}
.title-container.main-title {
  padding-top: var(--space-xxxlarge);
  padding-bottom: var(--space-xlarge);
}
.main-title .main-title-top {
  font-size: 5em;
  font-weight: 600;
  color: var(--neutral-20-color);
}
.main-title .main-title-bottom {
  font-size: 3em;
  font-weight: 600;
  margin-top: 32px;
  color: var(--neutral-20-color);
}


.btn-download {
  padding: 1em 2em;
  margin-bottom: var(--space-small);
  background: linear-gradient(92deg, #ff0382 10%, #f00079 50%, #ff0081 90%);
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  box-shadow: 0 2px 2px #b0b8c0ad;
  border-radius: 12px;
  display: inline-block;
}
.btn-download:hover {
  color: white;
}

/* SECTIONS */

.section-container {
  padding-top: var(--space-medium);
  padding-bottom: var(--space-medium);
  background: white;
  border-radius: 1.1em;
  margin: 15px;
  margin-bottom: var(--space-xlarge);
}

.section-container.variant-container {
  background: transparent;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-large);
  margin-top: var(--space-xlarge);
}

.section-container .section-header,
.section-container .section-content {
  padding-left: var(--space-medium);
  padding-right: var(--space-medium);
  padding-top: var(--space-medium);
}
.section-container .section-content {
  padding-top: 0px;
}

.section-content.banner {
  text-align: center;
  margin-top: var(--space-medium);
  margin-bottom: var(--space-medium);
  padding-top: var(--space-xxlarge);
  padding-bottom: var(--space-xxlarge);
}
.section-content.banner p {
  margin: var(--space-small);
  color: var(--neutral-40-color);
}

.section-content.section-step {
  padding-left: var(--space-xxlarge);
  position: relative;
  padding-bottom: var(--space-large);
  padding-top: var(--space-small);
}
.section-content.section-step span {
  position: absolute;
  left: 22px;
  font-weight: 400;
  top: var(--space-small);
  line-height: 1;
}
.section-content.section-step a {
  margin-top: var(--space-small);
  padding: 12px 32px 12px 32px;
}

.promo-image {
  max-width: 100%;
}
.promo-display {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -10px;
}
.display-medium.promo-display {
  opacity: 0.7;
}
.display-small.promo-display {
  opacity: 0.3;
}

.footer {
  margin-top: var(--space-xxlarge);
  padding-bottom: var(--space-xxlarge);
  color: #363541;
}
.section-footer {
  padding-top: 64px;
  padding-bottom: 64px;
}
.footer-link {
  padding-top: var(--space-xsmall);
  padding-bottom: var(--space-xsmall);
  display: block;
  color: var(--neutral-20-color);
  font-size: 22px;
}
.footer-logo {
  position: absolute;
  width: 46px;
  opacity: 0.6;
}
.footer-info {
  color: var(--neutral-40-color);
}

.social-all {
  height: 46px;
  margin-bottom: var(--space-small);
}
.social-description {
  text-align: center;
  color: var(--neutral-50-color);
}

/* query */

.centered-small {
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 32px;
}

/* terms and conditions */

#terms-container {
  padding: var(--space-medium);
}
#terms-container section {
  margin-bottom: 56px;
}
#terms-container .title-medium {
  margin-top: 24px;
  margin-bottom: 12px;
}

/*  FAQs */

.faqs-list {
  margin-top: var(--space-large);
}

.faq-container {
  background: white;
  border-radius: 1.1em;
  margin-bottom: var(--space-small);
  padding: var(--space-medium);
  cursor: pointer;
  font-size: 22px;
  margin-bottom: 28px;
  color: var(--neutral-20-color);
}

.faq-container p {
  margin-bottom: 0px;
}

.faq-container .faq-question {
  font-weight: 500;
}

.faq-container .faq-answer {
  margin-top: var(--space-small);
}

.faq-container.expandable .faq-answer {
  margin-top: var(--space-small);
  opacity: 0;
  height: 0;
  margin-top: 0px;
  transition: margin 0.5s ease, height 0.5s ease;
}

.faq-container .faq-answer.expanded {
  opacity: 1;
  height: auto;
  margin-top: var(--space-small);
  overflow: hidden;
  transition: margin 0.2s ease, height 0.5s ease;
}

.steps-container {
  position: relative;
  list-style: none;
}

.steps-item::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  left: 20px;
  border-radius: 100%;
  background-color: #fb76b9;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.5);
  margin-top: 5px;
}

.steps-subtitle, .steps-item {
  padding-left: 40px;
}

.step-number {
  background: linear-gradient(86deg, #ff0081 10.26%, #fb76b9 53.53%, #b3a7ff);
  background-clip: text;
  font-size: 56px;
  color: transparent;
  margin-right: 32px;
  margin-top: -8px;
}

/* PROMO BANNER  */

.banner-container {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(86deg,#ff0081 10.26%,#fb76b9 53.53%,#b3a7ff);
}

.banner-description {
  font-size: 3em;
  text-align: center;
  color: var(--neutral-30-color);
  font-weight: 900;
}

.banner-scroll {
  white-space: nowrap;
  margin: 0 2em;
}

.banner-scroll div {
  display: flex;
  gap: 3em;
}

.banner-scroll .promo-display {
  font-size: 2em;
  color: white;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 80px;
}

.banner-RightToLeft {
  animation: RightToLeft 10s infinite linear;
}

@keyframes  RightToLeft {
  from {
      transform: translateX(0%);
  }
  to {
      transform: translateX(-50%);
  }
}

.banner-LeftToRight {
  animation: LeftToRight 10s infinite linear;
}

@keyframes  LeftToRight {
  from {
      transform: translateX(-50%);
  }
  to {
      transform: translateX(0%);
  }
}

.banner-content {
  padding: var(--space-xxxlarge) var(--space-medium);
  background: white;
}

.banner-content .banner-description {
  font-size: 4em;
  text-align: center;
  color: var(--neutral-20-color);
  font-weight: 900;
}

/* ANIMATIONS */

.fade-in-top {
  opacity: 0;  /* Start invisible */
  animation: fadeInTop 2s ease-in-out; /* Animate for 1 second with easing */
  animation-fill-mode: forwards; /* Keep element visible after animation */
}

.scale-fade-in-top {
  animation: fadeInTop linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

@keyframes fadeInTop {
  from {
    scale: 0.8;
    opacity: 0;
    transform: translateY(20%); /* Start element off-screen, 100% below */
  }
  to {
    scale: 1;
    opacity: 1;
    transform: translateY(0); /* Move element back to its original position */
  }
}


@keyframes scaleFadeInTop {
  from {
    scale: 0.8;
    opacity: 0;
    transform: translateY(20%); /* Start element off-screen, 100% below */
  }
  to {
    scale: 1;
    opacity: 1;
    transform: translateY(0); /* Move element back to its original position */
  }
}

/* FAQ */

.faq-video {
  padding-right: 70px;
  position: relative;
  display: inline-block;
  width: 100%;
  color: var(--neutral-20-color);
}

.faq-video::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0px;
  top: calc(50% - 15px);
  background: url(/img/youtube-shorts-icon.png) no-repeat;
  background-size: contain;
  height: 30px;
  background-position: right;
  width: 30px;
}

/* INFO BLOCKS -- WIP */

.info-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.info-title {
  margin-bottom: 96px;
  color: var(--neutral-20-color);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.3;
}

.info-block-container {
  cursor: pointer;
}

.info-block {
  margin-bottom: 64px;
  border-bottom: 1.5px solid #b3a7ff;
}

.info-block-title {
  font-size: 26px;
  margin-bottom: 28px;
  color: var(--neutral-20-color);
}

.info-block-description {
  margin-bottom: 44px;
  margin-right: 32px;
}

.info-vertical-block {
  margin-bottom: 40px;
  position: relative;
}
.info-vertical-content {
  position: relative;
  padding-left: 24px;
}
.info-vertical-content::before {
  content: "";
  height: 100%;
  background: linear-gradient(86deg,#ff0081 10.26%,#fb76b9 53.53%,#b3a7ff);
  width: 4px;
  display: inline-block;
  position: absolute;
  left: 0px;
  border-radius: 3px;
}

.info-vertical-block .info-vertical-title {
  font-size: 40px;
  color: var(--neutral-20-color);
  font-weight: 500;
  margin-bottom: 8px;
}
.info-vertical-subtitle {
  font-size: 18px;
  color: var(--neutral-40-color);
  font-weight: normal;
}

.info-who-block {
  color: var(--neutral-20-color);
}
.info-who-name {
  font-size: 32px;
  font-weight: 500;
}
.info-who-description {
  font-size: 16px;
  margin-bottom: 64px;
  font-weight: normal;
  color: var(--neutral-30-color);
}
.info-who-picture {
  width: 80px;
  height: 80px;
  margin-right: 24px;
}

.testimonial-section {
  padding-top: 120px;
  padding-bottom: 64px;
}
.info-title.testimonial-quote {
  font-size: 32px;
}
.testimonial-image {
  max-height: 400px;
  max-width: 100%;
  margin-bottom: 56px;
}

/* RISKS */

.risks-section-image {
  max-height: 600px;
  max-width: 100%;
}

.risks-section-image-wrapper {
  padding: 56px;
}

/* NOTIFICATIONS */

.notification-bubble {
  background: white;
  padding: 20px;
  border-radius: 16px;
  margin-right: 0px;
  display: flex;
  margin-bottom: 24px;
}
.notification-title {
  font-size: 18px;
  color: var(--neutral-20-color);
  font-weight: 500;
  margin-bottom: 6px;
}
.notification-message {
  font-size: 18px;
  color: var(--neutral-20-color);
  font-weight: normal;
  margin-bottom: 0px;
}
.notification-icon {
  padding-right: 12px;
}
.notification-icon img {
  width: 16px;
}
.notification-bubble.notification-with-reply {
  border-radius: 16px 16px 4px 4px;
  margin-bottom: 4px;
}
.notification-bubble.notification-reply {
  border-radius: 4px 4px 16px 16px;
  background: #c3a2f32e;
}

/* SSL */

#siteseal img {
  height: 40px;
}
.siteseal-description {
  font-weight: 500;
  font-size: 18px;
  margin-top: 16px;
}

/* MODAL */

.modal-body {
  padding: 0px;
}
.modal button.btn-close {
  border: none;
  width: 26px;
  height: 26px;
  background: url(/img/ic-close.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

/* """ MEDIA QUERIES """ */

/* Medium */
@media (min-width: 768px) {
  .btn-download {
    font-size: 22px;
  }
  .section-container {
    padding-top: var(--space-xlarge);
    padding-bottom: var(--space-xlarge);
    margin-bottom: var(--space-xxxlarge);
  }
  .info-section {
    padding-left: 90px;
    padding-right: 90px;
  }
  .info-vertical-block {
    margin-bottom: 80px;
  }
  .header-download {
    width: auto;
  }
  .notification-bubble {
    margin-right: 56px;
  }
  .info-title.testimonial-quote {
    font-size: 48px;
  }
  #siteseal img {
    margin-top: 0px;
  }
}

/* Large */
@media (min-width: 992px) {
  .section-header {
    margin-bottom: var(--space-xlarge);
    margin-top: var(--space-xlarge);
  }
  .centered-small {
    max-width: 800px;
  }
  .banner-content .banner-description {
    font-size: 5em;
  }
  .banner-content {
    padding: var(--space-xxxlarge);
  }
}

/* XLarge */
@media (min-width: 1200px) {
  .title-container.main-title {
    padding-left: var(--space-large);
    padding-right: var(--space-large);
  }
}