<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&amp;display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&amp;family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&amp;display=swap');

:root {
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --default-fs: 400 1.5rem / 2.2rem var(--font-family);
    --primary-color-hue: 276;
    --primary-color-saturation: 42%;
    --primary-color-lightness: 41%;
    --secondary-color-hue: 56;
    --secondary-color-saturation: 100%;
    --secondary-color-lightness: 50%;
    --primary-color: hsl(276, 42%, 41%);
    --secondary-color: hsl(54, 100%, 62%);
    --text-color: rgb(25, 25, 25);
    --text-grey-color: rgb(38, 38, 38);
    --text-grey-color-2: rgb(51, 51, 51);
    --text-grey-color-3: rgb(86, 86, 86);
    --text-grey-color-4: rgb(96, 96, 96);
    --text-grey-color-5: rgb(102, 102, 102);
    --text-grey-color-6: rgb(153, 153, 153);

}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: none;
}

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

html {
    font-size: 62.5%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    width: 100%;
}


body {
    font: var(--default-fs);
    height: 100%;
    width: 100%;
    background-color: #fff;
    letter-spacing: .0325rem;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-synthesis: none;
}

.scrollbar-gutter {
    -webkit-scrollbar-gutter: stable;
    -moz-scrollbar-gutter: stable;
    -ms-scrollbar-gutter: stable;
    scrollbar-gutter: stable;
}


h1 {
    /* font-size: var(--text-size-700) */
}

h2 {
    font: 800 3.55rem / 4.55rem var(--font-family);
}

h3 {
    font: 500 2.4rem/3rem var(--font-family);
}

h4 {
    font-size: var(--text-size-400)
}

h5 {
    font-size: var(--text-size-300)
}



p {

    font: var(--default-fs);

    @media (max-width: 767px) {
        --default-fs: 400 2rem / 3.2rem var(--font-family);
    }

}

.heading&gt;p {
    color: var(--text-grey-color-4);
}

.secondary-highlight {
    color: var(--secondary-color);
}

.primary-highlight {
    color: var(--primary-color);
}

.main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.mt-6rem {
    margin-top: 7rem;
}


.doted-line--tacker {
    background-image: url(../assets/images/flowchart.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-size: 300px 300px;
    background-position: -5% 0;
}






.hero-banner--section {
    background: linear-gradient(315deg, rgb(151, 85, 200), rgb(113, 60, 148), rgb(113, 60, 148), rgb(151, 85, 200));
    width: 100%;
    height: fit-content;
    padding: 7rem 0rem 0rem;
    position: relative;
    overflow: hidden;

    @media (max-width: 767px) {
        height: 42vh;
        padding: 10rem 0rem 0rem;
    }

}



.hero-banner--section::before {
    content: "";
    background-color: #FFF;
    height: 290px;
    width: 290px;
    border-radius: 4rem;
    position: absolute;
    top: -100%;
    left: 0;
    transform: translate(-30px, -180px) rotate(45deg);
    z-index: 2;
    animation: bounceIn 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.25) forwards;

    @media (max-width: 767px) {
        height: 250px;
        width: 250px;
        border-radius: 6rem;
    }
}

.hero-banner--section::after {
    content: "";
    background-color: hsla(0, 0%, 100%, .0425);
    height: 380px;
    width: 380px;
    border-radius: 4rem;
    position: absolute;
    top: -100%;
    left: 0;
    transform: translate(-80px, -215px) rotate(45deg);
    animation: bounceIn 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.25) forwards;

    @media (max-width: 767px) {
        height: 340px;
        width: 340px;
        border-radius: 6rem;
    }

}





@keyframes bounceIn {
    100% {
        top: 0%;
    }
}



.hero-banner--section .swiper-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-banner--section .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.hero-banner--section .swiper-slide {
    display: grid;
    grid-template-columns: 350px auto;
    overflow: hidden;
    height: 100%;
    position: relative;

    @media (max-width: 767px) {
        grid-template-columns: 1fr;
    }
}


.slider-text-Block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15rem 0 0 2rem;
}


.slider-text-Block h1 {
    font: 800 5.4rem / 6rem var(--font-family);
    color: #FFF;
    margin: 0;
    position: relative;
    white-space: nowrap;
    z-index: 2;

    @media (max-width: 767px) {
        font: 700 4.55rem / 5.55rem var(--font-family);
    }
}

.slider-text-Block p {
    margin: 1.25rem 0 0 0;
    color: #ffffff;
    font-weight: 300;
    width: 580px;
    position: relative;
    z-index: 2;
}

.slider-Img-Block {
    @media (max-width: 767px) {
        display: none;
    }
}

.fading-effect-img&gt;img {
    max-width: 100%;
    max-height: 100%;
    -webkit-mask-image: -webkit-gradient(linear,
            right top,
            left top,
            color-stop(60%, rgba(0, 0, 0, 1)),
            color-stop(100%, rgba(0, 0, 0, 0)));
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: unset;
    width: 100%;
    margin-top: 1.55rem;
    margin-bottom: 1.25rem;

    @media (max-width: 767px) {
        display: none;
    }

}

.hero-banner--section .swiper-pagination-bullet {
    display: flex;
    flex-direction: column-reverse;
    gap: .35rem;
    align-items: flex-start;
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: transparent;

}

.hero-banner--section .swiper-pagination-bullet label {
    font: 400 1.6rem / 2.5rem var(--font-family);
    color: #FFF;
    cursor: pointer;
    letter-spacing: 1px;
    cursor: pointer;
}

.hero-banner--section .swiper-pagination-bullet b {
    display: inline-block;
    width: 0%;
    height: 6px;
    background-color: var(--secondary-color);
    cursor: pointer;
}

.hero-banner--section .swiper-pagination-bullet-active {
    background-color: transparent;
}

.hero-banner--section .swiper-pagination-bullet-active b {
    animation-name: countingBar;
    animation-duration: 7s;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
}

@keyframes countingBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}


.content-listing--section {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 3rem;
    flex-direction: column;
}

.section-heading {
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, hsla(var(--primary-color-hue), 20%, 93%) 80.0516%);
    border-radius: 100px;
    box-shadow: rgba(182, 182, 182, 0.2) 0px 2px 3px 0px;
    padding: .25rem 1.35rem;
    border: 1px solid hsla(var(--primary-color-hue), var(--primary-color-saturation), 90%);
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .55rem;
}

.section-heading::before {
    content: "";
    width: calc(100% + 1vw);
    height: calc(100% + 1vw);
    border: 1px solid rgb(153 153 153/ .352);
    border-radius: 100px;
    background: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    overflow: hidden;
    z-index: -1;
}

.section-heading::after {
    content: "";
    width: calc(100% + 25vw);
    height: .55rem;
    border: 1px solid rgb(153 153 153/ .352);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: 0 auto;
    z-index: -2;
    border-left: 0;
    border-right: 0;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 95%,
            rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 5%,
            rgba(0, 0, 0, 1) 95%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: intersect;
}


.section-heading h6 {
    font: 600 1.7rem / 2.7rem var(--font-family);
    /* letter-spacing: .75px; */
}

.section-heading span {
    display: grid;
    place-items: center;
    color: var(--primary-color);
}

.section-heading span svg {
    width: 17px;
    height: 17px;
}

.product-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;

    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    @media (max-width: 776px) {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
        padding: 0 1rem;
    }



}


.product-item {
    background-color: rgb(242 242 242);
    border-radius: 2rem;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    box-shadow: 0 0 10px #00000045;

}


.product-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.product-details h2 {
    font: 600 2.3rem / 3rem var(--font-family);
    color: var(--text-grey-color);
    margin-bottom: .55rem;
}

.product-details p {
    font: 500 1.4rem / 2.4rem var(--font-family);
    color: var(--text-grey-color-2);
    height: calc(10em + 1vw);
    overflow: hidden;
}

.product-details a {
    display: flex;
    align-items: center;
    gap: .35rem;
    margin: 1rem 0 0 0;
    font: 400 1.6rem / 2.6rem var(--font-family);
    color: var(--text-grey-color-4) !important;
    border-top: 1px solid var(--text-grey-color-6);
    padding-top: 1rem;
    text-align: center;
    width: 100%;
    justify-content: end;
    cursor: pointer;
    text-decoration: none;
}

.product-details a:hover {
    color: var(--primary-color) !important;
}

.product-details a span {
    display: grid;
    place-items: center;
}

.product-details a span svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


.testimonial-Section {
    background: linear-gradient(45deg, rgb(151, 85, 200), rgb(113, 60, 148), rgb(113, 60, 148), rgb(151, 85, 200));
    overflow: hidden;
}


.testimonial-Section&gt;div {
    display: grid;
    grid-template-columns: .5fr 1fr;
    padding: 1rem;
}

.testimonial-img--section {
    display: grid;
    place-items: center;
    height: 100%;
    width: 100%;
}

.testimonial-img--section img {
    width: 100%;
    max-width: 100%;
}

.testimonial-img--section figure {
    width: 20rem;
    margin: 0;
    transform: perspective(1000px) rotateX(0) rotateY(15deg) translateY(0);

    @media (max-width: 776px) {
        width: 25rem;
        margin-bottom: 3rem;
        transform: perspective(1000px) rotateX(0) rotateY(0) translateY(0);
    }


}

.testimonial-text--section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    color: #FFF;
    height: 100%;

    @media (max-width: 776px) {
        gap: 2rem;
        padding: 0 1rem;
    }
}

.testimonial-bg-shape {
    width: 31vw;
    height: 31vw;
    border-radius: 9999px;
    position: absolute;
    left: -15rem;
    background-color: hsl(0, 0%, 100%, .065);

    @media (max-width: 767px) {
        width: 70rem;
        height: 70rem;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.testimonial-bg-shape::before {
    content: "";
    width: 35vw;
    height: 35vw;
    border-radius: 9999px;
    position: absolute;
    left: 60px;
    background-color: hsl(0, 0%, 100%, .055);
    top: -30px;

    @media (max-width: 767px) {
        width: 80rem;
        height: 80rem;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

.testimonial-bg-shape::after {
    content: "";
    width: 40vw;
    height: 40vw;
    border-radius: 9999px;
    position: absolute;
    left: 70px;
    background-color: hsl(0, 0%, 100%, .045);
    top: -60px;

    @media (max-width: 767px) {
        width: 90rem;
        height: 90rem;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

.testimonial-text--section h2 {
    letter-spacing: 1px;
    font: 700 5.6rem / 6.6rem var(--font-family);

    @media (max-width: 776px) {
        font: 700 4.55rem / 5.55rem var(--font-family);
    }

}


.testimonial-text--section p {
    /* font: 300 1.56rem / 2.56rem var(--font-family); */
    letter-spacing: 1px;
}


.grid-line {
    height: 100%;
    width: 10px;
}

.features-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;

    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    @media (max-width: 776px) {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
        padding: 0 1rem;
    }

}



.features-card {

    padding: 5rem;
    border-radius: 2rem;
    position: relative;
    /* border: 1px solid var(--secondary-color); */
    display: flex;
    flex-direction: column;
    align-items: center;

    h4 {
        font: 700 2.3rem / 3rem var(--font-family);
        padding-bottom: .5rem;
    }

    p {
        text-align: center;
        color: var(--text-grey-color-4);
        font-weight: 600;
    }

    &amp;:last-child {
        grid-column: 2;
    }
}



.feature-icon {

    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 888px;
    background-color: #f4ecfb;
    box-shadow: 0 0 0 10px #faf7fd, 0 0 15px 2px #d9d9d9 inset;
    margin-bottom: 2.25rem;

    svg {
        width: 40px;
        height: 40px;
        fill: var(--primary-color);
    }
}



/* .features-vrt-line-1 {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgb(153 153 153/ .25) 60.55%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    width: 5px;
    position: absolute;
    top: 0;
    left: calc(100% / 3);
}

.features-vrt-line-2 {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgb(153 153 153/ .25) 60.55%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    width: 4px;
    position: absolute;
    top: 0;
    right: calc(100% / 3);
}

.features-hrtz-line-1 {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgb(153 153 153/ .25) 40.55%, rgba(255, 255, 255, 0) 100%);
    height: 5px;
    width: 100%;
    position: absolute;
    top: calc(100% / 4);
    left: 0;
}

.features-hrtz-line-2 {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgb(153 153 153/ .25) 40.55%, rgba(255, 255, 255, 0) 100%);
    height: 5px;
    width: 100%;
    position: absolute;
    top: calc(100% / 2);
    left: 0;
}

.features-hrtz-line-3 {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgb(153 153 153/ .25) 40.55%, rgba(255, 255, 255, 0) 100%);
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: calc(100% / 4);
    left: 0;
} */

.guarantees-content--section {
    width: 100%;
    margin-top: .75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.guarantees-nav {
    display: grid;
    place-items: center;
    width: max-content;
    background-color: rgb(246, 247, 249);
    border-radius: 100px;
    position: relative;
    border: 1px solid rgb(153 153 153/ .5);
    margin: 0 auto;
}


.guarantees-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: .4rem .5rem;
}

.guarantees-nav ul li {
    list-style: none;
    padding: .7rem 1.55rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
    font: 500 1.5rem / 2.5rem var(--font-family);
}

.guarantees-nav ul li.active {
    color: #FFF;
}

.guarantees-nav ul li::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 100px;
    transition: all 5s ease-in;
}

.guarantees-nav ul li.active::before {
    background: linear-gradient(rgb(159, 84, 247) 0%, rgb(133, 35, 245) 100%);
}


.guarantees-content-listing {
    height: 100%;
    width: 100%;
    border-radius: 1rem;
}

.guarantees-content-listing article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    padding: 3rem;
    padding-bottom: 0;
}

.guarantees-content-listing article figure {
    display: grid;
    place-items: center;
}




.benefits--listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;


    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    @media (max-width: 776px) {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
        padding: 0 1rem;
    }


}



.benefits-card {
    --benefit-color: hsl(359, 79%, 47%);
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1.25rem 2rem;
    align-items: center;
    padding: 3rem;
    border-radius: 2rem;
    background-color: var(--benefit-color);
    color: #FFF;
    position: relative;
    overflow: hidden;

    h3 {
        font: 600 2.3rem / 3rem var(--font-family);
    }

    p {
        grid-column: 1 / 3;
    }


}


.benefits-card::before {
    content: "";
    width: 50%;
    height: 100%;
    background-color: #FFF;
    border-radius: 999px;
    position: absolute;
    opacity: .12;
    top: 50px;
    right: -50px;
    filter: blur(50px);
}


.benefits-card::after {
    content: "";
    width: 50%;
    height: 100%;
    background-color: #FFF;
    border-radius: 999px;
    position: absolute;
    opacity: .12;
    top: -50px;
    left: -50px;
    filter: blur(50px);
}


.bg-icon {
    width: 70px;
    height: 70px;
    background-color: #FFF;
    color: var(--benefit-color);
    display: grid;
    place-items: center;
    border-radius: 1rem;
    position: relative;
    box-shadow: 0 0 0 6px #e9e9e957;

    i {
        font-size: 35px;
    }

}




.Utilization-icon {
    --benefit-color: #0648ff;
}

.Expense-icon {
    --benefit-color: #ffa606;
}

.Decisions-icon {
    --benefit-color: #01ca01;
}

.Sales-icon {
    --benefit-color: #f14a0d;
}


.boost-icon {
    --benefit-color: #030375;
}


.get-effy-main {
    background: linear-gradient(60deg, rgb(151, 85, 200), rgb(113, 60, 148), rgb(113, 60, 148), rgb(151, 85, 200));
    height: fit-content;
    position: relative;
    border-radius: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
    overflow: hidden;
}

.get-effy-main::before {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    top: 0;
    background: url("../assets/images/shape-get-effy-1.svg");
    background-size: 100% 100%;
    background-position: -22% -12px;
    left: 0;
    background-repeat: no-repeat;
    opacity: .25;
}

.get-effy-main::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 0;
    background: url("../assets/images/shape-get-effy-1.svg");
    background-size: 100% 100%;
    background-position: 22% 10px;
    right: 0;
    background-repeat: no-repeat;
    opacity: .25;
}



.get-effy-main h1 {
    letter-spacing: 1px;
    font: 700 5.6rem / 6.6rem var(--font-family);
    color: #FFF;
}

.get-effy-main p {
    /* font: 400 1.5rem / 2.5rem var(--font-family); */
    color: #FFF;
}


.contact-sales {
    font: 400 1.5rem / 2.5rem var(--font-family);
}

.contact-sales:hover {
    color: #FFF;
}

.pointer {
    cursor: pointer;
}

.get-effy-download--section {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.get-effy-download-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: 1.35;
    padding: .5rem 1.25rem;
    background-color: var(--secondary-color);
    border-radius: 100px;
    font: 500 1.25rem / 2.25rem var(--font-family);
    width: 200px;
    box-shadow: 0 0 0 5px rgb(255, 255, 255, .15);
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
}

.get-effy-img {
    display: grid;
    place-items: center;
}

.get-effy-img&gt;figure {
    width: 40rem;
    margin: 0;
    scale: 1.25;
}

.get-effy-img&gt;figure&gt;img {
    width: 100%;
    max-width: 100%;
}


.client-listing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.client-listing figure {
    flex: 200px 0 0;
    padding: .5rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
}

.client-listing img {
    width: 100%;
    max-width: 100%;
}

.effy-track-text--section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 5rem;
}

.effy-track-text--section p {
    color: var(--text-grey-color-2);
    font: 500 2.25rem / 3.25rem var(--font-family);
}

.effy-track-text--section::before {
    content: "";
    background: linear-gradient(rgb(159, 84, 247) 0%, rgb(133, 35, 245) 100%);
    height: 5px;
    width: 25%;
    position: absolute;
    left: 0;
    top: 0%;
    transform: translateY(-50%);
}

.effy-track-text--section::after {
    content: "";
    background: linear-gradient(#ffca28 0%, #ffd54f 100%);
    height: 5px;
    width: 25%;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-50%);
}

.page-divider {
    display: block;
    background: linear-gradient(to bottom, var(--secondary-color), var(--secondary-color), #FFF);
    position: relative;
}

.page-divider::before {
    content: "";
    background-image: url("../assets/images/wave-2.svg"), linear-gradient(to bottom, #FFF 100%, #fff59d 100%);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 320px;
    background-size: cover;
}

.vffy--section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 10rem;
    padding: 12rem 3rem 0 3rem;
    background-image: url("../assets/images/map-shap.png");
    background-repeat: no-repeat;
    background-position: center 45px;
    align-items: flex-start;
}

.vffy-img--section {
    display: grid;
    place-items: center;
    width: 100%;
}

.vffy-img--section img {
    width: 100%;
    max-width: 100%;
    -webkit-animation: zoom-fade 4s infinite linear;
    animation: zoom-fade 4s infinite linear;
}

.vffy--section h2 {
    font: 700 5.6rem / 6.6rem var(--font-family);
    letter-spacing: 1px;
}


.vffy--section p {
    /* font: 400 1.6rem / 2.6rem var(--font-family); */
    letter-spacing: 1px;
}




/*****************************************PAGES CSS***********************************************/
.hero-inner-page {
    height: 35vh;

    align-items: center;
    justify-content: center;
    display: flex;

    @media (max-width: 767px) {
        height: 42vh;
    }
}

.hero-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    align-items: flex-start;
}


.hero-text-block h1 {
    font: 800 4.25rem / 5.25rem var(--font-family);
    letter-spacing: 1px;
    color: #FFF;
}

.hero-text-block p {
    /* font: 300 1.65rem / 2.65rem var(--font-family); */
    letter-spacing: .75px;
    color: #FFF;
}

.hero-img-block {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.hero-img-block img {
    transform: perspective(700px) rotateX(0) rotateY(-5deg) translateY(-35px);
    width: 380px;
    max-width: 100%;
    object-position: center;
}

.heading-h2 {
    font-style: 700;
    font-size: 2.15rem;
    text-align: center;
    letter-spacing: 1px;
    margin: 0;

}


.Challenges-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 10rem;
    /* background-image: url(../assets/images/challenges-man.svg);
    background-repeat: no-repeat;
    background-size: 18rem;
    background-position: center 1rem;
    height: 20rem; */
    position: relative;

}

/* .Challenges-content::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    top: calc(100% - 30px);
} */

.Challenges-content article {
    height: 100%;
    width: 100%;
    background-color: rgb(246, 247, 249);
    border: 1px solid rgb(153 153 153 / .5);
    border-radius: 99px;
    padding: 1rem 2rem 1rem 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
}

.Challenges--icon {
    width: 40px;
    height: 40px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 9999px;
    background: linear-gradient(rgb(159, 84, 247) 0%, rgb(133, 35, 245) 100%);
}

.Challenges--icon svg {
    fill: #FFF;
    height: 22px;
    width: 22px;
}

.Challenges-content article h4 {
    margin: 0;
    font: 500 1.6rem / 2.6rem var(--font-family);
}

.stacked-3d-slider--section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    height: auto;
    overflow: hidden;
}

.stacked-3d-slider--section article:not(.screen-1) {
    border: 2px solid rgb(153 153 153 / .5);
    padding: 1rem;
    width: 100%;
    background-color: #FFF;
    transform-origin: center top;
    border-radius: 2rem;
    /* box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px; */
    transition: transform 0.2s ease;
    overflow: hidden;
    height: fit-content;
    position: relative;
    background-color: hsla(var(--secondary-color-hue), var(--secondary-color-saturation), 77%, 1);
    border-color: var(--primary-color);
    margin-top: 3rem;
}

.screen-1 {
    border: 2px solid rgb(153 153 153 / .5);
    padding: 1rem;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    height: fit-content;
    position: relative;
    background-color: #f2eeff;
    border-color: var(--primary-color);
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr .5fr;
    gap: 3rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .05), 0 4px 6px -4px rgba(0, 0, 0, .05);
    opacity: 0;
    scale: 0;
    will-change: opacity, scale;
    backface-visibility: hidden;
}    

.screen-1 figure{
    margin: 0;
}


.stacked-3d-slider--section article h6 {
    font: 600 2.6rem / 3.6rem var(--font-family);
}

.stacked-3d-slider--section article.screen-1 h6 {
    font: 700 2.9rem / 3.9rem var(--font-family);
    letter-spacing: 0.5px;
}



.stacked-3d-slider--section article:is(.current-slider) h6 {
    color: var(--primary-color);
    font-size: 1.525rem;
    font-weight: 600;
}

.stacked-3d-slider--section article:not(.screen-1) div:first-child {
    border-bottom: 2px dashed currentColor;
}

.stacked-3d-slider--section article:not(.screen-1) div p {
    font-weight: 400;
    display: none;
}


.stacked-3d-slider--section article:not(.screen-1) figure {
    padding: 1rem;
    width: calc(100% - 300px);
    position: relative;
    z-index: 1;
}


.stacked-3d-slider--section article.screen-1 {
    padding: 1rem;
    width: 100%;
    position: relative;
    z-index: 1;
}


.stacked-3d-slider--section article:not(.screen-1) figure::before {
    content: "";
    background: linear-gradient(135deg, #fff2, #ffffffb3);
    width: calc(100% - 45px);
    height: 100%;
    position: absolute;
    left: 50px;
    top: 0;
    z-index: -1;
    border-radius: 1rem;
}

.stacked-3d-slider--section article:not(.screen-1) figure img {
    max-width: 100%;
    width: 80%;
    border-radius: .25rem .25rem .5rem .5rem;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 20px 25px -5px, rgba(0, 0, 0, 0.05) 0px 8px 10px -6px;
}

/* 
.stacked-3d-slider--section article.screen-1 figure img {
    max-width: 100%;
    width: 800px;
    height: 500px;
    box-shadow: rgba(0, 0, 0, 0.25) 2px 2px 7px 0px;
    border-radius: 1rem;
} */






.impact-section {
    background: #FFF;
    display: flex;
    gap: 1.35rem;
    border-radius: 10px;
    overflow: hidden;
    font: 700 1.6rem / 2.6rem var(--font-family);
    overflow: hidden;
    box-shadow: 1px 1px 0px 2px var(--primary-color), 1px 2px 0px 2px var(--primary-color);
    padding: 1rem;
    font: 600 1.45rem / 2.45rem var(--font-family);
    align-items: center;

    /*     
    &amp; h4{
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: .5rem; 
         color: #431e05;
    } */

    /* box-shadow: 3px 4px 5px 0px hsl(276deg 18.14% 76.53% / 25%); */
}




.imapct-icon {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    color: #86480d;
}

.imapct-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}


.progress-text {
    font: 700 2rem / 0 var(--font-family);
    color: var(--primary-color);
    /* text-shadow: 0px 2px 0 hsl(276deg 100% 86.07%); */
}


.Features-used {
    padding: 1.5rem 1.5rem 1.5rem .75rem;
    overflow: hidden;

    &amp; h3 {
        font: 800 1.85rem / 2.85rem var(--font-family);
        font-weight: 600;
        border-bottom: 1px solid var(--text-grey-color-6);
    }

    &amp; li {
        font: 700 1.4rem / 2.4rem var(--font-family);
        font-weight: 500;
    }

}

.source {
    position: absolute;
    bottom: 6px;
    right: 15px;
    z-index: 1;
    font: 500 1.15rem / 2.15rem var(--font-family);
    opacity: 0.65;
    font-style: italic;
}


.info-text {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 40ch;
    z-index: 1;
    background-color: #FFF;
    height: fit-content;
    display: grid;
    place-items: center;
    padding: 2rem;
    border-radius: 0.856rem;
    transform: translateY(-50%);
    box-shadow: 1px 1px 0px 2px var(--primary-color), 1px 7px 0px 2px var(--primary-color);
    font: 500 1.575rem / 2.575rem var(--font-family);
}



.key_benefits--listing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.key_benefits--listing article {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.key_benefits_box-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.key_benefits_box-heading span {
    --bg-color: #0550FF;
    width: 65px;
    height: 65px;
    background-color: var(--bg-color);
    border-radius: 1rem;
    display: grid;
    place-items: center;
    position: relative;
}

.key_benefits_box-heading span svg {
    width: 40px;
    height: 40px;
}


.key_benefits_box-heading span::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    border-radius: 1rem;
    transform: rotate(15deg);
    position: absolute;
    opacity: .24;
    z-index: -1;
}

.key_benefits_box-heading span i {
    /* font-size: 1.25rem; */
    color: #FFF;
}

.key_benefits_box-heading h3 {
    font: 500 2.3rem / 3rem var(--font-family);
    letter-spacing: 1px;
    margin: 0;
}

.key_benefits--listing article p {
    color: var(--text-grey-color-4);
    text-align: left;
    margin: 0;
}

.key_benefits--listing article:nth-child(2) .key_benefits_box-heading span {
    --bg-color: #01A104;
}

.key_benefits--listing article:nth-child(3) .key_benefits_box-heading span {
    --bg-color: #F61D1B;
}

.key_benefits--listing article:nth-child(4) .key_benefits_box-heading span {
    --bg-color: #FFD401;
}


.user-free-Section {
    background: linear-gradient(45deg, rgb(151, 85, 200), rgb(113, 60, 148), rgb(113, 60, 148), rgb(151, 85, 200));
    height: 260px;
    position: relative;
}

.user-free-Section::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../assets/images/fill-bg-1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    background-position: center;
    overflow: hidden;
    z-index: -1;
}


.sales-contacts {
    position: absolute;
    top: -40px;
}

.sales-contacts img {
    max-width: 100%;
    width: 300px;
    height: 300px;
}

.contact-btn {
    background-color: var(--secondary-color);
    border-radius: 9999px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 2px 2px #0003;
    transition: 800ms ease;
    position: relative;
    font: 500 1.5rem / 2rem var(--font-family);
}

.contact-btn:hover {
    background-color: #FFF;
    color: var(--primary-color);
    box-shadow: none;
}


.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    justify-content: center;
    gap: 2rem;
}



.clients-grid span {
    width: 100%;
    height: 126px;
    display: grid;
    place-items: center;
    border: 1px solid rgb(153 153 153 / .6);
    border-radius: 20px;
    box-shadow: 0 0 0 6px rgb(151 85 200 / .115);
}

.company-logo {
    margin: 0 auto;
    width: 100%;
}

.company-logo img {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}




.form-group {
    width: 100%;
    padding: 10px 30px 10px 30px;
    height: 60px;
    background-color: rgb(246, 247, 249);
    border-radius: 100px;
    border: 1px solid rgb(153 153 153 / .42);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 35px;
    gap: 1rem;
    transition: all .3s ease-in-out;
    position: relative;
}

.textarea-group {
    height: 200px;
    border-radius: 20px;
}

.textarea-group textarea {
    height: 100%;
    resize: none;
    background: transparent;
    font: 400 1.6rem / 2.6rem var(--font-family);
}

.form-group input {
    background: transparent;
    font: 400 1.6rem / 2.6rem var(--font-family);
    height: 100%;
}

.form-group i {
    color: var(--text-grey-color-5);
    font-size: 18px;
}

.form-group label {
    position: absolute;
    top: calc(100% + 4px);
    left: 35px;
}

.form-group:focus-within {
    box-shadow: 0 0 0 2px rgb(151 85 200 / 1);
}


.theme-btn-two {
    background: linear-gradient(45deg, rgb(113, 60, 148), rgb(151, 85, 200));
    padding: 10px;
    margin: 0 auto;
    color: #FFF;
    font: 400 2rem / 3rem var(--font-family);
    font-weight: 600;
    display: grid;
    place-items: center;
    border-radius: 999px;
    width: min(100% - 2rem, 30ch);
}

.theme-btn-two:hover,
.theme-btn-two:focus-within {
    color: #FFf;
}

.project-img {
    border: 2px solid var(--primary-color);
    padding: 1rem;
    width: min(90%, 80%);
    border-radius: 1rem;
}

.w-65 {
    width: min(150px, 120px) !important;
}

/* .love-effy article p {
    display: none;
} */

.subscription_Pricing-Switch--Container {
    width: fit-content;
    padding: 5px 6px;
    background: linear-gradient(45deg, rgb(113, 60, 148), rgb(151, 85, 200));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #FFF;
}


.subscription_Pricing-Switch--Container span {
    padding: 5px 22px;
    border-radius: 10px;
    letter-spacing: .45px;
    font-weight: 500;
    opacity: .75;
    cursor: pointer;
}

.subscription_Pricing-Switch--Container span.active {
    background-color: var(--secondary-color);
    color: var(--text-color);
    opacity: 1;
}

.pricing_Card--container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.pricing_Card {
    padding: 3rem;
    border: 2px solid rgb(153 153 153 / .25);
    border-radius: 1rem;
    background-color: rgb(246, 247, 249);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.description--list {
    margin-top: .55rem;
}

.description--list&gt;li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}


.description--list li.check:before {
    position: absolute;
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    font-weight: 700;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #0a0;
}

.description--list li.cross:before {
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    font-weight: 700;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);

    content: "\f00d";
    color: #f00;
}


.pricing_type {
    display: flex;
    align-items: center;
    gap: 7px;
    background-color: #FFF;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 1rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgb(153 153 153 / .25);
}

.pricing_type p {
    /* font-size: 1.1rem; */
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: .5px;
}

.pricing_type svg {
    height: 25px;
    width: 25px;
}

#append_header {
    animation: bounceIn 1.5s cubic-bezier(0, 0, 0, 1) forwards;
}




.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    justify-content: center;
    gap: 1rem;
}

.optional-box h4 {
    font: 600 2rem / 3rem var(--font-family);
    color: var(--primary-color);
    border-bottom: 1px solid var(--text-grey-color-3);
    padding-bottom: .25rem;
    margin-bottom: 1rem;
}

.optional-box p {
    color: var(--text-grey-color-4);
    text-align: left;
}

.optional-box p:last-child {
    color: var(--text-grey-color-2);
    font-weight: 600;
}

.text-bg-yellow {
    color: var(--text-color);
    background-color: var(--secondary-color);
    padding: 1px 5px;
    animation: textFadeIn 1.5s cubic-bezier(0, 0, 0, 1);

}

.rupees,
.usd {
    font-size: 400 2.25rem / 3.25rem var(--font-family);
    animation: textFadeIn 1.5s cubic-bezier(0, 0, 0, 1);
    overflow: hidden;
}


@keyframes textFadeIn {
    0% {
        transform: translateY(30%);
    }

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


:is([data-animation='translateY'], .integration-box, .pricing_Card, .heading, .clients-grid &gt; span, .product-listing &gt; article, .features-listing &gt; article, .benefits-card, .client-listing figure, .key_benefits--listing &gt; article, .Challenges-content &gt; article, .optional-box, .Component) {
    opacity: 0;
    transform: translateY(30%);
}




[data-animation="show-text"] {
    opacity: 0;
    transform: translateY(-10%);
    animation: showText .5s ease-in .5s forwards;
}



@keyframes showText {
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


.left_side-divider {
    background-color: rgb(153 153 153 / .25);
    width: .35em;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-150%);
}

.works_Info--container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;

    &amp; div&gt;h4 {
        font: 600 2.3rem / 3rem var(--font-family);
    }

    @media (max-width: 776px) {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
        padding: 0 1rem;
    }
}

.works_Info--container article {
    display: grid;
    grid-template-rows: 150px 1fr;

    @media (max-width: 991px) {
        padding-left: 20px;
    }
}




.divider-highlighted {
    background-image: linear-gradient(to top, rgb(113, 60, 148), transparent);
    height: 100px;
    width: 100%;
    display: block;
    border-radius: 0 0 5px 5px;
}

.work-steps--container {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    list-style: none;
    color: var(--text-grey-color-5);
    font-size: 1.0115rem;
}

.work-steps--container li {
    font-size: 15px;
    padding-left: 30px;
    position: relative;
}

.work-steps--container li:before {
    position: absolute;
    content: "\f101";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    color: #4527a4;
    font-size: 16px;
    left: 0;
    top: 0;
}


.works_Icon {
    display: grid;
    place-items: start;
    height: 200px;
    width: 200px;
}


.Components-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;

    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    @media (max-width: 776px) {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
        padding: 0 1rem;
    }
}

.Component {
    text-align: center;
    flex-flow: column;
    align-items: center;
    width: min(100% - 2rem, 350px);
    display: flex;
    margin: 0 auto;
    gap: .25rem;
    position: relative;
}

.Component&gt;figure {
    max-width: 100px;
    min-height: 100px;
    display: grid;
    place-items: center;
    margin: 0 auto;
}

.Component {
    h2 {
        font: 500 2.3rem / 3rem var(--font-family);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    h3 {
        font: 600 1.75rem / 2.75rem var(--font-family);
        color: var(--text-grey-color-2);
        margin: 0;
    }

    p {
        margin: 0;
        color: var(--text-grey-color-5);
    }
}


.integration-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;

    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    @media (max-width: 776px) {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
        padding: 0 1rem;
    }
}

.integration-box {
    background-image: linear-gradient(180deg, #edeeff, #9f9fff);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #c3c5ff;
    flex-flow: column;
    align-items: flex-start;
    width: min(100% - 2rem, 450px);
    display: flex;
    margin: 0 auto;
    gap: .25rem;
    position: relative;
}

.integration-yellow-box {
    background-image: linear-gradient(180deg, #ffffea, #fff246);
    border: 1px solid #fff246;
}

.integration-red-box {
    background-image: linear-gradient(180deg, #fff0f0, #ff9794);
    border: 1px solid #ff9794;
}



.integration-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: #FFF;
    border-radius: 16px;
    color: #582fd3;
    box-shadow: 0 2px 0 0 currentColor;
    margin-bottom: 1rem;

}

.integration-yellow-box .integration-icon {
    color: #e29900;
}

.integration-red-box .integration-icon {
    color: #ff2823;
}


.integration-icon&gt;svg {
    width: 43px;
    height: 43px;
    fill: currentColor;
}


.integration-box&gt;h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.integration-box&gt;p {
    /* font-size: 15px; */
    margin: 0;
    color: var(--text-grey-color-3);
}

.integration-bottom-icon {
    position: absolute;
    bottom: -11px;
    right: -24px;
    opacity: .35;
    rotate: -5deg;
    width: 150px;
    height: 150px;
}

.integration-bottom-icon svg {
    width: 100%;
    height: 100%;
    fill: #FFF;
}


.history--img {
    background: url("../assets/images/history.svg") no-repeat;
    width: 100%;
    height: 100%;
    background-position: center 5%;
}

.historic-content {
    width: 100%;
    background-image: linear-gradient(to top, #BDBDBD, transparent, transparent);
    position: relative;
}


.historic-timeline_container {
    position: relative;
}


.journey-heading {
    width: 100%;
    text-align: center;
    padding-block: .5em;
    color: #FFF;
    background: linear-gradient(315deg, rgb(151, 85, 200), rgb(113, 60, 148), rgb(113, 60, 148), rgb(151, 85, 200));
}

.journey-heading h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.journey-heading p {
    margin: 0;
    opacity: .75;
    font-weight: 400;
    /* font-size: 15px; */
}

.center-line {
    position: absolute;
    background-color: var(--text-grey-color);
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.year_span {
    font-size: 3rem;
    font-weight: 600;
    color: var(--section-color);
}


.left-side-timeline {
    padding-right: 50px;

    h6 {
        font-size: 2.5rem;
    }
}


.right-side-timeline {
    padding-left: 50px;

    h6 {
        font-size: 2.5rem;
    }
}


.span_connector {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: -10px;


}


.span_connector_Right {
    left: -10px;
    right: auto;
    transform: rotateY(-185deg);
}

.span_connector span:nth-child(1) {
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--section-color);
    border-radius: 999px;
}

.span_connector span:nth-child(2) {
    width: 20px;
    height: 2px;
    background-color: var(--text-grey-color);
}

.span_connector span:nth-child(3) {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--section-color);
    border-radius: 999px;
}

.award-img {
    width: 50ch;
    margin: 0 auto;
}


.content-gap&gt;*:not(.hero-banner--section) {
    margin-top: 8rem;

    &amp;:last-child {
        margin-bottom: 10rem;
    }
}









.screen_header {
    grid-column: 1 / 3;
    border-bottom: 1px solid;
}

.screen_header p {
    font-weight: 500;
}



.benefits-listing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;

    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}



.benefits-listing li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.benefits-listing li span {
    --bg-color: #0550FF;
    width: 45px;
    height: 45px;
    background-color: var(--bg-color);
    border-radius: 1rem;
    display: grid;
    place-items: center;
    position: relative;
}




.benefits-listing li span::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    border-radius: 1rem;
    transform: rotate(15deg);
    position: absolute;
    opacity: .24;
    z-index: -1;
}

.benefits-listing span i {
    color: #FFF;
    font-size: 2rem;
}

.benefits-listing {
    font: 600 1.6rem / 2.6rem var(--font-family);
    color: var(--text-grey-color-4);
}




/* .benefits-img_Section{
    display: grid;
    grid-template-columns: 200px auto 200px;
    height: 450px;
    gap: 1rem;
    position: relative;
} */

/* .benefits-img_Section img:not(.Component figure img) {
    height: 100%;
    position: absolute;
    left: 0;
    z-index: -1;

} */


.Benefits_Container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 15px;
    margin-top: 5rem;
}

.center_Benefits-img {
    width: 320px;
    height: 320px;
    border-radius: 9999px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 13px var(--secondary-color), 0 0 0 0, 0 0 0px 30px #fffec2, 0 0 3px 45px #fefde8;

    /* background: linear-gradient(white, white) padding-box, linear-gradient(to top, var(--primary-color) 50%, var(--secondary-color) 50%) border-box; */
    &amp; img {
        height: 100%;
        object-fit: cover;
    }

}


.Benefit_Block {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.3rem 1rem 1rem;
    border-radius: 15px;
    min-width: 380px;
    max-width: 400px;
    box-shadow: 0 4px 50px 0 #0000000d;
    border: 1px solid #ddd;





    &amp; div {
        display: flex;
        flex-direction: column;
        gap: .35rem;

        &amp; * {
            margin: 0;
        }

        &amp; h4 {
            font: 700 2rem / 2.85rem var(--font-family);
            color: var(--text-color);
        }

        &amp; p {
            font-weight: 600;
            color: var(--text-grey-color-5);
        }
    }

    &amp; figure {
        width: 60px;
        height: 60px;
        display: grid;
        place-items: center;
        margin: 0 1rem 0 0;
        padding: 0 1rem 0 0;
        border-right: 1px solid var(--text-grey-color-6);

        &amp; img {
            height: 100%;
        }
    }





}


.Benefit_Block:is(:first-child, :last-child) {
    align-self: end;
}

.right-side_Benefits&gt;.Benefit_Block {
    align-self: flex-end;
}

.right-side_Benefits&gt;.Benefit_Block:is(:first-child, :last-child) {
    align-self: flex-start;
}


.percentage_Circle {
    font-size: 1.75rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    background-image: linear-gradient(-180deg, rgb(151, 85, 200) 0%, rgb(113, 60, 148) 100%);
    box-shadow: inset, 0 0.75rem 0.5rem rgba(255, 255, 255, 0.4) inset, 0 0.25rem 0.5rem 0 rgb(151, 85, 200) inset;
    color: #FFF;
    padding: .5rem 2rem;
    border-radius: 999px;
    margin: 1rem 0 0 0;
    position: relative;
}


.txt-wrapper {
    overflow: hidden;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.revel-text {
    font-size: 3.25rem;
    line-height: 4.25rem;
    font-weight: 400;
    text-align: center;
    color: #DDD;

    b {
        font-size: 4rem;
        line-height: 5rem;
    }
}

.history--desc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;

    p {
        font: 500 1.725rem / 2.85rem var(--font-family);
        color: var(--text-grey-color-3);
    }
}

.book_Demo--btn {
    position: fixed;
    bottom: 28px;
    z-index: 9;
    right: 14px;
    visibility: hidden;
    opacity: 0;
    width: fit-content;
    transform: translateY(100%);
    transition: all .35s ease;
    border: 0;
}


.book_Demo--btn a {
    padding: 10px 20px;
    background-image: linear-gradient(-180deg, rgb(151, 85, 200) 0%, rgb(113, 60, 148) 100%);
    background-color: var(--primary-color);
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    border-radius: 99999px;
    letter-spacing: .5px;

    transition: all .35s ease;

    &amp;:hover {
        background-color: var(--primary-color);
        color: #FFF;
    }
}

.book_Demo--btn a.in-section {
    padding: 10px 20px;
    background-image: none;
    background-color: var(--secondary-color);
    color: var(--text-color);

    &amp;:hover {
        background-color: var(--secondary-color);
        color: var(--text-color);
    }

}


.book_Demo--btn.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}


.swiper-horizontal&gt;.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
}

.image_center {
    object-position: -150px 0;
}


.counter--listing {
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    align-items: center;

    @media (max-width: 991px) {
        flex-direction: column;
        gap: 2rem;
    }

    h1 {
        font: 700 5rem / 6rem var(--font-family);
        margin: 0;
        text-align: center;
        color: var(--primary-color);
    }


    p {
        font: 600 1.7rem / 2.7rem var(--font-family);
        margin: 0;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: .5px;


    }
}


/**********************TESTIMONIAL CSS************************/

.testimonial-wrapper {
    width: min(100% - 1rem, 80ch);
    margin: 0 auto;
}

.testimonial-Container {
    article {
        background-color: #f4ecfb;
        padding: 2rem 3rem;
        color: #593073;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        border-radius: 9px;

        * {
            margin: 0;
            padding: 0;
        }

        span&gt;i {
            font-size: 45px;
            opacity: .25;
            margin-bottom: .75rem;
        }

        span:first-child {
            margin-left: 50px;
        }

        span:last-child {
            margin-right: 50px;
        }



        p {
            font: 400 2rem / 3rem "Playfair Display", serif;
            letter-spacing: 0;
            align-self: center;
            /* font-style: italic; */

        }

    }

}



.hero-banner {
    position: relative;
    width: 100%;
    margin-bottom: 300px;
}


.hero-banner::before {
    content: "";
    background-color: #FFF;
    height: 290px;
    width: 290px;
    border-radius: 4rem;
    position: absolute;
    top: -100%;
    left: 0;
    transform: translate(-30px, -180px) rotate(45deg);
    z-index: 2;
    animation: bounceIn 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.25) forwards;

    /* @media (max-width: 767px) {
        height: 250px;
        width: 250px;
        border-radius: 6rem;
    } */
}

.hero-banner::after {
    content: "";
    background-color: hsla(0, 0%, 100%, .0425);
    height: 380px;
    width: 380px;
    border-radius: 4rem;
    position: absolute;
    top: -100%;
    left: 0;
    transform: translate(-75px, -233px) rotate(45deg);
    animation: bounceIn 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.25) forwards;
    z-index: 2;

    /* @media (max-width: 767px) {
        height: 340px;
        width: 340px;
        border-radius: 6rem;
    } */

}




.hero-banner-wrapper{
    background-image: linear-gradient(to bottom, var(--primary-color), var(--primary-color));
    width: 100%;
    height: 300px;
    position: relative;

}

.hero-banner-wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/bg4.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
}


.text-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
    height: calc(100% + 80px);
    padding: 0 2rem;
    justify-content: end;

    &amp; h1 {
        font-size: 4rem;
        line-height: 5rem;
        font-weight: 800;
        margin: 0;
        color: var(--secondary-color);
        /* background: linear-gradient(to bottom, var(--secondary-color), white); */
        /* background: conic-gradient(var(--secondary-color) 0 12%, #FFF 0 33%, #FFFF 0 50%, light-dark(#FFF, #FFF) 0 70%, var(--secondary-color) 0 100%); */
        /* -webkit-background-clip: text;
        background-clip: text;
        font-weight: 800;

        span {
            filter: drop-shadow(1px 1px 1px hsl(54deg 100% 23.31%));
            color: #FFF;
        } */
    }

    &amp; p {
        font-size: 1.475rem;
        line-height: 2.4rem;
        font-weight: 400;
        color: #FFF;
        margin: 0;
        padding-top: 1rem;
        letter-spacing: 1px;
    }

}


.effy-badge {
    color: #FFF;
    font-size: 3rem;
    line-height: 2rem;
    font-weight: 700;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    margin: 0 auto;
    transform: perspective(999px) rotateX(0) rotateY(-8deg) translateY(54px) scale(1);
}


h2 {
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    color: #110302;
    margin: 0 0 15px;
}

.mt-25 {
    margin-top: 25rem;
}

.section_gap {
    margin-top: 15rem;
}

.connect-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    &amp; span {
        font-size: 1.75rem;
        line-height: 2.75rem;
        font-weight: 600;
    }

    &amp; a {
        cursor: pointer;

        svg {
            width: 25px;
            height: 25px;
        }
    }
}

.free-trial_section {
    display: flex;
    flex-direction: column;

    * {
        margin: 0;
    }

    p {
        color: #FFF;
        font-size: 3rem;
        font-weight: 400;
        line-height: 4rem;
        font-style: italic;
        letter-spacing: .5px;
        display: flex;
        align-items: center;
        gap: 1rem;

        em {
            transform: skewX(-15deg);
        }

        svg {
            width: 70px;
            height: 70px;
            fill: #FFF;
            opacity: .5;
            position: absolute;
            top: 50px;
            left: 50%;
        }
    }

    h1 {
        color: var(--secondary-color);
        font-size: 6rem;
        font-weight: 800;
        line-height: 7rem;
        letter-spacing: 1.25px;
        text-transform: uppercase;
    }

}

.hero-banner-container_about-us {
    background: linear-gradient(315deg, rgb(151, 85, 200), rgb(113, 60, 148), rgb(113, 60, 148), rgb(151, 85, 200));
    width: 100%;
    height: 300px;
    display: grid;
    place-items: center;
    position: relative;
}


.hero-banner-container_about-us::before {
    content: "";
    background-color: #FFF;
    height: 290px;
    width: 290px;
    border-radius: 4rem;
    position: absolute;
    top: -100%;
    left: 0;
    transform: translate(-30px, -180px) rotate(45deg);
    z-index: 2;
    animation: bounceIn 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.25) forwards;

    /* @media (max-width: 767px) {
        height: 250px;
        width: 250px;
        border-radius: 6rem;
    } */
}

.hero-banner-container_about-us::after {
    content: "";
    background-color: hsla(0, 0%, 100%, .0425);
    height: 380px;
    width: 380px;
    border-radius: 4rem;
    position: absolute;
    top: -100%;
    left: 0;
    transform: translate(-75px, -233px) rotate(45deg);
    animation: bounceIn 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.25) forwards;
    z-index: 2;
}




.hero-banner-container_about-us&gt;h1 {
    font-size: 4rem;
    line-height: 5rem;
    font-weight: 700;
    text-align: center;
    word-spacing: .5rem;
    color: #FFF;
    margin: 0;
}


.hero-banner-container_about-us&gt;h1&gt;span {
    color: var(--secondary-color);
}


.sub-banner {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 60%);
    width: 100%;
    bottom: 0%;
}

.sub-banner-icons {
    background-image: url(../assets/images/aboutus-bg.svg);
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50px;
}


.Knowing_Section {
    background: #ffec3d;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    padding: 5rem;
    width: min(100% - 2rem, 70vw);
    margin: 0 auto;
}

.Knowing_Section::before {
    content: "";
    background-image: url(../assets/images/about-bg.svg);
    width: 100%;
    height: 100%;
    background-size: 100%;
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    left: 0;
}

.Knowing-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-color);
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
}

.Knowing-wrapper::after {
    content: "Knowing the";
    font-size: 2.25rem;
    line-height: 3.25rem;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    top: -18px;
    background-color: #ffec3d;
    padding: 0 3rem;
}



.Knowing-wrapper&gt;h1 {
    font-size: 3.7rem;
    line-height: 4.7rem;
    font-weight: 800;
    color: #8143ad;
    padding: 2rem 0 .5rem 0;
}

.Knowing-wrapper&gt;p {
    font-size: 1.65rem;
    line-height: 2.65rem;
    font-weight: 500;
}




.history-container {
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
}


.history-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFF;
    width: calc(100% - 2rem);
    margin: 0 auto;
    position: relative;
    background-color: #ffffff0a;
}




.history-wrapper::before {
    content: "";
    height: 15px;
    width: 15px;
    border: 3px solid var(--secondary-color);
    border-right: 0;
    border-bottom: 0;
    position: absolute;
    left: 0px;
    top: 0;
}


.history-wrapper::after {
    content: "";
    height: 15px;
    width: 15px;
    border: 3px solid var(--secondary-color);
    border-left: 0;
    border-bottom: 0;
    position: absolute;
    right: 0px;
    top: 0;

}

.history-wrapper&gt;span {
    position: relative;
    height: 100%;
    width: 100%;
}


.history-wrapper&gt;span::before {
    content: "";
    height: 15px;
    width: 15px;
    border: 3px solid var(--secondary-color);
    border-right: 0;
    border-top: 0;
    position: absolute;
    left: 0px;
    bottom: 0;
}


.history-wrapper&gt;span::after {
    content: "";
    height: 15px;
    width: 15px;
    border: 3px solid var(--secondary-color);
    border-left: 0;
    border-top: 0;
    position: absolute;
    right: 0px;
    bottom: 0;

}



.history-wrapper&gt;h1 {
    font-size: 4rem;
    line-height: 5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin: 2rem 0 1.5rem 0;
}


.history-wrapper&gt;p {
    font-size: 1.5rem;
    line-height: 2.75rem;
    font-weight: 400;
    width: 100%;
}


.heading-highlighted {
    display: flex;
    justify-content: center;
}

.heading-highlighted&gt;h1 {
    font-size: 5rem;
    line-height: 6rem;
    font-weight: 800;
    width: fit-content;
    text-align: center;
    margin: 0;
    padding-bottom: 3rem;
    padding-top: 5rem;
    position: relative;
}

.container-bg {
    width: 100%;
    height: 100%;
    background-image: url("../assets/images/conatiner-img-1.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: block;
    position: absolute;

}

.our-history_p {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: 600;
    width: min(100% - 2rem, 70vw);
    margin: 0 auto;
    margin-bottom: 1rem;
    color: var(--text-grey-color-5);
    text-align: justify;
}

.award-section {
    width: 100%;
    background: linear-gradient(to top, #f4ecfb, #eaddf7, transparent);
    padding-top: 30rem;
    padding-bottom: 3rem;
}

.award-card {
    display: grid;
    grid-template-columns: auto 500px;
    background-color: #FFF;
    border-radius: 2rem;
    gap: 2rem;
    box-shadow: 0 0 5px 2px #00000004;
    padding: 2rem;
    margin-bottom: 5rem;
}

.award-info-section&gt;h3 {
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.award-info-section&gt;p {
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-weight: 500;
    color: var(--text-grey-color-4);
    text-align: justify;
}

.award-info-img {
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
    border-radius: 2rem;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
}


.award-info-img&gt;picture {
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
    border-radius: 2rem;
    overflow: hidden;
}

.team-member-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.team-member-block&gt;div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-member-block&gt;div&gt;h5 {
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 3.15rem;
    margin: 0;
    text-align: center;
}

.team-member-block&gt;div&gt;p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    margin: 0;
    text-align: center;
    color: var(--text-grey-color-5);
}


.team-member-block&gt;picture {
    width: 200px;
    height: 200px;
    display: block;
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto;
}

.team--container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 7rem;
}

.team-grid-column-2 {
    grid-column: 2;
}

.team-grid-column-3 {
    grid-column: 3;
}




/*************************CHALLENGES UI******************************/

.security-challenges-container {
    display: grid;
    grid-template-columns: 1fr 20vw 1fr;
    align-items: center;
    margin-top: 4em;
    gap: 1rem;
}


.challenges-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.left-challenges {
    align-items: flex-end;
}

.right-challenges {
    align-items: flex-start;
}

.challenges__img{
    position: relative;
    width: 100%;
    height: 100%;
}

.challenges__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-url);
    background-size: cover;
    background-position: center;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: scale(1.3);
}


.center-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.image-container {
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
}

.image-container &gt; img:not(.cafm-img){
    scale: 1.4;
}

.cafm-img{
    scale: 1.2;
}



.challenge-item {
    display: flex;
    align-items: center;
    padding: .5rem;
    border-radius: 99px 0 0 99px;
    background: linear-gradient(to right, var(--secondary-color) 3%, transparent);
    gap: 1rem;
    width: 100%;
}


.right-challenges .challenge-item {
    border-radius: 0 99px 99px 0;
    background: linear-gradient(to left, var(--secondary-color) 3%, transparent);
    flex-direction: row-reverse;
}


.challenge-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #FFF;
    font-size: 20px;
    flex: 0 0 50px;
}

.challenge-text {
    display: flex;
    align-items: center;
    gap: .5rem;
}


.challenge-text &gt; p {
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 1;
}

.right-challenges .challenge-text{
    text-align: right;
} </pre></body></html>