.blog-section {
  padding: 80px 10%;
  background: #000;
}

.section-title {
  color: #fff;
  font-size: 40px;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: linear-gradient(185deg, #373737, #1a1a1a);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #fff9bc;
  transition: 0.4s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(224, 186, 102, 0.15);
}

.blog-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.blog-card p {
  color: #b6b6b7;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-footer span {
  color: #b6b6b7;
  font-size: 13px;
}

.blog-footer a {
  color: #e0ba66;
  text-decoration: none;
  font-weight: 500;
}

.blog-footer a:hover {
  text-decoration: underline;
}
.client-segments .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.client-segments .card {
  position: relative;
  min-height: 250px; /* Aap height adjust kar sakte hain */
  display: flex;
  overflow: hidden;
  background-color: #000; /* Fallback color */
}

/* Ye layer image ko poore card par failayegi */
.client-segments .image-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.8s ease;
}

/* Hover effect for image */
.card:hover .image-box {
  transform: scale(1.1);
}

/* Content layer with Blur & Gradient */
.client-segments .content {
  position: relative;
  z-index: 2; /* Image se upar */
  width: 100%;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* Left side dark aur blurred effect */
  background: linear-gradient(
    to right,
    rgba(43, 34, 27, 0.95) 30%,
    rgba(43, 34, 27, 0.7) 60%,
    transparent 100%
  );
  border: 0.2px solid #fff9bc;
  border-radius: 10px;
}

.client-segments .content h2 {
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 0px;
  line-height: 1.2;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.client-segments .content p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #e0d9d2;
  max-width: 320px; /* Text ko left side restrict karne ke liye */
  margin-bottom: 0;
}
.top-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.client-segments .footer-text span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #b0a59a;
  margin-bottom: 5px;
}

.client-segments .footer-text strong {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .client-segments .grid-container {
    grid-template-columns: 1fr;
  }
  .client-segments .content {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9) 50%,
      transparent 100%
    );
    justify-content: center;
    padding: 30px 20px;
  }
}
/* --- Root Variables --- */
:root {
  --gold: #fff9bc;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --dark-bg: #000000;
  --card-bg: #0d0d0d;
  --text-gray: #b6b6b7;
  --border-color: #222;
}

/* --- Section Layout --- */
.data-insights {
  /* background-color: var(--dark-bg); */
  color: #ffffff;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Header Styling --- */
.main-header {
  text-align: center;
  margin-bottom: 50px;
}

/* --- Analytics Row & Hover Effects --- */
.analytics-row {
  display: flex;
  gap: 40px;
  background: linear-gradient(145deg, #111, #000);
  border: 1px solid #fff9bc;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  align-items: center;
  transition: all 0.4s ease;
}

.analytics-row:hover {
  border-color: var(--gold);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.8),
    0 0 20px var(--gold-glow);
  transform: translateY(-5px);
}

.analytics-text {
  flex: 1;
}
.analytics-image {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #333;
}

.analytics-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.analytics-row:hover .analytics-image img {
  transform: scale(1.05);
}

.analytics-text h3 {
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 800;
}
.analytics-text p {
  color: #b6b6b7;
}

/* --- Tags Animation --- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.tags span {
  border: 1px solid #fff9bc;
  color: #000;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
}

.disclaimer {
  font-size: 11px;
  color: #555;
  font-style: italic;
}

/* --- Selection Framework Box --- */
.framework-container {
  border: 1px solid var(--gold);
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--card-bg);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.1);
}

.framework-header {
  text-align: center;
  padding: 20px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.framework-item {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid #fff9bc;
  transition: all 0.3s ease;
}
.framework-item img {
  width: 150px;
  height: 150px;
}

.framework-item:hover {
  background: #151515;
}

.framework-item:last-child {
  border-right: none;
}

.framework-item .icon {
  font-size: 35px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.framework-item:hover .icon {
  transform: scale(1.3) rotate(8deg);
}

.framework-item h4 {
  color: #fff;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.framework-item h5 {
  font-size: 14px;
  color: #fff;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.framework-item p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* --- Responsive Fixes --- */
@media (max-width: 992px) {
  .analytics-row {
    flex-direction: column;
    padding: 30px;
  }

  .framework-grid {
    grid-template-columns: 1fr;
  }

  .framework-item {
    border-right: none;
    border-bottom: 1px solid #fff9bc;
  }

  .framework-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .main-header h2 {
    font-size: 24px;
  }
  .analytics-image {
    order: -1;
    width: 100%;
    height: 250px;
  }
  .analytics-image img {
    height: 100%;
    object-fit: cover;
  }
  .framework-header {
    font-size: 18px;
  }
}

:root {
  --purple: #635bff;
  --neon-green: #cfff00;
  --black: #000000;
}

.swiper {
  width: 100%;
  height: 100vh;
}
.swiper-wrapper {
  margin-top: 280px;
}
.banner-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  height: 100vh;
  padding: 0 5%;
  background-color: #fff;
  overflow: hidden;
}

/* Background Variations for Slides */
.bg-neon {
  background-color: var(--neon-green) !important;
}
.text-black {
  color: var(--black);
}

/* Typography */
.main-title {
  font-family: "Arial Black", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.9;
  color: var(--black);
  text-align: center;
  margin-bottom: 1.5rem;
}

.text-purple {
  color: var(--purple);
}

.btn-get-started {
  background: var(--black);
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s;
}

.btn-get-started:hover {
  transform: scale(1.05);
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(-15deg);
  }
  50% {
    transform: translateY(-20px) rotate(-13deg);
  }
  100% {
    transform: translateY(0px) rotate(-15deg);
  }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}
.float-anim-delay {
  animation: float 5s ease-in-out infinite reverse;
}
/* .homeBanner {
  padding: 250px 0 0;
} */
.homeBanner img {
  width: 100%;
}

@media (max-width: 767px) {
  .homeBanner {
    padding: 170px 0 0;
  }
}
.close-menu-btn {
  text-align: right;
  padding: 10px 20px;
  position: absolute;
  top: 48px;
  right: 0;
}
.close-menu-btn button {
  background: transparent;
  font-size: 24px;
  font-weight: 800;
}
.integration-wrapper img {
  border-radius: 40px;
}
.our-global-image {
  border-radius: 40px;
}

.anotherField span {
  font-weight: normal;
  color: #fff;
}
.commmonTitle {
  text-align: center;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.anotherField {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 16px;
}
.anotehrCard {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #e2e8f0;
}
.aifCards {
  grid-template-columns: repeat(2, 1fr) !important;
}
.fixedIncomeCard {
  grid-template-columns: repeat(4, 1fr) !important;
}
.fixedIncomeCard .benefit-card h2 {
  min-height: 53px;
}
.wealthWrapper .section-title.for-integration {
  max-width: 100%;
}
.chartWrapper {
  background: #272727;
  margin: 130px 0 0;
  padding: 50px 0;
}
.chart-containerSecond {
  /* width: 800px; */
  height: 500px;

  padding: 20px;
  border-radius: 10px;
  position: relative;
}
.asset-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0em;
  color: #fff;
  display: flex;
}
.asset-text:before,
.asset-text::after {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(
    248deg,
    rgb(255, 255, 255) 0,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.3) 51.04%,
    rgba(255, 255, 255, 0) 80%
  );
}
/* --- CUSTOM TOOLTIP STYLING (Popup jaisa) --- */
#custom-tooltip {
  position: absolute;
  background-color: #ff8c5a;
  color: #1a2335;
  padding: 15px 25px;
  border-radius: 15px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
#custom-tooltip h3 {
  font-size: 18px;
  margin: 0 0 5px 0;
  font-weight: bold;
  display: flex;
  align-items: center;
}
#custom-tooltip .comparison-text {
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
  display: block;
}
#custom-tooltip a {
  color: #1a2335;
  font-weight: bold;
  text-decoration: underline;
  font-size: 14px;
  display: inline-block;
}
.tooltip-icon {
  margin-right: 10px;
  content: "📄";
  font-size: 20px;
}

.chart-container {
  background: #1c1c1c;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  margin: auto;
}

.chart-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.disclaimer {
  font-size: 12px;
  font-style: italic;
}

.chart-subtitle {
  color: #aaaaaa;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.bars {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 200px;
  gap: 10px;
  margin: 50px 0 10px;
}

.bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  border-radius: 8px 8px 0 0;
  transition:
    transform 0.3s ease,
    height 0.5s ease;
  min-width: 60px;
}

.bar:hover {
  transform: scale(1.05);
}

.bar span {
  position: absolute;
  top: -25px;
  font-weight: bold;
}

.bar p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #000;
  text-align: center;
}
.bar1 p,
.bar2 p {
  color: #fff;
}
/* Gradients for each bar */
.bar1 {
  background: linear-gradient(180deg, #4a4a4a, #333);
}
.bar2 {
  background: linear-gradient(180deg, #4a4a4a, #333);
}
.bar3 {
  background: linear-gradient(to top, #e0ba66, #fff9bc);
}
.bar4 {
  background: linear-gradient(to top, #e0ba66, #fff9bc);
}

@media (max-width: 600px) {
  .bars {
    gap: 6px;
  }

  .bar p {
    font-size: 0.75rem;
  }

  .chart-title {
    font-size: 1.1rem;
  }
}

.fixedIncomeWrapper {
  background: linear-gradient(185deg, #373737, #2711821a);
  padding: 50px 0;
}

.fixedIncomeWrapper .intro {
  max-width: 100%;
}

:root {
  --bg: #0f1724;
  --card: #071126;
  --muted: #9aa7b3;
  --accent: #1ea7ff;
  --border: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.02);
  --radius: 12px;
  --transition: 300ms cubic-bezier(0.22, 0.9, 0.36, 1);
  --max-width: 920px;
  --text: #e6eef6;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* accordion */
.accordion {
  display: block;
  gap: 12px;
  width: 100%;
}

.acc-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(2, 6, 23, 0.6);
}

.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  color: var(--text);
  transition: background var(--transition);
}

.acc-header:hover {
  background: rgba(255, 255, 255, 0.01);
}

.acc-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  flex: 1;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.acc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

/* chevron */
.chev {
  width: 14px;

  display: inline-block;
  transform-origin: 50% 50%;
  transition: transform var(--transition);
  opacity: 0.95;
}

/* content */
.acc-content {
  padding: 0 18px 18px 18px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height var(--transition),
    opacity var(--transition),
    padding var(--transition);
}

.acc-content p {
  margin: 12px 0 0 0;
  font-size: 16px;
  font-weight: 600;
}
.acc-content ul {
  margin: 8px 0 0 16px;
  padding-left: 18px;
}

/* open state */
.acc-item.is-open .chev {
  transform: rotate(90deg);
}
.acc-item.is-open .acc-content {
  opacity: 1;
  /* max-height is set dynamically via JS to scrollHeight */
}

/* responsive */
@media (max-width: 640px) {
  .acc-header {
    padding: 12px 14px;
  }
  .acc-content {
    padding: 0 14px 14px 14px;
    font-size: 14px;
  }
  h1 {
    font-size: 18px;
  }
}

/* Focus for accessibility */
.acc-header:focus {
  outline: 3px solid rgba(30, 167, 255, 0.16);
  box-shadow: 0 0 0 4px rgba(30, 167, 255, 0.06);
}

/* small helper */
.muted {
  color: var(--muted);
  font-size: 13px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

  margin: 0 auto;
}
.card-grid .button-default {
  height: 40px;
  padding: 0px 20px;
  font-size: 15px;

  line-height: 30px;
}
.pms-card {
  background: linear-gradient(185deg, #373737, #1a1a1a);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #c3c3c3;
  border: 1px solid #fff9bc;
}

.pms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tag {
  display: inline-block;
  background: #5b4516;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  color: #fff;
}

.provider-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1cap;
  color: #fff;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  margin-top: 12px;
}
.detailsNew h4 {
  text-align: center;
  color: #fff;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  /* border-bottom: 1px dashed #e2e8f0; */
  padding-bottom: 6px;
  color: #fff;
}
.detail-row strong {
  flex-basis: 33%;
}
.value {
  font-weight: 600;
  color: #fff;
}
.detail-row strong:nth-child(2) {
  text-align: center;
}
.detail-row strong:nth-child(3) {
  text-align: right;
}

.btn {
  width: 100%;
  background-color: #2563eb;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

@media (max-width: 480px) {
  /* --- CUSTOM TOOLTIP STYLING (Popup jaisa) --- */
  #custom-tooltip {
    padding: 12px;
  }
  #custom-tooltip h3 {
    font-size: 12px;
    margin: 0;
  }
  #custom-tooltip .comparison-text {
    font-size: 12px;
  }
  #custom-tooltip a {
    font-size: 12px;
  }
  .tooltip-icon {
    margin-right: 5px;
    content: "📄";
    font-size: 20px;
  }
  .chart-containerSecond canvas {
    min-width: 320px;
  }

  h2 {
    font-size: 22px;
  }
  .pms-card {
    padding: 20px;
  }
}

.utility-image {
  width: 40%;
  margin: 10px auto 40px;
}
.contactBanner {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;

  padding-bottom: 85px;
  display: flex;
}

.funds-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  width: 100%;
}
.fixedFunds .fund-card {
  height: 330px;
}

.fund-card {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #5e5338, #0f0f0f);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.fund-card:hover {
  transform: scale(1.05);
}

.fund-front,
.fund-back {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.6s ease;
  flex-wrap: wrap;
}
.fund-front img {
  width: 200px;
  height: 200px;
}
.fund-front {
  background: rgba(0, 0, 0, 0.25);
}

.fund-front h2 {
  font-size: 1.3rem;
  color: #fff;
  transition: opacity 0.5s ease;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  width: 100%;
  transition: opacity 0.5s ease;
}

.fund-front h3 {
  font-size: 18px;
}

.fund-back {
  background: #fff;
  color: #000;
  opacity: 0;
  transform: translateY(100%);
  border-radius: 15px;
}

.fund-card:hover .fund-front {
  opacity: 0;
  transform: translateY(-100%);
}

.fund-card:hover .fund-back {
  opacity: 1;
  transform: translateY(0);
}

.fund-back p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Container for the whole section */
/* Main Container */
.benefits-container {
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Title & Intro */
.benefits-container h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  font-size: 2.2em;
  font-weight: 700;
}

.intro {
  text-align: center;
  color: #c3c3c3;
  font-size: 1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 100px auto;
}

/* Grid for Cards (2 columns on desktop) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(350px, 1fr)
  ); /* Responsive 2-column layout */
  gap: 80px 30px;
}

/* Individual Card Style */
.benefit-card {
  position: relative;
  background: linear-gradient(185deg, #373737, #1a1a1a);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px 20px 20px; /* Space for the icon overlap */
  text-align: center;
  border: 1px solid #fff9bc;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Icon Container (Overlapping Top-Center) */
.icon-container {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(to right, #e0ba66, #fff9bc);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid #e0ba66;
}
.icon-image img {
  border-radius: 50%;
}

/* Inner Icon (The actual image/emoji area) */

/* Specific Icon Colors (Matching the visual cues) */
/* Professional Managed (Blue/Purple) */

.benefit-card h2 {
  color: #fff;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Diversification (Green/Orange) */

/* Card Content */
.benefit-card h2 {
  margin-top: 50px; /* Space below icon */
  font-size: 1.2em;
  font-weight: 700;
}

.benefit-card p {
  color: #b6b6b7;
  line-height: 1.5;
  font-size: 0.9em;
  margin: 10px 0 0 0;
  text-align: justify;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .benefits-container {
    padding: 15px;
  }
  .cards-grid {
    display: flex;
    flex-direction: column;
    gap: 60px 0; /* More vertical space to account for overlap */
  }
  .benefit-card {
    padding: 30px 15px 15px;
  }
}
/* Carousel Container */
.carousel {
  max-width: 100%;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}
.slide {
  flex: 0 0 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 20px 40px;
  max-width: 55%;
}
.slide h2 {
  font-size: clamp(22px, 4vw, 40px);
  margin-bottom: 10px;
}
.slide p {
  font-size: clamp(14px, 2vw, 18px);
  opacity: 0.9;
  margin-bottom: 14px;
}
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
}
.btn-whatsapp {
  background: var(--accent);
  color: #fff;
  margin-right: 10px;
}
.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #fff9bc;
  background: linear-gradient(185deg, #373737, #1a1a1a);
  padding: 6px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  user-select: none;
  font-weight: 800;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 24px;
}
/*.arrow:hover {*/
/*  background: #fff;*/
/*}*/
.arrow.left {
  left: 12px;
}
.arrow.right {
  right: 12px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.dots .active {
  background: #fff9bc;
}

/* Responsive */
@media (max-width: 768px) {
  .connect-section {
    border: unset !important;
  }

  .slide {
    justify-content: center;
    align-items: flex-end;
  }
  .slide-content {
    text-align: center;
    max-width: 90%;
    padding: 20px;
  }
}

.headerBTns {
  display: flex;
  gap: 20px;
}
.sliderBtn {
  margin: 30px 0 0;
}
.sliderBtn a {
  width: fit-content;
}
.floatContact {
  position: fixed;
  top: 70%;
  left: -10px;
  transform: rotate(-90deg) translateY(50%);
  transform-origin: left center;
  background: #000;
  color: #fff !important;
  padding: 12px 15px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  display: flex;
  width: unset !important;
  align-items: center;
  gap: 8px;
  border-radius: 0 0 33px 33px;
  animation: jerkEffect 2s infinite;
  border: 1px solid #fff;
}
.floatContact a {
  color: #fff;
  letter-spacing: 2px;
}
@keyframes jerkEffect {
  0% {
    transform: rotate(-90deg) translateY(50%) translate(0, 0);
  }
  5% {
    transform: rotate(-90deg) translateY(50%) translate(-6px, 0);
  }
  10% {
    transform: rotate(-90deg) translateY(50%) translate(6px, 0);
  }
  15% {
    transform: rotate(-90deg) translateY(50%) translate(-6px, 0);
  }
  20% {
    transform: rotate(-90deg) translateY(50%) translate(6px, 0);
  }
  25% {
    transform: rotate(-90deg) translateY(50%) translate(-4px, 0);
  }
  30% {
    transform: rotate(-90deg) translateY(50%) translate(4px, 0);
  }
  35% {
    transform: rotate(-90deg) translateY(50%) translate(0, 0);
  }
  100% {
    transform: rotate(-90deg) translateY(50%) translate(0, 0);
  }
}

.barsWealth {
  text-align: left;
  width: 100%;
}
.barsWealth h2 {
  width: 100%;
  max-width: 100% !important;
  font-size: 32px;
  margin: 20px 0 0;
}
.barsWealth p {
  width: 100%;
  max-width: 100% !important;
}
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
}

.slide-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.slide-image {
  flex: 1;
  /* background-color: #2c3e50; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.slide-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%); */
}

.image-placeholder {
  font-size: 5rem;
  color: rgba(253, 187, 45, 0.7);
  z-index: 2;
}

.slide-title {
  font-size: 2.5rem;
  margin-bottom: 0px;
  color: #fff;
  text-align: left;
}
.shortTitle {
  font-size: 2rem;
}

.slide-text {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 20px;
  opacity: 0.9;
  text-align: left;
  color: #fff;
  margin-top: 12px;
}

.cta-button {
  background: linear-gradient(to right, #fdbb2d, #b21f1f);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  margin-top: 10px;
  align-self: flex-start;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.carousel-container {
  background: #008080;
  border-radius: 12px;
  padding: 20px 0;
  overflow: hidden;
  margin: 50px 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 15px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.control-btn i {
  font-size: 24px;
  color: white;
}

.indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: #fdbb2d;
  transform: scale(1.2);
}

footer {
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .tagline {
    font-size: 1.2rem;
  }

  .slide {
    flex-direction: column;
  }

  .slide.reverse {
    flex-direction: column-reverse;
  }

  .slide-content {
    padding: 30px 20px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-text {
    font-size: 1rem;
  }

  .slide-image {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  element.style {
    background-image: url(./img/banner.jpg);
  }
  @media (max-width: 768px) {
    .slide {
      flex-direction: column;
    }
  }
  .slide {
    min-width: 100%;
    display: flex;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .slide {
      justify-content: center;
      align-items: flex-end;
    }
  }
  .slide {
    min-height: 220px;
  }
  .gridBox {
    display: block !important
;
  }
  .firstBox::before {
    border-right: 0px solid #fff !important;
  }

  .tagline {
    font-size: 1rem;
  }

  .slide-content {
    padding: 0;
    width: 100%;
    align-items: flex-start;
  }

  .slide-title {
    font-size: 1.3rem;
  }

  .slide-text {
    font-size: 0.9rem;
  }

  .slide-image {
    min-height: 150px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .control-btn {
    width: 40px;
    height: 40px;
  }
}

/* Container adjustment */
.flex-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px; /* Width thodi badha di hai side-by-side ke liye */
  text-align: left; /* Text ko left align kiya */
}

.connect-section {
  background: linear-gradient(185deg, #373737, #1a1a1a);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 50px;
  margin: auto;
  width: 100%;
  border: 1px solid #fff9bc;
  padding: 0;
}

/* Content Side */
.connect-content {
  flex: 4;
  padding: 50px;
}

/* Image Side */
.connect-image {
  flex: 6;
  display: flex;
  justify-content: center;
}

.connect-image img {
  width: 100%;
  /* max-width: 400px; */
  border-radius: 8px;
  object-fit: cover;
}

/* Text adjustments */
.connect-title {
  color: #fff9bc; /* Goldish color matching your border */
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.connect-text {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

/* Responsive: Mobile par upar niche ho jayega */
@media (max-width: 768px) {
  .flex-container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .connect-image {
    order: -1; /* Mobile par image pehle dikhegi (Optional) */
    margin-bottom: 20px;
  }
}
/* Responsive styles */
@media (max-width: 768px) {
  .aboutUs {
    padding: 0px 15px;
  }
  .connect-section {
    padding: 30px;
  }
  .connect-content {
    padding: 0 0 20px;
  }

  .connect-title {
    font-size: 2rem;
  }

  .connect-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-block {
    width: 300px !important;
  }

  .connect-section {
    padding: 20px;
    margin-top: 50px !important;
    margin: 50px 0;
  }

  .connect-title {
    font-size: 1.8rem;
  }

  .connect-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

.footer {
  background: linear-gradient(185deg, #373737, #1a1a1a);
  padding: 40px 20px;
  border-top: 2px solid #fff9bc;
}
.gridBox {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #fff9bc;
}
.gridBox .logoMiddle {
  border: unset;
}
.firstBox {
  position: relative;
}
.firstBox::before {
  content: "";
  position: absolute;
  border-right: 2px solid #fff9bc;
  height: 80%;
  right: 0;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1290px;
  margin: 0 auto;
  gap: 50px;
}

/* Left section */
.footer-left {
  flex: 1;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
.footer h4 {
  font-size: 30px;
  color: #fff;
}

.footer-column p {
  font-size: 16px;
  border-bottom: 1px solid #fff9bc;
  padding: 10px 0;
  margin-bottom: 0;
}
.footer-left p:last-child {
  border: unset;
}
.contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact a {
  color: #fff;
}

.footer-left img {
  width: 120px;
  margin-bottom: 20px;
  height: 100px;
}
.footer-left p {
  font-size: 18px;
  line-height: 28px;
}

/* Right section */
.footer-columns {
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: left;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Contact Info */
.contact {
  margin-top: 20px;
  font-size: 14px;
}

.contact p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-columns {
    flex-direction: column;
    padding-left: 0;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden],
template {
  display: none;
}

a {
  background-color: #0000;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
  color: red;
  font-weight: 600;
}

sub,
sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: webflow-icons;
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

[class^="w-icon-"],
[class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: webflow-icons !important;
}

.w-icon-slider-right:before {
  content: "";
}

.w-icon-slider-left:before {
  content: "";
}

.w-icon-nav-menu:before {
  content: "";
}

.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: "";
}

.w-icon-file-upload-remove:before {
  content: "";
}

.w-icon-file-upload-icon:before {
  content: "";
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: #0000 !important;
}

.w-code-block {
  margin: unset;
}

pre.w-code-block code {
  all: inherit;
}

.w-optimization {
  display: contents;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before,
.w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}

.w-video iframe,
.w-video object,
.w-video embed {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button,
[type="button"],
[type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.w-input,
.w-select {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.w-input::placeholder,
.w-select::placeholder {
  color: #999;
}

.w-input:focus,
.w-select:focus {
  border: 1px solid #fff9bc;
  outline: 0;
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}

textarea.w-input,
textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-radio:before,
.w-radio:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}

.w-file-upload {
  margin-bottom: 10px;
  display: block;
}

.w-file-upload-input {
  opacity: 0;
  z-index: -100;
  width: 0.1px;
  height: 0.1px;
  position: absolute;
  overflow: hidden;
}

.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  color: #333;
  display: inline-block;
}

.w-file-upload-error {
  margin-top: 10px;
  display: block;
}

.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: flex;
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before,
.w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before,
.w-row:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333%;
}

.w-col-2 {
  width: 16.6667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.3333%;
}

.w-col-5 {
  width: 41.6667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.3333%;
}

.w-col-8 {
  width: 66.6667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.3333%;
}

.w-col-11 {
  width: 91.6667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333%;
  }

  .w-col-medium-2 {
    width: 16.6667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.3333%;
  }

  .w-col-medium-5 {
    width: 41.6667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.3333%;
  }

  .w-col-medium-8 {
    width: 66.6667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.3333%;
  }

  .w-col-medium-11 {
    width: 91.6667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .close-menu-btn {
    display: block;
  }
  .card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .benefit-card h2 {
    margin-top: 30px;
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
  }
  .fund-card {
    height: 100%;
    padding: 15px;
  }
  .fund-card:hover .fund-front {
    opacity: 1;
    transform: translateY(0%);
  }
  .fund-front img {
    width: 100%;
    height: 120px;
    object-fit: contain;
  }
  .fund-front,
  .fund-back {
    position: relative;
    padding: 0;
  }

  .fund-back {
    background: unset;
    color: #fff;
    opacity: 1;
    transform: translateY(0%);
  }
  .fund-front {
    background: unset;
  }
  .fund-front h2 {
    width: 100%;
    text-align: center;
  }
  .w-hidden-main,
  .w-hidden-medium {
    display: inherit !important;
  }
  .our-list-icon.w-embed img {
    max-width: 24px !important;
    height: 24px !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333%;
  }

  .w-col-small-2 {
    width: 16.6667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.3333%;
  }

  .w-col-small-5 {
    width: 41.6667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.3333%;
  }

  .w-col-small-8 {
    width: 66.6667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.3333%;
  }

  .w-col-small-11 {
    width: 91.6667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main,
  .w-hidden-medium,
  .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333%;
  }

  .w-col-tiny-2 {
    width: 16.6667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.3333%;
  }

  .w-col-tiny-5 {
    width: 41.6667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.3333%;
  }

  .w-col-tiny-8 {
    width: 66.6667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.3333%;
  }

  .w-col-tiny-11 {
    width: 91.6667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: #75869600 #5d6c7b #75869600 #75869600;
  margin-top: -4px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: #fff0 #fff #fff0 #fff0;
  margin-top: -4px;
  margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b #75869600 #75869600;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff #fff0 #fff0;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  background: #ddd;
  height: 300px;
  position: relative;
}

.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  font-size: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px #3336;
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: #2226;
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  cursor: pointer;
  background-color: #fff6;
  width: 1em;
  height: 1em;
  margin: 0 3px 0.5em;
  transition:
    background-color 0.1s,
    color 0.1s;
  display: inline-block;
  position: relative;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left,
.w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"],
.w-slider-arrow-right [class^="w-icon-"],
.w-slider-arrow-left [class*=" w-icon-"],
.w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left,
.w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0;
}

.w-slider-aria-label {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.w-dropdown-list {
  background: #ddd;
  min-width: 100%;
  display: none;
  position: absolute;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #000000e6;
  outline: 0;
  font-family:
    Helvetica Neue,
    Helvetica,
    Ubuntu,
    Segoe UI,
    Verdana,
    sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  inset: 0;
  -webkit-transform: translate(0);
}

.w-lightbox-backdrop,
.w-lightbox-container {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow: auto;
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-view {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame,
.w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}

.w-lightbox-figure {
  margin: 0;
  position: relative;
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

.w-lightbox-img {
  width: auto;
  max-width: none;
  height: auto;
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #0006;
  padding: 0.5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.w-lightbox-control {
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 4em;
  transition: all 0.3s;
  position: absolute;
  top: 0;
}

.w-lightbox-left {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
  display: none;
  bottom: 0;
  left: 0;
}

.w-lightbox-right {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
  display: none;
  bottom: 0;
  right: 0;
}

.w-lightbox-close {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
  height: 2.6em;
  right: 0;
}

.w-lightbox-strip {
  white-space: nowrap;
  padding: 0 1vh;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto hidden;
}

.w-lightbox-item {
  box-sizing: content-box;
  cursor: pointer;
  width: 10vh;
  padding: 2vh 1vh;
  display: inline-block;
  -webkit-transform: translate3d(0, 0, 0);
}

.w-lightbox-active {
  opacity: 0.3;
}

.w-lightbox-thumbnail {
  background: #222;
  height: 10vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  height: 100%;
  left: 50%;
  transform: translate(-50%);
}

.w-lightbox-spinner {
  box-sizing: border-box;
  border: 5px solid #0006;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  animation: 0.8s linear infinite spin;
  position: absolute;
  top: 50%;
  left: 50%;
}

.w-lightbox-spinner:after {
  content: "";
  border: 3px solid #0000;
  border-bottom-color: #fff;
  border-radius: 50%;
  position: absolute;
  inset: -4px;
}

.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .close-menu-btn {
    display: none;
  }
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }

  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left,
  .w-lightbox-right {
    opacity: 0.5;
    display: block;
  }

  .w-lightbox-close {
    opacity: 0.8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before,
.w-richtext:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

.w-richtext ol,
.w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after,
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type="video"] > div:after {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
}

.w-richtext figure {
  max-width: 60%;
  position: relative;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}

.w-richtext figure div {
  color: #0000;
  font-size: 0;
}

.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type="image"] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type="image"] > figcaption {
  caption-side: bottom;
  display: table-caption;
}

.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type="video"] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  text-align: center;
  clear: both;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  padding-bottom: inherit;
  display: inline-block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  clear: none;
  margin-right: 15px;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  clear: none;
  margin-left: 15px;
}

.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before,
.w-nav:after {
  content: " ";
  /* Bars Carousel */
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
  background: #c8c8c8;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay,
.w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay,
.w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button,
.w--nav-dropdown-open,
.w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before,
.w-tabs:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.w-tab-pane {
  display: none;
  position: relative;
}

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

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: "";
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

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

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide,
.w-dyn-bind-empty,
.w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

.w-code-component > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

:root {
  --font-family--main-font: Questrial, sans-serif;
  --color--main: #c3c3c3;
  --font-family--secondary-font: Mulish, sans-serif;
  --white: white;
  --color--neutral: #030014;
  --background--common-bg: #000;
  --color--primary: #271182;
  --color--secondary: #7a56c8;
  --swatch--main-70: #c3c3c3b3;
  --color--neutral-two: #272337;
  --section-gap--80: 80px;
  --section-gap--100: 100px;
  --section-gap--60: 60px;
  --section-gap--50: 50px;
  --section-gap--40: 40px;
  --swatch--white-30: #ffffff4d;
  --swatch--white-40: #fff6;
  --swatch--white-50: #ffffff80;
  --section-gap--140: 140px;
  --section-gap--130: 130px;
  --section-gap--120: 120px;
  --color--neutral-four: #2b2742;
  --color--neutral-three: #171428;
  --swatch--white-80: #fffc;
  --swatch--main-60: #c3c3c399;
  --swatch--white-10: #ffffff1a;
  --swatch--white-08: #ffffff14;
  --black: black;
  --swatch--white-20: #fff3;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  font-family: var(--font-family--main-font);
  color: var(--color--main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

h1 {
  font-family: var(--font-family--secondary-font);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.24;
}

h2 {
  font-family: var(--font-family--secondary-font);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.23;
}

h3 {
  font-family: var(--font-family--secondary-font);
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.28;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

.page-wrapper {
  background-color: #0a0a05;
  overflow: hidden;
}

.button-text {
  position: relative;
}

.style-guide-header {
  z-index: 9;
  min-width: 250px;
  height: 100%;
  padding-bottom: 30px;
  display: flex;
  position: sticky;
  top: 30px;
  left: 0;
}

.section-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.color-list {
  grid-column-gap: 15px;
  flex-direction: row;
  display: flex;
}

.single-items-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.button-section,
.color-section {
  padding-top: 50px;
}

.section-heading-block {
  background-color: var(--background--common-bg);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding-top: 20px;
  padding-bottom: 25px;
}

.section-heading-block.margin-bottom-15px {
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.body-text-block {
  padding-top: 30px;
}

.inner-text {
  margin-bottom: 0;
}

.inner-text.inner-text-gap-bottom {
  margin-bottom: 25px;
}

.single-item {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.list-item {
  border-radius: 8px;
  padding: 40px;
  display: inline-block;
}

.list-item.primary-color {
  background-color: var(--color--primary);
  color: #fff;
}

.list-item.secondary-color {
  background-color: var(--color--secondary);
  color: #fff;
}

.list-item.main-color {
  background-color: var(--color--main);
  color: #fff;
}

.inner-paragraph {
  margin-bottom: 0;
}

.inner-paragraph.margin-top-5px {
  margin-top: 5px;
}

.container {
  max-width: 960px;
}

.button-default {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #fff;
  text-align: center;

  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: auto;
  height: 52px;
  padding: 14px 20px;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-default.fullwidth {
  min-width: 100%;
}

.button-default.outline {
  border: 1px solid #fff9bc !important;
  border-radius: 40px !important;
}

.button-default.outline.for-header {
  border-radius: 8px;
  min-width: 120px;
  height: 45px;
  padding: 16px;
  border: 1px solid #fff9bc;
}

.button-default.submit-button {
  border: 1px solid #fff9bc;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 12px;
  font-weight: 600;
}

.side-panel-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  display: flex;
}

.single-items-title-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: column;
  display: flex;
}

.single-items-title-block.margin-bottom-40px {
  margin-bottom: 50px;
}

.social-section {
  padding-top: 50px;
}

.section-title {
  margin-bottom: 20px;
  position: relative;
}

.section-title.for-newsletter {
  max-width: 480px;
}

.section-title.for-service {
  perspective-origin: 0%;
  transform-origin: 0%;
  max-width: 410px;
  margin-bottom: 0;
  position: relative;
}

.section-title.for-team,
.section-title.for-blog {
  max-width: 410px;
  position: relative;
}

.section-title.for-testimonial {
  max-width: 400px;
}

.section-title.for-service-two {
  max-width: 410px;
  margin-bottom: 0;
  position: relative;
}

.section-title.for-integration {
  max-width: 410px;
  margin-bottom: 15px;
  position: relative;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.heading-block.gap-top-45 {
  padding-top: 45px;
}

.style-guide-wrapper {
  z-index: 1;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  display: flex;
}

.side-panel-menu {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: column;
  display: flex;
}

.side-panel-link {
  color: var(--white);
  border-radius: 8px;
  padding-top: 10px;
  padding-bottom: 13px;
  padding-left: 30px;
  text-decoration: none;
  transition: color 0.3s;
}

.side-panel-link.w--current {
  background-color: var(--background--common-bg);
  color: #fff;
}

.inner-title {
  margin-bottom: 15px;
  font-size: 28px;
}

.section-title-wrapper {
  z-index: 2;
  position: relative;
}

.section-title-wrapper.text-center-with-flex-column {
  text-align: center;
  flex-flow: column;
  align-items: center;
  display: flex;
}

.section-title-wrapper.direction-vertical {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}

.section-title-wrapper.flex-justify-space-between {
  grid-column-gap: 30px;
  justify-content: space-between;
  display: flex;
}

.secondary-container {
  max-width: 960px;
}

.section-summary {
  margin-bottom: 0;
}

.section-summary.for-newsletter {
  max-width: 548px;
}

.section-summary.for-about {
  margin-bottom: 35px;
}

.section-summary.for-team {
  max-width: 520px;
}

.section-summary.for-blog {
  max-width: 620px;
}

.section-summary.for-video {
  max-width: 480px;
}

.section-summary.for-integration {
  max-width: 400px;
  margin-bottom: 35px;
}

.section-summary.for-testimonial {
  max-width: 745px;
}

.section-summary.for-wcu {
  max-width: 750px;
  margin-top: 10px;
}

.scroll-to-top {
  z-index: 999;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  color: #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
  position: fixed;
  bottom: 160px;
  right: 30px;
}

.scroll-to-top-icon {
  width: 15px;
  height: 100%;
  transform: rotate(-90deg);
}

.change-log-text-list-item {
  background-image: none;
  padding-left: 0;
}

.change-log-center {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.chane-log-date {
  display: inline-block;
}

.change-log-list-item {
  background-image: none;
  flex-direction: column;
}

.change-log-title {
  background-image: linear-gradient(
    0deg,
    var(--color--primary),
    var(--color--secondary)
  );
  color: #fff;
  border-radius: 8px;
  margin-right: 20px;
  padding: 5px 15px;
  font-size: 18px;
  display: inline-block;
}

.changle-log-text-list {
  margin-top: 10px;
  padding-left: 0;
  list-style-type: none;
}

.change-log-list {
  background-color: var(--background--common-bg);
  text-align: center;
  border-radius: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  max-width: 570px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 30px;
  display: flex;
}

.change-log-version {
  margin-bottom: 20px;
  font-size: 24px;
  display: inline-block;
}

.change-log-text {
  font-size: 24px;
}

.header.transparent {
  position: absolute;
  inset: 0% 0% auto;
}

.navbar-container {
  z-index: 5;
  background: linear-gradient(185deg, #373737, #1a1a1a);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 15px 25px;

  box-shadow: 2px 2px 10px 2px #e0ba66;
}

.nav-dropdown-icon {
  margin: 0;
  display: flex;
  position: static;
}

.nav-list-item.position-relative {
  position: relative;
}

.nav-dropdown-toggle {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--white);
  letter-spacing: 0.25px;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
}

.nav-dropdown-toggle.w--current {
  color: #2490eb;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-link {
  color: var(--white);
  border-radius: 20px;
  padding: 0;
  text-decoration: none;
  display: inline-block;
}

.nav-link.w--current {
  border-bottom: 1px solid #fff9bc;
  border-radius: inherit;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.header-block {
  z-index: 999;
}

.nav-dropdown-link-line {
  background-color: var(--white);
  border-radius: 8px;
  width: 20px;
  height: 3px;
}

.nav-menu-list-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-dropdown-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--background--common-bg);
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.dropdown-link {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: inline-flex;
}

.nav-dropdown-list {
  z-index: 5;
  background-color: #0000;
  min-width: 230px;
  padding-top: 20px;
}

.mobile-brand {
  display: none;
}

.social-link-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.social-link-block.for-footer-highlight {
  position: relative;
}

.social-link-block.vertical-direction {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
}

.social-link-text {
  display: none;
}

.social-link-icon {
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  transition:
    border-color 0.3s,
    background-color 0.3s,
    color 0.3s;
  display: flex;
}

.social-link-icon:hover {
  background-color: var(--white);
  color: var(--color--secondary);
}

.social-link-icon.with-bg {
  background-image: linear-gradient(
    0deg,
    var(--color--primary),
    var(--color--secondary)
  );
  border-style: none;
}

.social-link-icon.with-bg:hover {
  color: var(--white);
}

.social-link-icon.with-bg.different-width {
  width: 40px;
  height: 40px;
}

.footer {
  position: relative;
}
.footer .store-fab {
  position: unset;
}
.footer .store-fab {
  flex-direction: unset;
  gap: 20px;
  margin-top: 20px;
}
.footer .store-badge {
  width: 50px;
  height: unset;
  margin-bottom: 0;
}
.footer-widget-list-item-link {
  color: var(--swatch--main-70);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-widget-list-item-link:hover {
  color: var(--white);
}

.footer-widget-list {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.footer-widget-list-item {
  font-family: var(--font-family--secondary-font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

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

.footer-middle-item {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.25fr 1fr 1.25fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.footer-bottom-wrapper {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
  position: relative;
}

.footer-widget-title {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 1.375;
}

.footer-widget.for-contact {
  max-width: 261px;
}

.footer-widget.for-quicklink {
  max-width: 233px;
}

.footer-widget.for-cms {
  max-width: 151px;
}

.footer-widget.for-utitlity {
  max-width: 190px;
}

.copyright-span {
  color: var(--white);
  text-decoration: none;
}

.copyright-span:hover {
  text-decoration: underline;
}

.newsletter-input-field-block {
  position: relative;
}

.newsletter-input-field {
  background-color: var(--color--neutral-two);
  color: var(--color--main);
  border: 1px #000;
  border-radius: 49px;
  height: 68px;
  margin-bottom: 0;
  padding-left: 19px;
  padding-right: 152px;
  font-size: 18px;
}

.newsletter-submit-button {
  background-image: linear-gradient(
    0deg,
    var(--color--primary),
    var(--color--secondary)
  );
  border-radius: 40px;
  min-width: 122px;
  height: calc(100% - 20px);
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 10px;
  padding: 18px 20px;
  font-size: 18px;
  line-height: 0.9;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.section-gap-top-100 {
  padding-top: var(--section-gap--80);
}

.button-icon {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-widget-list-item-span {
  color: var(--swatch--main-70);
}

.group-div {
  justify-content: space-between;
  display: flex;
  position: relative;
}

.newsletter-title {
  margin-bottom: 25px;
  font-size: 24px;
}

.section-title-span {
  /* background-image: url("../img/gradient-border.svg"), linear-gradient(90deg, #7a55c766, #2711821a); */
  /* background-image: linear-gradient(90deg, #ffc119, #2711821a);
    background-position: 0 0, 0 0;
    background-repeat: no-repeat, repeat;
    background-size: auto 100%, auto;
    padding-left: 7px;
    padding-right: 7px;
    font-weight: 700;
    display: inline-block;
    border-left: 4px solid #fff; */
}

.button-gradient {
  background: linear-gradient(185deg, #373737, #1a1a1a);
  width: 100%;
  position: absolute;
  inset: 0%;
  border: 1px solid #fff9bc;
  border-radius: 40px;
}

.button-gradient.for-outline {
  opacity: 0;
}

.section-title-block {
  position: relative;
}

.section-title-block.gap-y-axis-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.separator-div {
  background-color: var(--swatch--white-30);
  width: 100%;
  height: 1px;
}

.separator-div.for-footer-top {
  margin-top: 50px;
  margin-bottom: 50px;
}

.separator-div.for-footer-middle {
  margin-top: 50px;
  margin-bottom: 30px;
}

.separator-div.white-40 {
  background-color: var(--swatch--white-40);
}

.separator-div.for-service {
  margin-top: 30px;
  margin-bottom: 40px;
}

.separator-div.for-reach-out {
  margin-bottom: 25px;
}

.separator-div.for-service-two {
  z-index: 1;
  background-color: var(--swatch--white-40);
  border-bottom-left-radius: 16px;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-top-wrapper {
  z-index: 1;
  position: relative;
}
.logoMiddle {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.logoMiddle img {
  width: 50px;
}

.hero-wrapper {
  padding-top: 130px;
}
.footer-left img .button-wrapper {
  z-index: 3;
  display: flex;
  position: relative;
}

.button-wrapper.justify-center {
  justify-content: center;
  align-items: flex-start;
}

.button-wrapper.justify-center.for-hero {
  z-index: 1;
  position: relative;
}

.button-wrapper.fullwidth {
  width: 100%;
}

.button-wrapper.align-center {
  align-self: center;
}

.hero-title {
  width: 850px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}

.hero-summary {
  z-index: 1;
  max-width: 490px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero-group-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  display: flex;
}

.hero-group-wrapper.negative-space {
  margin-top: -195px;
}

.hero-primary-image {
  clip-path: path(
    "M0 16C0 7.16345 7.16345 0 16 0H240.059C246.424 0 252.529 2.52856 257.029 7.02944L276 26L292.971 42.9706C297.471 47.4714 300 53.5759 300 59.9411V310C300 318.837 292.837 326 284 326H60.5002C54.3971 326 48.5233 323.675 44.0737 319.498L26.5 303L6.56896 281.941C2.35071 277.484 0 271.58 0 265.444V16Z"
  );
}

.hero-primary-group-block {
  flex: 1;
  position: relative;
}

.hero-primary-title {
  max-width: 450px;
  margin-top: 35px;
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 600;
}

.hero-secondary-highlight {
  height: 126px;
  display: flex;
}

.funfact-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 170px 170px;
  grid-auto-columns: 1fr;
  display: flex;
}

.funfact-block {
  grid-column-gap: 45px;
  grid-row-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 3px 1fr 3px 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  display: flex;
}

.funfact-separator-block {
  background-color: var(--swatch--white-50);
  width: 1px;
  height: 51px;
}

.funfact-separator-block.for-primary-hero-two {
  background-color: var(--color--neutral);
  align-self: center;
  height: 70px;
  margin-left: 18px;
  margin-right: 18px;
}

.counter-number-block {
  flex-direction: column;
  display: flex;
}

.counter-number-block.upper-movement {
  justify-content: flex-end;
  align-items: center;
}

.counter-block {
  font-family: var(--font-family--secondary-font);
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  display: flex;
}

.funfact-single-block {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.counter-number {
  align-self: center;
}

.counter-number-wrapper {
  height: 36px;
  display: flex;
  overflow: hidden;
}

.counter-number-wrapper.for-primary-hero-two {
  color: var(--color--neutral);
  height: 71px;
  font-size: 56px;
}

.counter-prefix.for-primary-hero-two {
  color: var(--color--neutral);
  align-self: center;
  font-size: 30px;
  font-weight: 400;
}

.counter-title {
  color: #fff;
  font-size: 16px;
  line-height: 1.625;
}

.counter-title.for-primary-hero-two {
  font-family: var(--font-family--secondary-font);
  color: var(--color--neutral);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-additional-group-block {
  flex: none;
  position: relative;
}

.hero-highlight-block {
  flex: none;
  justify-content: center;
  align-items: flex-start;
  width: 150px;
  display: flex;
  position: relative;
}

.service-section {
  position: relative;
}

.section-inner-title {
  z-index: -1;
  opacity: 0.4;
  font-family: var(--font-family--secondary-font);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #27118266, #7a56c866);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.343;
  position: absolute;
  inset: -30px 0% auto;
}

.service-collection-list-wrapper {
  z-index: 1;
  position: relative;
}

.service-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-collection-list.for-sidebar {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr;
}

.service-collection-list.single-column {
  grid-row-gap: 0px;
  grid-template-columns: 1fr;
}

.service-collection-items {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.service-collection-items.for-sidebar {
  background-color: #0000;
  border-radius: 0;
}

.service-block {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 26px 24px;
  display: flex;
}

.service-block.style-two {
  text-align: left;
  justify-content: flex-start;
  align-items: stretch;
  padding: 50px;
  position: relative;
}

.service-block.style-one {
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  position: relative;
}

.gap-top {
  margin-top: 50px;
}

.service-icon-link-block {
  -webkit-backdrop-filter: blur(18.67px);
  backdrop-filter: blur(18.67px);
  border-radius: 12px;
  min-width: 90px;
  padding: 15px;
  display: flex;
  box-shadow:
    inset 1.33px -1.33px 7.33px #030011,
    inset -1.33px 1.33px 7.33px #aeaeae4f;
}

.service-title {
  margin-bottom: 0;
}

.service-title-link-block {
  margin-top: 25px;
  margin-bottom: 20px;
  text-decoration: none;
}

.service-summary {
  margin-bottom: 0;
}

.section-gap-top {
  padding-top: var(--section-gap--100);
}

.about-main-wrapper {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 140px;
  display: grid;
  position: relative;
}

.about-primary-wrapper {
  background-image: linear-gradient(0deg, #fff0 15.26%, #ffffff0d);
  border: 1px solid #fff3;
  position: relative;
}

.about-primary-block {
  text-align: center;
  margin-top: -140px;
  padding-left: 60px;
  padding-right: 60px;
}

.about-primary-title {
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
}

.about-primary-summary {
  margin-bottom: 55px;
  font-size: 16px;
}

.about-secondary-wrapper {
  margin-top: -140px;
}

.about-tabs {
  z-index: 1;
}

.about-tabs-menu {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  border-bottom: 1px solid var(--color--main);
  display: inline-flex;
}

.about-tab-link {
  font-family: var(--font-family--secondary-font);
  color: var(--color--main);
  background-color: #0000;
  padding: 0 0 25px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.29;
}

.about-tab-link.w--current {
  border-bottom: 1px solid var(--white);
  color: var(--white);
  background-color: #0000;
  margin-bottom: -1px;
}

.about-tab-content {
  margin-top: 35px;
}

.about-tab-pane-content {
  margin-bottom: 0;
}

.about-list {
  z-index: 1;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  margin-top: 30px;
  margin-bottom: 50px;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  position: relative;
}

.about-list-item {
  font-family: var(--font-family--secondary-font);
  color: var(--white);
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/6692314ac8ac902254214841_list-icon.svg");
  background-position: 0 3px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.29;
}

.project-section {
  position: relative;
}

.project-collection-list-wrapper {
  z-index: 2;
  position: relative;
}

.project-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-block {
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  position: relative;
}

.project-content {
  padding: 30px;
  position: relative;
}

.project-title {
  margin-bottom: 0;
  transition: color 0.3s;
}

.project-title:hover {
  color: var(--color--main);
}

.project-title-link-block {
  margin-bottom: 15px;
  text-decoration: none;
}

.project-summary {
  margin-bottom: 25px;
}

.project-image-link-block {
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: block;
  position: relative;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
}

.team-section {
  position: relative;
}

.team-collection-list-wrapper {
  z-index: 1;
  position: relative;
}

.team-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-block {
  position: relative;
}

.team-image {
  z-index: 1;
  border-bottom-right-radius: 16px;
  width: 100%;
  min-height: 295px;
  position: relative;
}

.team-image-link-block {
  margin-bottom: -1px;
  padding-top: 45px;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.team-content {
  padding: 25px 30px;
  position: relative;
}

.team-name {
  font-size: 26px;
  transition: color 0.3s;
}

.team-name:hover {
  color: var(--color--main);
}

.team-name-link-block {
  text-decoration: none;
  position: relative;
}

.team-designation,
.blog-section {
  position: relative;
}

.blog-item {
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  position: relative;
}

.blog-image {
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

.blog-image-link-block {
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-content {
  padding: 30px 30px 40px;
}

.blog-meta {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.blog-category-text-link {
  background-color: var(--white);
  font-family: var(--font-family--secondary-font);
  color: var(--color--neutral);
  letter-spacing: 0.32px;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-decoration: none;
  display: inline-flex;
  position: relative;
}

.blog-title {
  margin-bottom: 0;
  transition: color 0.3s;
}

.blog-title:hover {
  color: var(--color--main);
}

.blog-title-link-item {
  margin-top: 20px;
  margin-bottom: 25px;
  text-decoration: none;
}

.blog-collection-list-wrapper {
  z-index: 1;
  position: relative;
}

.blog-collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-gap-y-axis {
  padding-top: var(--section-gap--100);
  padding-bottom: var(--section-gap--100);
}

/* .breadcrumb-section {
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/6693f1e6b5e5a5e13dffb6b1_breadcrumb-bg.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
} */

.breadcrumb-wrapper {
  padding-top: 240px;
  padding-bottom: 85px;
}

.breadcrumb-inner-title {
  opacity: 0.4;
  font-family: var(--font-family--secondary-font);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #27118266, #7a56c866);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.343;
  position: absolute;
  inset: -30px 0% auto;
}

.breadcrumb-title-block {
  flex-flow: column;
  max-width: 750px;
  margin-bottom: 50px;
  display: flex;
  position: relative;
}

.breadcrumb-title-block.different-maxwidth {
  max-width: 850px;
}

.breadcrumb-title-block.for-breadcrumb-inner-title {
  width: 100%;
}

.breadcrumb-title {
  z-index: 1;
  margin-bottom: 0;
  position: relative;
}

.breadcrumb-title-span {
  border-left: 2px solid #fff9bc;
  background: linear-gradient(90deg, #e0ba6659, #fff9bc36);
  background-position:
    0 0,
    0 0;
  background-repeat: no-repeat, repeat;
  background-size:
    auto 100%,
    auto;
  padding-left: 7px;
  padding-right: 7px;
  font-weight: 500;
  display: inline-block;
}

.hero-title-two {
  max-width: 565px;
  margin-bottom: 0;
}

.section-title-wrapper-two {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1.6fr 0.75fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.hero-title-span-image {
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66947f60d457d18025d14b21_hero-title-span-image.png");
  background-position: 150px;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 185px;
  display: inline-flex;
}

.hero-summary-two {
  margin-bottom: 45px;
}

.hero-primary-group-block-two {
  position: relative;
}

.hero-primary-image-two {
  width: 100%;
}

.about-page-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 975px;
  display: grid;
}

.about-page-image-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-content {
  position: relative;
}

.our-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  margin-top: 25px;
  display: flex;
}

.our-list-item {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.our-list-item.gap-x-axis {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.our-list-icon.w-embed img {
  max-width: 32px;
  height: 32px;
  margin-top: 5px;
}
.our-list-icon.gap-top-0 {
  margin-top: 0;
}

.our-list-title {
  margin-bottom: 6px;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.our-list-summary {
  margin-bottom: 0;
}

.section-title-span-two {
  color: var(--color--secondary);
}

.section-title-two {
  margin-bottom: 15px;
  position: relative;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.section-title-two.for-video {
  max-width: 619px;
  margin-bottom: 0;
}

.our-mission-section {
  position: relative;
}

.about-common-wrapper {
  z-index: 1;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
  position: relative;
}

.our-mission-content {
  position: relative;
}

.our-list-icon-block {
  background-color: #171426;
  border-radius: 8px;
  align-self: flex-start;
  padding: 10px;
}

.our-video-section {
  position: relative;
}

.our-video-wrapper {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.video-lightbox-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-image: linear-gradient(
    0deg,
    var(--color--primary),
    var(--color--secondary)
  );
  align-items: center;
  padding: 23px 24px;
  text-decoration: none;
  display: inline-flex;
}

.paly-icon {
  background-color: var(--white);
  color: var(--color--secondary);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
}

.video-lightbox-title-wrapper {
  color: var(--white);
  overflow: hidden;
}

.video-lightbox-title-block {
  height: 30px;
}

.video-lightbox-wrapper {
  z-index: 1;
  opacity: 0;
  position: absolute;
  bottom: 70px;
}

.our-video-image-block {
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66b33fccee3288c665c4f9dc_video-banner.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 660px;
  margin-left: -2px;
  margin-right: -2px;
  position: relative;
}

.partner-wrapper {
  grid-column-gap: 74px;
  grid-row-gap: 74px;
  border-top: 1px solid var(--swatch--white-30);
  border-bottom: 1px solid var(--swatch--white-30);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 100%;
  display: flex;
  overflow: hidden;
}

.partner-wrapper-inner {
  grid-column-gap: 74px;
  grid-row-gap: 74px;
  flex: none;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.partner-block {
  grid-column-gap: 74px;
  grid-row-gap: 74px;
  grid-template:
    "."
    "."
    / 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.partner-logo {
  flex: none;
}

.section-gap-bottom {
  padding-bottom: var(--section-gap--100);
}

.partner-separator {
  background-color: var(--swatch--white-40);
  width: 1px;
  height: 100%;
}

.faq-answer {
  margin-bottom: 0;
  padding-top: 25px;
  padding-left: 24px;
  padding-right: 24px;
}

.faq-block {
  width: 100%;
  overflow: hidden;
}

.faq-body {
  background-color: #0000;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.faq-body.w--open {
  background-color: #0000;
}

.service-primary-detail-content img {
  border-radius: 24px;
}

.service-primary-detail-content figure {
  margin-bottom: 45px;
}

.faq-icon {
  align-self: center;
  width: 22px;
  height: 13px;
  display: flex;
}

.service-reach-out-widget-icon {
  margin-bottom: 25px;
  display: flex;
}

.single-field-block {
  width: 100%;
}

.single-field-block.input-gap-left {
  margin-left: 32px;
}

.service-sidebar-widget {
  border: 1px solid var(--color--neutral-four);
  background-color: var(--color--neutral-three);
  border-radius: 24px;
  padding: 32px 20px;
}

.service-sidebar-widget.for-reach-out {
  text-align: center;
  background-color: #171428;
  border-style: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.section-title-block-2.with-highlight {
  z-index: 1;
  position: relative;
}

.service-workflow-title {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
}

.service-sidebar-form {
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
  position: relative;
}

.service-sidebar-widget-title {
  letter-spacing: -0.26px;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 600;
}

.service-reach-out-widget-span {
  font-family: var(--font-family--secondary-font);
  color: #fff;
  letter-spacing: 0.32px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.3s;
}

.service-reach-out-widget-span:hover {
  color: #6c65ff;
}

.service-reach-out-widget-span.for-email {
  margin-bottom: 35px;
  font-size: 20px;
}

.faq-heading {
  white-space: normal;
  font-size: 20px;
  font-weight: 500;
}

.service-detail-main-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 8fr 4fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.faq-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.service-sidebar {
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.service-workflow-banner {
  border-radius: 24px;
}

.service-sidebar-form-block {
  position: relative;
}

.faq-heading-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--color--neutral-three);
  color: var(--white);
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  display: flex;
}

.faq-heading-block.w--open {
  border-bottom-style: none;
  border-bottom-width: 0;
}

.service-workflow-title-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.service-workflow-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 35px;
  margin-bottom: 40px;
  display: grid;
}

.service-list-link-block {
  border: 1px solid var(--color--neutral-four);
  background-color: var(--color--neutral-four);
  color: var(--white);
  border-radius: 16px;
  padding: 16px 24px;
  text-decoration: none;
  display: block;
}

.service-list-link-block.w--current {
  border-color: var(--color--secondary);
  background-color: var(--color--secondary);
  color: #fff;
}

.team-skill-icon-block {
  background-color: #2b2742;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  box-shadow: 2px 6px 20px #00000014;
}

.team-skill-title {
  margin-bottom: 0;
  font-size: 16px;
}

.secondary-team-detail-wrapper {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-experience-secondary-content h3 {
  font-size: 20px;
  font-weight: 500;
}

.team-skill-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 20px;
  display: grid;
}

.team-detail-image-block {
  background-color: #171426;
  border-radius: 20px;
  padding-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.team-experience-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 20px;
  display: grid;
}

.team-detail-inner-content {
  max-width: 470px;
}

.team-experience-logo {
  width: 30px;
  height: 30px;
}

.team-info-detail a {
  color: var(--color--main);
  text-decoration: none;
}

.team-info-detail ul {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.team-info-detail strong {
  font-family: var(--font-family--secondary-font);
  color: var(--white);
  min-width: 180px;
  display: inline-block;
}

.team-detail-span {
  font-size: 20px;
}

.team-detail-summary {
  color: var(--white);
  max-width: 850px;
  font-size: 20px;
}

.team-experience-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.team-skill-block {
  grid-row-gap: 15px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.team-experience-logo-block {
  background-color: #2b2742;
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  display: flex;
  box-shadow: 2px 2px 20px #00000014;
}

.primary-team-detail-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 0.85fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-skill-icon {
  filter: invert();
}

.team-detail-content {
  background-color: #1a152c;
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66b43cc3a18fa4a60b01b96f_team-detail-content-bg.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 40px 50px;
}

.team-detail-image {
  width: 100%;
}

.contact-common-wrapper {
  z-index: 1;
  min-width: 0;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 30px #0000000d;
}

.contact-common-wrapper.with-bg {
  background-color: #171426;
  border-radius: 20px;
}

.textarea-field {
  border: 1px solid #fff9bc;
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 12px;
  width: 100%;
  min-height: 236px;
  margin-bottom: 0;
  padding: 21px 20px;
  font-size: 16px;
}

.textarea-field::placeholder {
  color: var(--color--main);
}

.team-form-section-title {
  margin-bottom: 30px;
  font-size: 38px;
  font-weight: 500;
}

.conract-form {
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.group-input-feld-block {
  display: flex;
}

.input-field {
  border: 1px solid #fff9bc;

  background: linear-gradient(185deg, #373737, #1a1a1a);
  background: linear-gradient(90deg, #e0ba66, #fff9bc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 12px;
  width: 100%;
  min-height: 68px;
  margin-bottom: 0;
  padding: 21px 20px;
  font-size: 16px;
  font-weight: 800;
}

.input-field::placeholder {
  color: var(--color--main);
}

.contact-map {
  z-index: 1;
  width: 100%;
  height: 705px;
  display: flex;
}

.contact-map-block {
  border-radius: 20px;
  overflow: hidden;
}

.contact-section {
  position: relative;
}

.hero-additional-title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

.hero-additional-group-block-two {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-group-wrapper-two {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: end;
  margin-top: 60px;
  display: grid;
  position: relative;
}

.hero-primary-image-block-two {
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.hero-secondary-highlight-two {
  width: 313px;
  height: 126px;
  display: flex;
}

.hero-secondary-highlight-block-two {
  justify-content: flex-end;
  align-items: flex-start;
  padding-right: 15px;
  display: flex;
}

.hero-primary-funfact-block {
  background-color: var(--swatch--white-80);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 24px;
  align-items: center;
  max-width: 290px;
  padding: 24px 23px 24px 24px;
  display: flex;
  position: absolute;
  inset: auto auto 15px 15px;
}

.service-primary-block {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
  position: relative;
}

.service-primary-content {
  max-width: 400px;
}

.service-primary-title-link-block {
  margin-bottom: 10px;
  text-decoration: none;
}

.service-secondary-block {
  position: absolute;
  inset: -60px 60px auto auto;
}

.service-secondary-image {
  border-radius: 24px;
}

.service-secondary-image-block {
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.section-subtitle-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-subtitle-block.justify-center {
  justify-content: center;
  align-items: center;
}

.section-subtitle {
  font-family: var(--font-family--secondary-font);
  color: var(--color--secondary);
  font-size: 24px;
  font-weight: 500;
}

.section-subtitle-icon {
  display: flex;
}

.service-main-wrapper {
  padding-bottom: 85px;
}

.integration-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  max-height: 100%;
  display: flex;
}

.utility-page-wrap.with-bg {
  background-color: var(--color--neutral);
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.gap-bottom-10 {
  margin-bottom: 10px;
}

.testimonial-section {
  overflow: hidden;
}

.testimonial-slider {
  background-color: #0000;
  height: 400px;
  padding-bottom: 90px;
}

.testimonial-slider-mask {
  width: 410px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}

.testimonial-slide-item {
  margin-right: 30px;
}

.testimonial-slide-nav {
  display: none;
}

.testimonial-slider-arrow {
  width: 60px;
  height: 60px;
  inset: auto 0% 0%;
}

.testimonial-slider-arrow.left-arrow {
  left: -90px;
}

.testimonial-slider-arrow.right-arrow {
  right: -90px;
}

.testimonial-slider-arrow-icon {
  z-index: 1;
  border: 1.2px solid var(--swatch--main-60);
  color: var(--swatch--main-60);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: relative;
  background: linear-gradient(185deg, #373737, #1a1a1a);
  border: 1px solid #fff9bc !important;
  color: #fff9bc !important;
}

.gap-bottom {
  margin-bottom: 50px;
}

.testimonial-block {
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  height: 300px;
  padding: 32px 28px 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  background: linear-gradient(185deg, #373737, #1a1a1a);
  border: 1px solid #fff9bc;
}

.testimonial-image {
  width: 80px;
}

.testimonial-title {
  margin-bottom: 20px;
  font-size: 22px;
  text-align: center;
}

.testimonial-occupation {
  font-size: 16px;
}

.testimonial-info-block {
  flex-direction: column;
  gap: 10px;
  display: flex;
  align-items: center;
}

.testimonial-feedback {
  margin-bottom: 0;
  text-align: center;
}

.rating-block {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  display: flex;
}

.single-star {
  color: #f6ac28;
  width: 18px;
  height: 17px;
  display: flex;
}

.single-star.empty {
  color: var(--color--main);
}

.rating-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.rating-span {
  color: var(--white);
}

.testimonial-gradient {
  /*background-image: linear-gradient(0deg, #000, #ffffff14);*/
  /*border: 1px solid #fff3;*/
  border-radius: 20px;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.testimonial-slider-arrow-block {
  position: relative;
}

.testimonial-slider-arrow-gradient {
  background-image: linear-gradient(0deg, #271182, #7a56c8);
  border-radius: 100%;
  position: absolute;
  inset: 0%;
}

.circle-shape {
  background-image: linear-gradient(0deg, #271182, #7a56c8);
  border-radius: 100%;
}

.circle-shape.for-testimonial {
  opacity: 0.4;
  filter: blur(200px);
  width: 167px;
  height: 170px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.circle-shape.for-block {
  opacity: 1;
  filter: blur(140px);
  color: var(--color--neutral-three);
  width: 160px;
  height: 160px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.circle-shape.for-card {
  opacity: 0;
  filter: blur(200px);
  width: 160px;
  height: 160px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.circle-shape.for-about {
  filter: blur(400px);
  background-image: linear-gradient(0deg, #2711824d, #7a56c84d);
  width: 406px;
  height: 406px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.circle-shape.for-section-title {
  filter: blur(200px);
  background-image: linear-gradient(0deg, #27118266, #7a56c866);
  width: 195px;
  height: 195px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0% auto 0% 20%;
}

.circle-shape.for-section-title.for-team {
  filter: blur(400px);
  background-image: linear-gradient(0deg, #27118233, #7a56c833);
  width: 604px;
  height: 608px;
  inset: 0% 0% 0% auto;
}

.circle-shape-animation-block {
  position: relative;
}

.team-content-bg {
  opacity: 0;
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  color: var(--swatch--white-10);
  margin-top: 1px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.service-bg {
  color: var(--swatch--white-08);
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.gap-y-axis {
  margin-top: 50px;
  margin-bottom: 50px;
}

.license-block {
  grid-column-gap: 45px;
  grid-row-gap: 45px;
  flex-direction: column;
  display: flex;
}

.license-single-inner-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 0.5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.license-right-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
  padding: 30px;
  display: flex;
  box-shadow: 4px 4px 10px #0003;
}

.license-icon {
  border-radius: 10px;
  width: 65px;
}

.license-text {
  color: #03171e;
  font-size: 36px;
  font-weight: 600;
}

.license-left-block {
  border-radius: 10px;
  align-items: center;
  padding: 20px;
  display: flex;
  box-shadow: 4px 4px 10px #0003;
}

.lisense-para-text {
  margin-bottom: 0;
}

.service-circle-shape-block {
  position: absolute;
  inset: 0%;
}

.wcu-section {
  position: relative;
}

.wcu-wrapper {
  z-index: 1;
  border-top: 1px solid var(--swatch--white-40);
  flex-flow: column;
  display: flex;
  position: relative;
}

.wcu-block {
  border-bottom: 1px solid var(--swatch--white-40);
  justify-content: space-between;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
}

.wcu-content {
  z-index: 1;
  max-width: 520px;
  position: relative;
}

.wcu-summary {
  margin-bottom: 0;
}

.wcu-icon-link-block {
  z-index: 1;
  border: 1.2px solid var(--color--main);
  color: var(--color--main);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.wcu-icon {
  z-index: 1;
  width: 33.25px;
  height: 33.25px;
  display: flex;
  position: relative;
}

.wcu-image-block {
  align-self: center;
  max-width: 170px;
  position: absolute;
  inset: 0% 180px 0% auto;
}

.hero-circle-shape.top-left {
  position: absolute;
  inset: 0% auto auto 0%;
}

.hero-circle-shape.top-right {
  position: absolute;
  inset: auto 0% 0% auto;
}

.hero-circle-shape.center {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  background-color: var(--background--common-bg);
}

.wcu-icon-bg {
  background-image: linear-gradient(
    0deg,
    var(--color--primary),
    var(--color--secondary)
  );
  opacity: 0;
  border-radius: 100%;
  position: absolute;
  inset: 0%;
}

.wcu-bg {
  background-color: var(--color--neutral-three);
  position: absolute;
  inset: auto 0% 0%;
}

.button-text-wrap {
  overflow: hidden;
}

.button-text-block {
  height: 28px;
}

.button-text-on-hover {
  position: relative;
}

.offcanvas-header-button-wrapper {
  display: none;
}

.hero-highlight-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 150px;
  display: flex;
  overflow: hidden;
}

.hero-highlight-inner-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-inner-stuff {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.landing-page-request-figma-file-button-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.landing-page-footer-brand-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.landing-page-thumbnail-overlay {
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.landing-page-promotional-video-overlay {
  z-index: 1;
  background-color: #0000004d;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.landing-page-core-features-icon-wrapper {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  display: flex;
  position: relative;
}

.landing-page-core-features-icon-wrapper.sections {
  background-color: #3ec5ff;
}

.landing-page-core-features-icon-wrapper.components {
  background-color: #a45aff;
}

.landing-page-core-features-icon-wrapper.homepages {
  background-color: #11cc7f;
}

.landing-page-footer-lower-container {
  z-index: 2;
  background-color: #0b081b;
  margin-top: 80px;
  padding-top: 16px;
  padding-bottom: 24px;
  position: relative;
}

.landing-page-template-showcase-content {
  width: 100%;
  overflow: visible;
}

.landing-page-button {
  color: #0d121c;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.landing-page-button:hover {
  color: #fff;
}

.landing-page-header-right-side {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.landing-page-container-fluid {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.landing-page-template-feature-icon-wrapper {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  display: flex;
  box-shadow:
    0 -1px 3px #eceff3,
    0 1px 2px #0e094814,
    0 0 4px #0e09480a;
}

.landing-page-core-features-heading {
  color: #0d121c;
  text-align: center;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.2;
}

.landing-page-promotional-footer-shape-one {
  opacity: 0.2;
  filter: blur(250px);
  background-color: #0038ff;
  border-radius: 50%;
  width: 490px;
  height: 490px;
  position: absolute;
  top: 116px;
  left: -215px;
}

.landing-page-footer-logo {
  max-width: 240px;
}

.landing-page-request-figma-shape-four {
  opacity: 0.5;
  filter: blur(150px);
  background-color: #bb2cff8c;
  border-radius: 50%;
  width: 450px;
  height: 450px;
  position: absolute;
  bottom: -200px;
  left: -80px;
}

.landing-page-promotional-video-shape-one {
  filter: blur(300px);
  background-color: #bb2cff8c;
  border-radius: 50%;
  width: 550px;
  height: 550px;
  position: absolute;
  bottom: -335px;
  left: -125px;
}

.landing-page-template-showcase-tab-menu {
  background-color: #fff;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.landing-page-hero-title {
  z-index: 1;
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}

.landing-page-hero-image-element {
  width: 25%;
  position: absolute;
  bottom: 60px;
  left: 22%;
}

.landing-page-header-button {
  color: #fff;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 16px 45px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.landing-page-header-button:hover {
  color: #0d121c;
}

.landing-page-template-showcase-page-wrapper {
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
  position: relative;
  box-shadow: 0 24px 32px #2128400d;
}

.landing-page-core-features-shape-three {
  opacity: 0.5;
  filter: blur(100px);
  background-color: #09bd1b;
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: -30px;
  left: 260px;
}

.landing-page-button-hover-block {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.landing-page-button-hover-block.landing-page-gradient {
  z-index: 1;
}

.landing-page-featured-section-container {
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.landing-page-subtitle-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.landing-page-template-feature-variation-item {
  border-radius: 16px;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.landing-page-template-feature-variation-item.header-styles {
  background-color: #f5f3fa;
}

.landing-page-template-feature-variation-item.footer-styles {
  background-color: #faf1ef;
}

.landing-page-template-feature-variation-item.blog-style {
  background-color: #fbf7ee;
}

.landing-page-template-feature-variation-item.responsive-devices {
  background-color: #f7faf4;
  height: 100%;
}

.landing-page-hero-image-wrapper {
  z-index: 4;
  position: relative;
}

.landing-page-request-figma-shape-three {
  opacity: 0.5;
  filter: blur(150px);
  background-color: #0038ff;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: -215px;
  right: -40px;
}

.landing-page-nav-menu-list {
  z-index: 1;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.landing-page-nav-link {
  color: #fff;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.3s;
  display: block;
}

.landing-page-nav-link:hover {
  color: var(--color--secondary);
}

.landing-page-request-figma-file-wrapper,
.landing-page-promotional-video-wrapper {
  position: relative;
}

.landing-page-hero-overlay {
  z-index: 3;
  background-image:
    url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66ab071850b3ed1992c56bbd_bg-image.svg"),
    linear-gradient(0deg, #12131805, #121318);
  background-position:
    50% 0,
    0 0;
  background-size: auto, auto;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.landing-page-footer-blurry-block-two {
  filter: blur(300px);
  background-color: #bb2cff8c;
  border-radius: 50%;
  width: 450px;
  height: 450px;
  position: absolute;
  top: 160px;
  right: -275px;
}

.landing-page-template-showcase-page-name {
  font-family: var(--font-family--secondary-font);
  color: var(--color--neutral);
  font-weight: 700;
  text-decoration: none;
}

.landing-page-hamburger-menu {
  color: #fff;
  border-radius: 5px;
  padding: 12px;
}

.landing-page-hamburger-menu.w--open {
  background-color: #0000;
}

.landing-page-footer-title {
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.3;
}

.landing-page-promotional-video-lightbox {
  z-index: 2;
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.landing-page-template-name {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#ffffff26 10.77%, #9990);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 260px;
  line-height: 1.3;
}

.landing-page-footer-link-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  display: flex;
}

.landing-page-hero-image {
  margin-top: -30%;
}

.landing-page-template-showcase-thumbnail {
  border-radius: 4px;
  width: 100%;
}

.landing-page-section-heading {
  color: #0d121c;
  text-align: center;
  font-size: 40px;
  line-height: 1.3;
}

.landing-page-promotional-video-shape-two {
  filter: blur(250px);
  background-color: #0038ff;
  border-radius: 50%;
  width: 490px;
  height: 490px;
  position: absolute;
  bottom: -335px;
  right: -125px;
}

.landing-page-promotional-video-marquee {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.landing-page-figma-icon-wrapper {
  background-color: #0d121c;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  display: flex;
}

.landing-page-feature-variation-text {
  color: #4b5565;
  text-align: center;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.landing-page-nav-content-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.landing-page-brand-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.landing-page-container-default {
  max-width: 960px;
  padding-left: 15px;
  padding-right: 15px;
}

.landing-page-footer-content-wrapper {
  z-index: 2;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.landing-page-hero-except {
  color: #cdd5df;
  text-align: center;
  max-width: 730px;
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.5;
}

.landing-page-copyright-content-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.landing-page-core-feature-card {
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-image: linear-gradient(111deg, #ffffff94, #ffffff57 100%, #fff);
  border: 2px solid #fff;
  border-radius: 25px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 20px;
  display: flex;
}

.landing-page-template-features-section {
  background-color: #eee;
}

.landing-page-view-template-button-icon {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.landing-page-footer-except {
  color: #cdd5df;
  text-align: center;
  max-width: 730px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.landing-page-template-feature-variation-image-wrapper {
  z-index: 2;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.landing-page-hero-content-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.landing-page-template-showcase-info-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  display: flex;
}

.landing-page-footer-content-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.link-separartor {
  background-color: #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.landing-page-cta-content-wrapper {
  max-width: 500px;
}

.landing-page-footer-link {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

.landing-page-footer-link:hover {
  text-decoration: underline;
}

.landing-page-request-figma-file-content-wrapper {
  z-index: 2;
  position: relative;
}

.landing-page-request-figma-file-main-image {
  border: 1px solid #0d121c;
  border-radius: 16px;
}

.landing-page-cta-button {
  color: #0d121c;
  background-color: #fff;
  border-radius: 8px;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.3s,
    background-color 0.3s;
  position: relative;
  overflow: hidden;
}

.landing-page-cta-button:hover {
  color: #fff;
  background-color: #0d121c;
}

.laning-page-template-feature-variation-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.landing-page-featured-section-marquee-section {
  background-color: #f4f5fa;
  overflow: hidden;
}

.landing-page-template-features-grid {
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.landing-page-template-showcase-thumbnail-wrapper {
  border-radius: 8px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.landing-page-hero-button-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.landing-page-button-text {
  z-index: 2;
  position: relative;
}

.landing-page-cta-image {
  border-radius: 5px;
  width: 100%;
  box-shadow: 0 2px 5px #0003;
}

.landing-page-cta-list-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.landing-page-cta-wrapper {
  background-image:
    url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66ab071750b3ed1992c56bb8_cta-bg-shape.svg"),
    linear-gradient(0deg, var(--color--primary), var(--color--secondary));
  background-position:
    0 0,
    0 0;
  background-repeat: no-repeat, repeat;
  border-radius: 16px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 40px;
  position: relative;
  overflow: hidden;
}

.landing-page-badge {
  color: #fff;
  text-align: center;
  background-color: #ff453a;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.landing-page-badge.new {
  background-color: #0fb828;
}

.landing-page-template-showcase-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.landing-page-promotional-video-image {
  z-index: 4;
  border: 6px solid #fff;
  border-radius: 16px;
  width: 100%;
}

.landing-page-footer-button-wrapper {
  margin-top: 40px;
}

.landing-page-badge-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.landing-page-footer-button {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 28px;
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.landing-page-footer-button:hover {
  color: #0d121c;
}

.landing-page-core-features-wrapper {
  position: relative;
}

.landing-page-request-figma-file-title-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 830px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.landing-page-promotional-video-marquee-item {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  margin-right: 40px;
  display: flex;
}

.landing-page-core-features-shape-two {
  opacity: 0.5;
  filter: blur(100px);
  background-color: #ff602e;
  width: 150px;
  height: 150px;
  position: absolute;
  top: -25px;
  right: -25px;
}

.landing-page-blurry-block-two {
  filter: blur(300px);
  background-color: #bb2cff8c;
  border-radius: 50%;
  width: 550px;
  height: 550px;
  position: absolute;
  top: 120px;
  right: 130px;
}

.landing-page-template-feature-variation-shape {
  opacity: 0.2;
  filter: blur(30px);
  border-radius: 50%;
  width: 144px;
  height: 144px;
  position: absolute;
}

.landing-page-template-feature-variation-shape.responsive-device {
  background-color: #6fc519;
  top: 100px;
  left: -22px;
}

.landing-page-template-feature-variation-shape.footer-styles {
  background-color: #ff8f76;
  top: 105px;
  left: 45px;
}

.landing-page-template-feature-variation-shape.header-styles {
  background-color: #7b55ff;
  top: 85px;
  right: 14px;
}

.landing-page-template-feature-variation-shape.blog-style {
  background-color: #ffb223;
  top: 95px;
  right: 45px;
}

.landing-page-template-feature-text {
  color: #0d121c;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.landing-page-blurry-block-one {
  filter: blur(250px);
  background-color: #0038ff;
  border-radius: 50%;
  width: 490px;
  height: 490px;
  position: absolute;
  top: 330px;
  left: 120px;
}

.landing-page-padding-bottom-120px {
  padding-bottom: 100px;
}

.landing-page-cta-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.landing-page-template-name-wrapper {
  position: absolute;
  top: -185px;
}

.landing-page-core-features-content-wrapper {
  position: relative;
}

.landing-page-cta-button-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 32px;
  display: flex;
}

.landing-page-template-showcase-tab-link {
  color: #4b5565;
  background-color: #0000;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.landing-page-template-showcase-tab-link.w--current {
  color: #fff;
  background-color: #0d121c;
  border-radius: 999px;
}

.landing-page-request-figma-shape-one {
  filter: blur(300px);
  background-color: #bb2cff80;
  border-radius: 50%;
  width: 414px;
  height: 414px;
  position: absolute;
  top: 105px;
  left: 50px;
}

.landing-page-cta-marquee {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 450px;
  max-height: 600px;
  display: grid;
  position: absolute;
  top: -140px;
  right: -100px;
  overflow: hidden;
  transform: rotate(-24deg);
}

.landing-page-footer-copyright-link {
  color: #fff;
  text-decoration: none;
}

.landing-page-footer-copyright-link:hover {
  text-decoration: underline;
}

.landing-page-promotional-video-banner-wrapper {
  z-index: 3;
  justify-content: flex-start;
  align-items: center;
  width: 115%;
  max-height: 108px;
  margin: auto -6.5%;
  padding-top: 24px;
  padding-bottom: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  transform: rotate(16deg);
}

.landing-page-template-feature-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.landing-page-nav-menu-wrapper {
  background-color: #0000;
  padding-top: 24px;
  padding-bottom: 24px;
}

.landing-page-logo-link {
  padding-left: 0;
}

.landing-page-feature-variation-image {
  z-index: 2;
  position: relative;
}

.landing-page-featured-section-thumbnail {
  border-radius: 4px;
  width: 100%;
}

.landing-page-promotional-video-play-icon {
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  display: flex;
}

.landing-page-promotional-video-image-wrapper {
  z-index: 4;
  position: relative;
}

.landing-page-hero-section {
  background-color: #100d1f;
  position: relative;
  overflow: hidden;
}

.landing-page-core-features-shape-one {
  opacity: 0.5;
  filter: blur(100px);
  background-color: #fabb18;
  width: 135px;
  height: 135px;
  position: absolute;
  top: -30px;
  left: -25px;
}

.landing-page-core-features-section {
  background-color: #f4f5fa;
  overflow: hidden;
}

.landing-page-header {
  width: 100%;
  position: absolute;
  top: 0;
}

.landing-page-view-template-button-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.landing-page-template-showcase-section {
  background-color: #f4f5fa;
}

.landing-page-hero-padding-top {
  padding-top: 220px;
}

.landing-page-section-heading-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.landing-page-section-heading-wrapper.max-width-675px {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.landing-page-header-logo {
  max-width: 240px;
}

.landing-page-promotional-video-marquee-container {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.landing-page-template-featured-section-wrapper {
  border-radius: 8px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.landing-page-section-except {
  color: #4b5565;
  text-align: center;
  line-height: 1.5;
}

.landing-request-figma-file-section {
  overflow: hidden;
}

.landing-request-figma-file-section.landing-page-request-figma-bg {
  background-image:
    url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66ab071850b3ed1992c56bbd_bg-image.svg"),
    linear-gradient(#fff 45%, #0d121c 45%);
  background-position:
    50% 100%,
    0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto, auto;
}

.landing-page-gradient {
  background-image: linear-gradient(
    0deg,
    var(--color--primary),
    var(--color--secondary)
  );
}

.landing-page-core-features-grid {
  z-index: 2;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.landing-page-cta-heading {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.landing-page-request-figma-shape-two {
  filter: blur(250px);
  background-color: #0038ff;
  border-radius: 50%;
  width: 370px;
  height: 370px;
  position: absolute;
  top: 150px;
  right: -50px;
}

.landing-page-template-showcase-tab {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: -20px;
  display: flex;
}

.landing-page-footer-button-icon {
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.landing-page-cta-image-container {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.landing-page-promotioanl-video-section {
  background-color: #100d1f;
  position: relative;
  overflow: hidden;
}

.landing-page-promotioanl-video-section.landing-page-promotional-video-bg {
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66ab071850b3ed1992c56bbd_bg-image.svg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.landing-page-cta-list-text {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.landing-page-subtile-wrapper {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 8px 32px;
  display: flex;
}

.landing-page-padding-top-120px {
  padding-top: 100px;
}

.landing-page-promotional-video-marquee-text {
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}

.landing-page-footer-upper-container {
  position: relative;
}

.landing-page-core-features-shape-five {
  opacity: 0.5;
  filter: blur(100px);
  background-color: #c345c6;
  width: 170px;
  height: 170px;
  position: absolute;
  bottom: -45px;
  right: 100px;
}

.landing-page-request-figma-file-side-image {
  border: 1px solid #9aa4b2;
  border-radius: 4px;
  position: absolute;
  box-shadow: 0 36px 60px #222f4726;
}

.landing-page-request-figma-file-side-image.right {
  top: 140px;
  right: -20px;
}

.landing-page-request-figma-file-side-image.left-image {
  top: 140px;
  left: -20px;
}

.landing-page-request-figma-file-image-wrapper {
  position: relative;
}

.landing-page-view-template-button {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  display: flex;
  box-shadow: 0 8px 16px #21284033;
}

.landing-page-core-features-text {
  color: #4b5565;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.landing-page-mobile-device-image {
  z-index: 1;
}

.landing-page-feature-variation-heading {
  color: #0d121c;
  text-align: center;
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

.landing-page-footer {
  background-color: #0b081b;
  overflow: hidden;
}

.landing-page-footer.landing-page-footer-bg-image {
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66ab071850b3ed1992c56bbd_bg-image.svg");
  background-position: 50% 0;
  background-size: auto;
}

.landing-page-template-feature-variation-content-block {
  z-index: 2;
  margin-bottom: 24px;
  position: relative;
}

.landing-page-featured-section-marquee {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.landing-page-footer-copyright-text {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.landing-page-hero-wrapper {
  z-index: 5;
  position: relative;
}

.landing-page-request-figma-file-image-block {
  z-index: 2;
  justify-content: center;
  align-items: flex-start;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.landing-page-featured-section-item {
  background-color: #fff;
  border-radius: 16px;
  flex: none;
  margin-right: 24px;
  padding: 8px;
  position: relative;
  box-shadow: 0 24px 32px #2128400d;
}

.landing-page-nav-list-item {
  margin-bottom: 0;
}

.landing-page-nav-list-item.show-in-tablet {
  display: none;
}

.landing-page-core-features-shape-four {
  opacity: 0.5;
  filter: blur(100px);
  background-color: #4845c6;
  width: 170px;
  height: 170px;
  position: absolute;
  bottom: 5px;
  right: 200px;
}

.landing-page-nav-container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.button-secondary-gradient {
  background: linear-gradient(185deg, #373737, #1a1a1a);
  width: 100%;
  position: absolute;
  inset: 0%;
  border: 1px solid #fff9bc;
  border-radius: 40px;
}

.service-block-bg {
  color: #ffffff14;
  position: absolute;
  inset: 0%;
}

.service-inner-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.about-secondary-inner-wrapper {
  position: relative;
}

.project-block-bg {
  display: flex;
  position: absolute;
  inset: 0%;
}

.team-bg {
  color: var(--swatch--white-08);
  display: flex;
  position: absolute;
  inset: 0%;
}

.team-bg-on-hover {
  opacity: 0;
  color: var(--swatch--white-08);
  display: flex;
  position: absolute;
  inset: 0%;
}

.blog-item-bg {
  color: var(--swatch--white-08);
  display: flex;
  position: absolute;
  inset: 0%;
}

.lisense-para-link {
  color: var(--color--secondary);
  text-decoration: none;
}

.lisense-para-link:hover {
  text-decoration: underline;
}

.contact-main-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-block-bg {
  color: var(--color--neutral-three);
  position: absolute;
  inset: 0%;
}

.contact-common-inner-wrapper {
  position: relative;
}

.contact-info-list-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  margin-top: 50px;
  display: flex;
}

.contact-info-list-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-info-list-icon {
  color: var(--white);
  display: flex;
}

.contact-info-list-icon-block {
  background: linear-gradient(185deg, #373737, #1a1a1a);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px;
  display: flex;
  border: 1px solid #fff9bc;
}

.contact-info-list-title {
  margin-bottom: 5px;
  font-size: 20px;
}

.contact-info-list-link {
  color: var(--color--main);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-list-link:hover {
  color: var(--white);
}

.contact-separator-div {
  display: flex;
}

.contact-info-list-link-span {
  color: var(--color--main);
  text-decoration: none;
}

.global-circle-shape {
  display: flex;
}

.global-circle-shape.bottom-left {
  position: absolute;
  inset: auto auto 0% 0%;
}

.global-circle-shape.top-right {
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.global-circle-shape.top-right.for-project {
  max-width: 560px;
  top: -250px;
}

.global-circle-shape.left-middle {
  justify-content: flex-start;
  align-items: center;
  max-width: 553px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.global-circle-shape.left-bottom {
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 556px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.global-circle-shape.top-left {
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 593px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.global-circle-shape.for-blog {
  position: absolute;
  inset: -200px 0% 0% auto;
}

.global-circle-shape.bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
  width: 573px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.global-circle-shape.bottom-right.for-bog {
  width: 402px;
  bottom: -200px;
}

.global-circle-shape.bottom-right.for-project-page {
  bottom: 0%;
}

.global-circle-shape.for-wcu {
  position: absolute;
  inset: -30% 0% 0% auto;
}

.global-circle-shape.for-mission {
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  inset: 0% 0% -30% auto;
}

.global-circle-shape.for-vission {
  width: 306px;
  height: 292px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0% auto 0% -15%;
}

.global-circle-shape.for-video-section-title {
  z-index: -1;
  width: 306px;
  height: 292px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: -30% 0% 0%;
}

.global-circle-shape.for-video {
  width: 449px;
  position: absolute;
  inset: -30% auto 0% 0%;
}

.global-circle-shape.right-middle {
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.global-circle-shape.for-contact-info {
  width: 260px;
  height: 260px;
  position: absolute;
  inset: -10% -10% auto auto;
}

.global-circle-shape.for-contact {
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  inset: 0% auto -40% 0%;
}

.global-circle-shape.for-reachout {
  width: 209px;
  height: 209px;
  position: absolute;
  inset: -10% auto 0% 0%;
}

.border-gradient-div {
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.footer-bg {
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66af76cec41636dff468ab5e_footer-bg.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.footer-shape {
  display: flex;
  position: absolute;
  inset: 0%;
}

.integration-banner-block {
  position: relative;
}

.integration-shape {
  justify-content: center;
  align-items: center;
  width: 354px;
  height: 340px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0%;
}

.our-global-image-block {
  position: relative;
  overflow: hidden;
}

.our-global-image-block.with-overflow-hidden {
  overflow: hidden;
}

.our-global-image-block.with-overflow-hidden.with-radius-24 {
  border-radius: 24px;
}

.our-global-image-block.with-overflow-hidden.with-radius-16 {
  border-radius: 16px;
}

.our-global-image-overlay {
  background-color: var(--background--common-bg);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.our-global-image-block-two {
  position: relative;
  overflow: hidden;
}

.our-global-image-block-two.with-radius-16 {
  border-radius: 16px;
}

.wcu-circle-shape-block {
  position: absolute;
  inset: 0%;
}

.our-video-inner-bg {
  background-color: var(--color--neutral);
  width: 12%;
  height: 100%;
}

.our-video-inner-bg.from-left {
  perspective-origin: 0%;
  transform-origin: 0%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.our-video-inner-bg.from-right {
  perspective-origin: 100%;
  transform-origin: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.about-content-shape {
  justify-content: flex-end;
  align-items: flex-start;
  width: 325px;
  height: 325px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.gap-top-20 {
  margin-top: 20px;
}

.gap-bottom-20 {
  margin-bottom: 20px;
}

.blog-detail-section {
  position: relative;
}

.blog-detail-content {
  z-index: 1;
  padding-left: 90px;
  padding-right: 90px;
  position: relative;
}

.blog-detail-content.gap-top p {
  margin-bottom: 45px;
}

.blog-detail-content.gap-top ul {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  margin-bottom: 50px;
  display: flex;
}

.blog-detail-content.gap-top strong {
  font-family: var(--font-family--secondary-font);
  color: var(--white);
}

.blog-detail-content.gap-top li {
  font-size: 20px;
}

.blog-detail-content.gap-top img {
  border-radius: 24px;
}

.blog-detail-content.gap-top figure {
  margin-bottom: 55px;
}

.blog-detail-content.gap-top blockquote {
  font-family: var(--font-family--secondary-font);
  color: var(--white);
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66b3bcad9c29c653cddd3d89_our-quote-bg.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-left-style: none;
  border-radius: 10px;
  margin-bottom: 55px;
  padding: 40px 65px;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.28;
}

.blog-detail-main-wrapper {
  z-index: 1;
  position: relative;
}

.blog-author-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--color--neutral-four);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 290px);
  margin-left: auto;
  margin-right: auto;
  padding: 32px;
  display: flex;
}

.blog-author-image-link-block {
  min-width: 160px;
  display: block;
  overflow: hidden;
}

.blog-author-image {
  border-radius: 10px;
}

.blog-author-name-link-block {
  text-decoration: none;
}

.blog-author-name {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  transition: color 0.3s;
}

.blog-author-name:hover {
  color: var(--color--main);
}

.blog-author-occupation {
  font-size: 16px;
}

.blog-author-summary {
  margin-top: 5px;
  margin-bottom: 0;
}

.gap-y-axis-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.team-detail-circle-shape {
  width: 260px;
  height: 260px;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.project-detail-section {
  position: relative;
}

.project-info-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  background-color: #171428;
  border: 1px solid #2b2743;
  border-radius: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 40px;
  display: grid;
}

.project-info-block {
  text-align: center;
}

.project-info-title-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #2b2743;
  border-radius: 9999px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  padding: 8px 20px;
  display: inline-flex;
}

.project-info-title-icon {
  display: flex;
}

.project-info-span {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
}

.project-info-title {
  font-size: 16px;
}

.project-overview {
  padding-top: 45px;
}

.project-overview-group-image {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 45px;
  display: grid;
}

.project-benefit {
  padding-top: 45px;
}

.project-benefit ul {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.project-benefit li {
  background-image: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66b9e698769425248a500c31_list-circle-icon.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 40px;
}

.project-benefit p {
  margin-bottom: 30px;
}

.primary-section-title {
  perspective-origin: 0%;
  transform-origin: 0%;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.secondary-section-title {
  perspective-origin: 100%;
  transform-origin: 100%;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.service-shape {
  display: flex;
  position: absolute;
  inset: 0%;
}

.landing-button {
  color: #fff;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.landing-button:hover {
  color: #0d121c;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  .style-guide-header {
    width: 15%;
  }

  .section-heading-block {
    border-radius: 8px;
  }

  .container {
    max-width: 1170px;
  }

  .style-guide-body {
    width: 85%;
  }

  .section-title {
    position: relative;
  }

  .section-title.for-service {
    max-width: 546px;
  }

  .section-title.for-about {
    max-width: 626px;
  }

  .section-title.for-team,
  .section-title.for-blog {
    max-width: 546px;
    margin-bottom: 20px;
  }

  .section-title.for-service-two,
  .section-title.for-integration {
    max-width: 546px;
  }

  .side-panel-link.w--current {
    border-radius: 8px;
  }

  .section-summary.for-team,
  .section-summary.for-blog {
    margin-left: auto;
    margin-right: auto;
  }

  .section-summary.for-integration {
    max-width: 562px;
  }

  .nav-dropdown-toggle,
  .nav-link {
    font-size: 18px;
    text-align: center;
  }

  .nav-menu-list-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .social-link-block {
    display: flex;
  }

  .footer-widget-list-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .footer-middle-item {
    grid-template-columns: 1.15fr 1.1fr 0.75fr 1.25fr;
  }

  .footer-widget {
    flex: 0 auto;
  }

  .newsletter-input-field {
    min-width: 443px;
    padding-right: 150px;
  }

  .hero-summary {
    position: relative;
  }

  .hero-group-wrapper.negative-space {
    margin-top: -310px;
  }

  .funfact-block {
    grid-template-columns: 1fr 3px 1fr 3px 1fr;
  }

  .funfact-separator-block.for-primary-hero-two {
    margin-left: 28px;
    margin-right: 28px;
  }

  .counter-number-wrapper.for-primary-hero-two {
    height: 97px;
    font-size: 76px;
  }

  .counter-prefix.for-primary-hero-two {
    font-size: 36px;
  }

  .counter-title.for-primary-hero-two {
    font-size: 20px;
  }

  .hero-additional-group-block {
    flex: none;
  }

  .hero-additional-image {
    height: 100%;
  }

  .section-inner-title {
    font-size: 70px;
    top: -50px;
  }

  .service-collection-list.for-sidebar {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .service-block {
    padding: 36px 34px;
  }

  .service-icon-link-block {
    padding: 20px;
  }

  .service-summary {
    max-width: 280px;
  }

  .service-summary.different-maxwidth {
    max-width: 543px;
  }

  .section-gap-top {
    padding-top: var(--section-gap--120);
  }

  .about-main-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 0.95fr 1fr;
  }

  .team-image {
    object-fit: cover;
    min-height: 400px;
  }

  .section-gap-y-axis {
    padding-top: var(--section-gap--120);
    padding-bottom: var(--section-gap--120);
  }

  .breadcrumb-inner-title {
    font-size: 76px;
    top: -50px;
  }

  .breadcrumb-title-block {
    max-width: 920px;
  }

  .breadcrumb-title-block.different-maxwidth {
    max-width: 950px;
  }

  .breadcrumb-title {
    position: relative;
  }

  .hero-title-two {
    max-width: 770px;
  }

  .section-title-wrapper-two {
    grid-template-columns: 1.5fr 0.8fr;
  }

  .hero-title-span-image {
    background-position: 175px;
  }

  .hero-summary-two {
    position: relative;
  }

  .about-page-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1.15fr 1fr;
    max-width: 1230px;
  }

  .about-page-image-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .section-title-two {
    position: relative;
  }

  .about-common-wrapper {
    grid-column-gap: 105px;
    grid-row-gap: 105px;
  }

  .our-video-wrapper {
    max-width: 1170px;
  }

  .section-gap-bottom {
    padding-bottom: var(--section-gap--120);
  }

  .service-sidebar-widget {
    padding-left: 32px;
    padding-right: 32px;
  }

  .team-experience-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .team-experience-logo {
    width: auto;
    height: auto;
  }

  .team-detail-summary {
    max-width: 100%;
  }

  .team-experience-logo-block {
    width: 68px;
    height: 68px;
  }

  .primary-team-detail-wrapper {
    grid-template-columns: 0.75fr 1fr;
  }

  .hero-additional-group-block-two {
    flex: none;
  }

  .hero-group-wrapper-two {
    grid-template-columns: 0.85fr 1.2fr;
  }

  .hero-primary-funfact-block {
    max-width: 355px;
    bottom: 24px;
    left: 24px;
  }

  .service-primary-content {
    max-width: 553px;
  }

  .integration-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .wcu-image-block {
    max-width: 100%;
    right: 250px;
  }

  .landing-page-hero-title {
    font-size: 60px;
  }

  .landing-page-hero-image-element {
    bottom: 75px;
  }

  .landing-page-template-feature-variation-item {
    padding: 45px 45px 30px;
  }

  .landing-page-nav-menu-list {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .landing-page-footer-title {
    font-size: 60px;
  }

  .landing-page-template-name {
    font-size: 300px;
  }

  .landing-page-container-default {
    max-width: 1170px;
    padding-left: 0;
    padding-right: 0;
  }

  .landing-page-core-feature-card {
    padding: 60px 40px;
  }

  .landing-page-template-features-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .landing-page-cta-wrapper {
    padding-left: 80px;
  }

  .landing-page-template-showcase-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .landing-page-padding-bottom-120px {
    padding-bottom: 120px;
  }

  .landing-page-cta-marquee {
    max-width: 550px;
    right: -40px;
  }

  .landing-page-promotional-video-banner-wrapper.landing-page-gradient {
    max-height: 120px;
  }

  .landing-page-template-feature-item {
    max-width: 195px;
  }

  .landing-page-padding-top-120px {
    padding-top: 120px;
  }

  .landing-page-promotional-video-marquee-text {
    font-size: 60px;
  }

  .landing-page-request-figma-file-side-image.right {
    right: -75px;
  }

  .landing-page-request-figma-file-side-image.left-image {
    left: -75px;
  }

  .primary-section-title,
  .secondary-section-title {
    position: relative;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 36px;
  }

  .container {
    max-width: 1290px;
  }

  .section-title.for-newsletter,
  .section-title.for-service {
    max-width: 548px;
  }

  .section-title.for-team,
  .section-title.for-blog {
    max-width: 576px;
  }

  .section-title.for-testimonial {
    max-width: 480px;
  }

  .section-title.for-service-two,
  .section-title.for-integration {
    max-width: 548px;
  }

  .secondary-container {
    max-width: 1096px;
  }

  .section-summary.for-integration {
    margin-bottom: 45px;
  }

  .navbar-container {
    margin-top: 60px;
    padding: 28px 51px;
  }

  .footer-middle-item {
    grid-column-gap: 158px;
    grid-row-gap: 158px;
  }

  .section-gap-top-100 {
    padding-top: var(--section-gap--100);
  }

  .newsletter-title {
    font-size: 28px;
  }

  .hero-title {
    width: 978px;
  }

  .hero-group-wrapper.negative-space {
    margin-top: -300px;
  }

  .hero-primary-title {
    font-size: 28px;
  }

  .hero-highlight-block {
    width: 285px;
    margin-top: 40px;
  }

  .service-block.style-two {
    padding: 70px;
  }

  .gap-top {
    margin-top: 60px;
  }

  .service-summary {
    max-width: 300px;
  }

  .section-gap-top {
    padding-top: var(--section-gap--130);
  }

  .about-main-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .about-primary-title,
  .about-tab-link,
  .about-list-item {
    font-size: 28px;
  }

  .project-content {
    padding: 40px;
  }

  .project-summary {
    max-width: 450px;
  }

  .team-name {
    font-size: 36px;
  }

  .section-gap-y-axis {
    padding-top: var(--section-gap--130);
    padding-bottom: var(--section-gap--130);
  }

  .breadcrumb-wrapper {
    padding-top: 280px;
  }

  .breadcrumb-title-block {
    margin-bottom: 70px;
  }

  .breadcrumb-title-block.different-maxwidth {
    max-width: 1112px;
  }

  .section-title-wrapper-two {
    grid-template-columns: 1.5fr 0.75fr;
  }

  .hero-title-span-image {
    background-position: 200px;
  }

  .about-page-wrapper {
    grid-template-columns: 1.25fr 1fr;
    max-width: 1365px;
  }

  .our-list-title {
    font-size: 28px;
  }

  .our-video-wrapper {
    max-width: 1290px;
  }

  .section-gap-bottom {
    padding-bottom: var(--section-gap--130);
  }

  .service-primary-detail-content figure {
    margin-bottom: 55px;
  }

  .service-reach-out-widget-icon {
    margin-bottom: 30px;
  }

  .service-workflow-title {
    font-size: 26px;
  }

  .service-sidebar-widget-title {
    margin-bottom: 40px;
  }

  .service-reach-out-widget-span {
    font-size: 36px;
  }

  .service-reach-out-widget-span.for-email {
    font-size: 22px;
    font-weight: 400;
  }

  .service-reach-out-widget-span.for-email:hover {
    color: #6c65ff;
  }

  .faq-heading {
    font-size: 24px;
  }

  .service-detail-main-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .service-sidebar {
    grid-row-gap: 40px;
  }

  .faq-heading-block {
    font-size: 24px;
  }

  .service-workflow-title-block {
    margin-bottom: 15px;
  }

  .service-workflow-wrapper {
    margin-top: 55px;
    margin-bottom: 60px;
  }

  .team-skill-title {
    font-size: 18px;
  }

  .team-detail-image-block {
    padding-left: 60px;
    padding-right: 60px;
  }

  .team-detail-span {
    font-size: 24px;
  }

  .team-experience-logo-block {
    width: 68px;
    height: 68px;
  }

  .primary-team-detail-wrapper {
    grid-template-columns: 0.7fr 1fr;
  }

  .contact-common-wrapper {
    padding: 60px;
  }

  .team-form-section-title {
    margin-bottom: 40px;
    font-size: 44px;
  }

  .hero-additional-title {
    font-size: 28px;
  }

  .service-primary-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .integration-wrapper {
    grid-column-gap: 155px;
    grid-row-gap: 155px;
  }

  .testimonial-slider {
    padding-bottom: 100px;
    margin-bottom: 100px;
  }

  .gap-bottom {
    margin-bottom: 60px;
  }

  .testimonial-title {
    font-size: 24px;
    background: linear-gradient(90deg, #e0ba66, #fff9bc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
  }

  .gap-y-axis {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .wcu-image-block {
    right: 300px;
  }

  .hero-highlight-wrapper {
    width: 285px;
  }

  .landing-page-container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }

  .landing-page-hero-image-element {
    bottom: 85px;
  }

  .landing-page-template-name {
    font-size: 350px;
  }

  .landing-page-hero-image {
    margin-top: -32%;
  }

  .landing-page-container-default.template-showcase {
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .landing-page-template-features-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .landing-page-core-features-shape-two {
    right: -100px;
  }

  .landing-page-template-feature-item {
    max-width: 300px;
  }

  .landing-page-core-features-shape-one {
    left: -68px;
  }

  .landing-page-nav-container {
    padding-left: 120px;
    padding-right: 120px;
  }

  .blog-detail-content.gap-top blockquote {
    font-size: 36px;
  }

  .project-overview,
  .project-overview-group-image,
  .project-benefit {
    padding-top: 55px;
  }
}

@media screen and (min-width: 1920px) {
  .style-guide-header {
    width: 25%;
  }

  .style-guide-body {
    width: 75%;
  }

  .section-gap-top {
    padding-top: var(--section-gap--140);
  }

  .section-gap-y-axis {
    padding-top: var(--section-gap--140);
    padding-bottom: var(--section-gap--140);
  }

  .about-page-wrapper {
    max-width: 1605px;
  }

  .partner-block {
    min-width: 180px;
    height: 120%;
  }

  .section-gap-bottom {
    padding-bottom: var(--section-gap--140);
  }

  .service-sidebar {
    grid-row-gap: 50px;
  }

  .team-skill-title {
    font-size: 20px;
  }

  .landing-page-container-fluid {
    padding-left: 100px;
    padding-right: 100px;
  }

  .landing-page-hero-image-element {
    width: auto;
    bottom: 106px;
    left: 22%;
  }

  .landing-page-template-features-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .landing-page-core-features-shape-two {
    right: -220px;
  }
}
@media screen and (max-width: 1439px) {
  .connect-section {
    margin-top: 100px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 28px;
  }

  .container {
    max-width: 720px;
  }

  .button-default {
    min-width: 170px;
  }

  .style-guide-body {
    width: 100%;
  }

  .single-items-title-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .section-title.for-about {
    max-width: 430px;
  }

  .section-title.for-testimonial {
    max-width: 350px;
  }

  .side-panel-menu {
    flex-wrap: wrap;
  }

  .secondary-container {
    max-width: 720px;
  }

  .section-summary.for-about {
    max-width: 590px;
  }

  .section-summary.for-video {
    max-width: 330px;
  }

  .section-summary.for-integration {
    max-width: 320px;
    margin-bottom: 0;
  }

  .section-summary.for-wcu {
    max-width: 100%;
  }

  .navbar-container {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-dropdown-icon {
    right: -30px;
  }

  .nav-menu-wrapper {
    background-color: var(--background--common-bg);
    width: 350px;
    min-height: 100vh;
    max-height: 100vh;
    padding: 45px 30px 20px;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    box-shadow: 0 4px 30px #0003;
  }

  .nav-dropdown-toggle {
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;
  }

  .menu-button {
    background-image: linear-gradient(90deg, #e0ba66, #fff9bc);
    color: #000;
    border-radius: 5px;
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: #121212;
  }

  .nav-link {
    font-size: 18px;
  }

  .header-block {
    border-bottom-style: none;
  }

  .nav-menu-list-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-wrapper {
    background-color: #0000;
    background-image: linear-gradient(
      0deg,
      var(--color--primary),
      var(--color--secondary)
    );
  }

  .nav-dropdown-list {
    padding-top: 10px;
    position: static;
  }

  .mobile-brand {
    margin-bottom: 20px;
    display: block;
  }

  .header-button-wrapper {
    display: none;
  }
  .sliderBtn {
    display: block;
  }

  .navbar-brand {
    width: auto;
  }

  .footer-widget-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .footer-middle-item {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .footer-widget-title {
    font-size: 20px;
  }

  .footer-widget {
    flex: 0 auto;
  }

  .section-gap-top-100 {
    padding-top: var(--section-gap--60);
  }

  .group-div {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .hero-title {
    width: 720px;
  }

  .hero-group-wrapper.negative-space {
    margin-top: 0;
  }

  .hero-primary-group-block {
    min-width: 370px;
  }

  .funfact-wrapper {
    justify-content: center;
  }

  .funfact-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .funfact-separator-block {
    display: none;
  }

  .counter-title {
    font-size: 14px;
  }

  .hero-additional-group-block {
    flex: 1;
    align-self: flex-end;
  }

  .service-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .section-gap-top {
    padding-top: var(--section-gap--80);
  }

  .about-main-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .about-primary-block {
    margin-top: -70px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-primary-title {
    font-size: 22px;
  }

  .about-secondary-wrapper {
    margin-top: 0;
  }

  .team-collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .blog-content {
    padding: 20px 20px 30px;
  }

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

  .section-gap-y-axis {
    padding-top: var(--section-gap--80);
    padding-bottom: var(--section-gap--80);
  }

  .breadcrumb-wrapper {
    padding-top: 215px;
    padding-bottom: 80px;
  }

  .breadcrumb-inner-title {
    font-size: 46px;
  }

  .breadcrumb-title-block {
    max-width: 570px;
    margin-bottom: 30px;
  }

  .hero-title-two {
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
  }

  .section-title-wrapper-two {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    text-align: center;
    grid-template-columns: 1.6fr;
  }

  .hero-title-span-image {
    background-position: 126px;
    margin-top: 15px;
    margin-bottom: 5px;
    padding-top: 5px;
  }

  .hero-summary-two {
    max-width: 500px;
    margin-bottom: 25px;
  }

  .hero-summary-with-button {
    flex-flow: column;
    align-items: center;
    display: flex;
  }

  .about-page-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .about-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .our-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 15px;
  }

  .our-list-icon {
    width: 30px;
    height: 30px;
    margin-top: 3px;
  }

  .our-list-title {
    font-size: 22px;
  }

  .section-title-two.for-video {
    max-width: 300px;
  }

  .about-common-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .our-list-icon-block {
    padding: 5px;
  }

  .our-video-wrapper {
    max-width: 720px;
  }

  .section-gap-bottom {
    padding-bottom: var(--section-gap--80);
  }

  .service-detail-main-wrapper {
    grid-template-columns: 4fr;
  }

  .faq-heading-block {
    white-space: normal;
    font-size: 18px;
  }

  .service-workflow-wrapper {
    margin-top: 25px;
    margin-bottom: 30px;
  }

  .team-detail-name {
    margin-bottom: 5px;
    font-size: 30px;
  }

  .secondary-team-detail-wrapper {
    grid-template-columns: 1.15fr 1fr;
  }

  .team-detail-image-block {
    display: flex;
  }

  .team-experience-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .team-info-detail strong {
    min-width: 150px;
  }

  .team-detail-content {
    padding: 25px 20px;
  }

  .team-detail-image {
    object-fit: cover;
  }

  .hero-additional-group-block-two {
    flex: 1;
    align-self: flex-end;
  }

  .hero-additional-group-block-two.negative-space {
    margin-top: -80px;
  }

  .hero-group-wrapper-two {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-secondary-highlight-two {
    width: 313px;
  }

  .service-secondary-block {
    max-width: 170px;
    top: 20px;
    right: 40px;
  }

  .license-single-inner-block {
    grid-template-columns: 0.75fr 1fr;
  }

  .wcu-content {
    max-width: 370px;
  }

  .wcu-icon-link-block {
    width: 60px;
    height: 60px;
  }

  .wcu-image-block {
    right: 130px;
  }

  .offcanvas-header-button-wrapper {
    padding-top: 35px;
    display: block;
  }

  .landing-page-footer-brand-wrapper,
  .landing-page-footer-lower-container {
    margin-top: 40px;
  }

  .landing-page-promotional-footer-shape-one {
    width: 350px;
    height: 350px;
    left: -60px;
  }

  .landing-page-request-figma-shape-four {
    width: 300px;
    height: 300px;
  }

  .landing-page-promotional-video-shape-one {
    background-color: #bb2cff;
    width: 350px;
    height: 350px;
    bottom: -200px;
    left: -60px;
  }

  .landing-page-template-showcase-tab-menu {
    margin-bottom: 40px;
  }

  .landing-page-hero-title {
    font-size: 38px;
  }

  .landing-page-hero-image-element {
    bottom: 45px;
  }

  .landing-page-header-button.tablet-hide {
    display: none;
  }

  .landing-page-core-features-shape-three {
    left: -25px;
  }

  .landing-page-button-hover-block.landing-page-gradient {
    background-image: linear-gradient(145deg, #ec9df9, #6a10e9 36%);
  }

  .landing-page-featured-section-container {
    grid-template-columns: 1fr 1fr;
  }

  .landing-page-request-figma-shape-three {
    width: 250px;
    height: 250px;
  }

  .landing-page-nav-menu-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-page-hero-overlay {
    background-position:
      0 0,
      0 0;
  }

  .landing-page-footer-blurry-block-two {
    width: 300px;
    height: 300px;
    top: 100px;
    right: -60px;
  }

  .landing-page-hamburger-menu.w--open {
    background-color: #0000;
  }

  .landing-page-footer-title {
    font-size: 38px;
  }

  .landing-page-template-name {
    font-size: 200px;
  }

  .landing-page-section-heading {
    font-size: 30px;
  }

  .landing-page-promotional-video-shape-two {
    filter: blur(160px);
    width: 290px;
    height: 290px;
    bottom: -200px;
    right: -60px;
  }

  .landing-page-feature-variation-text {
    font-size: 18px;
  }

  .landing-page-container-default {
    max-width: 740px;
  }

  .landing-page-hero-except {
    font-size: 18px;
  }

  .landing-page-copyright-content-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .landing-page-footer-except {
    font-size: 18px;
  }

  .landing-page-cta-content-wrapper {
    max-width: 400px;
  }

  .landing-page-template-features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .landing-page-nav-list-wrapper {
    background-color: #0d121c;
    width: 250px;
    min-height: 100vh;
    padding: 24px;
    position: fixed;
    top: 0;
    left: 0;
  }

  .landing-page-template-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-page-request-figma-file-title-block {
    max-width: 630px;
  }

  .landing-page-promotional-video-marquee-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-right: 20px;
  }

  .landing-page-blurry-block-two {
    filter: blur(200px);
    width: 400px;
    height: 400px;
    top: 160px;
    right: 40px;
  }

  .landing-page-blurry-block-one {
    filter: blur(180px);
    width: 350px;
    height: 350px;
    top: 200px;
    left: 40px;
  }

  .landing-page-padding-bottom-120px {
    padding-bottom: 80px;
  }

  .landing-page-template-name-wrapper {
    top: -120px;
  }

  .landing-page-request-figma-shape-one {
    width: 300px;
    height: 300px;
    left: 0;
  }

  .landing-page-cta-marquee {
    max-width: 350px;
    top: -120px;
    right: -80px;
  }

  .landing-page-nav-menu-wrapper {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .landing-page-hero-section.landing-page-hero-bg-image {
    background-position: 100% 0;
  }

  .landing-page-core-features-shape-one {
    width: 200px;
    height: 200px;
  }

  .landing-page-hero-padding-top {
    padding-top: 160px;
  }

  .landing-page-core-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-page-cta-heading {
    font-size: 30px;
  }

  .landing-page-request-figma-shape-two {
    width: 270px;
    height: 270px;
  }

  .landing-page-promotioanl-video-section.landing-page-promotional-video-bg {
    background-position: 0 0;
    background-size: auto;
  }

  .landing-page-padding-top-120px {
    padding-top: 80px;
  }

  .landing-page-promotional-video-marquee-text {
    font-size: 38px;
  }

  .landing-page-core-features-shape-five {
    right: -25px;
  }

  .landing-page-request-figma-file-side-image.right {
    width: 22%;
  }

  .landing-page-request-figma-file-side-image.left-image {
    width: 20%;
  }

  .landing-page-footer.landing-page-footer-bg-image {
    background-position: 0 0;
  }

  .landing-page-footer-copyright-text {
    text-align: center;
  }

  .landing-page-nav-list-item.show-in-tablet {
    display: block;
  }

  .landing-page-nav-list-item.show-in-tablet.nav-brand-logo {
    margin-bottom: 20px;
  }

  .contact-main-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-list-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 25px;
  }

  .our-global-image {
    width: 100%;
  }

  .blog-detail-content.gap-top {
    padding-left: 50px;
    padding-right: 50px;
  }

  .blog-detail-content.gap-top blockquote {
    margin-bottom: 45px;
    padding-left: 55px;
    padding-right: 55px;
  }

  .blog-author-wrapper {
    width: calc(100% - 120px);
  }

  .project-info-wrapper.gap-top {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 30px;
  }

  .project-info-span {
    font-size: 20px;
  }

  .primary-section-title {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .intro {
    margin: 0 auto 50px auto;
  }
  .client-segments .grid-container {
    margin-top: 20px;
  }

  .utility-image {
    width: 100%;
  }
  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  .style-guide-header {
    z-index: 9;
    min-width: 150px;
    display: none;
  }

  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .button-default {
    min-width: auto;
    height: 55px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
  }

  .style-guide-body {
    width: 100%;
  }

  .single-items-title-block {
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .section-title.for-team,
  .section-title.for-blog {
    max-width: 350px;
  }

  .section-title.for-testimonial {
    margin-bottom: 10px;
  }

  .section-title.for-service-two {
    margin-bottom: 30px;
  }

  .style-guide-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .side-panel-link {
    font-size: 16px;
    line-height: 1;
  }

  .side-panel-link.w--current {
    padding-top: 20px;
    padding-bottom: 25px;
  }

  .inner-title {
    font-size: 20px;
  }

  .section-title-wrapper {
    flex-flow: column;
    display: flex;
  }

  .secondary-container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-summary.for-blog,
  .section-summary.for-video,
  .section-summary.for-integration,
  .section-summary.for-testimonial {
    max-width: 100%;
  }

  .change-log-text {
    font-size: 22px;
  }

  .navbar-container {
    margin-top: 25px;
  }

  .nav-dropdown {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .nav-menu-list-wrapper {
    border-radius: 20px;
    flex-direction: column;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .social-link-block {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
  }

  .social-link-block.vertical-direction {
    flex-flow: row;
  }

  .social-link-icon {
    width: 40px;
    height: 40px;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-bottom-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .footer-widget-title {
    margin-bottom: 20px;
  }

  .footer-widget.for-contact,
  .footer-widget.for-quicklink,
  .footer-widget.for-cms,
  .footer-widget.for-utitlity {
    max-width: 100%;
  }

  .section-gap-top-100 {
    padding-top: var(--section-gap--50);
  }

  .newsletter-title {
    font-size: 20px;
  }

  .hero-wrapper {
    padding-top: 95px;
  }

  .hero-title {
    width: 100%;
    margin-bottom: 15px;
    font-size: 35px;
  }

  .hero-summary {
    margin-bottom: 20px;
  }

  .hero-group-wrapper {
    flex-flow: column;
  }

  .hero-group-wrapper.negative-space {
    align-items: center;
  }

  .hero-primary-group-block {
    text-align: center;
  }

  .hero-primary-title {
    margin-top: 25px;
    margin-bottom: 30px;
  }

  .hero-secondary-highlight {
    height: 70px;
  }

  .funfact-block {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .funfact-single-block {
    justify-content: center;
    align-items: center;
  }

  .hero-additional-group-block {
    align-self: center;
  }

  .hero-highlight-block {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .service-collection-list {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .service-block.style-two {
    padding: 30px;
  }

  .service-block.style-one {
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }

  .gap-top {
    margin-top: 30px;
  }

  .service-summary {
    max-width: 400px;
  }

  .section-gap-top {
    padding-top: var(--section-gap--60);
  }

  .about-main-wrapper {
    grid-template-columns: 1fr;
  }

  .project-collection-list {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .team-collection-list {
    grid-template-columns: 1fr;
  }

  .team-name {
    font-size: 24px;
  }

  .blog-collection-list {
    grid-template-columns: 1fr;
  }

  .section-gap-y-axis {
    padding-top: var(--section-gap--60);
    padding-bottom: var(--section-gap--60);
  }

  .breadcrumb-wrapper {
    padding-top: 195px;
    padding-bottom: 60px;
  }

  .breadcrumb-title-block,
  .breadcrumb-title-block.different-maxwidth {
    max-width: 100%;
  }

  .section-title-wrapper-two {
    grid-row-gap: 10px;
    flex-flow: wrap;
  }

  .hero-title-span-image {
    background-position: 105px;
  }

  .about-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-two.for-video {
    max-width: 400px;
    margin-bottom: 15px;
  }

  .about-common-wrapper {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    grid-template-columns: 1fr;
  }

  .our-video-wrapper {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .video-lightbox-block {
    padding: 13px 12px;
  }

  .video-lightbox-wrapper {
    bottom: 50px;
  }

  .our-video-image-block {
    min-height: 450px;
  }

  .partner-wrapper,
  .partner-wrapper-inner,
  .partner-block {
    grid-column-gap: 54px;
    grid-row-gap: 54px;
  }

  .section-gap-bottom {
    padding-bottom: var(--section-gap--60);
  }

  .service-primary-detail-content figure {
    margin-bottom: 35px;
  }

  .single-field-block.input-gap-left {
    margin-left: 0;
  }

  .service-sidebar-widget-title,
  .service-reach-out-widget-span.for-email {
    margin-bottom: 25px;
  }

  .service-detail-main-wrapper {
    grid-template-columns: 4fr;
  }

  .service-workflow-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .secondary-team-detail-wrapper {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    grid-template-columns: 1.15fr;
  }

  .team-experience-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .primary-team-detail-wrapper {
    grid-template-columns: 1fr;
  }

  .team-form-section-title {
    font-size: 34px;
  }

  .group-input-feld-block {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    flex-flow: wrap;
  }

  .contact-map {
    height: 450px;
  }

  .hero-additional-title {
    font-size: 22px;
  }

  .hero-additional-group-block-two {
    align-self: flex-start;
  }

  .hero-additional-group-block-two.negative-space {
    margin-top: -40px;
  }

  .hero-group-wrapper-two {
    flex-flow: column;
  }

  .service-primary-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .service-secondary-block {
    top: 0;
    right: 40px;
  }

  .integration-wrapper {
    grid-template-columns: 1fr;
  }

  .gap-bottom {
    margin-bottom: 30px;
  }

  .gap-y-axis {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .license-block.gap-top {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .license-single-inner-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .wcu-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    flex-flow: column;
  }

  .wcu-icon-link-block {
    transition:
      border-width 0.3s,
      border-color 0.3s,
      background-color 0.3s;
  }

  .wcu-icon-link-block:hover {
    background-image: linear-gradient(
      0deg,
      var(--color--primary),
      var(--color--secondary)
    );
    border-style: none;
    border-color: #0000;
  }

  .wcu-image-block {
    order: -1;
    position: static;
  }

  .button-text-block {
    height: 24px;
  }

  .button-inner-stuff {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .landing-page-request-figma-file-button-wrapper {
    margin-top: 40px;
  }

  .landing-page-footer-brand-wrapper {
    flex-flow: wrap;
  }

  .landing-page-footer-logo {
    max-width: 220px;
  }

  .landing-page-promotional-video-shape-one {
    width: 300px;
    height: 300px;
    left: -20px;
  }

  .landing-page-template-showcase-tab-menu {
    padding: 12px;
  }

  .landing-page-hero-title {
    font-size: 36px;
  }

  .landing-page-hero-image-element {
    width: 55%;
    position: absolute;
    left: 20px;
    right: auto;
  }

  .landing-page-header-button {
    padding: 20px 32px;
  }

  .landing-page-featured-section-container {
    grid-template-columns: 1fr;
    place-items: start center;
  }

  .landing-page-hero-image-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .landing-page-footer-title {
    font-size: 36px;
  }

  .landing-page-promotional-video-lightbox {
    width: 70px;
    height: 70px;
  }

  .landing-page-template-name {
    font-size: 120px;
  }

  .landing-page-footer-link-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .landing-page-hero-image {
    margin-top: -10%;
  }

  .landing-page-section-heading {
    font-size: 26px;
  }

  .landing-page-promotional-video-shape-two {
    width: 260px;
    height: 260px;
    right: -20px;
  }

  .landing-page-cta-content-wrapper {
    max-width: none;
    margin-bottom: 30px;
  }

  .landing-page-request-figma-file-main-image {
    width: 95%;
  }

  .laning-page-template-feature-variation-grid {
    grid-template-columns: 1fr;
  }

  .landing-page-template-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-page-cta-wrapper {
    padding-top: 40px;
    padding-bottom: 0;
    padding-right: 40px;
  }

  .landing-page-template-showcase-grid {
    grid-template-columns: 1fr;
    place-items: start center;
  }

  .landing-page-request-figma-file-title-block {
    margin-bottom: 40px;
  }

  .landing-page-blurry-block-two {
    filter: blur(130px);
    width: 300px;
    height: 300px;
  }

  .landing-page-template-feature-text {
    font-size: 20px;
  }

  .landing-page-blurry-block-one {
    filter: blur(130px);
    width: 250px;
    height: 250px;
  }

  .landing-page-padding-bottom-120px {
    padding-bottom: 60px;
  }

  .landing-page-template-name-wrapper {
    top: -80px;
  }

  .landing-page-template-showcase-tab-link {
    padding: 12px 20px;
  }

  .landing-page-cta-marquee {
    max-width: none;
    max-height: 450px;
    position: static;
    transform: none;
  }

  .landing-page-core-features-shape-one {
    width: 160px;
    height: 160px;
  }

  .landing-page-hero-padding-top {
    padding-top: 120px;
  }

  .landing-page-section-heading-wrapper {
    margin-bottom: 40px;
  }

  .landing-page-header-logo {
    max-width: 220px;
  }

  .landing-request-figma-file-section.landing-page-request-figma-bg {
    background-image:
      url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66ab071850b3ed1992c56bbd_bg-image.svg"),
      linear-gradient(#fff 50%, #0d121c 50%);
    background-position:
      50% 100%,
      0 0;
    background-repeat: no-repeat, repeat;
    background-size: auto, auto;
  }

  .landing-page-core-features-grid {
    grid-template-columns: 1fr;
    place-items: start center;
  }

  .landing-page-cta-image-container.right {
    width: auto;
    position: static;
  }

  .landing-page-cta-image-container.left {
    width: auto;
  }

  .landing-page-padding-top-120px {
    padding-top: 60px;
  }

  .landing-page-promotional-video-marquee-text {
    font-size: 36px;
  }

  .landing-page-request-figma-file-side-image.right {
    top: 60px;
    right: -10px;
  }

  .landing-page-request-figma-file-side-image.left-image {
    top: 60px;
    left: -10px;
  }

  .landing-page-mobile-device-image {
    position: static;
  }

  .landing-page-featured-section-item {
    max-width: 300px;
  }

  .footer-bg {
    background-color: var(--swatch--white-08);
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
  }

  .blog-detail-content.gap-top {
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-detail-content.gap-top p {
    margin-bottom: 35px;
  }

  .blog-detail-content.gap-top ul {
    margin-bottom: 30px;
  }

  .blog-detail-content.gap-top figure {
    margin-bottom: 25px;
  }

  .blog-detail-content.gap-top blockquote {
    margin-bottom: 35px;
    padding: 20px 35px;
    font-size: 24px;
  }

  .blog-author-wrapper {
    flex-flow: wrap;
  }

  .gap-y-axis-30 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .project-info-wrapper.gap-top {
    grid-template-columns: 1fr 1fr;
  }

  .project-info-block {
    text-align: left;
  }

  .project-overview-group-image {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 15px;
  }

  .project-benefit ul {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .project-benefit p {
    margin-bottom: 20px;
  }

  .landing-button {
    padding: 20px 32px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
    line-height: 1.4;
  }

  h2 {
    font-size: 24px !important;
    text-align: left;
  }

  h3 {
    font-size: 22px;
  }
  .slide h2 {
    font-size: 18px !important;
  }

  .style-guide-header {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .button-default {
    height: 45px;
    font-size: 14px;
    line-height: 1.4;
  }

  .section-title.for-service,
  .section-title.for-about,
  .section-title.for-team,
  .section-title.for-blog,
  .section-title.for-service-two,
  .section-title.for-integration,
  .section-summary,
  .section-summary.for-about,
  .section-summary.for-team,
  .section-summary.for-blog {
    max-width: 100%;
  }

  .change-log-center {
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .change-log-text {
    line-height: 1.4;
  }

  .navbar-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-menu-wrapper {
    width: calc(100% - 15px);
  }

  .nav-logo {
    width: 120px;
  }

  .nav-menu-list-wrapper {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-widget-list-item-link {
    line-height: 1.4;
  }

  .footer-widget-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .footer-copyright {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-middle-item {
    flex-flow: wrap;
    display: flex;
  }

  .section-gap-top-100 {
    padding-top: var(--section-gap--40);
  }

  .separator-div.for-service-two {
    display: none;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-primary-title {
    text-align: center;
  }

  .funfact-wrapper {
    flex-wrap: wrap;
  }

  .funfact-block {
    justify-content: center;
    width: 60%;
  }

  .funfact-separator-block {
    display: none;
  }

  .funfact-single-block {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    min-width: 170px;
    display: flex;
  }

  .funfact-single-block.for-hero-primary {
    min-width: auto;
  }

  .counter-number {
    font-size: 30px;
  }

  .counter-number-wrapper {
    height: 39px;
  }

  .counter-number-wrapper.for-primary-hero-two {
    height: 37px;
  }

  .counter-title {
    font-size: 18px;
  }

  .counter-title.for-primary-hero-two {
    font-size: 14px;
  }

  .service-collection-list.single-column.negative-gap {
    margin-bottom: -115px;
  }

  .service-block.style-two {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding: 0;
  }

  .service-block.style-one {
    width: auto;
  }

  .service-icon-link-block {
    min-width: auto;
    max-width: 90px;
  }

  .section-gap-top {
    padding-top: var(--section-gap--50);
  }

  .about-tabs-menu {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .about-tab-link {
    font-size: 22px;
  }

  .about-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .about-list-item {
    font-size: 22px;
  }

  .project-content {
    padding: 20px 25px;
  }

  .project-summary {
    margin-bottom: 15px;
  }

  .team-image {
    min-height: auto;
  }

  .team-name {
    font-size: 22px;
  }

  .blog-title {
    font-size: 21px;
  }

  .section-gap-y-axis {
    padding-top: var(--section-gap--50);
    padding-bottom: var(--section-gap--50);
  }

  .breadcrumb-wrapper {
    padding-top: 180px;
    padding-bottom: 50px;
  }

  .breadcrumb-inner-title {
    font-size: 40px;
  }

  .hero-title-two {
    max-width: 100%;
  }

  .section-title-wrapper-two {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .hero-title-span-image {
    background-position: 80px;
    background-size: 150px;
  }

  .section-title-two.for-video {
    max-width: 100%;
  }

  .video-lightbox-block {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .paly-icon {
    width: 45px;
    height: 45px;
  }

  .video-lightbox-wrapper {
    margin-top: 15px;
    bottom: 30px;
  }

  .our-video-image-block {
    min-height: 350px;
  }

  .partner-wrapper,
  .partner-wrapper-inner,
  .partner-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .section-gap-bottom {
    padding-bottom: var(--section-gap--50);
  }

  .faq-icon {
    width: 18px;
  }

  .service-sidebar-widget {
    padding: 22px;
  }

  .faq-heading {
    line-height: 1.5;
  }

  .faq-heading-block {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    white-space: normal;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
  }

  .team-experience-wrapper {
    grid-template-columns: 1fr;
  }

  .team-detail-inner-content {
    max-width: 100%;
  }

  .team-info-detail ul {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .team-info-detail strong {
    min-width: auto;
    display: block;
  }

  .contact-common-wrapper {
    padding: 30px 25px;
  }

  .team-form-section-title {
    font-size: 28px;
  }

  .hero-additional-title {
    margin-bottom: 10px;
  }

  .hero-additional-group-block-two {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: wrap;
  }

  .hero-additional-group-block-two.negative-space {
    margin-top: 0;
  }

  .hero-group-wrapper-two {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 15px;
  }

  .hero-primary-image-block-two {
    border-radius: 20px;
  }

  .hero-secondary-highlight-two {
    width: 250px;
  }

  .hero-primary-funfact-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    border-radius: 12px;
    width: calc(100% - 80px);
    max-width: 100%;
    padding: 12px 11px 12px 12px;
    bottom: 10px;
    left: 10px;
  }

  .service-primary-block {
    flex-flow: column;
  }

  .service-secondary-block {
    max-width: 100%;
    margin-bottom: 30px;
    position: static;
  }

  .service-secondary-image {
    width: 100%;
  }

  .utility-page-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial-slider-mask {
    width: calc(100% - 30px);
  }

  .single-star {
    width: 20px;
    height: 20px;
  }

  .service-bg {
    display: none;
  }

  .button-text-block {
    height: auto;
    transform: unset !important;
  }
  .button-text {
    display: none;
  }

  .landing-page-promotional-video-marquee-icon {
    width: 50px;
  }

  .landing-page-promotional-footer-shape-one {
    top: -60px;
  }

  .landing-page-footer-logo {
    max-width: 170px;
  }

  .landing-page-request-figma-shape-four {
    width: 200px;
    height: 200px;
    left: -40px;
  }

  .landing-page-promotional-video-shape-one {
    width: 200px;
    height: 200px;
    bottom: -100px;
  }

  .landing-page-template-showcase-tab-menu {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    border-radius: 24px;
    flex-flow: wrap;
    width: 100%;
    max-width: 340px;
  }

  .landing-page-hero-title {
    font-size: 28px;
  }

  .landing-page-hero-image-element {
    bottom: 25px;
  }

  .landing-page-header-button {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .landing-page-core-features-shape-three {
    left: 20px;
  }

  .landing-page-template-feature-variation-item.footer-styles {
    padding: 20px 15px;
  }

  .landing-page-request-figma-shape-three {
    width: 200px;
    height: 200px;
  }

  .landing-page-footer-title {
    font-size: 28px;
  }

  .landing-page-template-name {
    font-size: 80px;
  }

  .landing-page-footer-link-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .landing-page-hero-image {
    margin-top: 0%;
  }

  .landing-page-promotional-video-shape-two {
    width: 160px;
    height: 160px;
    bottom: -100px;
  }

  .landing-page-template-features-grid {
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .landing-page-cta-wrapper {
    max-height: none;
    padding: 30px 20px;
  }

  .landing-page-promotional-video-image {
    object-fit: cover;
    min-height: 250px;
  }

  .landing-page-blurry-block-two {
    width: 250px;
    height: 250px;
    top: 100px;
    right: 20px;
  }

  .landing-page-blurry-block-one {
    width: 200px;
    height: 200px;
    left: 20px;
  }

  .landing-page-template-name-wrapper {
    top: -60px;
  }

  .landing-page-template-showcase-tab-link {
    padding-left: 16px;
    padding-right: 16px;
  }

  .landing-page-request-figma-shape-one {
    width: 200px;
    height: 200px;
    top: 0;
  }

  .landing-page-cta-marquee {
    flex-direction: column;
    grid-template-columns: 1fr;
    place-items: center;
    max-height: none;
  }

  .landing-page-promotional-video-banner-wrapper {
    max-height: 98px;
  }

  .landing-page-header-logo {
    max-width: 170px;
  }

  .landing-request-figma-file-section.landing-page-request-figma-bg {
    background-image:
      url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/66ab071850b3ed1992c56bbd_bg-image.svg"),
      linear-gradient(#fff 60%, #0d121c 60%);
    background-position:
      50% 100%,
      0 0;
    background-repeat: no-repeat, repeat;
    background-size: auto, auto;
  }

  .landing-page-request-figma-shape-two {
    width: 200px;
    height: 200px;
    top: 0;
  }

  .landing-page-cta-image-container {
    width: 100%;
  }

  .landing-page-cta-image-container.right {
    display: none;
    position: static;
  }

  .landing-page-promotional-video-marquee-text {
    font-size: 32px;
  }

  .landing-page-core-features-shape-five {
    left: 20px;
  }

  .landing-page-nav-list-item {
    text-align: left;
    width: 100%;
  }

  .landing-page-nav-list-item.show-in-tablet {
    justify-content: flex-start;
    width: 100%;
    display: flex;
  }

  .landing-page-core-features-shape-four {
    left: 20px;
  }

  .blog-detail-content.gap-top {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-detail-content.gap-top p {
    margin-bottom: 25px;
  }

  .blog-detail-content.gap-top ul {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-left: 30px;
  }

  .blog-detail-content.gap-top li {
    font-size: 18px;
  }

  .blog-detail-content.gap-top blockquote {
    margin-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 20px;
  }

  .blog-author-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    width: calc(100% - 30px);
    padding: 16px;
  }

  .project-info-wrapper.gap-top {
    grid-template-columns: 1fr;
  }

  .project-info-block {
    text-align: center;
  }

  .project-overview-group-image {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr;
  }

  .primary-section-title,
  .secondary-section-title {
    font-size: 22px;
  }

  .landing-button {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

#w-node-_8447a406-03fa-8d7f-6413-d35391f1c417-3b37d403,
#w-node-_386263b9-a797-f4d3-084a-443fce482db1-3b37d403,
#w-node-_29d01fe2-f8de-e4d8-6f2d-787a31952acc-31952aaf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0910861c-13f4-81de-75b1-bebea4a26f57-de8bc83e {
  align-self: center;
}

#w-node-_262525f8-fee7-d036-4e5c-e0405e74aea0-8c2fe0e5,
#w-node-_53f5b48c-2595-05f1-a059-259935cbab08-78165b91,
#w-node-_07c3f28b-4ea5-45ce-a54f-9fe2672f691e-78165b91 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-be862b42-6d58-79ed-4389-65e336319b08-78165b91 {
  align-self: center;
}

@media screen and (min-width: 1280px) {
  #w-node-_8447a406-03fa-8d7f-6413-d35391f1c3d6-3b37d403 {
    place-self: center;
  }

  #w-node-_0910861c-13f4-81de-75b1-bebea4a26f57-de8bc83e {
    align-self: auto;
  }

  #w-node-_8aa1961d-6666-4b53-5682-9e27a9077d8b-de8bc83e {
    align-self: center;
  }

  #w-node-be862b42-6d58-79ed-4389-65e336319b08-78165b91 {
    align-self: auto;
  }

  #w-node-ebaef498-618f-013d-15c7-be406cc5c9ee-78165b91 {
    align-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_0a48fbb1-d6e2-efa4-2e45-4dcdf314052c-8c2fe0e5 {
    order: -9999;
  }
}

@font-face {
  font-family: "Questrial";
  src: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/668bc0bfa1e4a9f7ea08679c_Questrial-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/668bc59a4bb6eb64137d980a_Mulish-Light.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/668bc5ad4f6ada40f6a141f8_Mulish-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/668bc5c1b05de15434d8a6cd_Mulish-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/668bc5d389849b9de6776984_Mulish-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  src: url("https://cdn.prod.website-files.com/668b7e882209cc713b37d3fa/668bc5f16221b58314677670_Mulish-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
