@charset "UTF-8";
body {
  background-color: #f9f9f9;
  height: 100%;
  width: 100%;
  font-family: "Maven Pro", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.875;
  color: #808080;
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Maven Pro", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #000;
}
h1 .highlight, .h1 .highlight,
h2 .highlight, .h2 .highlight,
h3 .highlight, .h3 .highlight,
h4 .highlight, .h4 .highlight,
h5 .highlight, .h5 .highlight,
h6 .highlight, .h6 .highlight {
  position: relative;
  z-index: 1;
}
h1 .highlight::after, .h1 .highlight::after,
h2 .highlight::after, .h2 .highlight::after,
h3 .highlight::after, .h3 .highlight::after,
h4 .highlight::after, .h4 .highlight::after,
h5 .highlight::after, .h5 .highlight::after,
h6 .highlight::after, .h6 .highlight::after {
  content: "";
  background-color: #93278f;
  mask-image: url("../images/highlight-heading.svg");
  mask-repeat: no-repeat;
  height: 1em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.875em;
  z-index: -1;
}
h1 strong, .h1 strong,
h2 strong, .h2 strong,
h3 strong, .h3 strong,
h4 strong, .h4 strong,
h5 strong, .h5 strong,
h6 strong, .h6 strong {
  font-weight: inherit;
}

h1,
.h1 {
  font-size: 2.286em;
}

h2,
.h2 {
  font-size: 1.922em;
}

h3,
.h3 {
  font-size: 1.616em;
}

h4,
.h4 {
  font-size: 1.359em;
}

h5,
.h5 {
  font-size: 1.143em;
}

h6,
.h6 {
  font-size: 0.961em;
}

section {
  position: relative;
}

a {
  color: #93278f;
}

.text-small {
  font-size: 0.875em;
}

.text-medium {
  font-size: 1.125em;
}

.button {
  background-color: #93278f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 100%;
  width: 100%;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 1.375rem;
  white-space: nowrap;
  text-decoration: none;
}
.button:hover, .button:focus {
  background-color: #6b1c68;
  transition: all 0.5s ease;
}
.button:focus {
  outline: none;
}
.button.disabled {
  opacity: 0.5;
}
.button.has-icon {
  padding: 0.5rem;
  padding-right: 1rem;
}
.button .icon-svg {
  background-color: rgba(255, 255, 255, 0.3);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  position: relative;
}
.button .icon-svg::before {
  content: "";
  background-color: #fff;
  mask-image: url(../images/envato-logo.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  height: 1.5em;
  width: 1.5em;
  z-index: 1;
}
.button.button-envato {
  background-color: #87e64b;
}
.button.button-envato:hover, .button.button-envato:focus {
  background-color: #5fc91c;
}
.button.button-envato.outline {
  background: transparent;
  border: 2px solid #87e64b;
  color: #87e64b;
}
.button.button-envato.outline .icon-svg {
  background-color: rgba(135, 230, 75, 0.3);
}
.button.button-envato.outline .icon-svg::before {
  background-color: #87e64b;
}
.button.button-envato.outline:hover, .button.button-envato.outline:focus {
  background-color: #87e64b;
  color: #fff;
  transition: all 0.5s ease;
}
.button.button-envato.outline:hover .icon-svg, .button.button-envato.outline:focus .icon-svg {
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
}
.button.button-envato.outline:hover .icon-svg::before, .button.button-envato.outline:focus .icon-svg::before {
  background-color: #fff;
  transition: all 0.5s ease;
}

.button-text {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
.button-text::after {
  content: "";
  background-color: #000;
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: -0.125em;
}
.button-text.white {
  color: #fff;
}
.button-text.white::after {
  background-color: #fff;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: calc(1140px + 2rem);
  }
}

.subtitle {
  background-color: rgba(147, 39, 143, 0.07);
  color: #93278f;
  font-weight: 500;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
}

.section-header {
  position: relative;
  max-width: 800px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-header br {
    display: none;
  }
}
.section-header > *:last-child {
  margin-bottom: 0;
}
.section-header .section-title {
  font-size: 3em;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .section-header .section-title {
    font-size: 2.25em;
  }
}
.section-header .section-description {
  padding: 0 3rem;
}
@media screen and (max-width: 768px) {
  .section-header .section-description {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 576px) {
  .section-header .section-description {
    padding: 0;
  }
}

.section-header-split {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 992px) {
  .section-header-split {
    display: block;
    text-align: center;
  }
}
.section-header-split .subtitle {
  display: inline-block;
}
.section-header-split .section-title {
  font-size: 3em;
  font-weight: 900;
}
.section-header-split .title-columm {
  flex: 1;
}
.section-header-split .desc-columm {
  flex: 1;
}

.section-graphics {
  position: absolute;
}

.accordion .accordion-item {
  background: none;
  border: none;
  margin-bottom: 0.75rem;
  color: inherit;
}
.accordion .accordion-item:last-child {
  margin: 0;
}
.accordion .accordion-item .accordion-header {
  font-size: inherit;
}
.accordion .accordion-item .accordion-header .accordion-button {
  background: #fff;
  border-radius: 2rem !important;
  box-shadow: none;
  font-size: inherit;
  font-weight: 600;
  color: #000;
}
.accordion .accordion-item .accordion-header .accordion-button::after {
  content: "+";
  background: none;
  height: 1.143em;
  width: 1.143em;
  font-size: 1.5em;
  line-height: 1.143em;
  transform: unset;
  color: inherit;
  text-align: right;
}
.accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true]::after {
  content: "-";
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: 0px 22px 70px 0px rgba(0, 0, 0, 0.08);
}
.accordion .accordion-item .accordion-header .accordion-button .icon {
  background-color: #93278f;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-right: 0.75rem;
}
.accordion .accordion-item .accordion-header .accordion-button span.label {
  color: #93278f;
  margin-left: 0.5rem;
}
@media screen and (max-width: 576px) {
  .accordion .accordion-item .accordion-header .accordion-button span.label {
    display: none;
  }
}
.accordion .accordion-item .accordion-body {
  color: inherit;
}
.accordion .accordion-item .accordion-body p {
  margin-bottom: 0.5rem;
}
.accordion .accordion-item .accordion-body p:last-of-type {
  margin: 0;
}

.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.875em;
  transition: all 0.5s ease;
}
@media screen and (max-width: 992px) {
  .navbar {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 0 0 2rem 2rem;
  }
}
.navbar > .container {
  gap: 1rem;
}
@media screen and (max-width: 992px) {
  .navbar > .container {
    justify-content: unset;
  }
}
@media screen and (min-width: 1400px) {
  .navbar > .container {
    max-width: 1320px;
  }
}
@media screen and (min-width: 992px) {
  .navbar .navbar-brand {
    max-width: 16%;
    width: 100%;
  }
}
.navbar .navbar-brand img {
  max-height: 28px;
  transition: filter 0.3s ease;
}
.navbar .navbar-brand.invert-logo img {
  filter: invert(1) brightness(1.2);
}
@media screen and (min-width: 992px) {
  .navbar .navbar-collapse {
    flex: 1;
    padding: 0 1rem;
    justify-content: center;
  }
}
@media screen and (max-width: 992px) {
  .navbar .navbar-collapse {
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 2rem;
  }
}
.navbar .navbar-collapse .navbar-nav {
  padding: 0.5rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
  background-color: rgba(147, 39, 143, 0.1);
  color: #93278f;
  border-radius: 2rem;
}
.navbar .navbar-collapse .navbar-nav > .nav-item > .nav-link {
  padding: 0.25rem 1.25rem;
  color: #000;
}
.navbar .navbar-collapse .navbar-nav > .nav-item:first-child > .nav-link.active {
  margin-left: 0;
}
.navbar .navbar-collapse .navbar-nav > .nav-item:last-child > .nav-link.active {
  margin-right: 0;
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu {
  background-color: #fff;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.07);
}
@media screen and (min-width: 992px) {
  .navbar .navbar-action {
    max-width: 16%;
    width: 100%;
  }
}
.navbar .navbar-action .button-envato {
  background: none;
  padding: 0;
  justify-content: flex-end;
  color: #87e64b;
}
@media screen and (max-width: 992px) {
  .navbar .navbar-action .button-envato {
    gap: 0.5rem;
  }
}
.navbar .navbar-action .button-envato .icon-svg {
  background-color: #87e64b;
}
@media screen and (max-width: 576px) {
  .navbar .navbar-action .button-envato .icon-svg {
    display: none;
  }
}
.navbar .navbar-action .button-envato:hover, .navbar .navbar-action .button-envato:focus {
  color: #5fc91c;
  transition: all 0.5s ease;
}
.navbar .navbar-action .button-envato:hover .icon-svg, .navbar .navbar-action .button-envato:focus .icon-svg {
  background-color: #5fc91c;
  transition: all 0.5s ease;
}
.navbar .navbar-toggler {
  background-color: rgba(0, 0, 0, 0.1);
  height: 40px;
  width: 40px;
  padding: 0;
  border-radius: 50%;
  border: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  height: 1em;
  width: 1em;
}
@media screen and (max-width: 992px) {
  .navbar .navbar-toggler {
    order: 10;
    margin-left: auto;
  }
}
.navbar.scrolled {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (min-width: 992px) {
  .navbar.scrolled .navbar-nav {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5rem;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
  }
}

.background-rotating-text {
  display: flex;
  white-space: nowrap;
  position: absolute;
  left: 0;
  right: 0;
  top: 125px;
  transform: translateY(-20%);
  z-index: -1;
  overflow: hidden;
}
.background-rotating-text p {
  font-size: 150px;
  font-weight: 900;
  animation: scrollHB 60s linear infinite;
  animation-delay: -60s;
  padding: 0 1rem;
  color: #000;
  opacity: 0.02;
  text-transform: uppercase;
}
.background-rotating-text p:nth-child(2) {
  animation: scrollHB2 60s linear infinite;
  animation-delay: -30s;
}

.intro-section {
  padding: 200px 0 calc(80px + 8.5rem);
  position: relative;
}
.intro-section::after {
  content: "";
  background-image: url(../images/backgrounds/lines.png);
  background-repeat: repeat-y;
  background-position: center;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.intro-section .intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.intro-section .intro-content .subtitle {
  align-self: center;
}
@media screen and (max-width: 576px) {
  .intro-section .intro-content .subtitle {
    font-size: 0.8125em;
  }
}
.intro-section .intro-content .intro-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* height: 1.2em; removed to allow dynamic height */
  position: relative;
  text-align: center;
  font-size: 4.75em;
  line-height: 1.2em;
  font-weight: 900;
  min-width: 100%;
}
@media screen and (max-width: 992px) {
  .intro-section .intro-content .intro-title {
    font-size: 3.25em;
  }
}
@media screen and (max-width: 768px) {
  .intro-section .intro-content .intro-title {
    font-size: 2.75em;
  }
}
.intro-section .intro-content .intro-title .text {
  display: block;
  width: 100%;
  text-align: center;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.7s, transform 0.7s;
}
.intro-section .intro-content .intro-title .text.show {
  opacity: 1;
  position: static;
  z-index: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.intro-section .intro-content .intro-title .text.leaving {
  opacity: 0;
  transform: translateY(-1rem);
}
@media screen and (min-width: 576px) {
  .intro-section .intro-content .intro-title .highlight {
    white-space: nowrap;
  }
}
@media screen and (max-width: 576px) {
  .intro-section .intro-content .intro-title .highlight::after {
    content: none;
  }
}
.intro-section .intro-content .intro-title .highlight::after {
  max-width: 466px;
  margin-left: auto;
  margin-right: auto;
}
.intro-section .intro-content .intro-description {
  max-width: 650px;
}
.intro-section .intro-content .intro-description span {
  color: #93278f;
  font-weight: 500;
}
.intro-section .intro-content .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 576px) {
  .intro-section .intro-content .actions {
    flex-direction: column;
    gap: 1rem;
  }
}
.intro-section .intro-content .highlights {
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .intro-section .intro-content .highlights {
    flex-direction: column;
    gap: 1rem;
  }
}
.intro-section .intro-content .highlights .item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.intro-section .intro-content .highlights .item .icon-wrapper {
  background-color: #fff;
  height: 60px;
  width: 60px;
  border: 1px solid #93278f;
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -7px rgba(0, 0, 0, 0.06);
}
.intro-section .intro-content .highlights .item .icon-wrapper .material-symbols-outlined {
  font-size: 1.625em;
  font-weight: 900;
  color: #93278f;
}
.intro-section .intro-content .highlights .item .item-info {
  flex: 1;
}
.intro-section .intro-content .highlights .item .item-info .item-title {
  margin-bottom: 0.125rem;
}
.intro-section .intro-content .highlights .item .item-info .item-desc {
  margin-bottom: 0;
}
.intro-section .author-note {
  background-color: #fff;
  padding: 1rem 2rem;
  border-radius: 10rem;
  text-align: center;
  position: absolute;
  bottom: 8.5rem;
  left: 50%;
  transform: translate(-50%, 50%);
  box-shadow: 0 10px 15px -7px rgba(0, 0, 0, 0.06);
  z-index: 1;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  white-space: nowrap;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .intro-section .author-note {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
@media screen and (max-width: 1400px) {
  .intro-section .author-note {
    padding: 0.25rem 0.5rem;
    font-size: 0.875em;
    box-shadow: none;
    margin-top: 2rem;
    position: relative;
    transform: initial;
    left: initial;
    bottom: initial;
  }
}
.intro-section .author-note .customer-avatar {
  border: 1px solid #fff;
  border-radius: 50%;
  max-width: 30px;
  max-height: 30px;
}
.intro-section .author-note .customer-avatar:not(:first-of-type) {
  margin-left: -15px;
}
@media screen and (max-width: 576px) {
  .intro-section .author-note .customer-avatar {
    display: none;
  }
}
.intro-section .author-note .elite-badge {
  max-height: 30px;
}
.intro-section .author-note a {
  color: #93278f;
  text-decoration: none;
  white-space: nowrap;
}
.intro-section .author-note a:hover {
  text-decoration: underline;
}
.intro-section .author-note p {
  margin: 0;
  white-space: nowrap;
}
.intro-section .author-note p img {
  max-height: 1.5em;
}
.intro-section .author-note p a {
  color: #93278f;
  text-decoration: none;
}
.intro-section .author-note p a:hover {
  text-decoration: underline;
}

.theme-screens-section {
  background-color: #000;
  border-radius: 8.5rem;
  height: 650px;
  margin-top: -8.5rem;
  margin-bottom: -8.5rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .theme-screens-section {
    height: 500px;
  }
}
@media screen and (max-width: 992px) {
  .theme-screens-section {
    height: 450px;
    border-radius: 6.5rem;
  }
}
@media screen and (max-width: 768px) {
  .theme-screens-section {
    height: 400px;
    border-radius: 4.5rem;
  }
}
.theme-screens-section::before {
  content: "";
  content: none;
  position: absolute;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.6) 40%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.6) 40%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 100%);
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  inset: 0;
}
.theme-screens-section::after {
  content: "";
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.85) 45%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 100%);
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.theme-screens-section .screens-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 1rem;
  max-width: 1400px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .theme-screens-section .screens-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.theme-screens-section .screens-container img {
  max-width: 100%;
}
.theme-screens-section .screens-container .screens {
  position: relative;
}
.theme-screens-section .screens-container .screens.outer {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .theme-screens-section .screens-container .screens.outer {
    padding-top: 0;
  }
}
.theme-screens-section .screens-container .screens.center {
  padding-top: 0;
}
.theme-screens-section .screens-container .screens figure {
  margin-bottom: 1rem;
}
.theme-screens-section .screens-container .screens figure img {
  width: 100%;
  border-radius: 2rem;
}
.theme-screens-section .screens-tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 2rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.143em;
  text-align: center;
  z-index: 10;
  margin: 0;
}
@media screen and (max-width: 576px) {
  .theme-screens-section .screens-tagline {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 1em;
  }
}

.section-monetization {
  padding: calc(100px + 8.5rem) 0 0;
  position: relative;
  overflow: hidden;
}
.section-monetization::after {
  content: "";
  background-image: url(../images/lines.png);
  background-repeat: repeat-y;
  background-position: center;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.section-monetization .section-content {
  background-image: linear-gradient(to bottom, rgba(147, 39, 143, 0.07), rgba(147, 39, 143, 0));
  backdrop-filter: blur(15px);
  border-radius: 8.5rem 8.5rem 0 0;
  padding: 3rem;
  padding-bottom: 100px;
  border: 1px solid #fff;
  border-top-width: 3px;
  box-shadow: inset 0px 5px 10px 0px rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1200px) {
  .section-monetization .section-content {
    padding: 1rem;
  }
}
.section-monetization .section-content .earning-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .section-monetization .section-content .earning-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.section-monetization .section-content .earning-list .item {
  background-color: #fff;
  padding: 1rem;
  border-radius: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .section-monetization .section-content .earning-list .item {
    flex-direction: row;
  }
}
@media screen and (max-width: 576px) {
  .section-monetization .section-content .earning-list .item {
    flex-direction: column;
  }
}
.section-monetization .section-content .earning-list .item .item-count {
  background-color: rgba(147, 39, 143, 0.1);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93278f;
  font-size: 1.359em;
  font-weight: 700;
}
.section-monetization .section-content .earning-list .item .item-info {
  flex: 1;
}
.section-monetization .section-content .earning-list .item .item-info .item-title {
  margin: 0;
  line-height: inherit;
}
.section-monetization .section-content .earning-list .item .item-info .item-desc {
  margin: 0;
}
.section-monetization .section-content .earning-list .item.inline {
  flex-direction: row;
}
@media screen and (max-width: 576px) {
  .section-monetization .section-content .earning-list .item.inline {
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px) {
  .section-monetization .section-content .earning-list .item.graphics {
    display: none;
  }
}
.section-monetization .section-content .earning-list .item.graphics img {
  position: absolute;
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  object-fit: cover;
}
.section-monetization .section-content .earning-list .item-1 {
  grid-row: span 2/span 2;
}
.section-monetization .section-content .earning-list .item-2 {
  grid-row: span 2/span 2;
  grid-column-start: 1;
  grid-row-start: 3;
}
.section-monetization .section-content .earning-list .item-3 {
  grid-column: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}
.section-monetization .section-content .earning-list .item-4 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 2;
}
.section-monetization .section-content .earning-list .item-5 {
  grid-row: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 1;
}
.section-monetization .section-content .earning-list .item-6 {
  grid-row: span 2/span 2;
  grid-column-start: 4;
  grid-row-start: 3;
}
.section-monetization .section-content .earning-list .item-7 {
  grid-column-start: 2;
  grid-row-start: 4;
}
.section-monetization .section-content .earning-list .item-8 {
  grid-column-start: 3;
  grid-row-start: 4;
}
.section-monetization .monetization-options {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 2rem;
  text-align: center;
}
.section-monetization .monetization-options p {
  background: #fff;
  margin: 0;
  padding: 0.25rem 2rem;
  border-radius: 2rem;
  border: 1px dotted #93278f;
}
.section-monetization .monetization-options p a {
  color: #93278f;
  text-decoration: none;
  font-weight: 600;
}
.section-monetization .monetization-options .sparkle {
  filter: brightness(0);
}

.section-demos {
  background-color: #fff;
  padding: 0 2rem;
}
@media screen and (max-width: 1200px) {
  .section-demos {
    padding: 0 1rem;
  }
}
.section-demos .section-header {
  position: relative;
  z-index: 1;
}
.section-demos .section-header .subtitle {
  background-color: #fff;
}
.section-demos .section-header::before {
  content: attr(data-count);
  font-size: 250px;
  line-height: 1;
  font-weight: 900;
  position: absolute;
  top: 0;
  transform: translateY(-75%);
  z-index: -1;
  background: linear-gradient(rgba(147, 39, 143, 0.15), rgba(147, 39, 143, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 576px) {
  .section-demos .section-header::before {
    font-size: 140px;
  }
}
.section-demos .demo-wrapper {
  background-color: #f9f9f9;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 8.5rem;
  padding: 180px 0 100px;
}
.section-demos .demo-wrapper .demo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 992px) {
  .section-demos .demo-wrapper .demo-list {
    gap: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .section-demos .demo-wrapper .demo-list {
    grid-template-columns: 1fr;
  }
}
.section-demos .demo-wrapper .demo-list .item .item-wrapper {
  background-color: #fff;
  padding: 2rem;
  border-radius: 3rem;
  position: relative;
}
@media screen and (max-width: 992px) {
  .section-demos .demo-wrapper .demo-list .item .item-wrapper {
    padding: 1.5rem;
    border-radius: 2rem;
  }
}
.section-demos .demo-wrapper .demo-list .item .item-wrapper::before {
  content: "";
  display: block;
  background-color: #e6e6e6;
  box-shadow: 12px 0 0 #e6e6e6, 24px 0 0 #e6e6e6;
  color: rgba(0, 0, 0, 0.07);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  z-index: 10;
  margin-bottom: 1rem;
}
.section-demos .demo-wrapper .demo-list .item .demo-thumbnail {
  margin-bottom: 1rem;
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 576px) {
  .section-demos .demo-wrapper .demo-list .item .demo-thumbnail {
    border-radius: 1rem 1rem 0 0;
  }
}
.section-demos .demo-wrapper .demo-list .item .demo-thumbnail a {
  position: relative;
  display: block;
}
.section-demos .demo-wrapper .demo-list .item .demo-thumbnail a:hover img, .section-demos .demo-wrapper .demo-list .item .demo-thumbnail a:focus img {
  transform: scale(1.02);
  transition: all 0.5s ease-in-out;
}
.section-demos .demo-wrapper .demo-list .item .demo-thumbnail img {
  max-width: 100%;
  width: 100%;
}
.section-demos .demo-wrapper .demo-list .item .demo-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-demos .demo-wrapper .demo-list .item .demo-info .demo-info-icon {
  background: #f9f9f9;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.section-demos .demo-wrapper .demo-list .item .demo-info .demo-info-content {
  flex: 1;
}
.section-demos .demo-wrapper .demo-list .item .demo-info .demo-info-content .demo-title a {
  color: #000;
  text-decoration: none;
}
.section-demos .demo-wrapper .demo-list .item .demo-info .demo-info-content .demo-title a:hover, .section-demos .demo-wrapper .demo-list .item .demo-info .demo-info-content .demo-title a:focus {
  color: #93278f;
  text-decoration: underline;
}
.section-demos .demo-wrapper .demo-list .item .demo-info * {
  margin-bottom: 0;
}
.section-demos .demo-wrapper .demo-list .item .demo-info .recomended-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0;
  margin-bottom: 0;
  margin-top: 0.5rem;
  list-style: none;
}
.section-demos .demo-wrapper .demo-list .item .demo-info .recomended-features .recomended-item,
.section-demos .demo-wrapper .demo-list .item .demo-info .recomended-features .flexMenu-viewMore {
  background-color: rgba(147, 39, 143, 0.07);
  background-color: #fbf1fb;
  color: #93278f;
  padding: 0 0.5rem;
  border-radius: 3rem;
  font-size: 12px;
}
.section-demos .demo-wrapper .demo-list .item .demo-info .recomended-features .recomended-item > a,
.section-demos .demo-wrapper .demo-list .item .demo-info .recomended-features .flexMenu-viewMore > a {
  text-decoration: none;
  color: #93278f;
}
.section-demos .demo-wrapper .demo-list .item .demo-info .recomended-features .dropdown-menu {
  background: transparent;
  padding: 0.25rem 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  min-width: auto;
}
.section-demos .demo-wrapper .demo-list .item .demo-info .recomended-features .dropdown-menu .recomended-item {
  margin-bottom: 0.125rem;
  display: table;
}

.section-components {
  background-color: #fff;
  position: relative;
  padding: 100px 0 calc(100px + 8.5rem);
  margin-bottom: -8.5rem;
}
.section-components .member-components {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  .section-components .member-components {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.section-components .member-components .item .item-wrapper {
  background-image: linear-gradient(to bottom, rgba(147, 39, 143, 0.07), rgba(147, 39, 143, 0));
  position: relative;
  border-radius: 8.5rem;
  padding: 4rem 3.5rem;
}
@media screen and (max-width: 1200px) {
  .section-components .member-components .item .item-wrapper {
    padding: 3rem 2rem;
  }
}
.section-components .member-components .item .item-wrapper .item-icon-wwrapper {
  background-color: rgba(147, 39, 143, 0.5);
  height: 75px;
  width: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93278f;
  font-size: 1.359em;
  font-weight: 700;
  margin: 0 auto 1rem;
  position: relative;
}
.section-components .member-components .item .item-wrapper .item-icon-wwrapper img {
  z-index: 2;
  width: 2rem;
}
.section-components .member-components .item .item-wrapper .item-icon-wwrapper::after {
  content: "";
  border-top: 1px solid;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 50%, rgba(255, 255, 255, 0) 100%) 1;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(10px);
  height: 100%;
  position: absolute;
  left: -5rem;
  right: -5rem;
  bottom: 0;
  transform: translateY(50%);
  z-index: 1;
}
.section-components .member-components .item .item-wrapper .item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1rem;
}
.section-components .member-components .item .item-wrapper .item-info .item-title {
  font-size: 2.5em;
}
@media screen and (max-width: 576px) {
  .section-components .member-components .item .item-wrapper .item-info .item-title {
    font-size: 2.25em;
  }
}
.section-components .member-components .item .item-wrapper .item-info .item-title .highlight::after {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.section-components .member-components .item.gamifications .item-wrapper {
  background-image: linear-gradient(to bottom, rgba(237, 30, 121, 0.07), rgba(237, 30, 121, 0));
}
.section-components .member-components .item.gamifications .item-wrapper .item-icon-wwrapper {
  background-color: rgba(237, 30, 121, 0.5);
}
.section-components .component {
  padding-left: 4rem;
  padding-right: 4rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .section-components .component {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.section-components .component:last-child {
  margin-bottom: 0 !important;
}
.section-components .component .floating-image {
  position: absolute;
  z-index: 9;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.15));
}
.section-components .component .component-info {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 992px) {
  .section-components .component .component-info {
    flex-direction: column;
  }
}
.section-components .component .component-info .item-graphics {
  flex: 0 0 55%;
  position: relative;
  z-index: 2;
}
.section-components .component .component-info .item-graphics img {
  max-width: 100%;
}
.section-components .component .component-info .item-graphics .frame {
  max-width: calc(100% - 8rem);
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .section-components .component .component-info .item-graphics .frame {
    max-width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 576px) {
  .section-components .component .component-info .item-graphics .frame {
    max-width: 100%;
  }
}
.section-components .component .component-info .item-graphics .frame img {
  width: 100%;
}
.section-components .component .component-info .item-graphics .bg-layer {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  display: block;
  width: 75%;
}
.section-components .component .component-info .item-graphics .bg-layer img {
  width: 100%;
}
.section-components .component .component-info .item-info {
  flex: 1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  .section-components .component .component-info .item-info {
    text-align: center;
  }
}
.section-components .component .component-info .item-info .g-mesh {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -25%);
  z-index: -1;
}
.section-components .component .component-info .item-info .subtitle {
  display: inline-block;
}
.section-components .component .component-info .item-info .title {
  font-size: 3.75em;
}
@media screen and (max-width: 576px) {
  .section-components .component .component-info .item-info .title {
    font-size: 2.5em;
  }
}
.section-components .component .component-info .item-info .member-functions {
  display: flex;
  gap: 1rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  text-align: left;
}
@media screen and (max-width: 992px) {
  .section-components .component .component-info .item-info .member-functions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.section-components .component .component-info .item-info .member-functions .item {
  align-self: flex-start;
}
.section-components .component .component-info .item-info .member-functions .item-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-components .component .component-info .item-info .member-functions .item-wrapper .icon-wrapper {
  background-color: rgba(16, 185, 129, 0.3);
  color: #10b981;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-components .component .component-info .item-info .member-functions .item-wrapper p {
  margin: 0;
  line-height: 1.5;
}
.section-components .component .component-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.section-components .component .component-features li {
  flex: 0 0 96px;
  max-width: 96px;
  width: 100%;
}
.section-components .component .component-features li .item-wrapper {
  text-align: center;
  text-decoration: none;
}
.section-components .component .component-features li .item-wrapper .icon-wrapper {
  background-color: #fff;
  color: #93278f;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.section-components .component .component-features li .item-wrapper .item-title {
  margin: 0;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.5;
}
.section-components .component.reverse {
  background-color: #f9f9f9;
  border-radius: 8.5rem;
  padding-top: 8rem;
  padding-bottom: 4rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 1200px) {
  .section-components .component.reverse {
    padding-top: 4rem;
  }
}
.section-components .component.reverse .component-info {
  flex-direction: row-reverse;
}
@media screen and (max-width: 992px) {
  .section-components .component.reverse .component-info {
    flex-direction: column;
  }
}
.section-components .component.activity .item-graphics .member {
  left: 0;
  top: 0;
}
@media screen and (max-width: 576px) {
  .section-components .component.activity .item-graphics .member {
    left: -16px;
  }
}
.section-components .component.activity .item-graphics .member img {
  max-width: 115px;
}
@media screen and (max-width: 576px) {
  .section-components .component.activity .item-graphics .member img {
    max-width: 90px;
  }
}
.section-components .component.activity .item-graphics .story {
  right: 40px;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .section-components .component.activity .item-graphics .story {
    right: 0;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.activity .item-graphics .story {
    right: -16px;
  }
}
.section-components .component.activity .item-graphics .story img {
  max-width: 110px;
}
@media screen and (max-width: 576px) {
  .section-components .component.activity .item-graphics .story img {
    max-width: 90px;
  }
}
.section-components .component.activity .item-graphics .reactions {
  left: 0;
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  .section-components .component.activity .item-graphics .reactions {
    bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.activity .item-graphics .reactions {
    left: -16px;
  }
}
.section-components .component.activity .item-graphics .reactions img {
  max-width: 275px;
}
@media screen and (max-width: 576px) {
  .section-components .component.activity .item-graphics .reactions img {
    max-width: 200px;
  }
}
.section-components .component.members .item-graphics .badges {
  right: 0;
  top: -40px;
}
.section-components .component.members .item-graphics .badges img {
  max-width: 140px;
}
@media screen and (max-width: 576px) {
  .section-components .component.members .item-graphics .badges img {
    max-width: 100px;
  }
}
.section-components .component.members .item-graphics .member-card {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-components .component.members .item-graphics .member-card {
    bottom: 40px;
  }
}
.section-components .component.members .item-graphics .member-card img {
  max-width: 140px;
}
@media screen and (max-width: 576px) {
  .section-components .component.members .item-graphics .member-card img {
    max-width: 100px;
  }
}
.section-components .component.groups .item-graphics .group {
  right: 40px;
  top: -25px;
}
@media screen and (max-width: 1200px) {
  .section-components .component.groups .item-graphics .group {
    right: 0;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.groups .item-graphics .group {
    right: -16px;
  }
}
.section-components .component.groups .item-graphics .group img {
  max-width: 140px;
}
@media screen and (max-width: 576px) {
  .section-components .component.groups .item-graphics .group img {
    max-width: 100px;
  }
}
.section-components .component.groups .item-graphics .privacy {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-components .component.groups .item-graphics .privacy {
    bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.groups .item-graphics .privacy {
    left: -16px;
  }
}
.section-components .component.groups .item-graphics .privacy img {
  max-width: 175px;
}
@media screen and (max-width: 576px) {
  .section-components .component.groups .item-graphics .privacy img {
    max-width: 120px;
  }
}
.section-components .component.forums .item-graphics .forums {
  right: 0;
  top: -25px;
}
.section-components .component.forums .item-graphics .forums img {
  max-width: 240px;
}
@media screen and (max-width: 576px) {
  .section-components .component.forums .item-graphics .forums img {
    max-width: 130px;
  }
}
.section-components .component.forums .item-graphics .stats {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-components .component.forums .item-graphics .stats {
    bottom: 40px;
  }
}
.section-components .component.forums .item-graphics .stats img {
  max-width: 165px;
}
@media screen and (max-width: 576px) {
  .section-components .component.forums .item-graphics .stats img {
    max-width: 100px;
  }
}
.section-components .component.events .item-graphics .calendar {
  right: 40px;
  top: -25px;
}
@media screen and (max-width: 1200px) {
  .section-components .component.events .item-graphics .calendar {
    right: 0;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.events .item-graphics .calendar {
    right: -16px;
  }
}
.section-components .component.events .item-graphics .calendar img {
  max-width: 200px;
}
@media screen and (max-width: 576px) {
  .section-components .component.events .item-graphics .calendar img {
    max-width: 120px;
  }
}
.section-components .component.events .item-graphics .locations {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-components .component.events .item-graphics .locations {
    bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.events .item-graphics .locations {
    left: -16px;
  }
}
.section-components .component.events .item-graphics .locations img {
  max-width: 175px;
}
@media screen and (max-width: 576px) {
  .section-components .component.events .item-graphics .locations img {
    max-width: 120px;
  }
}
.section-components .component.listings .item-graphics .listing-type {
  right: 0;
  top: -25px;
}
.section-components .component.listings .item-graphics .listing-type img {
  max-width: 160px;
}
@media screen and (max-width: 576px) {
  .section-components .component.listings .item-graphics .listing-type img {
    max-width: 100px;
  }
}
.section-components .component.listings .item-graphics .features {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-components .component.listings .item-graphics .features {
    bottom: 40px;
  }
}
.section-components .component.listings .item-graphics .features img {
  max-width: 140px;
}
@media screen and (max-width: 576px) {
  .section-components .component.listings .item-graphics .features img {
    max-width: 100px;
  }
}
.section-components .component.courses .item-graphics .quiz {
  right: 40px;
  top: -25px;
}
@media screen and (max-width: 1200px) {
  .section-components .component.courses .item-graphics .quiz {
    right: 0;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.courses .item-graphics .quiz {
    right: -16px;
  }
}
.section-components .component.courses .item-graphics .quiz img {
  max-width: 200px;
}
@media screen and (max-width: 576px) {
  .section-components .component.courses .item-graphics .quiz img {
    max-width: 130px;
  }
}
.section-components .component.courses .item-graphics .course-progress {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-components .component.courses .item-graphics .course-progress {
    bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.courses .item-graphics .course-progress {
    left: -16px;
  }
}
.section-components .component.courses .item-graphics .course-progress img {
  max-width: 140px;
}
@media screen and (max-width: 576px) {
  .section-components .component.courses .item-graphics .course-progress img {
    max-width: 100px;
  }
}
.section-components .component.shop .item-graphics .cart {
  right: 0;
  top: -60px;
}
.section-components .component.shop .item-graphics .cart img {
  max-width: 180px;
}
@media screen and (max-width: 576px) {
  .section-components .component.shop .item-graphics .cart img {
    max-width: 100px;
  }
}
.section-components .component.shop .item-graphics .product {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-components .component.shop .item-graphics .product {
    bottom: 40px;
  }
}
.section-components .component.shop .item-graphics .product img {
  max-width: 130px;
}
@media screen and (max-width: 576px) {
  .section-components .component.shop .item-graphics .product img {
    max-width: 70px;
  }
}
.section-components .component.fundraisers .item-graphics .fundraiser-success {
  right: 40px;
  top: -25px;
}
@media screen and (max-width: 1200px) {
  .section-components .component.fundraisers .item-graphics .fundraiser-success {
    right: 0;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.fundraisers .item-graphics .fundraiser-success {
    right: -16px;
  }
}
.section-components .component.fundraisers .item-graphics .fundraiser-success img {
  max-width: 180px;
}
@media screen and (max-width: 576px) {
  .section-components .component.fundraisers .item-graphics .fundraiser-success img {
    max-width: 120px;
  }
}
.section-components .component.fundraisers .item-graphics .target-reached {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .section-components .component.fundraisers .item-graphics .target-reached {
    bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .section-components .component.fundraisers .item-graphics .target-reached {
    left: -16px;
  }
}
.section-components .component.fundraisers .item-graphics .target-reached img {
  max-width: 290px;
}
@media screen and (max-width: 576px) {
  .section-components .component.fundraisers .item-graphics .target-reached img {
    max-width: 160px;
  }
}

.section-elementor {
  position: relative;
  overflow-x: hidden;
}
.section-elementor .container {
  z-index: 3;
}
.section-elementor .section-top {
  background-color: #000;
  background-image: url("../images/backgrounds/elementor.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0 400px;
  border-radius: 8.5rem;
}
@media screen and (max-width: 992px) {
  .section-elementor .section-top {
    padding-bottom: 300px;
  }
}
@media screen and (max-width: 768px) {
  .section-elementor .section-top {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 420px) {
  .section-elementor .section-top {
    padding-bottom: 100px;
  }
}
.section-elementor .section-top .section-header .subtitle {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.section-elementor .section-top .section-header .section-title {
  color: #fff;
}
.section-elementor .elementor-screen {
  position: relative;
  z-index: 1;
  margin-top: -400px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 992px) {
  .section-elementor .elementor-screen {
    margin-top: -300px;
  }
}
@media screen and (max-width: 768px) {
  .section-elementor .elementor-screen {
    margin-top: -200px;
  }
}
@media screen and (max-width: 420px) {
  .section-elementor .elementor-screen {
    margin-top: -100px;
  }
}
.section-elementor .elementor-screen .atropos-inner {
  overflow: initial;
}
.section-elementor .elementor-screen .page-screen {
  max-width: 80%;
  display: block;
  margin: auto;
  display: block;
  border-radius: 2rem;
}
.section-elementor .elementor-screen .elementor-panel {
  max-width: 22.5%;
  position: absolute;
  left: 0;
  top: 10%;
  display: block;
  border-radius: 2rem;
}
.section-elementor .elementor-screen .elementor-navigator {
  max-width: 17.5%;
  position: absolute;
  right: 0;
  top: 15%;
  display: block;
  border-radius: 2rem;
}
.section-elementor .elements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-elementor .elements .elements-row {
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}
.section-elementor .elements .elements-row .elements-list {
  display: flex;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  list-style: none;
  animation: scrollHB var(--time) linear infinite;
  animation-delay: calc(var(--time) * -1);
}
.section-elementor .elements .elements-row .elements-list:nth-child(2) {
  animation: scrollHB2 var(--time) linear infinite;
  animation-delay: calc(var(--time) / -2);
}
.section-elementor .elements .elements-row .elements-list li {
  position: relative;
  padding: 0 0.5rem;
}
.section-elementor .elements .elements-row .elements-list li .item-wrapper {
  background-color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-elementor .elements .elements-row .elements-list li .item-wrapper i,
.section-elementor .elements .elements-row .elements-list li .item-wrapper span {
  font-size: 1.359em;
  margin-right: 0.5rem;
  font-weight: 400;
  background: -webkit-linear-gradient(0deg, #ed1e79 2%, #93278f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-elementor .elements .elements-row.forward .elements-list {
  white-space: nowrap;
  animation: scrollHF var(--time) linear infinite;
  animation-delay: calc(var(--time) * -1);
}
.section-elementor .elements .elements-row.forward .elements-list:nth-child(2) {
  animation: scrollHF2 var(--time) linear infinite;
  animation-delay: calc(var(--time) / -2);
}
.section-elementor .elements-desc {
  text-align: center;
}
.section-elementor .elements-desc span {
  background-color: #93278f;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
}

.section-plugins {
  padding: 100px 0;
  position: relative;
}
.section-plugins .g-mesh {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.section-plugins .container {
  z-index: 3;
  position: relative;
}
.section-plugins .plugins-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .section-plugins .plugins-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .section-plugins .plugins-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .section-plugins .plugins-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-plugins .plugins-list .plugin {
  text-align: center;
}
.section-plugins .plugins-list .plugin .icon-wrapper {
  background-color: #fff;
  width: 160px;
  aspect-ratio: 1/1;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 1400px) {
  .section-plugins .plugins-list .plugin .icon-wrapper {
    width: 100%;
  }
}
.section-plugins .plugins-list .plugin .icon-wrapper img {
  max-width: 60px;
}
.section-plugins .plugins-list .plugin .plugin-title {
  margin-bottom: 0.5rem;
}
.section-plugins .plugins-list .plugin .plugin-label {
  display: inline-block;
  background-color: rgba(147, 39, 143, 0.07);
  color: #93278f;
  padding: 0 0.5rem;
  border-radius: 2rem;
  font-size: 0.875em;
}
.section-plugins .plugins-list .plugin.crowdfunding .icon-wrapper img {
  border-radius: 50%;
}

.section-comparison .section-header .subtitle {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.section-comparison .section-header .section-title {
  color: #fff;
}
.section-comparison .comparison-wrapper {
  background-color: #000;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 8.5rem;
  padding: 100px 0 60px;
}
.section-comparison .comparison-table {
  line-height: 1.75;
}
@media screen and (max-width: 992px) {
  .section-comparison .comparison-table {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-top: 0.75rem;
  }
  .section-comparison .comparison-table::-webkit-scrollbar {
    display: none;
  }
}
.section-comparison .comparison-table .table-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: end;
}
@media screen and (max-width: 1200px) {
  .section-comparison .comparison-table .table-header {
    gap: 0.5rem;
    align-items: normal;
  }
}
@media screen and (max-width: 992px) {
  .section-comparison .comparison-table .table-header {
    grid-template-columns: repeat(4, 250px);
  }
}
@media screen and (max-width: 768px) {
  .section-comparison .comparison-table .table-header {
    grid-template-columns: repeat(4, 220px);
  }
}
.section-comparison .comparison-table .table-header .header-cell {
  background: transparent;
  padding: 2rem 1.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem 2rem 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
  border-bottom: none;
}
@media screen and (max-width: 992px) {
  .section-comparison .comparison-table .table-header .header-cell {
    padding: 1.5rem 1rem 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .section-comparison .comparison-table .table-header .header-cell {
    padding: 1.25rem 0.75rem 0.75rem;
  }
}
.section-comparison .comparison-table .table-header .header-cell.feature-col {
  text-align: left;
  position: sticky;
  left: 0;
  z-index: 2;
  justify-content: flex-end;
  border-color: transparent;
}
@media screen and (max-width: 992px) {
  .section-comparison .comparison-table .table-header .header-cell.feature-col {
    background: #000;
    border-radius: 0;
  }
}
.section-comparison .comparison-table .table-header .header-cell.feature-col .header-label {
  font-size: 1.143rem;
  font-weight: 600;
}
.section-comparison .comparison-table .table-header .header-cell.bebuddy-col {
  background: rgba(147, 39, 143, 0.15);
  border-color: rgba(147, 39, 143, 0.3);
  position: relative;
}
.section-comparison .comparison-table .table-header .header-cell.bebuddy-col .badge {
  background-color: #93278f;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  order: -1;
  position: absolute;
  left: 1.5rem;
  top: 0;
  transform: translateY(-50%);
}
.section-comparison .comparison-table .table-header .header-cell.bebuddy-col .brand-name {
  color: #fff;
  font-size: 1.143rem;
}
.section-comparison .comparison-table .table-header .header-cell.bebuddy-col .price {
  color: #93278f;
  font-size: 2em;
}
@media screen and (max-width: 1200px) {
  .section-comparison .comparison-table .table-header .header-cell.bebuddy-col .price {
    font-size: 1.5em;
  }
}
.section-comparison .comparison-table .table-header .header-cell.bebuddy-col .price .price-period {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
}
.section-comparison .comparison-table .table-header .header-cell.bebuddy-col .description {
  color: #fff;
  font-size: 0.875em;
}
.section-comparison .comparison-table .table-header .header-cell.competitor-col .brand-name, .section-comparison .comparison-table .table-header .header-cell.saas-col .brand-name {
  font-size: 1.143rem;
}
.section-comparison .comparison-table .table-header .header-cell.competitor-col .price, .section-comparison .comparison-table .table-header .header-cell.saas-col .price {
  color: #93278f;
  font-size: 2em;
}
@media screen and (max-width: 1200px) {
  .section-comparison .comparison-table .table-header .header-cell.competitor-col .price, .section-comparison .comparison-table .table-header .header-cell.saas-col .price {
    font-size: 1.5em;
  }
}
.section-comparison .comparison-table .table-header .header-cell.competitor-col .price .price-period, .section-comparison .comparison-table .table-header .header-cell.saas-col .price .price-period {
  color: #808080;
  font-size: 0.875rem;
}
.section-comparison .comparison-table .table-header .header-cell.competitor-col .description, .section-comparison .comparison-table .table-header .header-cell.saas-col .description {
  font-size: 0.875em;
}
.section-comparison .comparison-table .table-body {
  display: flex;
  flex-direction: column;
}
.section-comparison .comparison-table .table-body .table-row:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
@media screen and (max-width: 992px) {
  .section-comparison .comparison-table .table-body .table-row:nth-child(odd) {
    background-color: transparent;
  }
}
.section-comparison .comparison-table .table-body .table-row:last-child .cell {
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.section-comparison .comparison-table .table-body .table-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-radius: 1rem;
  padding: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .section-comparison .comparison-table .table-body .table-row {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 992px) {
  .section-comparison .comparison-table .table-body .table-row {
    grid-template-columns: repeat(4, 250px);
  }
}
@media screen and (max-width: 768px) {
  .section-comparison .comparison-table .table-body .table-row {
    grid-template-columns: repeat(4, 220px);
  }
}
.section-comparison .comparison-table .table-body .table-row .cell {
  padding: 0.5rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 992px) {
  .section-comparison .comparison-table .table-body .table-row .cell {
    padding: 0.375rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  .section-comparison .comparison-table .table-body .table-row .cell {
    padding: 0.375rem 1rem;
    gap: 0.5rem;
  }
}
.section-comparison .comparison-table .table-body .table-row .cell.feature-col {
  position: sticky;
  left: 0;
  z-index: 1;
  border-color: transparent;
}
@media screen and (max-width: 992px) {
  .section-comparison .comparison-table .table-body .table-row .cell.feature-col {
    background-color: #000;
    border-radius: 0;
  }
}
.section-comparison .comparison-table .table-body .table-row .cell.bebuddy-col {
  background: rgba(147, 39, 143, 0.15);
  border-left: 1px solid rgba(147, 39, 143, 0.3);
  border-right: 1px solid rgba(147, 39, 143, 0.3);
  border-color: rgba(147, 39, 143, 0.3);
}
.section-comparison .comparison-table .table-body .table-row .cell.bebuddy-col .text {
  color: #fff;
}
.section-comparison .comparison-table .table-body .table-row .cell .icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding-top: 0.1875em;
}
.section-comparison .comparison-table .table-body .table-row .cell .icon .material-symbols-outlined {
  font-size: 1.25rem;
  max-width: 1.25rem;
}
.section-comparison .comparison-table .table-body .table-row .cell .icon.success {
  color: #10b981;
}
.section-comparison .comparison-table .table-body .table-row .cell .icon.warning {
  color: #f59e0b;
}
.section-comparison .comparison-table .table-body .table-row .cell .icon.error {
  color: #ef4444;
}
.section-comparison .comparison-table .table-body .table-row .cell .text {
  font-size: 0.875em;
}
.section-comparison .unique-hightlights {
  max-width: 75%;
  margin: 60px auto 0;
  text-align: center;
}
.section-comparison .unique-hightlights .hightlights-list {
  margin: -1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.section-comparison .unique-hightlights .hightlights-list .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.section-comparison .unique-hightlights .hightlights-list .item-icon {
  background-color: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  height: 36px;
  width: 36px;
  color: #10b981;
  border-radius: 50%;
  padding: 0.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-comparison .unique-hightlights .hightlights-list p {
  margin: 0;
}

.section-theme-features {
  padding: 100px 0;
}
.section-theme-features .g-mesh {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -25%);
  z-index: -1;
}
.section-theme-features .feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .section-theme-features .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .section-theme-features .feature-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section-theme-features .feature-list .feature {
  background-color: #fff;
  border-radius: 3rem;
  overflow: hidden;
}
.section-theme-features .feature-list .feature .item-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  text-align: center;
}
.section-theme-features .feature-list .feature .item-wrapper .item-info {
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 0;
}
@media screen and (max-width: 992px) {
  .section-theme-features .feature-list .feature .item-wrapper .item-info {
    padding: 2rem 2rem 0;
  }
}
.section-theme-features .feature-list .feature .item-wrapper .item-label {
  background-color: rgba(147, 39, 143, 0.07);
  color: #93278f;
  padding: 0 0.5rem;
  border-radius: 3rem;
  font-size: 0.875em;
  font-weight: 500;
  align-self: center;
}
.section-theme-features .feature-list .feature .item-wrapper .item-title {
  position: relative;
  font-weight: 900;
}
.section-theme-features .feature-list .feature .item-wrapper .item-desc {
  margin-bottom: 1rem;
}
.section-theme-features .feature-list .feature .item-wrapper .item-thumbnail {
  margin-top: auto;
}
.section-theme-features .feature-list .feature .item-wrapper .item-thumbnail img {
  width: 100%;
}

.section-testimonials {
  position: relative;
}
.section-testimonials .g-mesh {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -40%);
  z-index: -1;
}
.section-testimonials .item-rating {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.section-testimonials .item-rating .stars {
  display: grid;
  grid-template: "full" 1fr/1fr;
}
.section-testimonials .item-rating .stars::before {
  content: "★★★★★";
  grid-area: full;
  width: calc(var(--rating, 0) / 5 * 100%);
  overflow: hidden;
  white-space: nowrap;
  color: orange;
}
.section-testimonials .item-rating .stars::after {
  content: "☆☆☆☆☆";
  grid-area: full;
  white-space: nowrap;
  color: orange;
}
.section-testimonials .owl-stage-outer {
  overflow: initial;
}
.section-testimonials .owl-stage-outer .owl-stage .owl-item {
  visibility: initial;
}
.section-testimonials .owl-stage-outer .owl-stage .owl-item.active {
  visibility: visible;
}
.section-testimonials .testimonial {
  background-color: #fff;
  border-radius: 3rem;
  padding: 3rem 2rem;
}
.section-testimonials .testimonial a {
  color: #93278f;
  text-decoration: none;
}
.section-testimonials .testimonial .item-info {
  margin-bottom: 0.5rem;
}
.section-testimonials .testimonial .item-info .name {
  margin-bottom: 0;
}
.section-testimonials .testimonial .item-info .designation {
  margin-bottom: 0;
}
.section-testimonials .testimonial .item-avatar {
  margin-top: 2rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-testimonials .testimonial .item-avatar .image-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.section-testimonials .testimonial .item-avatar .image-wrapper img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  object-fit: cover;
  -o-object-fit: cover;
}
.section-testimonials .testimonial .item-avatar span {
  font-size: 40px;
  line-height: 1;
  color: #93278f;
}
.section-testimonials .testimonial .item-avatar span::before {
  line-height: 1;
}

.section-support {
  padding: 100px 0;
}
.section-support .g-mesh {
  position: absolute;
  left: 40%;
  top: 0;
  transform: translate(-50%, 0);
  z-index: -1;
}
.section-support .support {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .section-support .support {
    flex-direction: column;
    gap: 3rem;
  }
}
.section-support .support > div {
  flex: 0 0 calc(50% - 2.5rem);
  max-width: calc(50% - 2.5rem);
  width: 100%;
}
@media screen and (max-width: 992px) {
  .section-support .support > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section-support .support .item-thumbnail {
  position: relative;
  text-align: center;
}
.section-support .support .item-thumbnail img {
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .section-support .support .item-thumbnail img {
    width: auto;
  }
}
.section-support .support .item-thumbnail .floating-image {
  position: absolute;
  right: -40px;
  top: 40px;
}
.section-support .support .item-thumbnail .floating-image img {
  max-width: 250px;
}
@media screen and (max-width: 992px) {
  .section-support .support .item-info {
    text-align: center;
  }
}
.section-support .support .item-info .subtitle {
  display: inline-block;
}
.section-support .support .item-info .title {
  font-size: 3em;
}
.section-support .support .item-info .button {
  display: inline-block;
  width: auto;
}
.section-support .support .item-info .support-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 992px) {
  .section-support .support .item-info .support-actions {
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .section-support .support .item-info .support-actions {
    flex-direction: column;
  }
}
.section-support .faqs {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 992px) {
  .section-support .faqs {
    max-width: 100%;
  }
}
.section-support .faqs .accordion .accordion-item {
  margin-bottom: 1rem;
}
.section-support .faqs .accordion .accordion-item .accordion-header .accordion-button {
  padding: 1.5rem 2rem;
}
.section-support .faqs .accordion .accordion-item .accordion-body {
  padding: 1.5rem 2rem;
}

.footer {
  background-color: #000;
  padding: 100px 0;
  min-height: 650px;
  border-radius: 8.5rem 8.5rem 0 0;
}
.footer .author-badge {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 50px;
}
.footer .author-badge::after {
  content: "";
  background-color: rgba(255, 255, 255, 0);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  height: 90px;
  width: 250px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translate(-50%, 0);
}
.footer .author-badge img {
  width: 100%;
  max-width: 90px;
}
.footer .footer-cta {
  text-align: center;
  z-index: 1;
  position: relative;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer .footer-cta .footer-title {
  color: #fff;
  font-size: 60px;
  font-weight: 900;
}
.footer .footer-cta .footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 576px) {
  .footer .footer-cta .footer-actions {
    flex-direction: column;
  }
}

@keyframes scrollHB {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollHB2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes scrollHF {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scrollHF2 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

