/* Colors */
:root {
  --background-color: #1c1c2c;
  --default-color: #ffffff;
  --contrast-color: #24242c;
  --muted-color: #b7b4d6;
  --primary-color: #956df3;
  --secondary-color: #b49cf4;
}

/*--------------------------------------------------------------
# General styling & shared classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

.centered-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Sections */
section {
  padding: 100px 0;
  overflow: clip;
  background-color: var(--background-color);
}

@media (max-width: 1023px) {
  section {
    padding: 50px 0;
  }
}

/* Buttons */
.btn-outline-custom {
  margin-top: 20px;
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  color: var(--default-color);
  background-color: transparent;
  border: 1px solid var(--default-color);
}

.btn-outline-custom:hover {
  color: var(--default-color);
  background-color: var(--secondary-color);
}

/* Social links */
.social-links {
  list-style: none;
  display: flex;
  gap: 30px;
  text-align: center;
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: var(--default-color);
  border: 1px solid var(--default-color);
  transition: 0.3s;
}

.social-links a:hover {
  transition-duration: 0.3s;
}

.whatsapp:hover {
  background-color: #25d366;
}

.facebook:hover {
  background-color: #1877F2;
}

.instagram:hover {
  background-color: #d62976;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.social-links a:hover i {
  animation: slide-in-top 0.3s both;
}

/* Show/hide element */
.hidden-in-desktop {
  display: none;
}

.hidden-in-mobile {
  display: block;
}

@media (max-width: 1023px) {
  .hidden-in-desktop {
    display: block;
  }

  .hidden-in-mobile {
    display: none;
  }
}

/* Lotties */
@media (max-width: 767px) {
  .lottie {
    width: 70%;
    height: 70%;
  }
}

/*--------------------------------------------------------------
# Section title
--------------------------------------------------------------*/
.section-title {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title h1 {
  margin-bottom: 10px;
  position: relative;
  text-align: center;
  font-size: 32px;
  color: var(--secondary-color);
}

.section-title p {
  width: 45%;
  font-size: 18px;
  color: var(--muted-color);
}

@media (max-width: 1023px) {
  .section-title p {
    width: 90%;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: 0.6s ease-out;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#preloader:before {
  content: "";
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border-radius: 50%;
  position: fixed;
  border: 6px solid var(--default-color);
  border-color: var(--secondary-color) transparent var(--secondary-color) transparent;
  animation: animate-preloader 1.5s linear infinite;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
  padding: 15px 0;
  color: var(--default-color);
}

.navbar-menu {
  display: flex;
  justify-content: space-between;
}

.navbar-menu .sitename {
  line-height: 1;
  font-size: clamp(25px, 5vw, 30px);
  font-weight: bold;
  color: var(--default-color);
}

.navbar-menu ul li a {
  color: var(--default-color);
}

.navbar-menu .sitename:hover,
.navbar-menu ul li:hover>a {
  color: var(--primary-color);
}

.scrolled .navbar {
  display: none;
}

/* Mobile navbar */
.mobile-navbar {
  color: var(--default-color);
  background-color: var(--background-color);
}

.mobile-navbar .nav-item {
  display: flex;
  align-items: center;
}

.mobile-navbar a,
.mobile-navbar i {
  font-size: 20px;
  color: var(--primary-color);
}

.mobile-navbar i {
  margin-right: 15px;
}

.mobile-navbar ul li:hover>a,
.mobile-navbar ul li a:hover>i {
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  position: relative;
  color: var(--default-color);
  background-color: var(--contrast-color);
}

.footer h4 {
  padding-bottom: 12px;
  position: relative;
  font-size: 18px;
}

/* Footer links */
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links ul li {
  padding: 5px 0;
}

.footer-links ul i {
  line-height: 0;
  margin-right: 8px;
  font-size: 12px;
}

.footer-links ul a {
  line-height: 1;
}

.footer-links ul a:hover {
  color: var(--primary-color);
}

/* Copyright & credits*/
.footer .copyright {
  margin-top: 22px;
  padding: 25px 5px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid var(--muted-color);
}

.footer .credits {
  margin-top: 6px;
}

/*--------------------------------------------------------------
# Scroll top button & WhatsApp widgets
--------------------------------------------------------------*/
.fixed-widget {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}

.fixed-widget i {
  line-height: 0;
  font-size: 24px;
  color: var(--default-color);
}

.scroll-top {
  visibility: hidden;
  opacity: 0;
  right: 65px;
  bottom: 15px;
  background-color: var(--secondary-color);
}

.scroll-top:hover {
  background-color: var(--primary-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.btn-whatsapp {
  right: 15px;
  bottom: 15px;
  background-color: #25d366;
}

.btn-whatsapp:hover {
  background-color: #1DA955;
}

/*--------------------------------------------------------------
# Swiper
--------------------------------------------------------------*/
.swiper-wrapper {
  height: auto;
  align-items: center;
}

.swiper-slide img {
  transition: 0.3s;
}

.swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hero section
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--default-color);
  background: radial-gradient(circle at 30% 20%, #2b285a 0%, #1c1c2c 55%, #0f0e1c 100%);
}

.hero-inner {
  display: flex;
  gap: 60px;
}

/* Left column */
.hero-left {
  width: 68%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-left h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
}

.hero-left p {
  max-width: 520px;
  font-size: 18px;
  color: var(--muted-color);
}

/* Badges */
.badges {
  display: flex;
  gap: 10px;
}

.badge-1 {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted-color);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.badge-2 {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  display: flex;
  gap: 8px;
  color: var(--muted-color);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .12);
}

.badge-2:hover {
  color: var(--muted-color);
  background: rgba(255, 255, 255, 0.08);
}

/* Animated text */
@property --＠color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(98 100% 62%);
}

@property --＠color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(204 100% 59%);
}

@keyframes gradient-change {
  to {
    --＠color-1: hsl(210 100% 59%);
    --＠color-2: hsl(310 100% 59%);
  }
}

.animated-text {
  background-clip: text;
  color: transparent;
  background: linear-gradient(to right in oklch, var(--＠color-1), var(--＠color-2));
  animation: gradient-change 2s linear infinite alternate;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-gradient {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  color: var(--default-color);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.4s;
}

.btn-gradient:hover {
  transform: translateY(-5px);
  filter: brightness(1.1);
}

.btn-gradient i {
  font-size: 16px;
}

@media (max-width: 1023px) {
  .btn-gradient {
    padding: 8px 12px;
    font-size: 18px;
  }

  .btn-gradient i {
    font-size: 12px;
  }
}

.btn-ghost {
  display: flex;
  align-items: center;
  color: var(--default-color);
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
  transition: 0.4s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-5px);
}

/* Right column */
.hero-right {
  width: 60%;
}

.media-box {
  width: 100%;
  border-radius: 20px;
  position: relative;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

@media (max-width: 767px) {
  .hero-inner {
    margin-top: 50px;
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Services section
--------------------------------------------------------------*/
.services {
  --cyan-color: #0dcaf0;
  --teal-color: #20c997;
  --orange-color: #fd7e14;
  --yellow-color: #ffc107;
}

@keyframes serviceItemBorder {

  0%,
  70%,
  100% {
    border-color: rgba(255, 255, 255, .08);
  }

  20%,
  50% {
    border-color: var(--service-color);
  }
}

.service-card {
  height: 100%;
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  background: var(--contrast-color);
  border: 2px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 20px rgba(0, 0, 0, .4);
  animation: serviceItemBorder 4s ease-in-out infinite;
  transition: 0.3s;
}

@keyframes serviceIconBg {

  0%,
  70%,
  100% {
    background-color: color-mix(in srgb, var(--service-color) 10%, var(--background-color) 95%);
  }

  20%,
  50% {
    background-color: var(--service-color);
  }
}

.service-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: color-mix(in srgb, var(--service-color) 10%, var(--background-color) 95%);
  border: 2px solid var(--service-color);
  animation: serviceIconBg 4s ease-in-out infinite;
  transition: 0.3s ease-in-out;
}

@keyframes serviceIconColor {

  0%,
  70%,
  100% {
    color: var(--service-color);
  }

  20%,
  50% {
    color: var(--default-color);
  }
}

.service-card .icon i {
  position: relative;
  font-size: 32px;
  color: var(--default-color);
  animation: serviceIconColor 4s ease-in-out infinite;
  transition: 0.5s;
}

.service-card h3 {
  margin: 10px 0 15px 0;
  font-size: 22px;
  color: var(--default-color);
}

.service-card p {
  line-height: 24px;
  margin-bottom: 0;
  font-size: 15px;
  color: var(--muted-color);
}

/* Cian */
.service-card.cyan {
  --service-color: var(--cyan-color);
}

.service-card.cyan,
.service-card.cyan .icon,
.service-card.cyan .icon i {
  animation-delay: 0s;
}

/* Teal */
.service-card.teal {
  --service-color: var(--teal-color);
}

.service-card.teal,
.service-card.teal .icon,
.service-card.teal .icon i {
  animation-delay: 0.4s;
}

/* Orange */
.service-card.orange {
  --service-color: var(--orange-color);
}

.service-card.orange,
.service-card.orange .icon,
.service-card.orange .icon i {
  animation-delay: 0.8s;
}

/* Yellow */
.service-card.yellow {
  --service-color: var(--yellow-color);
}

.service-card.yellow,
.service-card.yellow .icon,
.service-card.yellow .icon i {
  animation-delay: 1.2s;
}

/*--------------------------------------------------------------
# Separators section
--------------------------------------------------------------*/
.separator {
  width: 70%;
  height: 70%;
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
}

.separator .content {
  width: 150%;
  padding: 30px 20px 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.separator .content p {
  width: 90%;
}

/* Separator 2 */
.separator2 {
  margin: 50px 0;
  padding: 0;
  background-color: var(--primary-color);
}

.separator2 .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.separator2 .content p {
  width: 70%;
}

@media (max-width: 767px) {
  .separator {
    width: 95%;
  }

  .separator,
  .separator2 {
    flex-direction: column;
  }

  .separator .content,
  .separator2 .content {
    width: 100%;
    padding: 20px 20px 30px 20px;
  }

  .separator .content p,
  .separator2 .content p {
    width: 100%;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .separator {
    width: 100%;
  }

  .separator2 .content {
    padding: 30px 0;
  }

  .separator2 .content p {
    width: 95%;
  }
}

/*--------------------------------------------------------------
# Benefits section
--------------------------------------------------------------*/
.benefits .section-title {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .benefits .section-title {
    margin-bottom: 20px;
  }
}

.desktop-lottie {
  width: 92%;
  height: 92%;
}

.benefit-card {
  min-height: 120px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: var(--contrast-color);
  border: 1px solid var(--default-color);
  box-shadow: 0 20px 20px rgba(0, 0, 0, .4);
}

.benefit-card:hover {
  scale: 1.02;
  box-shadow: 0 5px 20px #444e;
}

.benefit-card i {
  margin-right: 25px;
  font-size: 28px;
  color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Features section
--------------------------------------------------------------*/
.feature-card {
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--contrast-color);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 20px 20px rgba(0, 0, 0, .4);
  transition: all 0.4s ease-in-out;
}

.feature-card .icon,
.feature-card .heading,
.feature-card .content {
  position: relative;
  z-index: 5;
  transition: all 0.5s;
}

.feature-card .icon {
  width: 40px;
  margin-bottom: 15px;
  fill: var(--primary-color);
  font-size: 70px;
}

.feature-card .heading {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 800;
}

.feature-card .number {
  top: -90px;
  right: -85px;
  padding: 80px 100px 30px 30px;
  border-radius: 100%;
  position: absolute;
  z-index: 5;
  background: var(--primary-color);
}

.feature-card .number p {
  margin-top: 28px;
  font-size: 28px;
  font-weight: 600;
}

.feature-card .number::after {
  content: "";
  top: 50%;
  right: 50%;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: absolute;
  z-index: -1;
  background: var(--primary-color);
  transition: all 0.5s;
  transform: translateX(50%) translateY(-50%);
}

.feature-card:hover {
  scale: 1.02;
  box-shadow: 0 5px 20px #444e;
}

.feature-card:hover .number::after {
  width: 665%;
  height: 665%;
}

.feature-card:hover .icon,
.feature-card:hover .heading,
.feature-card:hover .content {
  color: var(--default-color);
  fill: var(--default-color);
}

/*--------------------------------------------------------------
# Faq section
--------------------------------------------------------------*/
.faq-item {
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background-color: var(--contrast-color);
  border: 1px solid var(--default-color);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h3 {
  line-height: 24px;
  margin: 0 30px 0 0;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: normal;
  transition: 0.3s;
}

.faq-item .faq-content {
  visibility: hidden;
  opacity: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
}

.faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 18px;
  color: var(--muted-color);
}

.faq-item .faq-toggle {
  top: 20px;
  right: 20px;
  line-height: 0;
  cursor: pointer;
  position: absolute;
  font-size: 22px;
  transition: 0.3s;
}

.faq-item .faq-toggle:hover {
  color: var(--secondary-color);
}

.faq-active .faq-content {
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  grid-template-rows: 1fr;
}

.faq-active .faq-toggle {
  color: var(--secondary-color);
  transform: rotate(90deg);
}