html {
    scroll-behavior: smooth;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: var(--font-family-secondary);
}

:root {
    --primary: #7B3AED;
    --primary-gradient: linear-gradient(90deg,#5B1ACE,#3D03A1);
    --primary-hover: #5B1ACE;
    --primary-focus: #3D03A1;
    --primary-disabl: #DDCAFF;
    --primary-disabled: #ede3ff;
    --primary-disabled-opcity: #ede3ffcf;
    --secondary: #111111;
    --secondary-hover: linear-gradient(180deg,#505050,#111);
    --secondary-focus: #94A3B8;
    --secondary-disabled: #CBD5E1;
    --tertiary: #7B3AED;
    --tertiary-hover: #5B1ACE;
    --tertiary-focus: #3D03A1;
    --tertiary-disabled: #ede3ff;
    --success: #16A34A;
    --warning: #F79009;
    --danger: #DC2626;
    --info: #0EA5E9;
    --white: #ffffff;
    --black: #000000;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-disabled: #9CA3AF;
    --background: #F8FAFC;
    --surface: #FFFFFF;
    --border-color: #E5E7EB;
    --font-family-primary: "Sora", sans-serif;
    --font-family-secondary: "Instrument Sans", sans-serif;
    --section-padding: 60px 0;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --h1-size: clamp(40px, 8.75vw, 48px);
    --h2-size: clamp(36px, 8.75vw, 44px);
    --h3-size: clamp(32px, 8.75vw, 40px);
    --h4-size: clamp(28px, 8.75vw, 32px);
    --h5-size: clamp(24px, 8.75vw, 28px);
    --h6-size: clamp(22px, 8.75vw, 24px);
    --sub-heading-size: clamp(18px, 8.75vw, 20px);
    --body-large: 18px;
    --body-medium: 16px;
    --body-small: 14px;
	--paragraph-large: 24px;
	--paragraph-medium: 22px;
	--paragraph-small: 20px;
    --caption: 12px;
    --line-height-heading: 1.2;
    --line-height-body: 1.6;
    --letter-spacing-heading: -0.03em;
    --letter-spacing-body: 0;
    --radius-1: 24px;
    --radius-2: 8px;
    --radius-3: 12px;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --padding-1: 4px;
    --padding-2: 8px;
    --padding-3: 16px;
    --heading-bottom-space-para: 16px;
    --heading-bottom-space: 64px;
    --button-commom-top-space: 40px;
    --gap-1: 8px;
    --gap-2: 16px;
    --gap-3: 24px;
    --border-1: 1px;
    --border-2: 2px;
    --border-3: 3px;
    --shadow-1: 0 2px 6px rgba(0,0,0,.08);
    --shadow-2: 0 6px 20px rgba(0,0,0,.12);
    --shadow-3: 0 12px 32px rgba(0,0,0,.16);
    --btn-sm: 13px 16px;
    --btn-md: 20px 24px;
    --btn-lg: 28px 44px;
}

@media (max-width: 1199px) {
    :root {
        --h1-size: clamp(32px, 8.75vw, 40px);
        --h2-size: clamp(30px, 8.75vw, 36px);
        --h3-size: clamp(28px, 8.75vw, 32px);
        --h4-size: clamp(24px, 8.75vw, 28px);
        --h5-size: clamp(22px, 8.75vw, 24px);
        --h6-size: clamp(20px, 8.75vw, 22px);
        --sub-heading-size: clamp(18px, 8.75vw, 20px);
        --body-large: 17px;
        --body-medium: 15px;
        --body-small: 14px;
		--paragraph-large: 22px;
		--paragraph-medium: 20px;
		--paragraph-small: 18px;
        --radius-1: 16px;
        --radius-2: 10px;
        --radius-3: 14px;
        --padding-1: 4px;
        --padding-2: 8px;
        --padding-3: 14px;
        --heading-bottom-space-para: 16px;
        --heading-bottom-space: 64px;
        --button-commom-top-space: 40px;
        --gap-1: 8px;
        --gap-2: 14px;
        --gap-3: 20px;
        --btn-sm: 13px 16px;
        --btn-md: 20px 24px;
        --btn-lg: 28px 44px;
    }
}

@media (max-width: 767px) {
    :root {
        --h1-size: clamp(28px, 8.75vw, 32px);
        --h2-size: clamp(28px, 8.75vw, 30px);
        --h3-size: clamp(24px, 8.75vw, 28px);
        --h4-size: clamp(20px, 8.75vw, 24px);
        --h5-size: clamp(20px, 8.75vw, 22px);
        --h6-size: clamp(18px, 8.75vw, 20px);
        --sub-heading-size: clamp(16px, 8.75vw, 18px);
        --body-large: 16px;
        --body-medium: 15px;
        --body-small: 14px;
		--paragraph-large: 20px;
		--paragraph-medium: 18px;
		--paragraph-small: 16px;
        --radius-1: 24px;
        --radius-2: 8px;
        --radius-3: 12px;
        --padding-1: 4px;
        --padding-2: 6px;
        --padding-3: 12px;
        --heading-bottom-space-para: 16px;
        --heading-bottom-space: 44px;
        --button-commom-top-space: 40px;
        --gap-1: 6px;
        --gap-2: 12px;
        --gap-3: 16px;
        --btn-sm: 32px;
        --btn-md: 12px 18px;
        --btn-lg: 16px 20px;
    }
}

a {
    outline: 0px;
}

.clear {
    content: "";
    display: block;
    clear: both;
}

.header {
    position: relative;
    padding-bottom: 30px;
    background: var(--primary);
    padding-top: 6px;
}

.header-home {
    background: url("../img/banner.webp") center top / 1440px repeat-x;
}

.header-common {
    background: url("../img/demo-bg.webp") center top / 1440px repeat-x;
}

.header::after {
    display: block;
    background: linear-gradient(rgba(222, 241, 226, 0.33) 0%, rgba(222, 241, 226, 0.78) 42%, transparent 100%);
    position: absolute;
    inset: 0px;
    z-index: -1;
}

.header .menu {
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(255, 255, 255);
    border-radius: 20px;
}

.header .menu .logo {
    width: 117px;
}

.header .menu .logo a {
}

.header .menu .logo a img {
    width: 100%;
}

.header .menu .header-menu {
    display: flex;
    align-items: center;
    justify-content: end;
    width: calc(100% - 117px);
}

.header .menu .header-menu button {
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    background: var(--primary-gradient);
    padding: var(--btn-sm);
    display: flex;
    gap: 8px;
    align-items: center;
    border: 0px;
    margin-left: 15px;
}

.header .menu .header-menu button svg {
    width: 16px;
    transition: 0.5s;
}

.header-menu ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: none;
}

.header-menu ul li {
}

.header-menu ul li a {
    font-family: "Instrument Sans";
    font-size: 14px;
    color: rgb(17, 17, 17);
    text-decoration: none;
    padding: 0px 10px;
}

.header-menu ul li a svg {
    width: 16px;
    margin-left: 5px;
}

.fixed-menu-header {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.11) 2px 2px 7px;
    animation: 0.5s ease 0s 1 normal none running slideDown;
    border-radius: 0px !important;
    padding: 11px 25px !important;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0px);
    }
}

.animated-heading span {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(40px);
    will-change: transform;
}

.animated-heading .italic {
    font-family: "Instrument Serif", serif;
    font-style: italic;
}

.animated-heading.animate span {
    animation: 0.8s ease 0s 1 normal forwards running wordReveal;
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(40px);
    }

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

.header .hero-content {
    max-width: 640px;
    margin: 0px auto;
    text-align: center;
    padding: 110px 0px;
}

.header .hero-content h1 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: var(--h1-size);
    line-height: 1.2;
    color: rgb(17, 17, 17);
    margin-bottom: var(--heading-bottom-space-para);
}

.header .hero-content p {
    font-size: 18px;
    line-height: 1.5;
    font-family: var(--font-family-secondary);
    margin: 0px;
    color: rgba(17, 17, 17, 0.8);
}

.header .hero-content a {
    background: var(--primary);
    border-radius: 12px;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: var(--btn-md);
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    margin-top: var(--button-commom-top-space);
}

.header .hero-content a svg {
    width: 22px;
    height: 22px;
    transition: 0.5s;
}

.header .hero-content .img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.header .hero-content .img img {
    width: 36px;
}

.header .hero-content .img p {
    font-family: var(--font-family-secondary);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: rgb(124, 58, 237);
    display: none;
}

.hero-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-bottom .hero-bottom-box {
    width: 33.33%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 33px;
    background: rgb(255, 255, 255);
    border-radius: var(--radius-1);
}

.hero-bottom .hero-bottom-box .hero-bot-img {
}

.hero-bottom .hero-bottom-box .hero-bot-img img {
    width: 54px;
}

.hero-bottom .hero-bottom-box .hero-bot-cont {
}

.hero-bottom .hero-bottom-box .hero-bot-cont h3 {
    font-family: var(--font-family-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--h5-size);
    line-height: 1.5;
    color: rgb(17, 17, 17);
    margin: 0px;
}

.hero-bottom .hero-bottom-box .hero-bot-cont p {
    font-family: var(--font-family-secondary);
    font-size: 16px;
    line-height: 1.5;
    color: rgb(108, 108, 108);
    margin: 0px;
}

.customers-logo {
    padding: 60px 0px 100px;
}

.customers-logo ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.customers-logo ul li {
}

.customers-logo ul li img {
    width: auto;
    height: 70px;
}

.out-cont {
    margin: 0px auto;
    max-width: 700px;
    text-align: center;
    width: 100%;
}

.out-cont h2 {
    font-family: var(--font-family-primary);
    font-weight: var(--fw-bold);
    font-size: var(--h2-size);
    line-height: 1.2;
    color: rgb(0, 0, 0);
    padding: 0px 60px;
    margin: 0px;
}

.out-cont p {
    color: rgb(36, 36, 36);
    font-size: 18px;
    font-family: var(--font-family-secondary);
    line-height: 1.4;
    margin-top: var(--heading-bottom-space-para);
    margin-bottom: 0px;
}

.tab-section {
    padding: 60px 0px;
}

.tab-box {
    display: flex;
    gap: 30px;
    margin-top: var(--heading-bottom-space);
}

.tab-box .tab-menu {
    width: 25%;
}

.tab-box .tab-menu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-box .tab-menu ul li {
}

.tab-box .tab-menu ul li a {
    line-height: 1.4;
    font-size: 18px;
    color: rgb(28, 27, 41);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 20px;
    border-width: 1.5px 0px 0px 1.5px;
    border-style: dashed none none dashed;
    border-color: rgb(221, 221, 221) currentcolor currentcolor rgb(221, 221, 221);
    border-image: none;
    border-radius: 16px 0px 0px;
    text-decoration: none;
}

.tab-box .tab-menu ul li a span {
    display: inline-block;
    background: rgb(221, 221, 221);
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

.tab-box .tab-menu ul li a.active, .tab-box .tab-menu ul li a:hover {
    background: var(--primary);
    border-color: transparent;
    color: rgb(255, 255, 255);
    border-radius: 16px;
}

.tab-box .tab-menu ul li a.active span, .tab-menu ul li a:hover span {
    background: rgb(255, 255, 255);
}

.tab-box .tab-cont {
    border-radius: var(--radius-1);
    border: 1px solid rgb(221, 221, 221);
    width: calc(75%);
    background: url("../img/tab-bg.webp") 100% 0% / 294px no-repeat;
    z-index: 1;
    position: relative;
    padding: 44px 44px 0px;
    display: none;
    overflow: hidden;
}

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

.tab-box .tab-cont::after {
    content: "";
    display: block;
    background: linear-gradient(232deg, var(--primary-disabled-opcity) 0%, transparent 68%);
    position: absolute;
    inset: 0px;
    z-index: -1;
}

.tab-box .tab-cont .tab-cont-box {
    display: flex;
    gap: 30px;
    align-items: end;
}

.tab-box .tab-cont .tab-cont-box .cont {
    width: 43%;
    display: flex;
    flex-direction: column;
}

.tab-box .tab-cont .tab-cont-box .cont span {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
}

.tab-box .tab-cont .tab-cont-box .cont span svg {
    width: 32px;
    height: 32px;
    color: rgb(255, 255, 255);
}

.tab-box .tab-cont .tab-cont-box .cont h3 {
    font-size: var(--h6-size);
    color: rgb(0, 0, 0);
    line-height: 1.2;
    margin-right: 0px;
    margin-left: 0px;
    font-weight: var(--fw-semibold);
    font-family: var(--font-family-primary);
    margin-top: var(--heading-bottom-space-para);
    margin-bottom: 12px;
}

.tab-box .tab-cont .tab-cont-box .cont p {
    font-size: 16px;
    line-height: 1.4;
    color: rgb(108, 108, 108);
    margin: 0px;
}

.tab-box .tab-cont .tab-cont-box .tag-line {
    width: 55%;
}

.tab-box .tab-cont .tab-cont-box .tag-line ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    gap: 15px 10px;
}

.tab-box .tab-cont .tab-cont-box .tag-line ul li {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--primary-disabled);
    border-radius: 110px;
    gap: 8px;
    font-size: 14px;
    color: rgb(22, 22, 22);
    line-height: 1.4;
}

.tab-box .tab-cont .tab-cont-box .tag-line ul li span {
    width: 4px;
    height: 4px;
    display: inline-block;
    border-radius: 100%;
    background: var(--primary-hover);
}

.tab-box .tab-cont .tab-cont-img {
    background: rgb(247, 245, 244);
    padding: 35px 25px 0px;
    border-radius: 36px 36px 0px 0px;
    margin-top: 48px;
    box-shadow: rgba(148, 178, 168, 0.21) -10px -10px 18px;
    margin-bottom: -10px;
}

.tab-box .tab-cont .tab-cont-img img {
    width: 100%;
}

.drive-measurable {
    padding: 90px 0px;
    background: linear-gradient(0deg, var(--primary-disabled)0%, #FFFFFF 77%);
}

.drive-measurable .out-cont {
    margin-bottom: 0px;
}

.drive-measurable .drive-box-div {
    margin-top: var(--heading-bottom-space);
}

.drive-measurable .drive-box-div .drive-box {
    display: flex;
    flex-direction: column;
    padding-right: 15px;
}

.drive-measurable .drive-box-div .drive-box img {
    width: 80px;
}

.drive-measurable .drive-box-div .drive-box h3 {
    font-size: var(--h6-size);
    font-weight: var(--fw-semibold);
    color: rgb(0, 0, 0);
    line-height: 1.3;
    margin: 32px 0px 12px;
    font-family: var(--font-family-primary);
}

.drive-measurable .drive-box-div .drive-box p {
    font-size: 18px;
    line-height: 1.4;
    color: rgb(108, 108, 108);
    margin: 0px;
}

.drive-measurable .drive-box-div .drive-box.pad-top {
    padding-top: 130px;
}

.testimonials {
    padding: 60px 0px;
    text-align: center;
    background: linear-gradient(180deg, var(--primary-disabled)0%, #FFFFFF 77%);
}

.testimonials img {
    width: 42px;
    filter: brightness(0) saturate(100%) invert(29%) sepia(91%) saturate(2284%) hue-rotate(220deg) brightness(97%) contrast(97%);
    & img.quote-icon {
        filter: brightness(0) saturate(100%) invert(29%) sepia(91%) saturate(2284%) hue-rotate(210deg) brightness(97%) contrast(97%);
    }
}

.testimonials p {
    font-size: 24px;
    color: rgb(17, 17, 17);
    line-height: 1.4;
    margin: 30px auto 45px;
    max-width: 850px;
}

.testimonials h4 {
    font-size: 24px;
    color: rgb(17, 17, 17);
    font-weight: 500;
}

.testimonials h5 {
    font-size: 20px;
    font-weight: 400;
    color: rgb(68, 68, 68);
}

.get-started {
    background: var(--primary-focus);
    padding: 170px 0px;
    position: relative;
}

.get-started-box {
    max-width: 650px;
    width: 100%;
    margin: 0px auto;
    text-align: center;
}

.get-started h2 {
    margin-bottom: var(--heading-bottom-space-para);
    font-size: var(--h3-size);
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-family: var(--font-family-primary);
}

.get-started p {
    margin-bottom: 0px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 1.4;
}

.get-started::after, .get-started::before {
    content: "";
    display: block;
    width: 70%;
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 70%, var(--primary) 85%, transparent 100%);
    clip-path: polygon(0px 0px, 96% 0px, 100% 50%, 96% 100%, 0px 100%);
}

.get-started::before {
    top: 2rem;
}

.get-started::after {
    bottom: 2rem;
    right: 0px;
    transform: rotate(180deg);
}

.get-started-btn {
    display: flex;
    justify-content: center;
}

.get-started a {
    border-radius: 12px;
    font-weight: var(--fw-semibold);
    background: var(--warning);
    padding: var(--btn-lg);
    line-height: 0;
    gap: 10px;
    margin-top: var(--button-commom-top-space);
    align-items: center;
    letter-spacing: 0.3px;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    color: rgb(10, 14, 21);
}

.get-started a svg {
    transition: 0.5s;
    width: 24px;
}

.faq-section {
    padding: 60px 0px;
}

.faq-div {
    display: flex;
    justify-content: space-between;
}

.faq-div .faq-head {
    width: 33%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.faq-div .faq-head h2 {
    font-size: var(--h3-size);
    line-height: 1.2;
    font-weight: 700;
    opacity: 0.5;
    font-family: var(--font-family-primary);
}

.faq-div .faq {
    width: 66%;
}

.faq-div .faq .faq-box {
    border: 1px solid rgb(221, 221, 221);
    border-radius: var(--radius-1);
    padding: 32px;
    margin-bottom: 15px;
}

.faq-div .faq .faq-box h4 {
    font-size: var(--sub-heading-size);
    font-weight: var(--fw-medium);
    color: rgb(10, 14, 21);
    margin-bottom: 8px;
    font-family: var(--font-family-secondary);
}

.faq-div .faq .faq-box p {
    margin: 0px;
    color: rgb(77, 77, 77);
    font-size: 18px;
    line-height: 1.5;
}

.footer {
    padding: 60px 0px;
    background: url("../img/footer-bg.webp") center center / cover no-repeat;
    border-top: 1px solid rgb(221, 221, 221);
}

.footer p {
    margin: 0px;
    font-size: 18px;
    color: rgb(22, 22, 22);
    line-height: 1.4;
}

.foot-img {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.foot-img img {
    width: 60px;
}

.foot-img p {
    margin: 0px;
    font-weight: 700;
    font-size: 26px;
}

ul.social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0px 0px;
    padding: 0px;
    list-style: none;
}

ul.social li {
}

ul.social li a {
}

ul.social li a img {
    width: 32px;
}

.footer address {
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer address p {
    font-weight: 400;
    text-decoration: none;
    margin: 0px;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

.footer address a {
    font-weight: 400;
    text-decoration: none;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

.footer-bottom {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    transition: 1s;
    margin-top: 30px;
}

.footer ul.social li a img {
    width: 32px;
}

.footer-bottom p {
    opacity: 0.7;
    margin: 0px;
    word-break: break-all;
    white-space: normal;
    font-size: 14px;
}

.footer-bottom ul li a {
    padding: 0px 8px;
    border-right: 1px solid rgb(0, 0, 0);
    white-space: nowrap;
}

.footer-bottom ul li:last-child a {
    border: 0px;
    padding-right: 0px;
}

.carousel {
    margin-top: 20px;
    width: 100%;
}

.carousel-control-next, .carousel-control-prev {
    width: 50px;
    opacity: 1;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 48px;
    height: 48px;
    opacity: 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") center center / 15px no-repeat rgb(255, 255, 255);
    border-radius: 100%;
    border: 2px solid var(--primary);
    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }

    & .arrow {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 24px;
    }
}

.carousel-control-prev-icon {
    transform: rotate(180deg);
    margin-left: 2px;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.header .menu .header-menu button:hover, .get-started a:hover {
    opacity: 0.9;
}

.header .menu .header-menu button:hover svg, .get-started a:hover svg {
    transform: translateX(10px);
}

.header .hero-content a:hover {
    background: var(--primary-hover);
}

.header .hero-content a:hover svg {
    transform: translateX(10px);
}

.customers-logo {
    overflow: auto;
    scrollbar-width: none;
}

.customers-logo::-webkit-scrollbar {
    display: none;
}

.tab-box .tab-menu ul {
    overflow: auto;
    scrollbar-width: none;
}

.tab-box .tab-menu ul::-webkit-scrollbar {
    display: none;
}

.test-box {
    box-sizing: border-box;
}

.carousel-inner {
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    position: relative;
    margin-top: var(--heading-bottom-space);
}

.carousel-inner::after, .carousel-inner::before {
    content: "";
    position: absolute;
    width: 20%;
    top: 0px;
    bottom: 0px;
    background: linear-gradient(85deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.95));
    z-index: 1;
    display: none;
}

.carousel-inner::after {
    right: 0px;
}

.carousel-inner::before {
    left: 0px;
}

.tabs {
    overflow: auto;
    scrollbar-width: none;
    flex-direction: row;
    gap: 15px;
    list-style: none;
    margin: 0px 0px 20px;
    padding: 0px;
    display: flex;
}

.tabs .tab {
    line-height: 1.4;
    color: rgb(28, 27, 41);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 13px 18px;
    font-size: 16px;
    border-width: 1.5px 0px 0px 1.5px;
    border-style: dashed none none dashed;
    border-color: rgb(221, 221, 221) currentcolor currentcolor rgb(221, 221, 221);
    border-image: none;
    border-radius: 16px 0px 0px;
    text-decoration: none;
}

.tabs .tab span {
    display: inline-block;
    background: rgb(221, 221, 221);
    width: 8px;
    height: 8px;
    border-radius: 100%;
}

.tabs .tab.active {
    background: var(--primary);
    border-color: transparent;
    color: rgb(255, 255, 255);
    border-radius: 16px;
}

.tabs .tab.active span {
    background: rgb(255, 255, 255);
}

.swiper-slide.tab-cont {
    display: block;
}

.mob-tab-box {
    display: none;
}

.inner-page-hero {
    background: rgb(2, 90, 63);
    padding: 30px 0px 130px;
}

.breadcrumb {
    margin: 30px 0px 0px;
    padding: 0px;
}

.breadcrumb li {
    font-family: "Instrument Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgb(255, 255, 255);
    opacity: 0.7;
}

.breadcrumb-item.active {
    color: rgb(255, 255, 255);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgb(255, 255, 255);
}

.inner-page-hero-cont {
    padding-top: 80px;
}

.inner-page-hero-cont img {
    width: 100%;
}

.inner-page-hero-cont h2 {
    color: rgb(255, 255, 255);
    font-size: var(--h1-size);
    line-height: 1.2;
    font-weight: var(--fw-bold);
    text-align: left;
}

.inner-page-hero-cont p {
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    font-family: "Instrument Sans", sans-serif;
    margin-top: var(--heading-bottom-space-para);
}

.case-study-deta {
    background: var(--primary-disabl);
    border-radius: 56px 56px 0px 0px;
    position: relative;
    padding: 40px 0px;
}

.case-study-deta h2 {
    font-size: 49px;
    font-weight: 700;
    font-family: "Instrument Sans", sans-serif;
    margin: 0px;
    line-height: normal;
}

.case-study-deta-div {
    display: flex;
    justify-content: space-between;
    padding: 0px 40px;
}

.case-study-deta-box {
}

.case-study-deta-box:nth-child(2) {
    padding: 0px 12%;
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.case-study-deta-box span {
    font-size: 36px;
    font-weight: 700;
    color: rgb(2, 90, 63);
    display: inline-block;
    line-height: normal;
    font-family: "Instrument Sans", sans-serif;
}

.case-study-deta-box p {
    margin: 0px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 17px;
    color: rgb(2, 90, 63);
    font-family: "Instrument Sans", sans-serif;
}

.case-study-deta::before {
    content: "";
    background: var(--primary);
    position: absolute;
    z-index: -1;
    width: 100%;
    display: inline-block;
    top: 0px;
    bottom: 0px;
}

.table-of-content-sec {
    background: rgb(255, 255, 255);
    border-radius: 56px 56px 0px 0px;
    position: relative;
    padding: 80px 0px;
}

.table-of-content-sec::before {
    content: "";
    background: var(--primary-disabl);
    position: absolute;
    z-index: -1;
    width: 100%;
    display: inline-block;
    top: 0px;
    bottom: 0px;
}

.table-of-content-menu {
    position: sticky;
    top: 50px;
    align-self: flex-start;
}

.table-of-content-menu h3 {
    font-family: var(--font-family-primary);
    font-size: var(--sub-heading-size);
    font-weight: var(--fw-bold);
    margin-bottom: 30px;
}

.table-of-content-menu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.table-of-content-menu ul li {
}

.table-of-content-menu ul li a {
    border: 1px solid rgb(222, 222, 222);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
    transition: 1s;
    cursor: pointer;
}

.table-of-content-menu ul li a label {
    font-family: var(--font-family-secondary);
    font-weight: 400;
    font-size: 13px;
    color: rgb(10, 14, 21);
    text-decoration: none;
    width: calc(100% - 24px);
    padding-right: 20px;
    cursor: pointer;
    margin: 0px;
    opacity: 0.8;
    line-height: 1.3 !important;
}

.table-of-content-menu ul li a span {
    width: 24px;
    height: 24px;
    border: 1px solid rgb(222, 222, 222);
    display: flex;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
}

.table-of-content-menu ul li a span svg {
    width: 9.6px;
    height: 9.6px;
    color: rgb(0, 0, 0);
}

.table-of-content-menu a.active {
    font-weight: 500;
    background: rgb(241, 234, 255);
}

.table-of-content-menu a.active label {
    font-weight: 500;
    opacity: 1;
    font-size: 14px;
}

.table-of-cont-img {
    width: 100%;
}

.table-of-cont-img img {
    width: 100%;
}

.company-box {
    background: rgb(241, 234, 255);
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 25px;
}

.company-box h4 {
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: rgb(22, 22, 22);
    font-family: var(--font-family-secondary);
    align-items: center;
    letter-spacing: 0.1px;
    margin-top: var(--heading-bottom-space-para);
}

.company-box h4 span {
}

.company-box h4 span svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.company-box p {
    font-family: "Instrument Sans", sans-serif;
    color: rgb(22, 22, 22);
    font-weight: 400;
    line-height: 1.5;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 14px !important;
}

.company-box ul {
    margin: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 65px !important;
}

.company-box ul li {
    font-family: "Instrument Sans", sans-serif;
    color: rgb(22, 22, 22);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 14px !important;
}

.testimonial-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.right-content-box {
    border-radius: 24px;
    border: 1px solid rgb(221, 221, 221);
    padding: 32px;
    margin-bottom: 35px;
}

.case-cont-box {
}

.case-no {
    padding: 12px 20px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: rgb(255, 255, 255);
    transition: 0.3s;
    display: inline-block;
    margin-bottom: 8px;
    line-height: normal;
    font-family: Inter, sans-serif;
}

.case-no:hover {
}

.case-cont-box h2 {
    font-family: var(--font-family-primary);
    font-weight: var(--fw-bold);
    font-size: var(--h4-size);
    color: rgb(10, 14, 21);
    line-height: 1.2;
    margin-bottom: var(--heading-bottom-space-para);
}

.case-cont-box p {
    font-family: var(--font-family-secondary);
    color: rgb(22, 22, 22);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px;
}

.case-cont-box ul {
    margin: 0px;
    padding: 0px 0px 0px 35px;
}

.case-cont-box ul li {
    font-family: var(--font-family-secondary);
    color: rgb(22, 22, 22);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 8px;
}

.case-cont-box h3 {
    font-weight: 600;
    font-size: var(--h6-size);
    line-height: 1.2;
    color: rgb(0, 0, 0);
    font-family: "Instrument Sans", sans-serif;
    margin-top: 26px;
    margin-bottom: 12px;
}

.case-test {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.case-test .case-qu-img {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-test .case-qu-img img {
    width: 45%;
    filter: brightness(0) invert(1);
    opacity: .6;
}

.case-test .case-qu-cont {
    background: var(--primary);
    border-radius: 24px;
    width: calc(100% - 92px);
    padding: 32px;
}

.case-test .case-qu-cont p {
    margin: 0px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
}

.right-content-box.img {
    text-align: center;
}

.right-content-box.img img {
    width: 80%;
}

.case-running-text .stat-card {
    background: #F1EAFF;
    padding: 32px 40px;
    margin-top: 15px;
    border-radius: 20px;
}

.case-running-text .stat-card .plus, .case-running-text .stat-card .suffix, .case-running-text .stat-card h2 {
    font-size: 40px;
    color: rgb(0, 0, 0);
    display: inline-block;
    font-weight: var(--fw-bold);
    margin-bottom: 0;
}

.case-running-text .stat-card p {
    margin: 0px;
    font-size: 14px;
}

.case-swiper-box {
    margin-bottom: 35px;
}

.case-swiper {
    position: absolute;
    left: 0px;
    width: calc(-15px + 100vw);
    transition: 2s;
}

.more-case {
    padding: 60px 0px;
}

.more-case .out-cont {
    max-width: 570px;
    margin: 0px auto 50px;
}

.case-slide-box {
    border: 1px solid #DEDEDE;
    border-radius: 24px;
    padding: 32px 24px;
    overflow: hidden;
}

.case-slide-box h5 {
    background: rgb(11, 185, 55);
    display: inline-flex;
    color: rgb(255, 255, 255);
    border-radius: 8px;
    font-size: 25px;
    font-weight: 700;
    font-family: "Instrument Sans", sans-serif;
    line-height: normal;
    padding: 4px 5px;
    margin: 0px;
    display: none;
}

.case-slide-box p {
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    color: rgb(22, 22, 22);
    line-height: 1.4;
}

.case-slide-box .case-foot {
}

.case-slide-box .case-foot {
    display: flex;
    justify-content: space-between;
    background: #F1EAFF;
    margin: 0px -24px -32px;
    padding: 20px 28px;
    align-items: center;
}

.case-slide-box .case-foot h6 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 22px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    line-height: 1.2;
}

.case-slide-box .case-foot p {
    margin: 0px;
    font-size: 13px;
    font-weight: 100;
    color: rgb(22, 22, 22);
    text-transform: capitalize;
}

.case-slide-box .case-foot a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 236, 236);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.case-slide-box .case-foot a svg {
    width: 16px;
    height: 16px;
}



/******************       Demo & Calender Pages       ************************/


.demo-page-common-bg{
  background:url(../img/demo-bg.webp);
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navbar-brand{
    width: 152px;
    padding: 0;
    margin=top: 2;
}

.navbar{
    padding: 20px 0 !important;
}
.navbar-brand img{
    width: 100%;
}

.blog-new-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
}
.blog-req{
    display: inline-block;
    padding: 10px 20px;
    background: #008d62;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    
    font-weight: 600;
    text-decoration: none;
}
.blog-req:hover, .hero-banner .hero-cont .hero-cta-box-cont a:hover, .cus-div-box .content a:hover{
    background: #086a4c;
    color: #fff;
    text-decoration: none;
}
.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: 12px;
}
.logo-head{
  font-size: 14px !important;
  margin-top: 20px;
  color: #1C1C1C !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Track */
.logo-track {
    display: inline-flex;
    white-space: nowrap;
    0:
    AUTO 100PX;
}

/* Logos */
.logo-track img {
    height: 48px;
    margin-right: 20px;
}

/* LEFT SCROLL */
.scroll-left {
    animation: scrollLeft 20s linear infinite;
    background: #fff;
    padding: 7px 15px;
    box-sizing: border-box;
}

/* RIGHT SCROLL */
.scroll-right {
    animation: scrollRight 20s linear infinite;
}

/* Animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.animated-push-btn-cta{
    transform: translateY(0);
    transition: all 600ms cubic-bezier(0.3, 0.7, 0.4, 1) 0s;
    /* box-shadow: 0 -0.5em 0.5em transparent, 0 0.5em 0.5em transparent,
    0 0.25em 0.3em -0.2em hsla(190deg, 50%, 50%, 0.46),
    0 0.25em 0.75em hsla(190deg, 40%, 40%, 0.3); */
    overflow: hidden;
    background: #008d62;
    }


    .animated-push-btn-cta:hover{
        background: #10aa7c;
    }

.animated-push-btn-cta:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}


@-webkit-keyframes shiny-btn1 {
 0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.form-banner-section{
    padding: 0 0 0 0;
}
.form-banner{}
.form-banner h1{
    font-size: var(--h2-size);
    font-weight: var(--fw-bold);
    margin-bottom: var(--heading-bottom-space-para);
    font-family: var(--font-family-primary);
}
.form-banner h1 span{
    color: var(--primary);
}
.form-banner p{
    font-size: 20px;
    font-weight: 400;
    color: #111111;
    font-family: "Instrument Sans", sans-serif;
}

.form-area {
  width: 100%;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}

.form-container #crmWebToEntityForm.zcwf_lblTopBottom, .form-container #crmWebToEntityForm.zcwf_lblLeft{
  box-shadow: none;
  border: none;
  border-radius: 3px;
  padding: 33px;
  
}
#crmWebToEntityForm .zcwf_title{
  display: none;
  font-family: "Inter", sans-serif;
  color: black;
  font-size: 24px;
  font-weight: 700;
  line-height: 26.4px;

}
#crmWebToEntityForm .zcwf_row{
  margin: 5px 0 0;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_lab{
  width: 100%;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_lab label{
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family-secondary);
  line-height: 19.6px;
  width: 100% !important;
  display: block !important;
  margin: 0 auto !important;
  /* max-width: 235px !important; */
  min-width: 235px !important;
  color:#0A0E15;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld{
  width: 100%;
}

#crmWebToEntityForm .zcwf_row .zcwf_col_fld textarea{
	width: 100%;
	font-size: 14px;	
    border: 1px solid #c0c6cc !important;
	font-family: "Inter", sans-serif;
    resize: vertical;
    border-radius: 12px;
    float: left;
	height: 100px;	
	color : #3a3a3c;
	font-weight: 500;
	padding: .5rem 1rem;
}


#crmWebToEntityForm .zcwf_row .zcwf_col_fld input{
  width: 100%;
  float: none;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  padding: .5rem 1rem;
  /* border: 1px solid #00000078 !important; */
  border-radius: 12px;
  color: #3a3a3c;
  margin-top: 5px;
  transition: all 0.3s ease 0s;
  height: 56px;
  margin: 0 auto !important;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld input.frm-email{
  display: block !important;
  /* max-width: 235px !important; */
  /* min-width: 235px !important; */
}

.formsubmit.zcwf_button:hover{
	background: #04684a;
}
.demo-form input[type="email"] {
    width: 100%;
    max-width: 300px;         /* Same width as image */
    height: 54px;
    padding: 0 15px;
    font-size: 16px;
    border: 1px solid #9c9c9c;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld input:focus, #crmWebToEntityForm .zcwf_row .zcwf_col_fld input:focus-visible{
  border: 1px solid #00212C !important;
  outline: none;
  transition: all 0.3s ease 0s;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld input.is-invalid{
  border-color: red !important;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select{
  width: 100%;
  float: none;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  padding: 12px;
  border: 1px solid #d9d8fe;
  border-radius: 4px;
  color: #3a3a3c;
  margin-top: 5px;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select:focus, #crmWebToEntityForm .zcwf_row .zcwf_col_fld select:focus-visible{
  border: 1px solid #00212C !important;
  outline: none;
  transition: all 0.3s ease 0s;
}
/* #crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164{
  padding: 12px 0;
  border: none;
  overflow: hidden;
  height: 100% !important;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164:focus, #crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164:focus-visible{
  border: none !important;
  outline: none;
  transition: all 0.3s ease 0s;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option {
  margin-bottom: 10px;
  position: relative;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option[aria-selected="true"], #crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option:checked{
  background: none;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option[aria-selected="true"]::before{
  border: 1px solid #fff;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option:before {
  content: '';
  border: 1px solid #00212C;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 3px;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option:after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  display: none;
  left: 3px;
  top: 1px;
  background: url(./../images/success-check.svg) no-repeat 0 0 scroll;
  background-size: 100%;
  filter: grayscale(1) brightness(0.5);
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option[aria-selected="true"]::before, #crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option:checked::before{
  border: 1px solid #004CFF;
  background: #004CFF;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option[aria-selected="true"]::after, #crmWebToEntityForm .zcwf_row .zcwf_col_fld select#LEADCF164 option:checked::after{
  display: block;
} */
#crmWebToEntityForm .zcwf_row_checkbox_list{
  margin-top: 20px;
}
#crmWebToEntityForm .zcwf_row_checkbox_list > .zcwf_col_lab{
  margin-bottom: 20px;
}
  #crmWebToEntityForm .zcwf_row_checkbox_list .zcwf_row{
  display: flex;
  align-items: center;
  margin: 10px 0;
}
#crmWebToEntityForm .zcwf_row_checkbox_list .zcwf_row .zcwf_col_lab{
  order: 2;
}
#crmWebToEntityForm .zcwf_row_checkbox_list .zcwf_row .zcwf_col_lab label{
  font-weight: 400;
  font-size: 16px;
  color: #00212C;
}
#crmWebToEntityForm .zcwf_row_checkbox_list .zcwf_row .zcwf_col_fld{
  padding-right: 0;
  margin-top: 0;
}
  #crmWebToEntityForm .zcwf_row_checkbox_list .zcwf_row .zcwf_col_fld input{
  margin-top: 0;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld .zcwf_button{
  display: none;
  transition: all 0.3s ease 0s;
}
#crmWebToEntityForm .zcwf_row .frmLabelheight{
	font-size:12px;
	font-family: Arial;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld .formsubmit.zcwf_button{
  display: block;
  background: var(--primary);
  color: #ffffff;
  padding: var(--btn-md);
  font-size: 14px;
  text-align: center;
  border:none !important;
  border-radius: 12px;
  font-family: "Instrument Sans", sans-serif;
  width: 100% !important;
  margin-bottom:0px !important;
  height: auto;
  max-width: 100%;
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld .formsubmit.zcwf_button:hover{
  background: var(--primary-hover);
}
#crmWebToEntityForm .zcwf_row .zcwf_col_fld .formsubmit.zcwf_button:disabled{
  cursor: not-allowed;
  opacity: 0.7;
}
#recaptcha-wrapper{
	height: 95px;               
    margin-bottom: 20px;
}

.recaptcha-show{
  display: block !important;
}
.auther{
    /* background: #eeeeee; */
    margin-top: 35px;
    /* padding: 30px 30px; */
    border-radius: 6px;
}
.auther p{
    font-size: 18px;
    /* font-style: italic; */
    font-family: "Inter", sans-serif;
    line-height: 25px;
    color: #000;
}
.auther p.pos{
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #454545;
    opacity: .6;
    line-height: 7px;
}
.auther p.comp{
    font-size: 16px;
    color: #000;
    opacity: 0.5;
}

.form-cus-btn{
  font-size: 14px;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  color: #111111;
  font-family: "Instrument Sans", sans-serif;
  opacity: .36;
}


.mob-div{
  display: none;
}

#recaptcha-wrapper{
      max-height: 75px;
    }




    
.multi-step-form{
    max-width:720px;
    margin:auto;
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 3px 3px 21px rgba(0,0,0,0.08);
    border-bottom: 6px solid var(--primary);
}

/* STEP TEXT */
.step-title-top{
    font-size: 16px;
    font-weight:700;
    color: var(--primary);
    margin-bottom: 5px;
}

/* PROGRESS BAR */
.progressbar{
    width:100%;
    height: 8px;
    background:#ececec;
    border-radius:30px;
    overflow:hidden;
    margin-bottom: 20px;
}

.progress{
    width:33%;
    height:100%;
    background: var(--primary);
    border-radius:30px;
    transition:0.4s ease;
}

/* STEP CONTENT */
.step{
    display:none;
    animation:fade .4s ease;
}

.step.active{
    display:block;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* QUESTION */
.question{
    font-size: var(--sub-heading-size);
    line-height:1.4;
    font-weight:700;
    color:#111;
    margin-bottom: 25px;
}

/* OPTIONS */
.options{
    display:flex;
    gap: 20px;
    flex-wrap: wrap;
}

.option{
    border: 1px solid #f1f1f1;
    padding:20px 24px;
    border-radius: 12px;
    cursor:pointer;
    transition:0.3s;
    font-size:16px;
    font-weight: var(--fw-medium);
    width: calc(50% - 10px);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.option:hover{
    border-color: var(--primary-disabl);
}

.option.active{
    border-color: #DDCAFF;
    background: var(--primary-disabled);
    color: #DDCAFF;
    position: relative;
}

.option input{
    display:none;
}

/* INPUTS */
.input-field{
    width:100%;
    height: 56px !important;
    border:1px solid #ddd;
    border-radius: 12px !important;
    padding:0 18px;
    font-size:16px;
    margin-bottom: 8px;
    outline:none;
}

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

/* BUTTONS */
.btn-group{
    display:flex;
    gap:15px;
    margin-top: 15px;
}

.btn{
    border:none;
    padding: 16px 34px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor:pointer;
    transition:0.3s;
    height: 56px !important;
}

.btn-next,
.btn-submit{
    background: var(--primary);
    color: #fff !important;
    border: 0 !important;
}

.btn-next:hover,
.btn-submit:hover{

    background: var(--primary-hover);
}

.btn-back{
    background:#e9e9e9;
    color:#111;
    display: none;
}

.btn:hover{
    opacity:0.9;
}


.mob-div{
  display: none;
}

.option.active::after{
  content: "";
  background: url('../img/check-icon-green.svg') no-repeat center;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 6px;
  top: 6px;
  display: block;
}

.space-re{
    display: none;
}

.cus-show{
    display: block !important;
}





/************************       Free Trial       ********************/



.free-trial-common-bg{
	background:url(../img/background-image.png) right;
	background-size: cover;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.navbar-brand{
    width: 152px;
    padding: 0;
}
.txtcenter{text-align:center;}
.ml-auto, .mx-auto {
    margin-left: auto !important;
}
.mr-auto, .mx-auto {
    margin-right: auto !important;
}
.width152{width:152px;}
.navbar{
    padding: 55px 0 !important;
}
.navbar-brand img{
    width: 100%;
}

.blog-new-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
	margin-top: 0px;
    margin-bottom: 50px;
}
.blog-req{
    display: inline-block;
    padding: 10px 20px;
    background: #008d62;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    
    font-weight: 600;
    text-decoration: none;
}
.blog-req:hover, .hero-banner .hero-cont .hero-cta-box-cont a:hover, .cus-div-box .content a:hover{
    background: #086a4c;
    color: #fff;
    text-decoration: none;
}
.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: 12px;
}
.logo-head{
  font-size: 12px !important;
  margin-top: 65px;
  color: #1C1C1C !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Track */
.logo-track {
    display: inline-flex;
    white-space: nowrap;
    0:
    AUTO 100PX;
}

/* Logos */
.logo-track img {
    height: 48px;
    margin-right: 20px;
}

/* LEFT SCROLL */
.scroll-left {
    animation: scrollLeft 20s linear infinite;
    background: #fff;
    padding: 7px 15px;
    box-sizing: border-box;
}

/* RIGHT SCROLL */
.scroll-right {
    animation: scrollRight 20s linear infinite;
}

/* Animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.animated-push-btn-cta{
    transform: translateY(0);
    transition: all 600ms cubic-bezier(0.3, 0.7, 0.4, 1) 0s;
    /* box-shadow: 0 -0.5em 0.5em transparent, 0 0.5em 0.5em transparent,
    0 0.25em 0.3em -0.2em hsla(190deg, 50%, 50%, 0.46),
    0 0.25em 0.75em hsla(190deg, 40%, 40%, 0.3); */
    overflow: hidden;
    background: #008d62;
    }


    .animated-push-btn-cta:hover{
        background: #10aa7c;
    }

.animated-push-btn-cta:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}


@-webkit-keyframes shiny-btn1 {
 0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.form-banner-section{
    padding: 0 0 0px 0;
}



.trial-section{
    width:100%;
    text-align:center;
}
.trial-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
	margin-top:50px;
    margin-bottom:14px;
	
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important; /* your input bg */
  -webkit-text-fill-color: #000 !important; /* text color */
  border-radius: inherit;
  transition: background-color 5000s ease-in-out 0s;
}
.trial-heading span{
    color:#494949;
	font-family: "Instrument Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
	text-transform: capitalize;
}
.trial-form-wrapper {
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
    border-radius: 50px;
    padding: 9px;
    display: flex;
    justify-content: space-between;
    position: relative;
    background: linear-gradient(        90deg,        var(--primary),        #ffffff,        var(--primary)    );
    background-size: 300% 100%;
    animation: borderAnimation 4s linear infinite;
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

.captcha-wrapper {
    display: flex;
    justify-content: center;
    
}


.trial-form-wrapper::before {
  content: "";
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 50px;
  z-index: 0;
}
.trial-form-wrapper input{
    flex:1;
	border:none;
    outline:none;
	background:transparent;
	padding:7px 24px;
	color:#000000;
	font-family: "Instrument Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	text-transform: capitalize;
	z-index:1;

}
.formsubmit.zcwf_button:hover{
	background: var(--primary-hover);
    color: #fff !important;
    border: 0 !important;
	
}
.trial-form-wrapper input::placeholder{
    color:#9e9e9e;
	font-family: "Instrument Sans", sans-serif;
	font-weight: 500;
	z-index:1;
}
.trial-form-wrapper button{
    border:none;
    outline:none;
	color:#ffffff;
	padding:14px 33px;
	border-radius:50px;
	font-family: "Instrument Sans", sans-serif;
	font-size:14px;
    font-weight:500;
	cursor:pointer;
	background: linear-gradient(180deg, #008D62 0%, #014530 100%);
	transition:all 0.3s ease;
}

.trial-form-wrapper button:hover{
    background:#005437;
}
.trial-bottom-text{
    font-family: "Instrument Sans", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 12px;
	color:#494949;
	padding:0px 10px;
}

.form-banner ul{margin: 20px 0;}
.form-banner ul li{
    font-size: 18px;
    font-weight: 400;
    color: #111111;
    font-family: "Instrument Sans", sans-serif;
}






/***********************       Responsive       ********************/


@media (max-width: 1200px) {
    .test-box {
        width: 75%;
        margin: 0px auto;
    }
}

@media (max-width: 991px) {
    .carousel-control-next, .carousel-control-prev {
        bottom: initial;
        top: 70px;
        opacity: 1;
    }

    .carousel-control-next, .carousel-control-next-icon, .carousel-control-prev, .carousel-control-prev-icon {
        width: 32px;
        height: 32px;
    }

    .carousel-control-prev, .carousel-control-prev-icon {
        width: 34px;
    }

    .carousel-control-prev {
        left: initial;
        right: 40px;
    }

    .carousel-control-next {
        right: 0px;
    }

    .tab-box {
        flex-wrap: wrap;
        gap: 0px;
    }

    .tab-box .tab-menu {
        width: 100%;
    }

    .tab-box .tab-menu ul {
        flex-direction: row;
        overflow-x: scroll;
        padding-bottom: 20px;
        gap: 15px;
    }

    .tab-box .tab-menu ul li a {
        white-space: nowrap;
        padding: 13px 18px;
        font-size: 16px;
    }

    .tab-box .tab-cont .tab-cont-box {
        flex-wrap: wrap;
    }

    .tab-box .tab-cont {
        width: 100%;
        padding: 25px 25px 0px;
    }

    .tab-box .tab-cont .tab-cont-box .cont, .tab-box .tab-cont .tab-cont-box .tag-line {
        width: 100%;
    }

    .tab-box .tab-cont .tab-cont-box .cont span {
        width: 48px;
        height: 48px;
    }

    .tab-box .tab-cont .tab-cont-box .cont span svg {
        width: 24px;
        height: 24px;
    }

    .tab-box .tab-cont .tab-cont-box .cont h3 {
    }

    .tab-box .tab-cont .tab-cont-box .cont p {
        font-size: 14px;
    }

    .tab-box .tab-cont .tab-cont-box .tag-line ul li {
        padding: 6px 12px;
        font-size: 12px;
    }

    .tab-box .tab-cont .tab-cont-box .tag-line ul {
        justify-content: start;
        gap: 5px;
    }

    .drive-measurable .drive-box-div .drive-box img {
        width: 65px;
    }

    .drive-measurable .drive-box-div .drive-box.pad-top {
        padding: 0px;
    }

    .drive-measurable .drive-box-div .drive-box h3 {
        margin-top: 0px;
        margin-bottom: 8px;
    }

    .drive-measurable .drive-box-div .drive-box {
        margin-bottom: var(--heading-bottom-space);
        flex-direction: row;
        align-items: self-start;
        gap: 25px;
    }

    .faq-div {
        flex-wrap: wrap;
    }

    .faq-div .faq-head {
        width: 100%;
        position: initial;
    }

    .faq-div .faq {
        width: 100%;
    }

    .faq-div .faq-head h2 {
        margin-bottom: 35px;
    }

    .customers-logo {
        overflow: scroll;
        padding: 50px 0px;
    }

    .customers-logo ul {
        flex-wrap: nowrap;
        justify-content: space-around;
    }
    .right-content-box{
    border: 0;
    padding: 0;
}
   .case-running-text .stat-card p{
    padding: 0;
   }
   .right-content-box.img{
        border: 1px solid #DDDDDD;
    padding: 30px;
   }
   .right-content-box.img img{
    width: 100%;
   }
   .table-of-content-menu{
    display: none;
}
 .case-study-deta-box{
        width: 33.33%;
        padding: 0 15px !important;
    }
}

@media (max-width: 768px) {
    .header .hero-content h1 {
        margin-bottom: 12px;
    }

    .header .hero-content p {
        font-size: 16px;
    }

    .hero-bottom {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-bottom .hero-bottom-box {
        width: 100%;
        padding: 15px;
    }

    .hero-bottom .hero-bottom-box .hero-bot-cont h3 {
        font-size: 20px;
    }

    .hero-bottom .hero-bottom-box .hero-bot-cont p {
        font-size: 14px;
    }

    .hero-bottom .hero-bottom-box .hero-bot-img img {
        width: 40px;
    }

    .out-cont h2 {
        padding: 0px;
        letter-spacing: 0.4px;
    }

    .out-cont p {
        font-size: 14px;
    }

    .testimonials p {
        font-size: 20px;
    }

    .testimonials h4 {
        font-size: 22px;
    }

    .testimonials h5 {
        font-size: 16px;
    }

    .get-started h2 {
        font-size: 32px;
    }

    .get-started p {
        font-size: 16px;
    }

    .get-started a {
        font-size: 16px;
    }

    .get-started-btn {
        justify-content: center;
    }

    .get-started {
        text-align: center;
    }

    .footer address {
        margin-top: 35px;
    }

    .foot-img img {
        width: 45px;
    }

    .foot-img p {
        font-size: 20px;
    }

    .footer p {
        font-size: 16px;
    }

    .faq-div .faq-head h2 {
        text-align: center;
        letter-spacing: 0.4px;
    }

    .header .hero-content a {
        font-size: 16px;
    }

    .testimonials {
        padding-bottom: 130px;
        text-align: left;
    }

    .testimonials img {
        width: 36px;
    }

    .faq-div .faq .faq-box {
        padding: 25px;
    }

    .faq-div .faq .faq-box h4 {
    }

    .faq-div .faq .faq-box p {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .container {
        padding: 0px 25px;
    }

    .header .menu .header-menu button {
        display: none;
    }

    .test-box {
        width: 100%;
    }

    .drive-measurable {
        padding-top: 0px;
    }

    .carousel-control-next, .carousel-control-prev {
        position: initial;
    }

    .test-nav-arrow {
        display: flex;
        gap: 10px;
        justify-content: end;
        margin-top: 25px;
    }

    .tab-box .tab-cont .tab-cont-img {
        width: 550px;
        margin-top: 32px;
    }

    .tab-box {
        display: none;
    }

    .mob-tab-box {
        display: block;
    }

     .inner-page-hero-cont{
        padding-top: 30px;
    }
    .breadcrumb li{
        font-size: 12px;
    }
    .inner-page-hero-cont h2{
        letter-spacing: .10px;
    }
    .inner-page-hero-cont p{
        font-size: 15px;
    }
    .inner-page-hero{
        padding:30px 0 60px 0;
    }
    .case-study-deta, .table-of-content-sec{
        border-radius: 40px 40px 0 0;
    }
    .case-study-deta h2{
        text-align: center;
        font-size: 26px;
        margin-bottom: 33px;
    }
   
    .case-study-deta-box span{
        font-size: 24px;
    }
    .case-study-deta-box p{
        font-size: 12px;
    }
    .case-no{
        font-size: 12px;
    }
    .case-cont-box h2{
        font-size: 22px;
        letter-spacing: 0.10px;
    }
    .company-box{
        padding: 25px;
    }
    .company-box p, .company-box ul li{
        font-size: 13px !important;
    }
    .company-box ul{
        padding-left: 55px !important;
    }
    .case-cont-box p, .case-cont-box ul li{
        font-size: 14px;
    }
    .case-test{
        flex-direction: column;
    }
    .case-test .case-qu-img{
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    .case-test .case-qu-cont{
        border-radius: 12px;
        width: 100%;
    }
    .case-test .case-qu-cont p{
        font-size: 16px;
    }
    .table-of-cont-img img{
        width: 100%;
    }
    .case-cont-box h3{
        font-size: 16px;
    }
    .case-running-text .stat-card{
        display: flex;
        align-items: center;
        padding: 20px 25px;
        border-radius: 16px;
        margin-top: 15px;
    }
     .case-running-text .stat-card h2, .case-running-text .stat-card span{
                font-size: 22px !important;
        margin: 0 !important;
     }
.case-running-text .stat-card p{
            font-size: 13px;
        padding: 0;
        min-height: auto;
        padding-left: 15px;
}
.more-case .out-cont h2{
    font-size: 24px;
}
.case-slide-box h5{
    font-size: 20px;
}
.case-slide-box p{
    font-size: 15px;
}
.auther{
  /* display: none; */
}
.logo-slider{
  margin-bottom: 20px;
}
.des-div {
        display: none;
    }
	.mob-div{
	  display: block;
	  padding-bottom: 15px;
	}

     .multi-step-form{
        padding:25px;
        margin-bottom: 40px;
        margin-top: 30px;
    }

    

    .question{
        font-size:24px;
    }

    .option{
        padding:16px 18px;
        font-size:15px;
    }

    .btn{
        width:100%;
    }

    .btn-group{
        flex-direction:column;
    }

}
  @media only screen and (min-width: 640px) and (max-width: 1200px) {

    #crmWebToEntityForm .zcwf_row .zcwf_col_fld .formsubmit.zcwf_button{
  margin-top: 15px !important;
 }
.multi-step-form{
        padding:25px;
        margin-bottom: 40px;
        margin-top: 30px;
    }

    

    .question{
        font-size:24px;
    }

    .option{
        padding:16px 18px;
        font-size:15px;
    }

    .btn{
        width:100%;
    }

    .btn-group{
        flex-direction:column;
    }
 


}


@media (max-width: 640px) {
.form-banner h1{
  font-size: 35px;
}
.form-banner p{
  font-size: 16px;
}
.form-area{
  margin-top: 20px  !important;
}
.mob-recaptcha-box{
  display: none;
}
.cus-show{
display: block !important;
}
	#crmWebToEntityForm .zcwf_row .frmLabelheight{
		padding-top: 5px;
	}

 #crmWebToEntityForm .zcwf_row .zcwf_col_fld .formsubmit.zcwf_button{
  margin-top: 11px !important;
 }
#crmWebToEntityForm .zcwf_row .zcwf_col_fld .formsubmit.zcwf_button{
  float: none !important;
}

.form-banner h1{
  font-size: 35px;
}
.form-banner p{
  font-size: 16px;
}
.form-banner ul li{
  font-size: 16px;
}
.option{width: 100% !important;height: 55px !important;}
.brk-hide{
  display: none;
}
.form-area{max-width: 100%;}


}
.cus-show .captcha-space {
    visibility: visible;
    opacity: 1;
} 



@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.75);
        -webkit-transform: scale(0.75);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
    
}


  @media only screen and (min-width: 300px) and (max-width: 1200px) {
    .foot-soci {
        justify-content: center;
    }

    .footer {
        text-align: center;
    }
    .form-area{
        margin-top: 40px;
    }
   
.demo-page-common-bg{
  height:auto
}

.navbar{
  padding: 20px 0 !important;
}


}


/* Privacy Page */


.privacy-content-card{
    max-width:852px;
    margin:auto;
    background: #ffffff;    
    border-radius: 32px;   
    border : 1px solid #DEDEDE;	
	padding : 35px;
}

.privacy-center {
    display: flex;
    align-items: center;
    gap: 15px;
}


 .privacy-wrapper {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	padding: 25px 25px 15px;
	text-align:left;
}

/* Header */
.privacy-title {
	margin: 0;
	color: #0A0E15;
	font-size: var(--h2-size);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -1px;
	font-family: var(--font-family-primary);
}

.privacy-effective-date {
	margin: 10px 0 0;
	color: #4D4D4D;
	font-size: 16px;
	line-height: 1.5;
	font-family: var(--font-family-secondary);
}

.privacy-divider {
	height: 1px;
	margin: 47px 0 46px;
	background: #dedede;
	border: 1;
}

/* Content */
.privacy-content {
	font-size: var(--body-medium);
	line-height: 1.5;
}

.privacy-content p {
	margin: 0 0 23px;
	font-family: var(--font-family-secondary);
	color:#2C2F35;
}

.privacy-intro {
	margin-bottom: 21px !important;
	font-family: var(--font-family-secondary);
}

/* Navigation list */
.privacy-section-list {
	margin: 0 0 43px;
	padding: 0 0 0 25px;
	list-style: none;
}

.privacy-section-list li {
	position: relative;
	margin: 0 0 4px;
	padding-left: 0;
}

.privacy-section-list li::before {
	content: "·";
	position: absolute;
	left: -14px;
	font-weight: 700;
}

/* Main headings */
.privacy-heading {
	margin: 0 0 14px;
	color: #0A0E15;
	font-size: var(--h6-size);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.3px;
	font-family: var(--font-family-primary);
}

.privacy-subheading {
	margin: 28px 0 12px;
	color: #4D4D4D;
	font-size: var(--sub-heading-size);
	line-height: 1.2;
	font-weight: 700;
	font-family: var(--font-family-primary);
}

/* Rights section */
.privacy-rights {
	margin-top: 38px;
}

.privacy-right-item {
	margin: 0 0 14px;
}

.privacy-right-item strong {
	color: #2C2F35;
	font-weight: 700;
}

/* Address */
.privacy-company {
	margin-top: 49px;
	color: #111318;
	font-size: 16px;
	line-height: 1.55;			
}

.privacy-company-name {
	margin-bottom: 2px;
	font-weight: 700;
	font-family: var(--font-family-secondary);
	font-size: 18px;
}

.privacy-address-line {
	margin: 0;
	font-family: var(--font-family-secondary);
}

.privacy-content p.privacy-address-line {
	margin: 0;
}



/* Thanks page */
.thanks-bg {
	background-size: cover;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
	padding-bottom: 30px;
	background: url(../img/banner.png);
	background-repeat: repeat-x;
	background-size: 1440px;
	background-position: center top;
}

.thanks-content {
	position: relative;
	width: 644px;
	background: linear-gradient(104.19deg, #FFFFFF -3.55%, rgba(255, 255, 255, 0) 99.28%);
	 border: 1px solid rgba(90, 180, 120, .18);
	border-radius: 24px;
	padding: 40px 70px;
	text-align: center;
	border: 1px solid #C5E1D1;
	 
	backdrop-filter: blur(1px);	
}

.thanks-bg .thanks-content {
	max-width: 644px;
	margin: 0 auto;
	text-align: center;
	padding: 80px 100px;
}

.form-banner h1{
    font-size: var(--h2-size);
    font-weight: var(--fw-bold);
    margin-bottom: var(--heading-bottom-space-para);
    font-family: var(--font-family-primary);
}


.thanks-content h1 {
	margin-top: 16px;
	font-family: var(--font-family-primary);
	font-weight: var(--fw-bold);
	font-size:  var(--h1-size);
	line-height: 1.2;
	color: #111111;
	margin-bottom: var(--heading-bottom-space-para);
}

.thanks-content p {
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	text-align: center;
	margin-top: 32px;
	font-family: "Instrument Sans", sans-serif;
	margin: 0;
	color: #494949;
}

.thanks-content p span {
	font-weight: 700;
	font-style: Bold;
	font-size: 20px;
}

.thanks-content small {
	font-family: Instrument Sans;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	text-align: center;
	color: var(--primary);
	display: block;
	margin-top: 122px;
}

.thanks-bg .thanks-content .time-btn a {
	margin-top: 12px;
}

.time-btn a {
	border-radius: 12px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	background: var(--primary);
	padding: 13px 16px;
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	 height: 64px;
	margin: auto;
}

.time-btn a:hover {
	background: var(--primary-hover);
}

.back-btn {
	position: absolute;
	left: 35px;
	top: 35px;
	 color: #8E8E8E;
	cursor: pointer;
}

.width22px {
	width: 22px;
}

.width17px {
	width: 17px;
}
.back-btn-mobile{
	display:none;
}


/* contact-us */


.contact-section {
	min-height: 100vh;
	padding: 50px 20px;
	
}

.contact-container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 30px;
	display: grid;
	grid-template-columns: 1fr 530px;
	gap: 40px;
	align-items: center;
}

/* LEFT CONTENT */

.contact-left {
	padding-top: 90px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.contact-title {
	margin: 0 0 14px;
	font-family : var(--font-family-primary);
	font-size:var(--h1-size);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -2px;
	color:#0A0E15;
}

.contact-description {
	max-width: 620px;
	margin: 0;
	font-size: var(--sub-heading-size);
	line-height: 1.5;
	font-family : var(--font-family-secondary);
	font-size: var(--paragraph-small);
	color: #4D4D4D;
}

.contact-details {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 50px;
	margin-top: auto;
	padding-bottom: 25px;
}

.contact-detail-item {
	display: flex;
	flex-direction: column;
}

.contact-icon {
	width: 30px;
	height: 30px;
	margin-bottom: 16px;
	color: #5b16dc;
}

.contact-detail-title {
	font-family : var(--font-family-secondary);
	margin: 0 0 12px;
	color: #5B1ACE;
	font-size: var(--paragraph-small);
	line-height: 1.2;
	font-weight: 700;
}

.contact-detail-text {
	font-family : var(--font-family-secondary);
	margin: 0;
	font-size: var(--body-medium);
	line-height: 1.5;
	color: #2C2F35;
}

.contact-detail-text a {
	font-family : var(--font-family-secondary);
	margin: 0;
	line-height: 1.5;
	color: #2C2F35;

	font-weight: 400;
    	text-decoration: none;
    	font-size: var(--body-medium);    	
}

/* FORM */

.contact-form-wrapper {
	background: #ffffff;
	border: 1px solid #d9d9d9;
	border-radius: 36px;
	padding: 20px 30px 20px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.contact-form {
	width: 100%;
}

.contact-form-group {
	margin-bottom: 26px;
}

.contact-label {
	font-family:var(--font-family-secondary);
	display: block;
	margin-bottom: 11px;
	font-size: var(--body-small);
	line-height: 1.5;
	color: #0A0E15;
}

.contact-required {
	color: #e53935;
}

.contact-input,
.contact-textarea,
.contact-phone-input,
.contact-country-select {
	width: 100%;
	border: 1px solid #DEDEDE;
	border-radius: 12px;
	background: #ffffff;
	outline: none;
	font-family: inherit;
	font-size: var(--body-large);
	color: #292933;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input {
	height: 52px;
	padding: 0 20px;
}

.contact-input::placeholder,
.contact-textarea::placeholder,
.contact-phone-input::placeholder {
	color: #a0a8b8;
	opacity: 1;
}

.contact-input:focus,
.contact-textarea:focus,
.contact-phone-input:focus {
	border-color: #6419d8;
	box-shadow: 0 0 0 3px rgba(100, 25, 216, 0.08);
}

.contact-phone-row {
	display: grid;
	grid-template-columns: 137px 1fr;
	gap: 15px;
}

.contact-country {
	position: relative;
}

.contact-country-select {
	height: 52px;
	padding: 0 36px 0 58px;
	appearance: none;
	cursor: pointer;
}

.contact-flag {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 20px;
	border-radius: 3px;
	overflow: hidden;
	background:
		linear-gradient(
			to bottom,
			#ff9933 0%,
			#ff9933 33.33%,
			#ffffff 33.33%,
			#ffffff 66.66%,
			#138808 66.66%,
			#138808 100%
		);
	border: 1px solid #eee;
	pointer-events: none;
}

.contact-country-arrow {
	position: absolute;
	right: 14px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-right: 2px solid #25252c;
	border-bottom: 2px solid #25252c;
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.contact-phone-input {
	height: 52px;
	padding: 0 20px;
}

.contact-textarea {
	height: 120px;
	padding: 20px 20px;
	resize: none;
}

.contact-submit {
	width: 100%;
	height: 68px;
	margin-top: 2px;
	border: 0;
	border-radius: 15px;
	background: linear-gradient(90deg, #6418d8, #4f0eb8);
	color: #ffffff;
	font-size: var(--body-large);
	font-weight: 600;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;

	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(91, 22, 220, 0.22);
}

.contact-submit-arrow {
	font-size: 24px;
	line-height: 1;
}

.contact-privacy {
	font-family:var(--font-family-secondary);
	margin: 16px auto 0;
	max-width: 570px;
	text-align: center;
	color: #4D4D4D;
	font-size: 12px;
	line-height: 1.50;
}

.contact-privacy a {
	color: #2474e8;
	text-decoration: underline;
}







@media(max-width:1367px){
	.thanks-bg .thanks-content {
		max-width: 599px;
		padding: 50px 80px;
	}
	
}
@media(max-width:767px){
	.thanks-bg .thanks-content {
		max-width: 576px;
		padding: 30px 30px;
	}
	.thanks-content {
		width: 350px;
		background:none;
		border:none;
		box-shadow:none;
	}
	 .time-btn a{font-size:18px;width: 235px;}
	 .thanks-content small{font-size:14px;}
	.thanks-content h1{font-size:35px;}
	.thanks-content p{font-size:16px;}
	.thanks-content small {
		margin-top: 80px;
	}
	.thanks-content p span {
	font-size: 16px;
	}
	.thanks-bg .container {
        padding: 0 0px;
    }
	.back-btn{
		display:none;
	} 
	
    .back-btn-mobile{
        display: flex;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 999;
		width: 40px;
        height: 40px;
		align-items: center;
        justify-content: center;
    }

    .back-btn-mobile img{
        width: 18px;
    }
	
	.privacy-content-card{
		background:none;
		border: 0px;
		padding:0px;
		border-radius:0px;
		
	}
	
	
	ul.social{
		justify-content: center;
	}
	
}


/* CONTACT US TABLET */


/* CONTACT US TABLET */

@media (max-width: 1100px) {

    .contact-container {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 760px;
        gap: 0;
    }

    /*
     * Make contact-left contents participate
     * directly in the contact-container grid.
     */
    .contact-left {
        display: contents;
    }

    /* 1. LET'S TALK */
    .contact-intro {
        grid-row: 1;
        width: 100%;
        padding-top: 40px;
        margin-bottom: 30px;
    }

    /* 2. FORM */
    .contact-form-wrapper-block {
        grid-row: 2;
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-form-wrapper {
        width: 100%;
        padding: 20px 30px;
    }
	
	/* 4. VISIT US */
	 .contact-left .contact-details:nth-of-type(2) {
        grid-row: 3;
        width: 100%;
        margin-top: 30px;
    }

    /* 3. CALL US */
    .contact-left .contact-details:nth-of-type(1) {
        grid-row: 4;
        width: 100%;
        margin-top: 0;
    }

    
   

}

/* CONTACT US MOBILE */

@media (max-width: 600px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-container {
        padding: 0 18px;
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    /*
     * Make contact-left children behave
     * like direct children of contact-container
     */
    .contact-left {
        display: contents;
    }

    /* 1. Let's Talk + Description */
    .contact-intro {
        order: 1;
        width: 100%;
    }

    .contact-title {
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .contact-description {
        line-height: 1.5;
        max-width: 100%;
    }
	
	.contact-form-wrapper-block {
        order: 2;
        width: 100%;        
    }

    /* 2. Form */
    .contact-form-wrapper {        
         padding: 20px 20px 20px; 
         border-radius: 25px; 
    }

    .contact-form-group {
        margin-bottom: 22px;
    }

    .contact-input,
    .contact-phone-input,
    .contact-country-select {
        height: 58px;
    }

    .contact-textarea {
        height: 130px;
    }

    .contact-phone-row {
        grid-template-columns: 115px 1fr;
        gap: 10px;
    }

    .contact-country-select {
        padding-left: 50px;
        padding-right: 28px;
    }

    .contact-submit {
        height: 60px;
    }

    .contact-privacy {
        /* font-size: 12px; */
    }

    /* 3. Visit Us + Call Us */
    .contact-details {
        order: 3;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 0;
        padding-bottom: 0;
    }

    .contact-detail-title {
        /* font-size: 22px; */
    }

    .contact-detail-text {
        /* font-size: 16px; */
    }
}