@font-face {
    font-family: 'Ballinger';
    src: url('../fonts/ballinger/fonnts.com-Ballinger_Regular.otf') format('opentype');
    font-style: normal;
    font-display: swap;
}


@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    /* font-family: 'Ballinger', 'Source Serif Pro', sans-serif; */
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #161616;
    margin: 0;
    padding: 0;
    background: #FFF;
    box-sizing: border-box;
}

.container {
    width: 85%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 0px;
}

.container.white {
    padding: 0px 0px;
    margin-bottom: 100px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #F2EBE0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 22px 0;
    z-index: 1000;
    /* background: #f8f3ec; */
    transition: transform 0.4s ease-out;
    /* transform: translateY(-100%) */
}

.header-container {
    width: 85%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.logo img {
    width: 200px;
}

.left-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: 25px;
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 300;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-menu a:hover {
    color: #761A8D;
}

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

.login {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
}



.btn-login {
    display: inline-block;
    position: relative;
    /* background: #f8f3ec; */
    color: white;
    border: 1px solid #282828;
    color: #161616;
    /* background: linear-gradient(90deg, #f8f3ec, #f8f3ec); */
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: border-color 0.3s;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    text-transform: capitalize;
    margin-left: 50px;
    font-size: 14px;
}

.btn-login:hover {
    border-color: #761A8D;
    color: #761A8D;
}


.book-demo {
    display: inline-block;
    position: relative;
    background: #761A8D;
    color: white;
    background: linear-gradient(90deg, #761A8D, #761A8D);
    padding: 12px 25px;
    border: 1px solid transparent;
    border-radius: 30px;
    text-decoration: none;
    transition: border-color 0.3s;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}



.book-demo::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-10deg);
    transition: left 0.7s ease-in-out;
}

.book-demo:hover::before {
    left: 150%;
}

/* .book-demo:hover {
    box-shadow: none;
    background-color: rgba(250, 25, 101, 0.85);
    transition-delay: 0.25s;
    
}
.book-demo:hover::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    transform: skew(-15deg);
    background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
} */

.button-check-out {
    background: #97ACCF;
    color: white;
    padding: 8px 15px;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    transition: border-color 0.3s;
    border-radius: 20px;
}

.button-check-out:hover {
    border-color: #97ACCF;
    background: white;
    color: #97ACCF;

}




.button-tab {
    background: #AB3B1A;
    color: white;
    padding: 8px 15px;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    transition: border-color 0.3s;
    border-radius: 20px;
}

.button-tab:hover {
    border-color: #AB3B1A;
    background: white;
    color: #AB3B1A;
}


.main-content {
    padding-top: 88px;
}

.m-bg-hero {
    background: #FCF8F2;

}

.m-bg-hero-2 {
    background: #F2EBE0;
}



.hero-block {
    display: flex;
    align-items: center;
    justify-content: space-between;

    img {
        width: 100%;
    }

    div {
        width: 43%;
        gap: 24px;
        display: flex;
        flex-direction: column;

    }

    div:nth-child(2) {
        width: 43%;
        display: flex;
        justify-content: end;
    }
}

.main-heading {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
    color: #000;
}

.main-heading-sub-text {
    font-size: 22px;
    padding: 0;
    margin: 0;
    line-height: 1.7;
    font-weight: 300;
    color: #000;
}

.section-heading {
    font-size: 46px;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
    margin-bottom: 35px;
    color: #000;
}

.m-text-center {
    text-align: center;
}

.m-image-block {
    display: flex;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 60px;

    .m-bg-header {
        display: flex;
        flex-direction: column;
        width: 30%;
        justify-items: center;
        background: #f7eedd;
        border-radius: 8px;
        padding-bottom: 15px;
        gap: 10px;

    }

    .m-bg-header img {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }


}

.m-image-block.results {
    gap: 0px;
    justify-content: space-between;

    .m-bg-header {
        background: #FCF8F2;
        max-width: 23.5%;
        width: 100%;
        padding: 30px 25px;
    }
}

.button_start_now {
    display: flex;
    justify-content: center;
    margin-top: 45px;

    span {
        padding: 12px 25px;
        color: #5479AA;
        background: white;
        font-size: 16px;
        border: 1px solid #5479AA;
        text-transform: capitalize;
        border-radius: 30px;
        font-weight: 500;
        cursor: pointer;
    }

    .active {
        color: #fff;
        background: #5479AA;
    }


    span:hover {
        color: #fff;
        background: #5479AA;
    }

    ;

}

.product-works {
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;

}

.product-feature {
    width: 65%;
}

.product-work-feature {
    width: 90%;
    margin: 0 auto;
}

.product-feature-item {
    border: 1px solid #284052;
    border-radius: 8px;
    padding: 20px 25px;
    margin: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-feature-item h3,
.product-work-feature-item-detail h3 {
    font-weight: 500;
    font-size: 24px;
    text-transform: capitalize;
    line-height: 1.2;
    color: #284052;
    margin: 0;
}

.product-feature-item h3+div,
.product-work-feature-item-detail h3+div {
    color: #284052;
    line-height: 1.6;
    font-size: 18px;
}

.product-feature-item:hover,
.product-feature-item-active {
    background-color: #5479AA;
    color: #fff;
    cursor: pointer;

    h3 {
        color: #fff;
    }
}


.product-feature-item-view img:nth-child(1) {
    display: block;
}

.product-feature-item-view img {
    display: none;
    max-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.product-feature-item-view img.active {
    display: block;
    opacity: 1;
}



.occasion-block {
    display: flex;
    align-items: center;
}

.occasion-block-item {
    width: 70%;
    padding-right: 5%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;

    h3 {
        margin-top: 0;
        font-size: 34px;
        font-weight: 500;
        line-height: 1.4;
    }
}

.occasion-block-item h3+div {
    font-size: 18px;
    line-height: 1.6;
}

.occasion-block-item.image_section {
    padding-left: 5%;
    padding-right: 0;
    justify-content: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    flex-direction: row;
    flex-basis: 480px;
    flex-shrink: 0;
}

.occasion-block-item.image_section.left_align {
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 5%;
}

.occasion-block-item.image_section.left_align+.occasion-block-item {
    padding-right: 0px;
    padding-left: 5%;
}


.m-image-heading {
    font-size: 24px;
    padding-top: 15px;
    color: #000000;
    font-weight: 400;
}

.gift-ideas .m-image-heading {
    padding-top: 0;
}

.m-image-sub-text {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 20px;
    color: #000000;
    font-weight: 400;
}

.m-bg-review {
    background: #5479AA;
    padding-bottom: 15px;

    .section-heading {
        color: white;
    }
}

.m-white {
    color: #fff
}

.carousel-images {
    display: flex;
    transition: transform 1s ease;
    width: 100%;
    gap: 30px;
    flex-direction: row;
    overflow: hidden;
}

.carousel-images div {
    display: flex;
    width: 100%;
    justify-content: center;
}

.carousel-images img {
    width: 100%;
}

/* .carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 5px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s;
    cursor: pointer;
} */
.active {
    background-color: rgba(255, 255, 255, 1);
}

.main_footer_wrapper {
    background: #761A8D;
    color: white;
}

.main_footer_wrapper {
    .container {
        padding: 35px 0;

        .end {
            font-size: 12px;
        }
    }
}

.subscribe_main {
    display: flex;
    max-width: 300px;
    width: 100%;
    position: relative;

    img {
        position: absolute;
        right: 10px;
        top: 14px;
        width: 20px;
    }

    input {
        display: flex;
        padding: 15px;
        background: #f2ebe0;
        border: 1px #fff solid;
        border-radius: 10px;
        color: #000;
        width: 100%;
    }
}

.footer {
    background: #761A8D;
    color: #fff;
    padding-top: 15px;

    .container {
        padding: 35px 0;
    }
}

.footer-main-text {
    font-size: 32px;
    line-height: 1.2;
}

.footer-left-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 40%;
    justify-content: space-between;

    .section-heading {
        margin-bottom: 10px;
    }

    div:nth-child(2) {
        display: flex;
        gap: 50px;
    }

    img {
        width: 40px;
    }
}

.footer-right-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 80%;
}

.footer-right-content {
    display: flex;
    flex-direction: column;
    gap: 20px !important;
    font-size: 12px;

    a {
        text-decoration: none;
        color: #fff;
        font-size: 12px;
    }
}

.footer-right-content a:hover {
    text-decoration: underline !important;
}

.footer .footer-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.end {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #fff;
}

.end-right {
    display: flex;


    a {
        text-decoration: none;
        color: #fff;
        font-size: 12px;
    }

}

.end-right a:not(:last-child)::after {
    content: "•";
    margin: 0 15px;
}


.product-animation {
    display: flex;
    gap: 70px;
    padding-top: 60px;
    padding-bottom: 40px;
}

.product-animation-item {
    width: 20%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    justify-items: center;
    gap: 30px;

}

.product-animation-item img {
    width: 70px;
}

.m-product-block.home {
    padding-bottom: 0px;
    padding-top: 0px;
}

.m-product-block {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 10px;
}

.use-cases-tab {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.use-cases-selection {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}



.m-bg-review .m-image-block {
    position: relative;
    width: 90%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.m-bg-review .m-image-block .carousel-images {
    width: 70%;
}


.carousel-images img {
    height: auto;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;

}

.carousel-images img.active {
    display: block;
    opacity: 1;
}



.about_us_content .main-heading-sub-text {
    font-size: 20px;
}

.abt_banner {
    align-items: center;
}

.abt_banner img {
    width: 80%;
}

.hero-block div.about_us_content {
    width: 55%;
    gap: 30px;
}

.hero-block div.abt_banner {
    width: 38%;
}

.hero-block div.client_stats {
    width: 100%;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
    margin-top: 25px;

    .common_box {
        width: auto;
        flex-direction: column;
        align-items: center;
        gap: 0px;

        h3,
        p {
            margin: 0px;
            line-height: 1;
        }

        h3 {
            font-size: 60px;
        }

        p {
            font-size: 24px;
        }

    }
}

.about_clients {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    .section-heading {
        width: 100%;
        text-align: center;
        line-height: 1.2;
        color: #AB3B1A;
    }
}

.m-bg-hero-2 {
    position: relative;

    img.star {
        position: absolute;
        top: 58px;
        left: 58px;
    }
}

.about_clients .m-image-block {
    gap: 0px;
    justify-content: space-between;

    .m-bg-header {
        background: white;
        width: 23%;

        align-items: center;

        img {
            width: 100%;
        }

        .m-image-sub-text {
            max-width: 78%;
        }
    }
}

.m-bg-hero-2.result_wrapper .section-heading {
    max-width: 70%;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 25px;
    color: #AB3B1A;
}


.m-bg-hero-2.result_wrapper {
    .m-image-heading {
        font-size: 22px;
    }
}

.hero-block {
    div.contact_form {
        width: 40%;

        .common_field {
            width: 100%;
            gap: 8px;

            label {
                font-size: 14px;
            }

            input,
            select {
                border: 1px #ADC0E5 solid;
                padding: 12px;
                border-radius: 6px;
                background: white;
            }

            textarea {
                border: 1px #ADC0E5 solid;
                padding: 12px;
                border-radius: 6px;
                background: white;
                min-height: 90px;
            }
        }
    }

    img {
        transform: scale(1);
        animation: scaleDown 0.8s ease-out forwards;
    }

    @keyframes scaleDown {
        from {
            transform: scale(1.1);
        }

        to {
            transform: scale(1);
        }
    }

    .lottie-service-icon {
        display: block;
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
        text-align: left;
    }

}

.arrow {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.arrow:hover {
    transform: scale(1.4);
}


.product-work-feature-item {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;
    gap: 30px;
}

.product-work-feature-item-detail {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.product-work-feature-item-detail img {
    max-width: 100%;
}

.bg-product-feature {
    background: #B9C6DC;
}

.product-work-feature-action {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;

}

.customer-logo {
    display: flex;
    flex-direction: row;
    gap: 40px;
    height: 30px;
    margin-top: 40px;
    justify-content: center;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

.marquee {
    position: relative;
    animation: marquee 1s linear infinite;
}

.marquee-container:hover .marquee {
    animation-play-state: paused;
}

/* @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-10%); }
} */


.active1 {
    display: flex !important;
    opacity: 1;
}

.product-work-feature-1 {
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.product-work-feature-2 {
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.use-cases-selection img {
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.image-occasion img {
    width: 185px;
}

.pro-image {
    width: 30%;
}

.product-main {
    text-align: center;
    margin: 0 15%;
    gap: 24px;
    display: flex;
    flex-direction: column;
}

.product-main-img {
    max-width: 160px;
    position: absolute;
    top: 5%
}

.product-main-img-bottom {
    max-width: 160px;
    position: absolute;
    right: 0;
    bottom: 10%;
}

.menu-icon {
    display: none;
}



@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.4;
    }

    .product-main-img {
        max-width: 50px;
        position: relative;
    }

    .product-main-img-bottom {
        max-width: 80px;
        text-align: right;
        bottom: 5%;

    }

    .product-work-feature img {
        width: 100%;
    }

    .product-main {
        margin: 0 !important;
    }

    .m-image-block.results {

        .m-bg-header {
            max-width: 100%;
            width: 100%;
        }
    }

    .occasion-block {
        flex-direction: column;
    }

    .occasion-block-item h3 {
        font-size: 24px;
    }

    .occasion-block-item h3+div {
        font-size: 16px;
    }

    .image-occasion img {
        width: 120px;
        height: 120px;
    }

    .product-work-feature-action {
        flex-direction: column;
        gap: 15px;
    }

    .use-cases-tab,
    .marquee {
        flex-direction: column;
    }

    .use-cases-selection img {
        width: 100%;
    }

    .button_start_now {
        margin-top: 0;
    }

    .occasion-block-item.image_section {
        flex-basis: 0 !important;
        justify-content: center;
        margin-top: 30px;
        padding-left: 0;
    }

    .occasion-block-item.image_section.left_align {
        justify-content: center;
        padding-right: 0;
    }

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

    .occasion-block-item {
        width: 100% !important;
        text-align: center;
        margin-top: 20px;
    }

    .pro-image {
        width: 100% !important;
    }

    .main-heading {
        font-size: 36px !important;
    }

    .main-heading-sub-text {

        font-size: 18px;
    }

    .right-menu {
        display: none;
    }

    .hero-block {
        width: 100%;
    }

    .hero-block div {
        width: 100% !important;
        margin-top: 20px !important;
    }

    .container {
        width: 90%;
        padding-top: 15px;
    }

    .m-bg-header {
        width: 100% !important;
    }

    .product-feature {
        width: 100% !important;
    }

    .product-feature-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-menu {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .right-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero-block {
        flex-direction: column;
        text-align: center;
    }

    .hero-block div {
        width: 100%;
    }

    .main-heading {
        font-size: 42px;
    }

    .section-heading {
        font-size: 28px;
    }

    .m-bg-review .m-image-block .carousel-images {
        width: 100% !important;
    }

    .m-image-block.results .m-bg-header {
        width: 100% !important;
        margin-top: 20px;
    }

    .m-image-block {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .m-bg-header {
        width: 80%;
    }

    .carousel-images {
        flex-direction: column;
        align-items: center;
        overflow-x: auto;
    }

    .product-animation {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .product-animation-item {
        width: 80%;
    }

    .footer .footer-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-right-block {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .end {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .hero-block {
        div.contact_form {
            .common_field {
                label {
                    font-size: 14px;
                    text-align: left;
                }
            }
        }
    }

    .footer-left-block {
        width: 100%;
    }

    .header-container {
        flex-direction: row;
    }

    .logo {
        max-width: 150px !important;
    }

    .left-menu {
        justify-content: space-between;
        width: 100%;
        flex-direction: row !important;
    }

    .menu-icon {
        display: block;
    }
}