html, body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: clip; /* override style.css overflow-x:hidden — 'clip' prevents horizontal scroll without creating a scroll container, so position:sticky works */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}


:root {
  /* Fonts */
  --zalando-sans: "Zalando Sans", sans-serif;
  --zalando-light: 300;
  --zalando-regular: 400;
  --zalando-medium: 500;
  --zalando-semi-bold: 600;
  --zalando-bold: 700;

  /* Coloring */
  /* 1. Primary color palete */
  --primary-color-900: #6B2200;
  --primary-color-800: #8C2C00;
  --primary-color-700: #B53900;
  --primary-color-600: #E84900;
  --primary-color-500: #ff5000;
  --primary-color-400: #FF6E2B;
  --primary-color-300: #FF9A6B;
  --primary-color-200: #FFB796;
  --primary-color-100: #FFEEE6;

  /* 2. Secondary color palete */
  --secondary-color-900: #6B340A;
  --secondary-color-800: #8C440D;
  --secondary-color-700: #B55810;
  --secondary-color-600: #E87115;
  --secondary-color-500: #FF7C17;
  --secondary-color-400: #FF9645;
  --secondary-color-300: #FFA764;
  --secondary-color-200: #FFD6B7;
  --secondary-color-100: #FFF2E8;

  /* 3. Natural color palete */
  --natural-color-900: #181818;
  --natural-color-800: #282828;
  --natural-color-700: #333333;
  --natural-color-600: #383838;
  --natural-color-500: #606060;
  --natural-color-400: hsl(0, 0%, 48%);
  --natural-color-300: #A3A3A3;
  --natural-color-200: #C1C1C1;
  --natural-color-100: #EBEBEB;

  /* Default color*/
  --primary-color: var(--primary-color-500);
  --secondary-color: var(--secondary-color-500);
  --natural-color: var(--natural-color-500);
  --heading-text-color: var(--natural-color-700);
  --subtitle-text-color: var(--natural-color-600);
  --paragraph-text-color: var(--natural-color-500);

  /* Font Size */
  --heading-1: 3rem;
  --heading-2: 2rem;
  --heading-3: 1.5rem;
  --heading-4: 1.25rem;
  --heading-5: 1.125rem;
  --heading-6: 1rem;
  --paragraph-size: 1rem;
  --regular-font-size: 1rem;
  --small-font-size: 0.85rem;

  /* Brand Pixel */
  --mcp-radius: 0.6rem 0.6rem 0rem 0.6rem;
	--button-radius: 0.6rem;

  --base-navbar-bg: #fff;
  --base-color-one: #FF6016;
  --base-color-one-dark: #de5413;
  --base-color-two: #00AA5B;
  --secondary-color-bg: #FFE4D3;
  --navbar-black: #000;
  --font-color-white: #fff;
  --font-color-black: #232323;
  --base-font: "Geist", Arial, sans-serif;
  --base-font-header: "Geist", Arial, sans-serif;
  --banner-bg-linear: linear-gradient(270deg, #FFE6D7 0%, #fdf7f3 50%, #FFE4D3 100%);
  --base-footer-bg: #fff;
  --base-breadcrumb-bg: #fff;
  --error-color: #CC0000;
  --base-color-second: #FFE6D7;

  --slider-thumb-color: #FF6016;
  --slider-progress-color: #ff6016a8;
  --slider-bar-color: #DBDCE0;
  --slider-bar-shadow: inset 0px 3px 10px -10px #000000;
  --slider-thumb-size: 34px;
  --slider-thumb-top-margin: -13px;
  --slider-track-height: 10px;
  --slider-border-radius: 8px;
}

/* Animation */
/* 1. Define the pulse animation using @keyframes */
@keyframes pulse {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.1); /* Scale up by 10% */
    }
    100% {
        transform: scale(1); /* Return to original size */
    }
}

@keyframes border-pulse {
  0% {
    /* Initial state: shadow is directly under the border */
    box-shadow: 0 0 0 0 rgba(255, 80, 0, 0.7);
  }
  70% {
    /* Middle: shadow expands outward and fades */
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    /* End: shadow disappears */
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

@keyframes border-pulse-dark {
  0% {
    /* Initial state: shadow is directly under the border */
    box-shadow: 0 0 0 0 rgba(27, 27, 27, 0.7);
  }
  70% {
    /* Middle: shadow expands outward and fades */
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    /* End: shadow disappears */
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

*::-webkit-scrollbar-track {
    width: 4px;
    -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.05);
    background-color: var(--natural-color-100);
    opacity: 0.2;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 3px;
    background-color: var(--natural-color-100);
    border-radius: 100px;
    opacity: 0.2;
}

*::-webkit-scrollbar-thumb {
    width: 4px;
    height: 3px;
    background-color: var(--natural-color-200);
    opacity: 0.65;
    border-radius: 100px;
}

html, body {
  background-color: #fff;
  font-family: var(--zalando-sans);
  font-display: auto;
  font-weight: var(--zalando-regular);
  line-height: 1.5;
  color: var(--paragraph-text-color);
  font-size: var(--paragraph-size);
}

body.overlay::after {
  content: '';
  background: rgba(0,0,0, 0.4);
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}

img {
  image-rendering: auto;
}

.primary-banner-background {
  background:
    radial-gradient(900px 320px at 50% 0%, rgba(255, 96, 22, 0.12), rgba(255, 96, 22, 0) 60%),
    linear-gradient(180deg, var(--primary-color-500) 0%, var(--primary-color-600) 45%, var(--primary-color-700) 100%);
}

.primary-background {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}
.dark-background {
  background: var(--natural-color-800);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--zalando-sans);
  font-weight: var(--zalando-bold);
  font-variation-settings: "wdth" 75; 
  font-display: auto;
  line-height: 1.2;
  letter-spacing: 0px;
	color: var(--heading-text-color);
}

p {
	font-family: var(--zalando-regular);
	line-height: 1.6;
	/* letter-spacing: 1; */
	columns: var(--paragraph-text-color);
}

.h1, h1 {
  font-size: var(--heading-1);
}
.h2, h2 {
  font-size: var(--heading-2);
}
.h3, h3 {
  font-size: var(--heading-3);
}
.h4, h4 {
  font-size: var(--heading-4);
}
.h5, h5 {
  font-size: var(--heading-5);
}
.h6, h6 {
  font-size: var(--heading-6);
}

/* Form Input */
.form-control {
  height: 40px;
  border-radius: var(--mcp-radius);
  border-color: var(--natural-color-400);
  color: var(--natural-color-400);
}
.form-control:focus {
  border: 1px solid;
  border-color: var(--primary-color);
  box-shadow: none;
}
.custom-select {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(122, 122, 122,1)'%3E%3Cpath d='M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z'%3E%3C/path%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px;
  background-size: 1.2rem;
}

input[type='range'] {
  width: 100%;
}


input[type='range']:focus {
  outline: none;
}

input[type='range'],
input[type='range']::-webkit-slider-runnable-track,
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  transition: background-color ease 100ms;
}

input[type='range']::-webkit-slider-runnable-track {
  height: var(--slider-track-height);
  background: linear-gradient(to right, var(--slider-progress-color), var(--slider-progress-color)), var(--slider-bar-color);
  background-size: var(--background-size, 0%) 100%;
  background-repeat: no-repeat;
  border-radius: var(--slider-border-radius);
  box-shadow: var(--slider-bar-shadow);
}

input[type='range']::-webkit-slider-thumb {
  width: var(--slider-thumb-size);
  height: var(--slider-thumb-size);
  cursor: ew-resize;
  background-color: var(--slider-thumb-color);
  background-image: url("../img/icon/plan-white.png");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  margin-top: var(--slider-thumb-top-margin);
  border: 0;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.1s ease-in-out;
}

/* FF */
input[type="range"]::-moz-range-progress {
  height: var(--slider-track-height);
  background-color: var(--slider-progress-color);
  border-radius: var(--slider-border-radius);
  box-shadow: var(--slider-bar-shadow);
}

input[type="range"]::-moz-range-track {
  height: var(--slider-track-height);
  background-color: var(--slider-bar-color);
  border-radius: var(--slider-border-radius);
  box-shadow: var(--slider-bar-shadow);
}

input[type="range"]::-moz-range-thumb {
  width: var(--slider-thumb-size);
  height: var(--slider-thumb-size);
  cursor: ew-resize;
  background-color: var(--slider-thumb-color);
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%20.5v7L12%204zM0%204l4%203.5v-7z%22%20fill%3D%22%23FFFFFF%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  border: 0;
  margin-top: -12px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

/* Button */
.infinite-pulse-border {
  animation: border-pulse 1s infinite;
}

.btn {
  padding: .375rem .875rem;
  border-radius: var(--button-radius);
  transition: transform 0.3s ease;
  cursor: pointer !important;
	font-size: var(--small-font-size);
}

.btn:hover, .hero-play-button:hover {
  animation: border-pulse 1s infinite;
}

.btn-lg {
  font-size: 1rem;
}

.btn-primary {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  border-color: transparent;
  background-color: var(--primary-color);
  color: #fff !important;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  box-shadow: none;
  color: #fff;
}

.btn-outline-primary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}

.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.btn-secondary {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  color: #fff !important;
}

.btn-secondary:hover {
  background-color: var(--secondary-color-700);
}

.btn-outline-secondary {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
}

.btn-outline-secondary:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #fff;
}

.btn-default {
  border: 1px solid var(--natural-color-800);
  background-color: var(--natural-color-800);
  color: var(--natural-color-100);
}

.btn-default:hover {
  background-color: var(--natural-color-100);
  color: var(--natural-color-800) !important;
}

.btn-outline-default {
  border: 1px solid var(--natural-color-900);
  background-color: transparent;
  color: var(--natural-color-900);
}

.btn-outline-default:hover {
  background-color: var(--natural-color-900);
  color: var(--natural-color-100) !important;
}

.btn-default:hover, 
.btn-outline-default:hover {
  animation: border-pulse-dark 1s infinite;
}

.btn-light {
  border: 1px solid var(--natural-color-100);
  background-color: var(--natural-color-100);
  color: var(--natural-color-900);
}

.btn-light:focus,
.btn-light:hover {
  background-color: var(--natural-color-900);
  color: var(--natural-color-100) !important;
}

.btn-outline-light {
  border: 1px solid var(--natural-color-100);
  background-color: transparent;
  color: var(--natural-color-100);
}

.btn-outline-light:focus,
.btn-outline-light:hover {
	box-shadow: none;
  background-color: var(--natural-color-100);
  color: var(--natural-color-900) !important;
}

.btn-light:hover, 
.btn-outline-light:hover {
  animation: border-pulse-dark 1s infinite;
}

.btn-outline-dark {
  border: 1px solid var(--natural-color-700);
  background-color: transparent;
  color: var(--natural-color-700);
}

.btn-dark:hover, 
.btn-outline-dark:hover {
  background-color: var(--natural-color-700) !important;
  color: var(--primary-color) !important;
  animation: border-pulse-dark 1s infinite;
}

/* Table */
.tableFixHead::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.tableFixHead {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.tableFixHead {
	overflow-y: unset;
	max-height: 170vh;
}

.tableFixHead .table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
	table-layout: fixed;
}

.tableFixHead .table th,
.tableFixHead .table td {
	padding: 8px;
	text-align: center;
}

.tableFixHead .table td:nth-child(1) {
	position: sticky;
	left: 0;
	z-index: 6;
  vertical-align: middle;
}

.tableFixHead .table thead tr  {
	background-color: #fff;
	position: sticky;
	top: 0;
	z-index: 9;
	text-align: left;
}
.table-bordered thead td, .table-bordered thead th {
  border: none;
}

.tableFixHead .table tbody {
	cursor: ns-resize;
}

.tableFixHead .table tbody tr:hover {
	background-color: #fafafa;
}

.table-bordered tbody td.divide {
  color: var(--natural-color-300);
  border-right: none;
  letter-spacing: 2px;
}

.table-bordered tbody td {
  border-top: none;
  border-left: none;
  border-right: none;
  border-color: var(--natural-color-100);
}

.table-bordered tbody td i {
  font-size: 20px;
  font-weight: 700;
}

.table-bordered td:first-child {
  border-right: 1px solid var(--natural-color-100);
}

.table thead .price-header {
  padding: 16px 32px 8px 32px;
  border-radius: 1.5rem 1.5rem 0rem 1.5rem;
  border: 0.75px solid var(--natural-color-200);
}

.table thead .price-header .sub-detail {
  min-height: 200px;
}

.table thead .price-header .btn {
  border-radius: 8px;
  font-size: var(--small-font-size);
}

.price-header.popular {
  background-color: var(--primary-color);
  color: #fff;
}

.price-header.popular b {
  color: #fff;
}

.price-header.popular .price {
  color: #fff;
}

.price-header.popular .price .type {
  color: var(--natural-color-100);
}

.price-header.popular h4, .price-header.popular p {
  color: #fff;
}

/* Pricing cards (mobile) */
.pricing-card-stack {
  display: none;
  margin-top: 24px;
}

.pricing-card {
  background-color: #fff;
  border: 1px solid var(--natural-color-200);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(24, 24, 24, 0.08);
}

.pricing-card.is-featured {
  border-color: var(--primary-color-300);
  box-shadow: 0 14px 30px rgba(255, 80, 0, 0.16);
}

.pricing-card-header {
  display: grid;
  gap: 10px;
}

.pricing-card-header .plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-text-color);
}

.pricing-card-header .plan-meta {
  color: var(--subtitle-text-color);
  font-size: 0.95rem;
}

.pricing-card-header .plan-meta-divider {
  margin: 0 6px;
  color: var(--natural-color-300);
}

.pricing-card-header .plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--heading-text-color);
}

.pricing-card-header .plan-price .amount {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-card-header .plan-price .type {
  font-size: 0.95rem;
  color: var(--subtitle-text-color);
}

.pricing-card-features {
  margin-top: 16px;
  border-top: 1px solid var(--natural-color-100);
  padding-top: 12px;
}

.pricing-card-features .features-title {
  font-weight: 700;
  color: var(--heading-text-color);
  margin-bottom: 10px;
}

.pricing-card-features ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card-features li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--natural-color-100);
}

.pricing-card-features li:last-child {
  border-bottom: none;
}

.pricing-card-features .feature-name {
  color: var(--heading-text-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-card-features .feature-status {
  display: inline-flex;
  align-items: center;
}

/* End Button */
.type-of-character {
  position: absolute;
  left: 5rem;
  z-index: -1;
  bottom: -18px;
  width: 28%;
}

#output-range, .output-range {
  background: var(--primary-color);
  padding: 7px 10px;
  border-radius: 10px;
  position: relative;
  bottom: 16px;
  font-size: 0.75rem;
  max-width: 70px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  opacity: 0.85;
  left: -7px;
}

.bg-dark {
  background-color: #000 !important;
}

.slider-output {
  position: relative;
  left: -7px;
}

.slider-output b {
  background: var(--primary-color);
  color: var(--font-color-white);
  border-radius: var(--mcp-radius);
  padding: 7px 10px;
}

small {
  font-size: 85%;
}

.m-auto {
  margin: auto;
}

.p-0 {
  padding: 0px;
}

#changingWord {
  color: var(--primary-color);
  /* color: #fff; */
}

p {
  line-height: 1.625;
}

.btn.bg-transparent {
  background-color: transparent !important;
}

.btn.bg-transparent:hover {
  background-color: var(--primary-color-700) !important;
}

.btn-intro {
  padding: 10px 30px;
}

body > div.banner-area.home-21 > div > div > div.col-md-6.col-lg-5.col-12 > div > div > div.banner-btn.animated.fadeInUp.mt-4 {
  display: none;
}

.alert.alert-success {
  display: initial;
  position: fixed;
  left: 0;
  padding: 20px;
  top: 8em;
}

#toast-container>div {
  top: 8em;
  border-radius: 16px;
}

#toast-container .toast.toast-success {
  background-color: var(--primary-color);
}

b, strong {
  font-weight: bold;
}

.b-base-color {
  font-weight: bold;
  color: var(--primary-color);
}

.med-font {
  font-size: 24px;
  line-height: 1.6;
}

.btn-lg-x2 {
  font-size: 24px;
}

.btn-bg-orange {
  background-color: var(--primary-color);
  color: var(--font-color-white);
  font-weight: bold;
}

.btn-bg-black {
  background-color: #000;
  color: var(--font-color-white);
  font-weight: 500;
}

.btn-bg-orange:hover {
  background-color: var(--primary-color-700);
  color: var(--font-color-white);
}

.btn-bg-black:hover {
  background-color: #fff;
  color: var(--font-color-black);
  border-color: #000;
}

.btn-outline-orange {
  background-color: #fff;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-orange:hover {
  background-color: var(--primary-color-700);
  color: var(--font-color-white);
  border-color: var(--primary-color);
}

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

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

.regular-checkbox {
	border-width: 1px;
	border-style: solid;
	border-color: #dedede;
	margin: 0px;
	border-radius: 3px;
	background-color: #fff;
	width: 17px;
	height: 17px;
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	top: 3px;
	margin-right: 5px;
}

.regular-checkbox.danger {
	border-color: #cb3b3c;
}

input[type="checkbox"]:focus {
	outline: none;
}

.regular-checkbox:checked {
	background: var(--primary-color);
	border-color: transparent;
	content: '\2714';
}

.regular-checkbox:checked:after {
	content: '\2714';
	font-size: 13px;
	position: absolute;
	top: -2px;
	left: 2px;
	color: var(--font-color-white);
	outline: none;
}

.top-bar-area {
  background-color: var(--font-color-black);
  padding: 8px;
}

/* Breadcrumb */
.breadcrumb-area {
  /* padding: 2rem 0rem; */
  background: linear-gradient(180deg, var(--primary-color-200) 20%, #fff 97%);
  border-bottom-left-radius: 0rem;
  border-bottom-right-radius: 0rem;
}

.breadcrumb-area .page-title {
  color: var(--heading-text-color);
}

.breadcrumb-area:before {
  display: none;
}

.breadcrumb-area .breadcrumb-inner {
  padding: 5rem 0rem 0rem 0rem;
  text-align: left;
}
.breadcrumb-area .breadcrumb-inner span.label {
  color: var(--heading-text-color);
  font-weight: 900;

}
.breadcrumb-area .breadcrumb-inner .title {
  color: var(--heading-text-color);
  font-size: 4rem;
  width: 80%;
  line-height: 1;
  margin: 1rem 0px;
}
.breadcrumb-area .breadcrumb-inner p {
  font-size: var(--paragraph-size);
  color: var(--heading-text-color);
  margin: 0;
}

.breadcrumb-area .breadcrumb-inner.img-wrapper {
  opacity: 0.85;
  text-align: center;
}

.breadcrumb-area .breadcrumb-inner img {
  width: 50%;
}

.breadcrumb-area .breadcrumb-inner img.invert {
  filter: invert(1) opacity(0.9);
}

/* Header variant-21 */
.header-variant-21 .logo-wrapper {
  max-width: 110px;
}

.header-variant-21 .navbar-area.nav-fixed {
  background-color: var(--natural-color-800) !important;
}

.header-variant-21 .navbar-area.nav-fixed .nav-container .navbar-collapse .navbar-nav.menu-list li a,
.header-variant-21 .navbar-area.nav-fixed .nav-container .navbar-collapse .navbar-nav.action-list li a {
  color: #fff;
}

.header-variant-21 .navbar-area.nav-fixed .nav-container .navbar-collapse .navbar-nav li {
  line-height: 75px;
}

/* Header variant-21 mobile navbar controls */
.header-variant-21 .navbar-area .navbar-toggler {
  background-color: var(--natural-color-100);
  border: 1px solid var(--primary-color-200);
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: 0 6px 18px rgba(24, 24, 24, 0.12);
}

.header-variant-21 .navbar-area .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 80, 0, 0.2);
}

.header-variant-21 .navbar-area .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(40,40,40,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar */
.header-style-03 .navbar-area.nav-absolute {
  background-color: transparent;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  line-height: 6;
}

.header-style-03 .navbar-area.nav-absolute.nav-fixed {
  line-height: 0;
}

.header-style-01.navbar-variant-01 .navbar-area.nav-style-01 {
  background-color: var(--base-navbar-bg);
  font-weight: 100;
  color: var(--font-color-black);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
  width: auto;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  line-height: unset;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.menu-list li+li {
  margin-left: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.menu-list li a {
  font-weight: var(--zalando-medium);
  padding: .5rem 1rem;
  border-radius: 0px;
  transition: .35s all ease-in-out;
  color: #202020;
}

.dark-background .navbar-area .nav-container .navbar-collapse .navbar-nav.menu-list li a {
  color: #fff;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  background-color: var(--natural-color-800);
  color: var(--primary-color);
  border-radius: var(--mcp-radius);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.menu-list li a:hover,
.navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li .login-link:hover {
  background-color: #202020;
  color: var(--primary-color);
  border-radius: var(--mcp-radius);
}

.navbar-area.nav-fixed {
  box-shadow: 0 0px 14px var(--primary-color-700);
}

.navbar-area.nav-fixed .nav-container .navbar-collapse .navbar-nav.menu-list li a:hover,
.navbar-area.nav-fixed .nav-container .navbar-collapse .navbar-nav.action-list li .login-link:hover {
  background-color: var(--primary-color-100);
}

.navbar-area.nav-fixed .nav-container .navbar-collapse .navbar-nav.menu-list li a:hover,
.navbar-area.nav-fixed .nav-container .navbar-collapse .navbar-nav.action-list li .login-link:hover {
 color: var(--primary-color); 
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li a {
  font-weight: var(--zalando-medium);
  transition: .35s all ease-in-out;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li .login-link {
  padding: .5rem 1rem;
  text-decoration: none;
  color: #202020;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li a.btn-outline-default {
  border-color: var(--natural-color-100);
  color: var(--natural-color-100);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li a.btn-outline-default:hover {
  background-color: var(--primary-color);
  border-color: #000;
  color: #fff;
	animation: border-pulse 1s infinite;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li+li {
  margin-left: 6px;
}

.navbar-area.nav-style-01 .nav-container .logo-wrapper {
  max-width: 180px;
  position: relative;
  top: -6px;
}

.menu-item-has-mega-menu a {
  /* padding-right: 30px !important; */
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-mega-menu:before {
  right: 23px;
  font-size: 12px;
  color: initial;
  display: none;
}

li.menu-item-has-mega-menu a:hover + .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-mega-menu:before {
  color: var(--primary-color) !important;
}

/* Chevron toggle on Resources nav item */
li.menu-item-has-mega-menu > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  transition: transform 0.2s ease;
}

li.menu-item-has-mega-menu:hover > a::after {
  transform: rotate(180deg);
}

/* Mega menu — card layout */
.xg_mega_menu_wrapper {
  background-color: var(--natural-color-800) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45) !important;
  max-width: 540px !important;
  width: auto !important;
  top: 88px !important;
}

.xg_mega_menu_wrapper .xg-mega-menu-container {
  padding: 1rem 0.5rem;
}

.mega-menu-col {
  padding: 0 1.5rem;
}

.mega-menu-col-border {
  border-left: 1px solid var(--natural-color-600);
}

.xg-mega-menu-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.mega-card-title {
  margin: 0;
  color: var(--natural-color-100) !important;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--zalando-sans);
  text-align: left;
}

.mega-card-desc {
  margin: 0;
  color: var(--natural-color-300);
  font-size: 0.78rem;
  line-height: 1.55;
  font-family: var(--zalando-sans);
  text-align: left;
}

.mega-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.4rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--natural-color-600);
  border-radius: 6px;
  color: var(--primary-color) !important;
  font-size: 0.775rem;
  font-weight: 500;
  font-family: var(--zalando-sans);
  transition: background-color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.mega-card-btn i {
  font-size: 0.85rem;
}

.mega-card-btn:hover {
  background-color: var(--natural-color-700);
  border-color: var(--primary-color-400);
  color: var(--primary-color) !important;
}

/* .section-box-title::before {
  content:"\A";
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--primary-color);
  display:inline-block;
  margin-right: 3px;
} */

.section-box-title {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--mcp-radius);
  color: #fff;
  padding: 6px 10px;
	font-size: var(--small-font-size);
	font-weight: var(--zalando-medium);
}

.pagination-wrapper {
  text-align: center;
}

.page-link {
  padding: .25rem .65rem;
  border: none;
}

.pagination-wrapper ul li.page-item.active span {
  border-radius: var(--mcp-radius);
}

.pagination-wrapper ul li a:hover {
  background: transparent;
  color: var(--primary-color);
}

.page-item.disabled .page-link {
  color: var(--natural-color-200);
}

/* Home 21 */
.home-21 {
  /* padding: 3.5rem 0px; */
  /* border-bottom: 0.5px dashed lightgrey; */
  margin: 0 auto;
}

.home-21.end-divide::after {
  content: '';
  width: 90%;
  position: absolute;
  border: 1px dashed var(--secondary-color-bg);
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

.home-21 .banner-wrapper-thumb {
  /* margin-top: -80px; */
}

.section-title-21 .title {
  font-family: var(--zalando-regular);
  font-weight: 900;
  font-size: 48px;
}

.home-21 .explore-btn {
  border-radius: 6px;
  border: 1px solid #222;
  color: var(--font-color-black);
  padding: 12px 20px;
}

/* BANNER SECTION */
.home-21.banner-area {
  padding-top: 5rem;
  /* padding-bottom: 2rem; */
  min-height: 83vh;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-color-200) 0%, #fff 97%);
}

.home-21.banner-area.style-01 {
  border-bottom-right-radius: 15rem;
}

.home-21.banner-area.light-background .image-wrapper {
  border: 7px solid #000;
}

.clients-wrapper {
  margin-left: 58.5px;
	padding-left: 15px;
}

.clients-wrapper i {
  font-size: 34px;
}

.clients-wrapper label {
  margin: 0;
}

.home-21.banner-area .banner-single-thumb img {
  width: 300px;
}

.home-21.banner-area .banner-info-graphic {
  /* padding: 35px 30px; */
}

.home-21.banner-area .banner-contents {
  margin: 0 auto;
}

.home-21.banner-area .banner-contents .banner-title {
  font-family: var(--zalando-regular);
  font-weight: var(--zalando-bold);
  font-size: 4.3rem;
  line-height: 1.15;
}

.home-21.banner-area.dark-background .banner-contents .banner-title {
  color: #fff;
}

.home-21.banner-area .banner-contents .banner-small-title {
  font-size: var(--heading-6);
  font-weight: var(--zalando-regular);
}

.home-21.banner-area.dark-background .banner-contents .banner-small-title {
  color: var(--natural-color-100);
}

.home-21 .hero-center {
  flex-direction: column;
  row-gap: 12px;
}

.home-21 .banner-content-wrapper {
  max-width: 70rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

 
.home-21.banner-area.dark-background .banner-contents .b-base-color,
.home-21.banner-area.dark-background .banner-contents #changingWord {
  color: var(--primary-color);
}

.home-21.banner-area.primary-background .banner-contents .b-base-color,
.home-21.banner-area.primary-background .banner-contents #changingWord {
  color: var(--natural-color-100);
}

.home-21 .banner-btn {
  justify-content: center;
  gap: 20px;
  position: absolute;
  /* bottom: 0; */
  z-index: 3;
}

.home-21 .hero-play-button {
  position: relative;
  top: -10px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 2rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.home-21 .hero-play-button:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.home-21 .hero-play-button i {
  font-size: 22px;
}

.home-21 .hero-illustration {
  margin-top: 0;
  position: relative;
}

.home-21 .banner-info-graphic {
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.home-21 .banner-info-graphic dotlottie-player {
  position: relative;
  z-index: 0;
  pointer-events: none;
}

.home-21 .hero-play-button-big {
  position: absolute;
  top: 36px;
  left: 40px;
  transform: none;
  margin: 0;
  opacity: 0.85;
}

.home-21 .hero-illustration .btn-default {
  position: absolute;
  top: 24px;
  left: 24px;
}

.home-21 .hero-illustration .banner-info-graphic {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
/* END BANNER */

/* CTA */
.cta-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 80px;
    background: var(--natural-color-800);
    color: white;
}

.cta-content .btn-lg {
  padding: 18px;
}

/* PARTICLES */
.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transition: transform 0.2s ease-out;
}

/* LOTTIE STYLE SVG */
.micro-animation {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
}

.pulse-circle {
    fill: #ff5a00;
    animation: pulse 3s infinite ease-in-out;
}

.pulse-ring {
    fill: none;
    stroke: #ff5a00;
    stroke-width: 2;
    opacity: 0.5;
    animation: ring 3s infinite ease-out;
}

@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes ring {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* CONTENT */
.cta-content {
    max-width: 720px;
    margin: auto;
    text-align: center;
}

.cta-content h1 {
    color: #ff5000;
}

.cta-content p {
    color: #c1c1c1;
}
/* END CTA */

/* TESTIMONIAL */
.testimonial-section {
    padding: 100px 0;
    text-align: center;
}

.testimonial-section .carousel {
    overflow: hidden;
    cursor: grab;
}

.testimonial-section .carousel:active {
    cursor: grabbing;
}

/* Make animation smooth */
.testimonial-section .carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.testimonial-card {
    min-width: 33.333%;
    background: #e9ebef;
    padding: 30px;
    border-radius: 2rem 2rem 0rem 2rem;
    user-select: none;
    text-align: left;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        min-width: 100%;
    }
}

.badge {
    display: inline-block;
    background: #ffe600;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.quote {
    font-size: 40px;
    opacity: 0.2;
}

.testimonial-card p {
    color: var(--natural-color-800);
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--natural-color-800);
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author span {
    display: block;
    font-size: 14px;
    color: #666;
}

/* Dots */
.dots {
    margin-top: 30px;
}

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

.dot.active {
    background: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        min-width: 100%;
    }
}
/* END TESTIMONIAL */

/* FEATURES AREA */
@keyframes slideLayer {
  from {
    transform: translateX(100%);
    /* opacity: 0; */
  }
  to {
    transform: translateX(0);
    /* opacity: 1; */
  }
}

.features-area, .faq-page-content-area {
	padding: 6rem 0rem;
}

.features-area .content-wrapper {
	min-height: 82vh;
}

.features-area .content-wrapper .left {
  flex: 1;
  padding: 80px 40px 80px 15px;
	border-right: 1px dashed var(--natural-color-100);
	margin-left: 58.5px;
}

.features-area .content-wrapper .center {
  flex: 1;
  padding: 80px 40px;
}

.features-area .content-wrapper .left h1 {
  margin: 40px 0 40px;
}

.features-area .content-wrapper .left p {
  font-weight: var(--zalando-medium);
}

.features-area .content-wrapper .left .feature-desc {
  max-width: 36rem;
  text-align: left;
}

.features-area .content-wrapper .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 25px;
}

.features-area .content-wrapper .feature-item {
  color: var(--natural-color-500);
  cursor: pointer;
	border: 1px solid;
	border-radius: 10px;
	padding: 20px;
}

.features-area .content-wrapper .feature-item span {
  display: block;
  color: var(--natural-color-700);
  margin-bottom: 6px;
}

.features-area .content-wrapper .feature-item:hover span,
.features-area .content-wrapper .feature-item.active span {
	color: var(--natural-color-700);
}

.features-area .content-wrapper .feature-item:hover,
.features-area .content-wrapper .feature-item.active {
  color: var(--primary-color);
}

.features-area .content-wrapper .feature-item.active {
	animation: border-pulse 1s infinite;
}

/* RIGHT SIDE */
.features-area .content-wrapper .right {
  width: 420px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.features-area .content-wrapper .right .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 40px;
  animation: slideLayer 0.6s ease forwards;
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
}

.features-area .content-wrapper .right .layer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  opacity: 0.45;
	background-image: url('../pattern/pattern-4.png');
	background-repeat: repeat;
	background-size: contain;
}

.features-area .content-wrapper .icon {
  font-size: 48px;
  margin-bottom: 30px;
}

.features-area .content-wrapper .icon img {
	width: 95px;
	filter: invert(1);
}

.features-area .content-wrapper .right .layer .title {
	color: #fff;
  margin-bottom: 20px;
}

.features-area .content-wrapper .right p {
	color: #fff;
	font-weight: var(--zalando-medium);
}

/* FEATURES AREA RESPONSIVE */
@media (max-width: 992px) {
  .features-area .content-wrapper {
    flex-direction: column !important;
  }

  .features-area .content-wrapper .right {
    width: 100%;
    border-radius: 0;
  }
}
/* END FEATURES AREA RESPONSIVE */

.home-21 .single-service-wrapper {
  padding: 0px 100px;
}

.home-21 .section-title-21 .title {
  font-family: var(--base-font);
  font-weight: 500;
}

.home-21 .case-studies-masonry {
  /* height: 2000px !important; */
}

.home-21 .case-studies-menu {
  text-align: left;
}

.home-21 .case-studies-menu li {
  border-top-right-radius: 12px;
  padding: 17px;
  margin-left: 0px;
  margin-bottom: 5px;
  background-color: rgb(225,225,225, 0.2);
  color: var(--font-color-black);
  display: block;
  transition: .2s all linear;
}
.home-21 .case-studies-menu li:hover {
  color: var(--primary-color);
  background-color: rgb(225,225,225, 0.4)
}

.home-21 .case-studies-menu li.active {
  color: var(--primary-color);
}

.home-21 .case-studies-menu li.active::before {
  content: '';
}

.home-21 .case-studies-menu li.active span {
  background: #fff;
  color: var(--font-color-black);
  border-radius: 6px;
  padding: 10px;
}


.home-21 .case-studies-menu li span {
  padding: 7px 10px;
  color: #757575;
}

.home-21 .single-gallery-image {
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  background: #fff;
  overflow: hidden;
  position: initial;
  padding: 20px;
}

.home-21 .single-gallery-image img {
  width: 100%;
}

.home-21 .single-gallery-image::after {
  content: '';
  background: #FFEFE6;
  left: -15px;
  top: -30px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 16px;
  box-shadow: 0px 4px 8px 0px #0000001A;
}

.home-21 .counter-area {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  gap: 40px;
  margin: -20px 0px 45px 0px;
}

.home-21 .counter-area .section-title-21 h2 {
  font-size: 28px;
  line-height: 1.8;
  padding: 20px 0px;
  font-family: var(--base-font);
  font-weight: 500;
}

.home-21 .counter-area .counter-wrapper .single-counter {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 16px;
}

.section-title {
  /* border-bottom: 1px dashed #ccc; */
}

.section-title .title {
  font-family: var(--zalando-regular);
  font-weight: 900;
  line-height: 1.25;
  font-size: 3rem;
  color: #000;
}

.small-banner {
  background:
    radial-gradient(600px 220px at 0% 0%, rgba(255, 96, 22, 0.08), rgba(255, 96, 22, 0) 60%),
    linear-gradient(180deg, #ffe6d7 0%, #fff6f0 55%, #ffffff 100%);
  position: relative;
  top: -90px;
  padding: 32px 0px;
  border-top-left-radius: 120px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.small-banner::after {
  content: '';
  background-color: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.features-wrapper .card {
  border: none;
  transition: transform .8s; /* Animation */
}

.features-wrapper .card:hover {
  transform: scale(1.2);
  z-index: 9;
}

.features-wrapper .card .card-body h4 {
  font-family: var(--zalando-regular);
  width: 60%;
  position: relative;
  bottom: 10px;
}

.features-wrapper .card .card-body p {
  opacity: 0.6;
}

.small-banner label {
  color: var(--font-color-black);
  font-family: var(--base-font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  margin: 0px;
}

.small-banner .trusted-mark {
  width: 36px;
  height: 36px;
  display: block;
}

.small-banner .company-box img {
  filter: grayscale(1) brightness(0.15) contrast(1.1);
  opacity: 0.9;
}

.small-banner .company-box {
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.small-banner .company-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.small-banner .company-box .card-body {
  padding: 18px;
}



.w-40 {
  width: 40%;
}
.w-60 {
  width: 60%;
}
.w-80 {
  width: 80%;
}

.section-title p {
  max-width: 100%;
  color: var(--font-color-black);
  margin: 0px;
  font-weight: 400;
}

/* Price */
.owl-carousel .owl-stage-outer {
  overflow: visible !important;
}

.single-price-plan-01 {
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  box-shadow: none;
  padding: 28px;
  max-width: 100%;
}

.single-price-plan-01 .price-body {
  min-height: 370px;
  margin-bottom: 25px;
}
.plan-item {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  /* border: 3px solid transparent; */
  /* box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2); */
}

.single-price-plan-01.bg-lightwhite {
  border: 3px solid transparent;
}

.plan-item.recomended-label::before {
  content: "✦ Best Value";
  text-align: center;
  background: var(--primary-color);
  width: 93.5%;
  left: 0px;
  right: 0px;
  top: -45px;
  bottom: 0px;
  margin: auto;
  position: absolute;
  color: var(--font-color-white);
  border-top-left-radius: .375rem;
  border-top-right-radius: .375rem;
  border-bottom-left-radius: .375rem;
  border-bottom-right-radius: .375rem;
  font-size: 18px;
  line-height: 2.2;
  border: 5px solid var(--primary-color);
}

.single-price-plan-01.style-02.bg-lightwhite {
  background: #fff;
  border: 3px solid var(--primary-color);
}

.single-price-plan-01 .price-header {
  border-bottom: 1px solid #C2C2C2;
}

.single-price-plan-01 .price-header .name img {
  width: 24px;
  position: absolute;
  display: inline-block;
  margin-left: -35px;
}

.single-price-plan-01 .price-header .name,
.single-price-plan-01 .price-header .price-wrap .price,
.single-price-plan-01 .price-header .price-wrap .month {
  font-size: 24px;
  font-weight: 500;
}

.single-price-plan-01.active .price-header .name,
.single-price-plan-01.active .price-header .price-wrap .price,
.single-price-plan-01.active .price-header .price-wrap .month,
.single-price-plan-01.active .price-body ul li
 {
  color: var(--font-color-black);
}

.single-price-plan-01 .price-body ul li {
  text-align: left;
  font-size: 1rem;
}

.single-price-plan-01 .price-body ul li img {
  width: 24px;
  display: inline-block;
  margin-right: 5px;  
}

.single-price-plan-01.active .btn-wrapper .boxed-btn {
  background: var(--primary-color);
  color: var(--font-color-white);
}

.single-price-plan-01 .btn-wrapper .boxed-btn {
  background: var(--primary-color);
  color: var(--font-color-white);
}

.single-price-plan-01 .btn-wrapper .boxed-btn {
  border-radius: 6px;
  width: 100%;
}

.single-price-plan-01 .btn-wrapper .boxed-btn:hover {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.single-price-plan-01 .btn-wrapper .boxed-btn.outline {
  background: #fff;
  border: 1px solid var(--navbar-black);
  color: var(--font-color-black);
}
/* End Price */

/* Feedback */
.home-21 .feedback-contents .feedback-para {
  font-size: 18px;
  font-family: var(--base-font);
  line-height: normal;
}

.home-21.feedback-area > .section-title-21 .title {
  font-family: var(--base-font);
}

.feedback-slider .slick-slider-item .item {
  padding: 15px;
  margin: 0px 0px;
  border-radius: 16px;
  border: 1px solid #C2C2C2;
}

.feedback-slider .slick-slider-item .item .feedback-image-wrapper img {
  border-radius: 6px;
  overflow: hidden;
}

/* Client area  */
.clients-area {
  background-color: #fff;
}

.slick-clients .slick-slide {
  width: unset !important;
}

.slick-clients .card {
  cursor: grab;
  width: 140px;
  height: 110px;
  padding: 0px;
  border-color: transparent;
  background-color: transparent;
  /* border-radius: var(--mcp-radius); */
}

.slick-clients .card .card-body, .box-img {
  display: flex;
  align-items: center;
}

.slick-clients .card img {
  width: auto;
}

.slick-clients .item {
  border: none !important;
}
/* End Feedback */

/* Footer */
.home-21.footer-area {
  padding: 0px;
  
}

.home-21.footer-area .follow-list a {
	color: #fff;
}

.home-21.footer-area span.followers {
	color: #fff;
}

.home-21.footer-area .footer-top {
  background-color: var(--natural-color-800);
}

.home-21.footer-area .widget.footer-widget ul li, 
.home-21.footer-area .widget.footer-widget p,
.home-21.footer-area .widget.footer-widget ul li a,
.home-21.footer-area .contact_info_list li.single-info-item .icon {
  color: #fff !important;
  font-family: var(--zalando-sans);
  font-weight: var(--zalando-regular);
  font-size: var(--paragraph-size);
}

.home-21.footer-area .contact_info_list li.single-info-item .details {
  padding-left: 0;
}

.home-21 .widget.footer-widget .widget-title {
  color: #fff !important;
  font-family: var(--zalando-sans);
  font-weight: var(--zalando-bold);
}

.home-21.footer-area .widget.footer-widget ul li a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.home-21.footer-area .widget.footer-widget ul li.mbc {
  margin-bottom: 25px;
}

.home-21.footer-area .footer-widget.widget_nav_men uul li a:after {
  color: var(--font-color-black);
}

/* Widget */
.widget {
  background-color: transparent;
  padding: 0px;
}

.widget .widget-title {
  font-size: 24px;
}

.widget ul li {
  font-size: 18px;
  color: var(--font-color-black);
}

.widget ul li.active {
  color: var(--primary-color);
}

.widget.widget_nav_menu ul li {
  margin: 7px 0px;
}

.widget ul li ul.child-content {
  /* border-left: 1px solid #c2c2c2; */
  padding-left: 8px;
  margin: 0;
  margin-top: 15px;
  padding: 20px 16px;
  display: none;
  background-color: #f4f4f4;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  max-height: 300px;
  overflow: scroll;
}

.widget ul li.active ul.child-content li.active {
  color: var(--primary-color);
}

.widget ul li ul.child-content li {
  font-size: 14px;
  padding: 3px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.widget ul li.active ul.child-content li {
  color: initial;
  display: inline-block;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  line-height: 1.8;
}

.widget ul li.active ul.child-content li:last-child {
  border-bottom: none;
}

.knowledgebase-area .widget.widget_nav_menu,
.knowledgebase-search-area .widget.widget_nav_menu,
.knowledgebase-details-content-area .widget.widget_nav_menu {
  background-color: #ffffff;
  border: 1px solid #f1e6dd;
  border-radius: 18px;
  padding: 18px 18px 14px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.knowledgebase-area .widget.widget_nav_menu .widget-title,
.knowledgebase-search-area .widget.widget_nav_menu .widget-title,
.knowledgebase-details-content-area .widget.widget_nav_menu .widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.knowledgebase-area .widget.widget_nav_menu ul,
.knowledgebase-search-area .widget.widget_nav_menu ul,
.knowledgebase-details-content-area .widget.widget_nav_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.knowledgebase-area .widget.widget_nav_menu ul > li,
.knowledgebase-search-area .widget.widget_nav_menu ul > li,
.knowledgebase-details-content-area .widget.widget_nav_menu ul > li {
  margin: 6px 0;
}

.knowledgebase-area .widget.widget_nav_menu ul > li > a,
.knowledgebase-search-area .widget.widget_nav_menu ul > li > a,
.knowledgebase-details-content-area .widget.widget_nav_menu ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--font-color-black);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.knowledgebase-area .widget.widget_nav_menu ul > li > a:hover,
.knowledgebase-search-area .widget.widget_nav_menu ul > li > a:hover,
.knowledgebase-details-content-area .widget.widget_nav_menu ul > li > a:hover {
  background-color: #fff4ee;
  color: var(--primary-color);
  transform: translateX(2px);
}

.knowledgebase-area .widget.widget_nav_menu ul > li.active > a,
.knowledgebase-search-area .widget.widget_nav_menu ul > li.active > a,
.knowledgebase-details-content-area .widget.widget_nav_menu ul > li.active > a {
  background-color: #fff4ee;
  color: var(--primary-color);
  font-weight: 600;
}

.knowledgebase-area .widget.widget_nav_menu ul li ul.child-content,
.knowledgebase-search-area .widget.widget_nav_menu ul li ul.child-content,
.knowledgebase-details-content-area .widget.widget_nav_menu ul li ul.child-content {
  margin-top: 6px;
  padding: 10px;
  background-color: #fff9f5;
  border: 1px solid #fde8dd;
  border-radius: 14px;
  max-height: 260px;
  overflow: auto;
}

.knowledgebase-area .widget.widget_nav_menu ul li ul.child-content li,
.knowledgebase-search-area .widget.widget_nav_menu ul li ul.child-content li,
.knowledgebase-details-content-area .widget.widget_nav_menu ul li ul.child-content li {
  margin: 0;
  padding: 0;
  border-bottom: none;
  display: block;
}

.knowledgebase-area .widget.widget_nav_menu ul li ul.child-content li a,
.knowledgebase-search-area .widget.widget_nav_menu ul li ul.child-content li a,
.knowledgebase-details-content-area .widget.widget_nav_menu ul li ul.child-content li a {
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--font-color-black);
  transition: background-color .2s ease, color .2s ease;
}

.knowledgebase-area .widget.widget_nav_menu ul li ul.child-content li a:hover,
.knowledgebase-search-area .widget.widget_nav_menu ul li ul.child-content li a:hover,
.knowledgebase-details-content-area .widget.widget_nav_menu ul li ul.child-content li a:hover {
  background-color: #ffffff;
  color: var(--primary-color);
}

.knowledgebase-area .widget.widget_nav_menu ul li ul.child-content li.active a,
.knowledgebase-search-area .widget.widget_nav_menu ul li ul.child-content li.active a,
.knowledgebase-details-content-area .widget.widget_nav_menu ul li ul.child-content li.active a {
  background-color: #ffffff;
  color: var(--primary-color);
  font-weight: 600;
}

.footer-widget.widget_nav_menu ul li a {
  padding-left: 0px;
}

.footer-widget.widget_nav_menu ul li a:after {
  display: none;
}

.about_us_widget .footer-logo {
  margin-bottom: 20px;
  width: 110px;
}

.copyright-area {
  text-align: left;
}

.back-to-top {
  background-color: var(--primary-color);
  color: var(--natural-color-100);
  box-shadow: none;
  border-radius: 1rem;
  right: 2.5rem;
  bottom: 3rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
}

.back-to-top .back-top {
  /* padding: 0.5rem 0.7rem;
  overflow: hidden;
  border-radius: 100%;
  background-color: var(--primary-color);
  color: var(--natural-color-100);
  border: 1px solid #fff;
  margin-left: 5px; */
}

.card-item {
  min-height: 24rem;
  max-height: 24rem;
  margin-bottom: 15px;
  background-color: #fff;
  border-radius: 20px;
  vertical-align: -webkit-baseline-middle;
}

.card-item .card-header {
  padding: 1.6rem 1.25rem 0px 0.25rem;
  background-color: transparent;
  vertical-align: middle;
  align-items: center;
  border: none;
  border-radius: 0;
}

.card-item .card-header i {
  margin-right: 15px;
}

/* Faq / Acordion */
section.faq-page-content-area {
  width: 75%;
}
.accordion-wrapper .card {
  box-shadow: none;
}

.accordion-wrapper .card:hover {
  box-shadow: none;
}

.accordion-wrapper .card+.card {
  margin-top: 0px;
}

.accordion-wrapper .card .card-header {
  padding: 24px 0px;
}

.accordion-wrapper .card .card-header::after {
  content: '';
  border-bottom: 0.5px solid var(--natural-color-200);
  transition: .5s all ease-in-out;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

.accordion-wrapper .card .card-header:hover::after {
  border-bottom: 1px solid;
  border-color: var(--primary-color);
}

.accordion-wrapper .card .card-header:hover a {
  color: var(--primary-color);
  transition: .5s all linear;
}

.accordion-wrapper .card .card-header a {
  background-color: transparent;
  font-size: inherit;
  padding: 0px;
  position: relative;
  display: block;
  padding-right: 36px;
}

.accordion-wrapper .card .card-body {
  background: transparent;
  max-width: 95%;
  padding: 0px;
  line-height: 1.75em;
  margin-top: 30px;
  color: var(--font-color-black);
}

.accordion-wrapper .card .card-header a[aria-expanded=false]:after {
  content: "\002B";
  position: absolute;
  top: 0.2em;
  right: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 22px;
  border-radius: 100px;
  text-align: center;
  color: var(--primary-color);
}

.accordion-wrapper .card .card-header a:after {
  content: "\2212";
  position: absolute;
  top: 0.2em;
  right: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 22px;
  border-radius: 100px;
  text-align: center;
  color: var(--primary-color);
}

/* Connect */
.home-21.connects-area {
  background: linear-gradient(180deg, rgba(255, 239, 230, 0) 0%, #FFEFE6 100%);
  padding: 90px 30px;
}

.home-21.connects-area.box-radius {
  border-radius: 24px;
  padding-right: 40px;
  padding-left: 40px;
}

.home-21.connects-area.box-radius .title {
  font-weight: 500;
  line-height: 1.3;
}

.home-21.footer-area .copyright-area.copyright-bg {
  background-color: var(--natural-color-800);
  color: #fff;
  text-align: center;
  font-size: var(--small-font-size);
  border-top: 1px solid #fff;
}

/* Newsletter */
.home-21.newsletter-area {
  background:
    radial-gradient(900px 320px at 50% 0%, rgba(255, 96, 22, 0.08), rgba(255, 96, 22, 0) 60%),
    linear-gradient(180deg, #ffefe6 0%, #fff9f5 55%, #ffffff 100%);
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 10px;
}

.home-21 .newsletter-form .single-input .form--control {
  height: 44px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #C2C2C2;
}

.home-21 .newsletter-form-wrap .checkbox-wrapper {
  max-width: 500px;
  margin: auto;
  padding: 7px 0px;
  font-size: 14px;
}

.home-21 .newsletter-form button {
  background-color: var(--primary-color);
  color: var(--font-color-white);
  border-radius: 6px;
  box-shadow: 0px 1px 2px 0px #1018280D;
  height: 44px;
  padding: 6px 12px;
  font-size: 16px;
}

.home-21 .newsletter-form button.disabled {
  background: linear-gradient(0deg, #EDEDED, #EDEDED),
  linear-gradient(0deg, #E0E0E0, #E0E0E0);
  border: 1px solid #E0E0E0;
  color: #9E9E9E;
}

/* Contact Page */
.inner-contact-section {
  background:
    radial-gradient(900px 320px at 50% 0%, rgba(255, 96, 22, 0.08), rgba(255, 96, 22, 0) 60%),
    linear-gradient(180deg, #ffefe6 0%, #fff9f5 55%, #ffffff 100%);
}

.inner-contact-section .section-title p {
  max-width: 65%;
}

.inner-contact-section .search-wrapper {
  max-width: 100%;
  margin: auto;
}

.inner-contact-section .search-wrapper i {
  position: relative;
  top: 50px;
  left: 15px;
  display: flex;
  max-width: 30px;
}

.inner-contact-section .search-wrapper input {
  display: flex;
  margin-top: 15px;
  padding: 12px 16px 12px 38px;
  border-radius: 6px;
  border: 1px solid #C2C2C2;
  box-shadow: 0px 1px 2px 7px #0000000D;
  font-weight: 500;
  height: 52px;
}

.inner-contact-section .search-wrapper input:focus {
  border: 2px solid var(--primary-color);
}

.contact-page-form .form-group .form-control {
  border: 1px solid #C2C2C2;
  padding: 12px 16px;
  border-radius: 6px;
  height: 48px;
}

.contact-page-form .form-group .form-control.error {
  border-color: var(--error-color);
  margin: 0;
}

.contact-page-form .form-group .input-msg-error {
  color: var(--error-color);
}

.contact-page-form .form-group textarea.form-control {
  height: 120px;
}

.contact-info {
  padding: 36px;
  border-radius: 20px;
  border: 1px solid #C2C2C2;
  box-shadow: none;
}

.contact-info .item {
  border: 1px solid #C2C2C2;
  box-shadow: 0px 1px 2px 0px #0000001F;
  background: #F5F5F5;
  color: var(--font-color-black);
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 12px;
}

.contact-info .item i {
  margin-right: 7px;
  color: #616161 !important;
}

.contact-info .item p.title {
  color: var(--font-color-black);
  font-size: 20px;
}

.contact-info .item .description {
  color: var(--font-color-black);
}

/* Masonry Layout */
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.masonry .card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.masonry .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.masonry .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.masonry .card:hover img {
    transform: scale(1.05);
}
.masonry .card .card-body {
    padding: 20px;
}
.masonry .card .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.masonry .card .card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.masonry .card .card-link {
    font-size: 14px;
    font-weight: 500;
    color: #ff5000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.masonry .card .card-link:hover {
    color: #cc3f00;
}

.masonry .card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

/* Skeleton */
.skeleton {
    position: relative;
    overflow: hidden;
    background: #f2f2f2;
    padding: 16px;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.skeleton-image {
    height: 200px;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 12px;
    background: #e5e5e5;
}

.skeleton-title {
    height: 40px;
    width: 70%;
    border-radius: 6px;
    margin-bottom: 12px;
    background: #e5e5e5;
}

.skeleton-desc {
    height: 18px;
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
    background: #e5e5e5;
}


/* Knowledgebase / Resources */
.resources-item {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--natural-color-100);
  border-radius: 1rem;
  transition: .25s all ease-in;
  cursor: pointer;
}

.resources-item:hover {
  border-color: var(--base-color-one);
}

.resources-item .img-wrapper {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  text-align: center;
}

.resources-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources-item .img-wrapper.no-image {
  background-color: var(--natural-color-100);
}

.resources-item .img-wrapper.no-image img {
  width: 220px;
  opacity: 0.65;
  padding: 2.5rem;
}

.resources-item .resource-content {
  padding: 2.5rem 1.5rem;
}
.resources-item .resource-content .title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.resources-item .resource-content .description {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.single-knowledgebase-details p {
  margin: 0px;
}

.knowledgebase-content-area .main-title {
  font-weight: 500;
  margin-bottom: 15px;
}

.single-knowledgebase-list-item {
  position: relative;
  border: 1px solid #f1e6dd;
  border-radius: 18px;
  padding: 18px 52px 18px 20px;
  margin-bottom: 14px;
  background-color: #ffffff;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/* .single-knowledgebase-list-item:hover {
  background: #C2C2C2;
} */

.single-knowledgebase-list-item:last-child {
  margin-bottom: 0;
  padding: 18px 52px 18px 20px;
  border: 1px solid #f1e6dd;
}

.single-knowledgebase-list-item::after {
  content: '\003E';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--primary-color);
  opacity: 0.7;
  transition: transform .2s ease, opacity .2s ease;
}

.single-knowledgebase-list-item:hover {
  border-color: #ffd5c2;
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.12);
  transform: translateY(-1px);
}

.single-knowledgebase-list-item:hover::after {
  transform: translateY(-50%) translateX(4px);
  opacity: 1;
}

.single-knowledgebase-list-item .title {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}

.single-knowledgebase-list-item .title a {
  display: inline-block;
  color: var(--font-color-black);
}

.single-knowledgebase-list-item .title a:focus-visible {
  outline: 2px solid #ffd5c2;
  outline-offset: 2px;
  border-radius: 8px;
}

.article-with-topic-title-style-01 {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  color: var(--font-color-black);
  transition: all .3s ease-in-out;
  position: relative;
}

.article-with-topic-title-style-01:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.article-with-topic-title-style-01::after {
  content: '\003E';
  font-size: 18px;
  position: absolute;
  right: 22px;
  top: 24px;
  vertical-align: middle;
  justify-content: center;
  color: #1a1a1a;
  transition: color .3s ease-in-out, transform .3s ease-in-out;
}

.article-with-topic-title-style-01 .topic-title {
  color: var(--font-color-black);
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-with-topic-title-style-01 .topic-title i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: #f7f7f7;
  font-size: 14px;
  color: #1a1a1a;
  transition: all .3s ease-in-out;
}

.article-with-topic-title-style-01:hover .topic-title i {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: #fff3ea;
}

.article-with-topic-title-style-01:hover::after {
  color: var(--primary-color);
  transform: translateX(3px);
}

/* Blog */
.blog-classic-item-01 .thumbnail {
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
  transition: .5s all linear;
}

.blog-classic-item-01 .thumbnail:hover {
  opacity: 0.65;
}

.blog-details-item .thumb {
  border-radius: 12px;
  overflow: hidden;
}

.blog-classic-item-01 .content .post-meta li i {
  color: #888;
}

.blog-details-item .post-meta {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.blog-details-item .post-meta li {
  font-weight: bold;
  color: #888;
}

.blog-details-item .post-meta li i {
  color: #888;
  margin-right: 10px;
}

.blog-details-item .post-meta li:last-child {
  float: right;
  color: var(--primary-color);
}

.blog-details-item p {
  letter-spacing: -0.225px;
}

.knowledgebase-area .blog-category-title h2 {
  margin-bottom: 0;
}

.blog-index-area .widget.widget_nav_menu,
.blog-category-area .widget.widget_nav_menu,
.blog-single-area .widget.widget_nav_menu {
  background-color: #ffffff;
  border: 1px solid #f1e6dd;
  border-radius: 18px;
  padding: 18px 18px 14px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.blog-index-area .widget.widget_nav_menu .widget-title,
.blog-category-area .widget.widget_nav_menu .widget-title,
.blog-single-area .widget.widget_nav_menu .widget-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-index-area .widget.widget_nav_menu ul,
.blog-category-area .widget.widget_nav_menu ul,
.blog-single-area .widget.widget_nav_menu ul {
  list-style: none;
  margin: 0;
  padding: 0 4px 0 0;
  max-height: 360px;
  overflow: auto;
}

.blog-index-area .widget.widget_nav_menu ul > li,
.blog-category-area .widget.widget_nav_menu ul > li,
.blog-single-area .widget.widget_nav_menu ul > li {
  margin: 6px 0;
}

.blog-index-area .widget.widget_nav_menu ul > li > a,
.blog-category-area .widget.widget_nav_menu ul > li > a,
.blog-single-area .widget.widget_nav_menu ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--font-color-black);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.blog-index-area .widget.widget_nav_menu ul > li > a:hover,
.blog-category-area .widget.widget_nav_menu ul > li > a:hover,
.blog-single-area .widget.widget_nav_menu ul > li > a:hover {
  background-color: #fff4ee;
  color: var(--primary-color);
  transform: translateX(2px);
}

.blog-index-area .widget.widget_nav_menu ul > li.active > a,
.blog-category-area .widget.widget_nav_menu ul > li.active > a,
.blog-single-area .widget.widget_nav_menu ul > li.active > a {
  background-color: #fff4ee;
  color: var(--primary-color);
  font-weight: 600;
}

.blog-index-area .widget.widget_nav_menu ul li ul.child-content,
.blog-category-area .widget.widget_nav_menu ul li ul.child-content,
.blog-single-area .widget.widget_nav_menu ul li ul.child-content {
  margin-top: 6px;
  padding: 10px;
  background-color: #fff9f5;
  border: 1px solid #fde8dd;
  border-radius: 14px;
  max-height: 240px;
  overflow: auto;
}

.blog-index-area .widget.widget_nav_menu ul li ul.child-content li,
.blog-category-area .widget.widget_nav_menu ul li ul.child-content li,
.blog-single-area .widget.widget_nav_menu ul li ul.child-content li {
  margin: 0;
  padding: 0;
  border-bottom: none;
  display: block;
}

.blog-index-area .widget.widget_nav_menu ul li ul.child-content li a,
.blog-category-area .widget.widget_nav_menu ul li ul.child-content li a,
.blog-single-area .widget.widget_nav_menu ul li ul.child-content li a {
  display: block;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--font-color-black);
  transition: background-color .2s ease, color .2s ease;
}

.blog-index-area .widget.widget_nav_menu ul li ul.child-content li a:hover,
.blog-category-area .widget.widget_nav_menu ul li ul.child-content li a:hover,
.blog-single-area .widget.widget_nav_menu ul li ul.child-content li a:hover {
  background-color: #ffffff;
  color: var(--primary-color);
}

.blog-index-area .widget.widget_nav_menu ul li ul.child-content li.active a,
.blog-category-area .widget.widget_nav_menu ul li ul.child-content li.active a,
.blog-single-area .widget.widget_nav_menu ul li ul.child-content li.active a {
  background-color: #ffffff;
  color: var(--primary-color);
  font-weight: 600;
}

.blog-index-area .blog-classic-item-01,
.blog-category-area .blog-classic-item-01 {
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #f1e6dd;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-index-area .blog-classic-item-01:hover,
.blog-category-area .blog-classic-item-01:hover {
  border-color: #ffd5c2;
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.12);
  transform: translateY(-2px);
}

.blog-index-area .blog-classic-item-01 .content,
.blog-category-area .blog-classic-item-01 .content {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-index-area .blog-classic-item-01 .thumbnail,
.blog-category-area .blog-classic-item-01 .thumbnail {
  border-radius: 0;
  height: 200px;
}

.blog-index-area .blog-classic-item-01 .thumbnail img,
.blog-category-area .blog-classic-item-01 .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-index-area .blog-classic-item-01 .content p,
.blog-category-area .blog-classic-item-01 .content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-index-area .blog-grid-row,
.blog-category-area .blog-grid-row {
  align-items: stretch;
  row-gap: 24px;
}

.blog-index-area .blog-grid-row > [class*="col-"],
.blog-category-area .blog-grid-row > [class*="col-"] {
  display: flex;
  margin-bottom: 24px;
}

.blog-index-area .blog-classic-item-01,
.blog-category-area .blog-classic-item-01 {
  margin-bottom: 0;
}

.search-wrapper {
  position: relative;
}

.search-wrapper i {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  pointer-events: none;
}

.resource-area .search-wrapper input {
  display: block;
  width: 100%;
  padding: 12px 16px 12px 48px;
  border-radius: var(--mcp-radius);
  height: 40px;
}

.search-wrapper input:focus {
  border-color: var(--primary-color);
}

#search-inline-results {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  max-height: 320px;
  overflow-y: auto;
  text-align: left;
}

.search-result-inline-item {
  display: block;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: inherit;
  text-decoration: none !important;
  transition: background 0.15s;
}

.search-result-inline-item:last-child {
  border-bottom: none;
}

.search-result-inline-item:hover {
  background: #f9fafb;
  color: inherit;
}

.search-result-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.search-result-category {
  font-size: 0.8rem;
  color: var(--primary-color);
  margin-top: 2px;
}

.search-result-desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 4px;
  margin-bottom: 0;
}

#search-content {
  display: none;
  margin-top: 12px;
  width: min(90vw,1000px);
  margin: auto;
  right: 0;
  left: 0;
  top: 1rem;
  position: fixed;
  transform: scale(0.90);
  z-index: 99;
  transition: all .2s linear; 
}

#search-content .search-header {
  padding: 20px 20px 0px 20px;
  border-radius: 1rem 1rem 0rem 0rem;
  background: #fff; 
  /* backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#search-content .search-body {
  padding: 20px 20px 0px 20px;
  background: #fff;
  border-bottom-left-radius: 1rem;
  overflow: hidden;
}

#search-content .list-item-wrapper {
  margin: 0;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
  border-left: 1px solid var(--natural-color-100);
  border-right: 1px solid var(--natural-color-100);
}
#search-content .list-item-wrapper .list-item:first-child {
  border-top: 1px solid var(--natural-color-100);
}
#search-content .list-item-wrapper .list-item {
  padding-inline: 16px;
  padding-block: .75rem;
  border-bottom: 1px solid var(--natural-color-100);
}

#search-content .list-item-wrapper .list-item .title {
  font-size: 1.2rem;
  color: var(--natural-color-800);
  font-weight: var(--zalando-medium);
}

#search-content .list-item-wrapper .list-item .desc {
  font-size: var(--small-font-size);
  margin-bottom: 0;
}

#search-content ul li:first-child {
  margin-top: 15px;
}

#search-content ul li:last-child {
  border: none;
}

#search-content ul li:hover {
  /* background: var(--natural-color-100); */
}

#search-content ul li .title {
  font-size: 20px;
  color: var(--font-color-black);
  transition: all .2s ease-in-out;
  cursor: pointer;
}

#search-content ul li .title:hover {
  color: var(--primary-color);
}

#search-content ul li p {
  font-size: 16px;
  color: #616161;
  margin-bottom: 0;
}
#search-content .nav-tabs .nav-link{
  padding: 0rem 1rem 0rem 0rem;
}

#search-content .nav-tabs .nav-link:hover {
  border-color: transparent;
  color: var(--secondary-color-500);
}

.blog-single-area .blog-details-item {
  background-color: #ffffff;
  border: 1px solid #f1e6dd;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.mobile {
  display: none;
}

.btn-frontside {
  z-index: 10;
  position: relative;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 8px;
  background-color: transparent;
}

.feedback-image-wrapper {
  display: none;
}

.hero-play-button-big {
  position: absolute;
  width: 65px;
  left: 75%;
  bottom: 67%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2; /* Letakkan tombol play di depan */
  animation: pulse 1s infinite;
  filter: drop-shadow(0 0 5px #FF6016);
  transform: scale(0.9); /* Mereduksi ukuran elemen sebesar 10% */
  opacity: 0.5; /* Set opacity default */
  transition: opacity 0.3s; /* Menambahkan transisi untuk perubahan opacity */
}

.hero-play-button-big:hover {
  opacity: 1; /* Set opacity saat hover */
}

.single-gallery-image2 {
  display: flex;
  justify-content: center;
  background-image: url(../img/bg/bg.png);
  background-position: center bottom;
  background-repeat: repeat-x;
  border-top-left-radius: 16px;
  padding: 3rem 1.5rem;
  background-color: rgb(225,225,225, 0.2);
}

.case-studies-masonry .masonry-item {
  cursor: auto;
}

.section-bg-bottom-left {
  position: absolute;
  bottom: -2rem;
  left: -7rem;
}

.sent-email-1 {
  width: 80%;
}

.gift-box-1 {
  position: absolute;
  width: 20%;
  left: 3rem;
  bottom: -7rem;
}

.masonry-item {
  margin-bottom: 70px;
}

.emoji-feature {
  width: 60px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
}

.emoji-feature span {
  font-size: 70px;
}

.integration-area {
  background:
    radial-gradient(900px 320px at 50% 0%, rgba(255, 96, 22, 0.08), rgba(255, 96, 22, 0) 60%),
    linear-gradient(180deg, #ffefe6 0%, #fff9f5 55%, #ffffff 100%);
}

.integration-area .integration-img {
  filter: none;
  width: 60%;
  background-color: transparent;
  border-radius: 20px;
}

.content-integrations {
  /* display: flex; */
  /* align-items: center; */
  margin: auto;
}

.content-integrations .title {
  font-size: 3rem;
  font-weight: 900;
}

.row-box-img {
  justify-content: center;
}

.credit-card {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.credit-card ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.credit-card ul li {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.credit-card ul li img {
  width: 70%;
}

.child-content li:hover, 
.child-content li a:hover {
  color: #FF6016 !important;
}

.select-currency {
  text-align: right !important;
}

/* Switcher */
.switch {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 23px;
	top: 6px;
	margin: 0px 8px;
}

.single-what-we-cover-item-02 {
	border: none;
}

.content {
	border: 1px solid #e5e5e5;
	height: 100%;
	border-radius: 8px;
}

label.switch {
	margin-bottom: 0px !important;
}

/* Hide default HTML checkbox */
.switch input {
	display: none;
}

/* The slider */
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch .slider:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 15px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.switch input:checked+.slider {
	background-color: #FF6016;
}

.switch input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

.switch input:checked+.slider:before {
	-webkit-transform: translateX(25px);
	-ms-transform: translateX(25px);
	transform: translateX(25px);
}

/* Rounded sliders */
.switch .slider.round {
	border-radius: 34px;
}

.switch .slider.round:before {
	border-radius: 50%;
}

.price .amount {
	font-size: 2.25rem;
	font-weight: 600;
}

.price .type {
	font-size: 14px;
	color: rgb(111 111 111);
}

.icon-primary {
	color: #062caf;
}


.icon-lg {
	font-size: 45px;
} 

.feature-icon {
	width: 44px;
	height: 44px;
	display: block;
	object-fit: contain;
	margin-top: 2px;
}

.icon-bg-primary::after {
	background: #062caf !important;
}

.icon-bg-yellow::after {
	background: #f6a622 !important; 
}

.icon-bg-purple::after {
	background: #7952f5;
}

.icon-yellow {
	color: #f6a622;
}

.icon-purple {
	color: #7952f5;
}

.icon-cyan {
	color: #02d0a1;
}

.icon-bg-cyan::after {
	background: #02d0a1;
}

.icon-bg-red::after {
	background: #ff4949;
}

.icon-red {
	color: #ff4949;
}

.icon-bg-green::after {
	background: #66cc33;
}

.icon-green {
	color: #66cc33;
}

.icon-bg-orange::after {
	background: #ff7c17;
}

.icon-orange {
	color: #ff7c17;
}

.icon-bg-blue::after {
	background: #3682ff;
}

.icon-blue {
	color: #3682ff;
}

/* KNOWLEDGEBASE CATEGORY */
.p-main-content h1, 
.p-main-content h1 span {
    font-size: 3rem !important;
    letter-spacing: 0px !important;
    line-height: 1.2 !important;
    font-family: 'Zalando Sans', sans-serif !important;
}

.p-main-content h1,
.p-main-content h2,
.p-main-content h3,
.p-main-content h4,
.p-main-content h5,
.p-main-content h6,
.p-main-content p,
.p-main-content p span,
.p-main-content p span span {
    font-family: 'Zalando Sans', sans-serif !important;
}

.p-main-content img {
    border-radius: 2rem;
}

.sidebar {
    width: 320px;
    /* background: #ffffff; */
    border-right: 1px solid #e5e7eb;
    position: fixed;
    bottom: unset;
    top: 12.8rem;
    padding: 25px 25px 25px 0px;
    height: calc(100vh - 88px);
    overflow-y: auto;
}

.p-main-scroll {
    padding: 45px;
    min-height: 80vh;
}

/* WebKit browsers */
.sidebar::-webkit-scrollbar {
    width: 6px;
    height: 2px;
}

.p-main-scroll:hover::-webkit-scrollbar {
    width: 6px;
    height: 2px;
    
}

/* Thumb */
.sidebar::-webkit-scrollbar-thumb {
    width: 20;
    height: 4px;
    background-color: #b1b1b1 !important; /* light gray */
    opacity: 0.75;
    border-radius: 20px;
}
.p-main-scroll:hover::-webkit-scrollbar-thumb {
    width: 20;
    height: 4px;
    background-color: #c1c1c1 !important; /* light gray */
    opacity: 0.75;
    border-radius: 20px;
}

/* Knowledgebase sidebar - sticky override */
.knowledgebase-area .sidebar {
    position: sticky;
    top: 100px;
    width: 100%;
    height: calc(100vh - 100px);
    overflow-y: auto;
}

/* Knowledgebase mobile nav */
.kb-mobile-nav {
    display: none;
    margin-bottom: 24px;
}

.kb-tab-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.kb-tab-list::-webkit-scrollbar {
    display: none;
}

.kb-tab-btn {
    border: 1px solid var(--natural-color-200);
    background: #fff;
    color: var(--heading-text-color);
    padding: 8px 36px 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.kb-tab-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.kb-tab-chevron {
    position: absolute;
    right: 12px;
    top: 40%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--natural-color-400);
    line-height: 1;
    transition: transform 0.2s ease;
}

.kb-tab-btn.open .kb-tab-chevron {
    transform: translateY(0%) rotate(180deg);
}

.kb-tab-panel {
    display: none;
}

.kb-tab-panel.active {
    display: block;
}

.kb-tab-panel {
    position: relative;
}

.kb-tab-panel .kb-tab-overlay {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    border: 1px solid var(--natural-color-200);
    border-radius: 14px;
    padding: 10px;
    z-index: 5;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 12px 28px rgba(24, 24, 24, 0.12);
}

.kb-tab-panel.open .kb-tab-overlay {
    display: block;
}

.kb-overlay-item,
.kb-overlay-empty {
    display: block;
    padding: 10px 12px;
    color: var(--natural-color-600);
    border-radius: 10px;
}

.kb-overlay-item:hover,
.kb-overlay-item.active {
    background: var(--primary-color-100);
    color: var(--heading-text-color);
}

/* Quick Links */
.quick-links {
    margin-bottom: 30px;
}

.quick-item {
    padding: 10px 0;
    color: #111827;
    cursor: pointer;
}

/* Menu */
.menu-group {
    margin-bottom: 20px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    padding: 12px 0;
    cursor: pointer;
}

.chevron {
    transform: translateY(50%) rotate(180deg);
    transition: transform 0.3s ease;
    margin-top: -10px;
}

/* Submenu */
.submenu {
    overflow: hidden;
    max-height: 1000px; /* big enough to fit content */
    transition: max-height 0.4s ease;
    padding-left: 20px;
    border-left: 2px solid #e5e7eb;
}

.submenu-item {
    padding: 8px 0;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.submenu-item:hover {
    color: #111827;
    background: #f3f4f6;
    padding-left: 10px;
    border-radius: 8px;
}

.submenu-item.active {
    background: #f3f4f6;
    padding-left: 10px;
    border-radius: 8px;
    color: #111827;
}
/* END KNOWLEDGEBASE CATEGORY */

@media (min-width: 992px) and (max-width: 1190px) {
  body {
      font-size: 0.8rem !important;
  }
  .home-21 .banner-contents .banner-title {
      font-size: 3rem;
  }
  .home-21 .banner-contents .banner-small-title {
    font-size: 1rem;
  }
  .section-title .title {
    font-size: 2.4rem;
  }
  .case-studies-menu li {
    font-size: 13px;
  }
  .single-price-plan-01 .price-body ul li {
    font-size: 0.8rem;
  }
  dotlottie-player {
    width: 430px !important;
    height: 430px !important;
  }
  .hero-play-button-big {
    width: 50px;
    left: 60%;
  }
  .small-banner {
    top: -50px;
  }
  .plan-item.recomended-label::before {
    width: 91.5%;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-area .nav-container .responsive-mobile-menu {
    margin-right: 0px !important;
  }
  .click-content-show {
    visibility: hidden;
  }
  .gift-box-1 {
    display: none;
  }

  .home-21 {
    padding: 2.5rem 0rem;
  }

  .small-banner {
    border-top-left-radius: 0px;
  }

  .small-banner {
    top: -40px;
    padding: 20px 0px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .inner-contact-section .section-title p {
    max-width: 100%;
  }

  .inner-contact-section .search-wrapper {
    max-width: 100%;
  }

  .widget-area, .widget-nav-menu {
    margin-top: 0px;
    margin-bottom: 40px;
  }

  .home-21.connects-area.box-radius .title {
    text-align: center;
    padding: 30px 30px;
  }

  .home-21 .feedback-contents .clients-contents {
    padding-right: 0px;
  }

  .btn-lg-x2 {
    font-size: 22px;
    padding: 16px;
  }

  .home-21 .counter-area {
    margin: 30px 0px 45px 0px !important;
  }

  .banner-wrapper-thumb {
    margin-top: 15px !important;
  }

  dotlottie-player {
    width: 100% !important;
    height: 385px !important;
  }

  .section-title.desktop-center.margin-bottom-70 {
    margin-bottom: 40px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .header-style-03 .navbar-area.nav-absolute {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .clients-wrapper {
    margin-left: 0;
    padding-left: 0;
  }

  .features-area {
    padding: 1rem 0rem;
  }

  .tableFixHead {
    max-height: 170vh;
  }

  .pricing-area .tableFixHead {
    max-height: none;
  }

  .pricing-area .tableFixHead .table {
    display: block;
  }

  .pricing-area .tableFixHead .table thead,
  .pricing-area .tableFixHead .table thead tr,
  .pricing-area .tableFixHead .table thead th {
    display: block;
    width: 100%;
  }

  .pricing-area .tableFixHead .table thead th {
    position: static;
    padding: 0;
    border: none;
    text-align: left;
  }

  .pricing-area .tableFixHead .table thead th:not(:first-child) {
    display: none;
  }

  .pricing-area .tableFixHead .table tbody {
    display: none;
  }

  .pricing-area .table thead .price-header {
    border: none;
    padding: 0;
  }

  .pricing-card-stack {
    display: block;
  }

  .knowledgebase-area .sidebar {
    display: none;
    position: static;
    top: auto;
    width: 100%;
    height: auto;
    padding: 0;
    border-right: none;
    margin-bottom: 24px;
  }

  .kb-mobile-nav {
    display: block;
  }

  .p-main-scroll {
    padding: 20px 0;
    min-height: auto;
  }

  .menu-header {
    padding: 10px 0;
  }

  .submenu {
    padding-left: 12px;
  }

  .p-main-content h1,
  .p-main-content h1 span {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }

  .features-area .content-wrapper .left {
    margin-left: 0px;
    padding: 40px;
  }

  .features-area .content-wrapper .center {
    padding: 40px;
  }

  .banner-small-title {
    margin-bottom: 30px;
  }

  .tableFixHead .table {
    table-layout: auto;
  }

  .tableFixHead .table td {
    background-color: #fff;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    display: block;
    padding: .5rem 0rem;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li+li {
    margin-left: 0;
  }

  .features-area .content-wrapper .right .layer::before {
    
  }

  .features-area .content-wrapper .right .layer {
    position: relative;
  }

  .features-area .content-wrapper .right {
    padding: 0px;
  }

  .navbar-area .navbar-collapse {
    background: var(--natural-color-700);
    padding: 0px 16px 7px 16px;
    border-radius: 1rem;
  }

  .header-variant-21 .navbar-area .navbar-collapse {
    background: var(--natural-color-100);
    border: 1px solid var(--natural-color-200);
    box-shadow: 0 12px 30px rgba(24, 24, 24, 0.1);
  }

  section.faq-page-content-area {
    width: 90%;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    line-height: 1;
    border-bottom: 1px solid rgba(225,225,225,0.1);
  }

  .header-variant-21 .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    border-bottom: 1px solid var(--natural-color-200);
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li {
    border-bottom: 0px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child a.btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff !important;
  }

  .header-variant-21 .navbar-area .nav-container .navbar-collapse .navbar-nav.menu-list li a,
  .header-variant-21 .navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li a {
    color: var(--heading-text-color);
  }

  .header-variant-21 .navbar-area .nav-container .navbar-collapse .navbar-nav.menu-list li a:hover,
  .header-variant-21 .navbar-area .nav-container .navbar-collapse .navbar-nav.action-list li .login-link:hover {
    background-color: var(--primary-color-100);
    color: var(--primary-color-700);
  }

  .header-variant-21 .navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    background-color: var(--primary-color-100);
    color: var(--primary-color-700);
  }

  .small-banner {
    top: 0;
  }

  .masonry-item {
    margin-bottom: 30px;
  }

  .masonry {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .masonry .card {
    margin-bottom: 0;
  }

  .plan-item.recomended-label::before { 
    top: -75px;
  }

  .content-integrations {
    margin-top: 3rem;;
  }

  .card-item {
    min-height: auto;
  }

  .section-title .title, .section-title .p, .w-60 {
    max-width: 100% !important;
    width: 100% !important;
  }

  .features-wrapper .card:hover {
    transform: scale(1.07);
  }

  .plan-item.recomended-label::before {
    height: 102%;
  }

  .hide-on-mobile {
    display: none;
  }

  .mob-center {
    text-align: center !important;
    margin: 0 auto;
  }

  .credit-card {
    margin-top: 35px !important;
  }

  .container, .container-sm {
    max-width: 95%;
  }

  .home-21 .banner-contents {
    width: 100%;
  }

  .home-21.banner-area {
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .home-21 .banner-content-wrapper {
    max-width: 100%;
  }

  .home-21 .banner-contents .banner-title {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .home-21 .banner-contents .banner-small-title {
    font-size: 1rem;
  }

  .home-21 .banner-contents .b-base-color,
  .home-21 .banner-contents #changingWord {
    padding: 4px 10px;
    margin: 0 4px;
  }

  .home-21 .banner-btn {
    gap: 12px;
    justify-content: flex-start;
  }

  .home-21 .hero-play-button-big {
    top: 16px;
    right: 16px;
  }

  .home-21 .hero-illustration .btn-default {
    top: 10px;
    right: 10px;
  }

  .home-21 .hero-illustration .banner-info-graphic {
    max-width: 100%;
  }

  .integration-area .integration-img {
    width: 80%;
  }

  .home-21.newsletter-area {
    padding-right: 10px;
    padding-left: 10px;
    border-radius: 12px;
  }

  .inner-contact-section .search-wrapper {
    width: 100%;
  }

  .desktop-center {
    text-align: left !important;
  }

  .home-21 .counter-area .counter-wrapper .single-counter {
    margin-bottom: 15px;
  }

  .home-21 .single-counter .counter-count .odometer,
  .home-21 .single-counter .counter-count .count-title {
    font-size: 20px;
  }

  .row.justify-content-center.margin-bottom-70 {
    margin-bottom: 30px;
  }
  
  .home-21 .single-counter .counter-para {
    font-size: 12px;
    margin: 0;
  }

  .mobile {
    display: block;
  }

  .accordion-wrapper .card .card-header a:after,
  .accordion-wrapper .card .card-header a[aria-expanded=false]:after {
    width: 29px;
    height: 29px;
  }

  .home-21.connects-area.box-radius {
    padding: 30px 30px;
    margin-top: 0px;
    margin-bottom: 40px;
  }

  #case-study-btn.mobile {
    padding: 16px;
    border: 1px solid #c2c2c2;
    border-radius: 6px;
    text-align: left;
  }

  .home-21 .case-studies-menu li.active span,
  .home-21 .case-studies-menu li span {
    padding: 0px;
  }

  #case-study-btn.mobile i {
    position: absolute;
    right: 35px;
    top: 18px;
    font-size: 22px;
  }

  .home-21 .case-studies-menu {
    margin-bottom: 20px;
    margin-top: 20px;
    border: 1px solid #c2c2c2;
    border-radius: 6px;
    display: block !important;
  }

  .home-21 .case-studies-menu li {
    display: block;
    text-align: left;
    background: transparent;
    border-bottom: 1px solid #c2c2c2;
    margin-left: 0px;
    border-radius: 0px;
  }

  .home-21 .case-studies-menu li:last-child {
    border-bottom: none;
  }

  .home-21 .case-studies-menu li.active span {
    color: var(--primary-color);
  }
  
  .padding-top-90 {
    padding-top: 60px;
  }

  .padding-bottom-90 {
    padding-bottom: 30px;
  }

  .padding-90 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .single-price-plan-01 .price-body {
    margin-bottom: 25px;
  }

  .home-21.connects-area {
    padding: 90px 15px;
  }

  .section-title p {
    max-width: 100%;
  }

  .home-21 .banner-info-graphic {
    padding: unset;
  }

  .company-box {
    width: 130px !important;
    /* height: 150px !important; */
    margin: 0 auto;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .card-columns {
    column-count: 2;
  }
}

@media (min-width: 320px) and (max-width: 568px) {
  .home-21.banner-area .banner-contents .banner-title {
    font-size: 3rem;
    text-align: left;
  }
  .home-21 .banner-contents .b-base-color, .home-21 .banner-contents #changingWord {
    padding: 0;
    margin: 0;
  }
  .home-21.banner-area .banner-contents .banner-small-title {
    text-align: left;
  }
  .home-21 .banner-btn {
    position: relative;
    text-align: left;
    justify-content: flex-start;
  }
  .slick-clients .card {
    width: 120px;
  }
  .feedback-slider .slick-slider-item .item {
    padding: 0;
  }
  .table thead .slider-table .d-flex {
    width: 200px;
  }
  .table thead .price-header {
    width: 250px;
  }
  .features-area .content-wrapper .center {
    padding-bottom: 0px;
  }
  .features-area .content-wrapper .features-grid {
    display: inline-flex;
    overflow: scroll;
    max-width: 100%;
  }
  
  .features-area .content-wrapper .feature-item {
    min-width: 210px;
  }

  .features-area .content-wrapper .right .layer {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .features-area .content-wrapper .right .layer::before {
    
  }

  .slick-clients .slick-slide {
    width: auto !important;
  }

  .card-item h4 {
    font-size: 1.6rem;
  }

  .credit-card ul li {
    margin-bottom: 10px;
    margin-right: 0px;
  }

  .cta-hero {
    padding: 100px 20px;
  }

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

  .type-of-character {
    bottom: -17px;
    width: 50%;
    left: 2rem;
  }

  .accordion-wrapper .card .card-header {
    padding-left: 0px;
  }
}

@media (min-width: 320px) and (max-width: 368px) {
  .card-item h4 {
    font-size: 1.2rem;
  }
  p {
    font-size: 0.9rem;
  }
  .home-21 .banner-contents .banner-title {
    font-size: 2.6rem;
  }

  dotlottie-player {
    height: 250px !important;
  }

  .flex-center {
    display: block;
  }

  .flex-center .btn-wrapper.text-center {
    text-align: center !important;
  }

  .home-21.connects-area.box-radius {
    padding: 30px 15px;
  }

  .home-21.connects-area.box-radius .title {
    padding: 0px;
    font-size: 34px;
    margin-bottom: 30px;
  }

  .single-price-plan-01 .price-body ul li {
    font-size: 14px;
  }

  .single-price-plan-01 {
    padding: 16px;
  }

  .btn-lg-x2 {
    font-size: 16px;
  }
}
