@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  font-family: "Inter", serif;
}

body {
  background-color: #0c0f0f !important;
}

.navbar {
  position: sticky !important;
  top: 0;
  z-index: 9999;
}

.navbar-nav {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  border-image-slice: 1;
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-link {
  color: #fff !important;
  padding: 0.5rem 20px !important;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link.active {
  color: rgba(64, 224, 208, 1) !important;
  border-top: 1px solid -3px 5px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
  color: rgba(64, 224, 208, 1) !important;
}

.nav-link.active::before {
  position: absolute;
  content: "";
  left: 17px;
  top: -1px;
  height: 1px;
  width: 60%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    #3fdfc3 49.58%,
    rgba(255, 255, 255, 0) 99.21%
  );
}

.navbar .contact-btn {
  border: 1px solid rgba(45, 238, 128, 0.2);
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  --offset: 1px;
  position: relative;
  overflow: hidden;
}

.button {
  --black-700: hsla(0 0% 12% / 1);
  --border_radius: 9999px;
  --transtion: 0.3s ease-in-out;
  --offset: 2px;

  cursor: pointer;
  position: relative;

  display: flex;
  align-items: center;
  gap: 0.5rem;

  transform-origin: center;

  padding: 1rem 2rem;
  background-color: transparent;

  border: none;
  border-radius: var(--border_radius);
  transform: scale(calc(1 + (var(--active, 0) * 0.1)));

  transition: transform var(--transtion);
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  background-color: var(--black-700);

  border-radius: var(--border_radius);
  box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%),
    0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
    0 0 0 calc(var(--active, 0) * 0.375rem) hsl(260 97% 50% / 0.75);

  transition: all var(--transtion);
  z-index: 0;
}

.stars {
  width: 20px !important;
}

.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  background-color: hsla(260 97% 61% / 0.75);
  background-image: radial-gradient(
      at 51% 89%,
      hsla(266, 45%, 74%, 1) 0px,
      transparent 50%
    ),
    radial-gradient(at 100% 100%, hsla(266, 36%, 60%, 1) 0px, transparent 50%),
    radial-gradient(at 22% 91%, hsla(266, 36%, 60%, 1) 0px, transparent 50%);
  background-position: top;

  opacity: var(--active, 0);
  border-radius: var(--border_radius);
  transition: opacity var(--transtion);
  z-index: 2;
}

.button .dots_border {
  --size_border: calc(100% + 2px);

  overflow: hidden;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: var(--size_border);
  height: var(--size_border);
  background-color: transparent;

  border-radius: var(--border_radius);
  z-index: -10;
}

.button .dots_border::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left;
  transform: rotate(0deg);

  width: 100%;
  height: 2rem;
  background-color: white;

  mask: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    #3fdfc3 49.58%,
    rgba(255, 255, 255, 0) 99.21%
  );
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.question-title-active {
  color: rgba(64, 224, 208, 1) !important;
}
.slick-slide {
  padding-inline: 50px;
}

.button .sparkle {
  position: relative;
  z-index: 10;

  width: 1.75rem;
}

.button .sparkle .path {
  fill: currentColor;
  stroke: currentColor;

  transform-origin: center;

  color: hsl(0, 0%, 100%);
}

.button:is(:hover, :focus) .sparkle .path {
  animation: path 1.5s linear 0.5s infinite;
}

.button .sparkle .path:nth-child(1) {
  --scale_path_1: 1.2;
}

.button .sparkle .path:nth-child(2) {
  --scale_path_2: 1.2;
}

.button .sparkle .path:nth-child(3) {
  --scale_path_3: 1.2;
}

@keyframes path {
  0%,
  34%,
  71%,
  100% {
    transform: scale(1);
  }

  17% {
    transform: scale(var(--scale_path_1, 1));
  }

  49% {
    transform: scale(var(--scale_path_2, 1));
  }

  83% {
    transform: scale(var(--scale_path_3, 1));
  }
}

.button .text_button {
  position: relative;
  z-index: 10;

  background-image: linear-gradient(
    90deg,
    hsla(0 0% 100% / 1) 0%,
    hsla(0 0% 100% / var(--active, 0)) 120%
  );
  background-clip: text;

  font-size: 1rem;
  color: transparent;
}

.logo {
  width: 150px;
}

.navbar .contact-btn:hover {
  border: 1px solid rgba(45, 238, 128, 0.2);
  color: #fff;
}

.navbar .contact-btn:active {
  border: 1px solid rgba(45, 238, 128, 0.2) !important;
  color: #fff !important;
}

.navbar-toggler-icon {
  background-image: url("assets/header/menu.png") !important;
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.wrapper .hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  background-image: url("assets/home/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

body {
  position: relative;
  overflow-x: hidden;
}

.inner-body {
  position: relative;
  overflow-x: hidden;
}

.hero-section-gradient {
  position: absolute;
  top: -600px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-section-gradient-2 {
  position: absolute;
  top: -500px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.4;
}

.hero-section-gradient-3 {
  position: absolute;
  top: 500px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.6;
}

.hero-gradient {
  position: absolute;
  top: -600px;
  left: 50%;
  transform: translateX(-50%);
  width: 636px;
  height: 607px;
  border-radius: 50%;
  background: linear-gradient(180deg, #24f2ff 33%, #40e0d0 48%);
  filter: blur(350px);
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.54);
  pointer-events: none;
  z-index: 0;
}

.terms-condition-gradient {
  position: absolute;
  top: -500px;
  left: 50%;
  transform: translateX(-50%);
  width: 536px;
  height: 607px;
  border-radius: 50%;
  background: linear-gradient(180deg, #00f8df 95%, #0ef5de 48%);
  filter: blur(350px);
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.54);
  pointer-events: none;
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* .hero-img-gradient {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(180deg, #24f2ff 33%, #40e0d0 48%);
  filter: blur(250px);
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.54);
  pointer-events: none;
  z-index: -1;
}

.hero-img-gradient-2 {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 359px;
  height: 359px;
  border-radius: 50%;
  background: linear-gradient(180deg, #24f2ff 33%, #40e0d0 48%);
  filter: blur(350px);
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.54);
  pointer-events: none;
  z-index: 0;
} */
@media (max-width: 640px) {
  .hero-gradient {
    filter: blur(80px);
    top: -120px;
    width: 200px;
    height: 150px;
  }

  .hero-img-gradient {
    top: -100px;
    width: 100px;
    height: 100px;
    filter: blur(80px);
  }

  .hero-img-gradient-2 {
    bottom: -60px;
    width: 150px;
    height: 150px;
    filter: blur(100px);
  }

  .hero-section-title {
    font-size: 40px;
  }
}

.footer-gradient {
  position: relative;
  z-index: -1;
}

.wrapper .hero-section .content {
  padding-top: 115px;
  position: relative;
  z-index: 1;
}

.marketing-tag {
  font-size: 16px;
  font-weight: 400;
  line-height: 17.6px;
  letter-spacing: -1%;
  padding: 12px 20px;
  color: rgba(64, 224, 208, 1);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgb(55 93 89);
  border-radius: 30px;
  position: relative;
  --offset: 1px;
}

.marketing-tag::before {
  content: "";
  background: conic-gradient(
    transparent 270deg,
    rgba(63, 223, 195, 0.2),
    #3fdfc3
  );
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: 100%;
  animation: rotate 3s linear infinite;
  z-index: -11;
}

.marketing-tag::after {
  content: "";
  border-radius: inherit;
  position: absolute;
  inset: var(--offset);
  height: calc((100% - 2) * var(--offset));
  width: calc((100% - 2) * var(--offset));
  z-index: 11;
}

.about-us .about-content .marketing-tag::before {
  content: "";
  position: absolute;
  left: 8%;
  top: -11px;
  transform: translateX(-50%);
  height: 1px;
  width: 5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    #3fdfc3 49.58%,
    rgba(255, 255, 255, 0) 99.21%
  );
}

.get-touch-btn::before {
  content: "";
  position: absolute;
  left: 8%;
  top: -11px;
  transform: translateX(-50%);
  height: 1px;
  width: 5%;
  height: 2px;
  background: radial-gradient(
    27.17% 67.65% at 50% 9.8%,
    #ffffff 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
}

.wrapper .hero-section .content .hero-section-title {
  color: #fff;
  font-size: 64px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2%;
}

.wrapper .hero-section .content .hero-section-title span {
  background: linear-gradient(267.86deg, #3fdf94 35.28%, #40e0d0 56.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section-br {
  display: none;
}

.br-none-sm {
  display: none;
}
.faq {
  position: relative;
}
.faq-gradient {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  width: 208px;
  height: 208px;
  border-radius: 50%;
  background: linear-gradient(180deg, #24f2ff 33%, #40e0d0 48%);
  filter: blur(250px);
  box-shadow: inset 0 4px 4px 0 rgba(255, 255, 255, 0.54);
  pointer-events: none;
  z-index: 0;
}

.footer-gradient {
  margin-bottom: -10px;
}

@media (min-width: 1140px) {
  .hero-section-br {
    display: block;
  }

  .br-none-sm {
    display: block;
  }
}

.wrapper .hero-section .content .hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  text-align: center;
  color: #ffffffb2;
  letter-spacing: -0.16px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.wrapper .hero-section .content .start-btn {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 17.6px;
  padding: 15px 20px;
  color: rgba(64, 224, 208, 1);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  border: 1px solid rgb(55 93 89);
  letter-spacing: -0.16px;
}

.wrapper .hero-section .content .touch-btn {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 17.6px;
  padding: 15px 20px;
  color: rgba(64, 224, 208, 1);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  border: 1px solid rgb(55 93 89);
}

.wrapper .hero-section .content .start-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  height: 1px;
  width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    #3fdfc3 49.58%,
    rgba(255, 255, 255, 0) 99.21%
  );
}

.industry-section .title {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.96px;
}

.industry-section .indusry-logoes {
  display: flex;
  gap: 1rem;
}

.services .service-tag {
  color: #fff;
  font-size: 14px;
  line-height: 32px;
  font-weight: 500;
  text-align: center;
}

.services .service-title {
  color: #fff;
  font-size: 48px;
  line-height: 52.8px;
  text-align: center;
  letter-spacing: -0.32px;
}

.services .service-title span {
  background: linear-gradient(267.86deg, #3fdf94 35.28%, #40e0d0 56.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .services-card {
  display: flex;
  border-radius: 16px;
  background: rgba(59, 59, 59, 1);
}

.services .services-card .card {
  color: #fff;
  border: 1px solid #383838;
  width: 460px;
  border-radius: 16px;
  background: #0f1010;
}

.services .card .card-title {
  letter-spacing: -0.16px;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
}

.services .card .card-text {
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
}

.services .services-card .card-body img {
  max-width: 60px;
  margin-bottom: 56px;
}

.services .services-card .card-body {
  padding: 35px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 640px) {
  .services .card .card-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
  }
  .services .card .card-text {
    font-size: 14px;
    line-height: 22px;
  }
}

.support {
  position: relative;
}

.support .insta {
  position: absolute;
  top: 60%;
  left: 5%;
}

.support .customer-services {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 100%;
  width: 100%;
}

.aaa {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 50px;
  border-radius: 10px;
}

.support .youtube {
  position: absolute;
  top: 40%;
  right: 5%;
}

.support .support-title {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 52.8px;
  text-align: center;
  letter-spacing: -0.32px;
}

.support .support-title span {
  background: linear-gradient(227.53deg, #34a0ff 48.47%, #3fdfc2 120.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support .support-sub-title {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 44.8px;
  text-align: center;
  letter-spacing: 0px;
  max-width: 904px;
  width: 100%;
  margin: 0 auto;
}

.support .support-sub-tile {
  color: #ffffffb2;
  font-size: 28px;
  font-weight: 400;
  line-height: 44.8px;
  text-align: center;
}

.support .support-sub-title span {
  color: #ffffffb2;
}

.video-container video {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 100%;
  mix-blend-mode: lighten;
}

@media max {
}

.about-us {
  background-image: url("assets/about-us/blur-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.about-us .aboutus-title {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 52.8px;
}

.about-us .sub-title {
  color: #ffffffb2;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.about-us .aboutus-title span {
  background: linear-gradient(267.23deg, #dd40e0 39.58%, #94df3f 96.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review .review-description,
span {
  color: rgba(255, 255, 255, 0.7);
}

.user-review .review-title {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 52.8px;
  text-align: center;
}

.user-review .review-title span {
  background: linear-gradient(267.29deg, #9b40e0 3.84%, #3fdfaa 56.42%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-slider .review {
  background: linear-gradient(
    243.41deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(30, 30, 30, 0.392) 50.8%,
    rgba(88, 88, 88, 0) 99.6%
  );
  border-radius: 15px;
  border: 1px solid #444646;
  height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 400px;
  padding: 0px 17px;
}

.testimonial-slider {
  width: 100%;
  text-align: center;
  position: relative;
}

.testimonial-slider .review .review-img {
  position: absolute;
  top: -50px;
}

.review h4 {
  color: #fff;
  letter-spacing: -0.16px;
}

.contact-us .title {
  color: rgba(64, 224, 208, 1);
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.32px;
}

.contact-us {
  background: url("assets/contact-us/subscribe.png");
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: 100% 100%;
  padding: 70px;
}

.contact-us .get-touch-btn {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 400;
  line-height: 17.6px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(39, 44, 43, 0.8) 100%
  );
  padding: 15px 20px;
  border-radius: 30px;
  border: 0px;
}

.general-faq {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.faq .title {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 52.8px;
  text-align: center;
}

.faq .title span {
  background: linear-gradient(267.34deg, #40e05b 0.64%, #3f7cdf 31.11%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq .accordion .accordion-item {
  margin-bottom: 20px;
  border-radius: 16px;
  border: 0px;
}

.faq .accordion .accordion-button {
  background: linear-gradient(
    243.41deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(30, 30, 30, 0.392) 50.8%,
    rgba(88, 88, 88, 0) 99.6%
  );
}

.faq .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.faq .accordion .accordion-button:focus {
  box-shadow: none !important;
}

.box .question span {
  font-size: 16px;
  font-weight: 600;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.95);
}

.box {
  width: 60%;
  background: linear-gradient(
    243.41deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(30, 30, 30, 0.392) 50.8%,
    rgba(88, 88, 88, 0) 99.6%
  );

  color: white;
  padding: 15px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
}

.answer {
  display: none;
  color: #ccc;
  font-size: 14px;
  margin-top: 10px;
}

.icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(180deg);
}

.tabs {
  display: flex;
  justify-content: center;
  background: #222;
  border-radius: 10px;
  position: relative;
  z-index: 9;
  width: 80%;
  margin: auto;
  border-radius: 16px;
}

.tab {
  cursor: pointer;
  color: white;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  margin: 0 10px;
  width: 300px;
}

.tab.active {
  color: rgba(64, 224, 208, 1);
  padding: 20px 50px;
  border-bottom: 2px solid #00ffcc;
  background: #151e1e;
  border: 1px solid rgba(64, 224, 208, 1);
  border-radius: 16px;
}

.tab-content {
  display: none;
  margin-top: 20px;
  background: #1a1a1a;
  padding: 60px;
  border-radius: 10px;
  margin-top: -35px;
}

.tab-content.active {
  display: block;
}

.performane {
  margin-top: 25rem;
}

.performane .title {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 52.8px;
  text-align: center;
  letter-spacing: -0.32px;
}

.performane .title span {
  background: linear-gradient(267.53deg, #34a0ff 2.91%, #3fdfc2 38.09%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.performane .roi-title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.performane .roi-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
}

.performane .return .max-return {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.16px;
}

.performane .return .max-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  margin-left: 40px;
  letter-spacing: -0.16px;
}

.footer-content {
  position: relative;
}
.terms-footer {
  pointer-events: none;
}
.footer-content .abc {
  position: absolute;
  bottom: 16%;
  left: 50%;
  transform: translate(-50%);
}

.footer-contents {
  padding: 25px 0px;
  border-top: 1px solid rgb(78 78 78);
}

@media (max-width: 640px) {
  .footer-content .home-footer {
    margin-bottom: 40px;
  }
  .footer-content .policy-footer {
    margin-bottom: 40px;
  }

  .footer-content .terms-footer {
    margin-bottom: -30px;
  }
  .footer-content .abc {
    bottom: -8%;
  }

  .footer-contents {
    border-top: 0px solid rgb(78 78 78);
  }

  .footer-content .padding-none {
    padding: 0px 0rem;
  }
}

.footer-content .ovel-logo {
  height: 100%;
  max-height: 350px;
}

.footer-content .padding-none {
  padding: 0px 3rem;
}

.footer-content img {
  cursor: pointer;
}

.useful-links a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  background: transparent;
}

.contact-modal {
  background-image: url("assets/header/contact-bg.png") !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  border-radius: 21px !important;
}

.modal-title {
  color: #fff !important;
}

.modal-footer {
  border-top: 0px !important;
}

.col-form-label {
  color: rgba(255, 255, 255, 1) !important;
  font-size: 14px !important;
  font-weight: 400;
  line-height: 40px !important;
  padding: 0 !important;
}

textarea {
  padding: 15px 25px !important;
  border-radius: 12px !important;
}

.form-control {
  backdrop-filter: blur(13px);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: linear-gradient(
    110.34deg,
    rgba(255, 255, 255, 0.245) 0%,
    rgba(255, 255, 255, 0.042) 100%
  ) !important;
}

.custome-input {
  height: 50px;
  padding: 0px 25px !important;
  border-radius: 72px !important;
}

.form-control:focus {
  box-shadow: none !important;
  border: 1px solid #fff !important;
}

.form-control::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* .modal {
    background: #00000073 !important;
    background-image: url('assets/header/abc.png') !important;
} */

.offcanvas {
  background: #1a1b1b !important;
}

.offcanvas .offcanvas-title img {
  width: 150px !important;
}

.send-message {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 17.6px !important;
  letter-spacing: -1% !important;
  padding: 15px 20px !important;
  color: rgba(64, 224, 208, 1) !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(39, 44, 43, 0.8) 100%
  );
  border-radius: 30px !important;
  border: 1px solid rgb(55 93 89) !important;
}

.send-message::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  height: 1px;
  width: 60%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    #3fdfc3 49.58%,
    rgba(255, 255, 255, 0) 99.21%
  );
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;

  opacity: 0.75;
  color: white;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

.slick-slide {
  height: 80px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.support {
  margin-top: -10rem;
}

.testimonial-slider {
  overflow: hidden;
}

.slider {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.dots {
  text-align: center;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: gray;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: rgba(64, 224, 208, 1);
}

.active-border.active {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  width: 20px;
  height: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-slider {
  width: 100%;
  position: relative;
}

.reviews-wrapper {
  display: flex;
  gap: 24px;
  width: calc(100% * 2);
  /* Ensures enough space for smooth looping */
  /* animation: scrolling 30s linear infinite; */
}

.review {
  flex: 0 0 auto;
  width: 300px;
  /* Adjust as needed */
  text-align: center;
}

@keyframes scrolling {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Button Animation */
.ce-navbar-btn-wrapper {
  position: relative;
}

.nav-btn-img {
  position: absolute;
  left: -10px;
  top: -10px;
  opacity: 0;
  transition: all 0.3s ease;
}

.ce-navbar-btn {
  --offset: 1px;
  font-family: var(--roboto);
  color: #3fdfc3;
  border-radius: 100px;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(39, 44, 43, 0.8) 100%
  );
}

.ce-navbar-btn:before {
  content: "";
  background: conic-gradient(
    transparent 270deg,
    rgba(63, 223, 195, 0.2),
    #3fdfc3
  );
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: 100%;
  animation: rotate 3s linear infinite;
  z-index: -11;
}

.ce-navbar-btn:after {
  content: "";
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0, rgba(63, 223, 195, 0.39) 70%); */
  border-radius: inherit;
  position: absolute;
  inset: var(--offset);
  height: calc(100% - 2 * var(--offset));
  width: calc(100% - 2 * var(--offset));
  z-index: 11;
}

.bg-button {
  background: #000;
  display: inline-block;
  height: calc(100% - 2 * var(--offset));
  width: calc(100% - 2 * var(--offset));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(63, 223, 195, 0.2);
}

.ce-navbar-btn-wrapper:hover .nav-btn-img {
  opacity: 1;
}

.ce-navbar-btn-wrapper:hover .ce-navbar-btn:before {
  opacity: 0;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) scale(1.4) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) scale(1.4) rotate(1turn);
  }
}

/*  */

.boxing {
  max-width: 285px;
  width: 100%;
  margin: 20px auto;
  border-radius: 100px;
}

.boxing .inner {
  padding: 8px;
  background: #222;
  color: #fff;
  border-radius: 100px;
  border: 1px solid rgb(55 93 89);
  font-size: 16px;
}

.boxing h3 {
  margin-bottom: 15px;
}

.boxing {
  max-width: fit-content;
  width: 100%;
  margin: 20px auto;
  border-radius: 100px;
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.boxing .inner {
  padding: 8px 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(39, 44, 43, 0.8) 100%
  );
  color: #fff;
  border-radius: 100px;
  border: 1px solid rgb(55 93 89);
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 1px;
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes spinBorder {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

.boxing::before {
  content: "";
  display: block;
  background: conic-gradient(
    from var(--angle),
    transparent 270deg,
    rgba(63, 223, 195, 0.2),
    #3fdfc3
  );
  position: absolute;
  width: 101%;
  height: 103%;
  border-radius: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 3px;
  z-index: -1;
  animation: 4s spinBorder linear infinite;
  -webkit-animation: 4s spinBorder linear infinite;
}

.boxing::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(39, 44, 43, 1) 100%
  );
  position: absolute;
  top: 50%;
  left: 50%;
  width: 97%;
  height: 90%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
}

.termscondition {
  position: relative;
  min-height: 100vh;
}

.termscondition-bg-img {
  position: absolute;
  top: 80px;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("assets/home/hero-bg.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 0;
}

.termscondition .terms-content {
  padding-top: 115px;
  position: relative;
  z-index: 1;
}

.termscondition .terms-content .title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.32px;
  background: linear-gradient(267.53deg, #34a0ff 35.47%, #3fdfc2 56.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.termscondition .terms-content .sub-title {
  font-size: 18px;
  line-height: 28.8px;
  letter-spacing: -0.16px;
  color: rgba(255, 255, 255, 0.7);
}

.termscondition .terms-content .descriptions .description-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.16px;
  color: rgba(233, 233, 233, 1);
}

.contact-mail .mail {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.16px;
  color: rgba(64, 224, 208, 1);
  cursor: pointer;
}

.privacy-policy {
  position: relative;
  min-height: 100vh;
}

.privacy-policy-bg-img {
  position: absolute;
  top: -20px;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("assets/home/hero-bg.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 0;
}

.privacy-content {
  padding-top: 115px;
}

.privacy-policy .title {
  font-size: 48px;
  font-weight: 500;
  line-height: 52.8px;
  letter-spacing: -0.32px;
  text-align: center;
  background: linear-gradient(267.53deg, #34a0ff 35.47%, #3fdfc2 56.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-policy .privacy-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.16px;
  color: rgba(255, 255, 255, 0.7);
}

.privacy-content .privacy-description a {
  color: rgba(64, 224, 208, 1);
  text-decoration: none !important;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.privacy-imp {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: -0.16px;
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 1399.98px) {
  .industry-section .title {
    font-size: 16px;
  }

  .footer-content .ovel-logo {
    min-height: 310px !important;
  }
}

@media (max-width: 1300px) {
  .support {
    margin-top: -6rem;
  }
}

@media (max-width: 991.98px) {
  .wrapper .hero-section .content .hero-section-title {
    font-size: 40px;
    line-height: 50px;
  }

  .wrapper .hero-section .content .hero-subtitle {
    font-size: 14px;
    line-height: 24px;
  }

  .wrapper .hero-section .content img {
    width: 100%;
  }

  .services .service-title {
    font-size: 16px;
    line-height: 40px;
  }

  .services .services-card {
    flex-wrap: wrap;
    justify-self: center;
  }

  .performane .title {
    font-size: 30px;
  }

  .support .support-title {
    font-size: 30px;
    line-height: 30px;
  }

  .support .support-sub-title {
    font-size: 20px;
    line-height: 34px;
  }

  .support .support-sub-tile {
    font-size: 20px;
    line-height: 34px;
  }

  .tab {
    padding: 20px 10px;
    font-size: 14px;
    letter-spacing: -0.16px;
  }

  .tab.active {
    padding: 20px 10px;
  }

  .user-review .review-title {
    font-size: 30px;
  }

  .about-us {
    text-align: center;
  }

  .about-us .about-content {
    margin-top: 60px;
  }

  .box {
    width: 80%;
  }

  .contact-us .title {
    font-size: 30px;
  }

  .footer-content p {
    font-size: 10px;
  }

  .footer-content .logo {
    width: 150px;
  }

  .footer-content img {
    width: 35px;
  }

  .sm-don {
    display: none !important;
  }

  .roi-title {
    font-size: 16px !important;
  }

  .navbar-nav {
    border: none !important;
    background-color: transparent !important;
    border-image-source: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .about-us .about-content .marketing-tag::before {
    left: 50% !important;
  }

  .services .services-card .card {
    width: 100% !important;
  }

  .start-btn img {
    width: 20px !important;
  }

  .nav-link.active::before {
    display: none !important;
  }

  .ce-navbar-btn-wrapper {
    display: inline-block;
  }

  .support {
    margin-top: -4rem;
  }
}

@media (max-width: 767.98px) {
  .wrapper .hero-section .content .hero-section-title {
    font-size: 36px;
    line-height: 38px;
  }

  .wrapper .hero-section .content .hero-subtitle {
    font-size: 14px;
  }

  .services .service-title {
    font-size: 25px;
  }

  .support .support-title {
    font-size: 25px;
  }

  .support .support-sub-title {
    font-size: 16px;
    line-height: 25px;
  }

  .support .support-sub-tile {
    font-size: 16px;
    line-height: 25px;
  }

  .about-us img {
    width: 100%;
  }

  .performane .title {
    font-size: 25px;
  }

  .support .customer-services {
    bottom: 0;
  }

  .tab {
    font-size: 10px;
    padding: 20px 5px;
  }

  .tab.active {
    font-size: 10px;
    padding: 20px 5px;
  }

  .about-us .aboutus-title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.32px;
  }

  .about-us .sub-title {
    font-size: 14px;
  }

  .user-review .review-title {
    font-size: 25px;
    letter-spacing: -0.32px;
  }

  .contact-us .title {
    font-size: 20px;
  }

  .faq .title {
    font-size: 30px;
  }

  .box {
    width: 100%;
  }

  .testimonial-slider .slides .slide .review {
    flex: 0 0 calc(100% / 2);
  }

  .tab-content {
    padding: 60px 10px;
  }

  .video-container video {
    top: 270% !important;
    width: 100% !important;
  }

  .support {
    margin-top: -2rem;
  }

  .footer-content .abc {
    gap: 1rem !important;
  }

  .useful-links a {
    font-size: 12px !important;
  }

  .footer-content .ovel-logo {
    min-height: 225px !important;
  }
}

@media (max-width: 575.98px) {
  .testimonial-slider .slides .slide .review {
    flex: 0 0 calc(100% / 1);
  }

  .footer-content p {
    font-size: 7px;
  }

  .footer-content .logo {
    width: 100px;
  }

  .footer-content img {
    width: 20px;
  }

  .navbar-brand img {
    width: 150px;
  }

  .services .services-card .card-body {
    padding: 15px !important;
  }

  #backToTop {
    padding: 5px 10px;
  }

  #backToTop img {
    width: 35px !important;
  }

  .slick-slide img {
    width: 60px !important;
  }

  .slick-next {
    right: -10px !important;
  }

  .slick-prev {
    left: -10px !important;
  }

  .youtube {
    width: 60px;
  }

  .insta {
    width: 60px;
  }

  .pyd-y {
    padding: 0px 20px !important;
  }

  .inner p {
    font-size: 12px !important;
  }

  .wrapper .hero-section .content {
    padding: 35px !important;
  }

  .useful-links a {
    font-size: 10px !important;
  }

  .footer-contents .all-rights {
    font-size: 12px;
  }

  .footer-contents .sm-break {
    display: none !important;
  }

  .termscondition .terms-content .title {
    font-size: 30px !important;
  }

  .termscondition .terms-content .sub-title {
    font-size: 16px !important;
  }
}

@media (min-width: 490px) {
  .sm-break {
    display: none !important;
  }
}

#form-btn,
#privacy-form-btn,
#terms-form-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: center;
}

#form-btn:focus {
  outline: none;
}

#form-btn:focus-visible {
  outline: none;
}
@media (max-width: 490px) {
  .wrapper .hero-section .content .hero-section-title {
    font-size: 24px;
    line-height: 28px;
  }

  .footer {
    margin-top: 50px;
  }

  .services .service-title {
    font-size: 16px;
    line-height: 28px;
  }

  .padding-none {
    padding: 0 10px !important;
  }

  .support .support-title {
    font-size: 19px;
  }

  .support .support-sub-title {
    font-size: 13px;
    line-height: 20px;
  }

  .support .support-sub-tile {
    font-size: 13px;
    line-height: 20px;
  }

  .performane .title {
    font-size: 16px;
  }

  .tabs {
    width: 100% !important;
  }

  .tab {
    font-size: 12px !important;
  }

  .contact-us .title {
    font-size: 16px;
  }

  .wrapper .hero-section .content .hero-subtitle {
    font-size: 12px;
    line-height: 18px;
  }

  .br-none-sm {
    display: none !important;
  }

  .user-review .review-title {
    font-size: 19px;
  }

  .faq .title {
    font-size: 19px !important;
  }

  .performane {
    margin-top: 25rem !important;
  }

  .marketing-tag {
    font-size: 12px;
  }

  .marketing-tag::before {
    width: 10% !important;
    top: -8px !important;
    left: 50% !important;
  }

  .footer-content .ovel-logo {
    min-width: 190px !important;
  }

  .performane .roi-subtitle {
    font-size: 14px;
  }

  .performane .return .max-return {
    font-size: 16px;
  }
  .performane .return .max-subtitle {
    font-size: 14px;
  }
}
