* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

ul,
li {
    margin: 0;
    list-style: none;
}

body {
    font-family: "Inter", sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    color: #666;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    display: inline-block;
}

.heading-one {
    color: #143058;
    font-size: 30px;
/*    font-weight: 300;*/
    line-height: normal;

    span {
        background: linear-gradient(270deg, #143058 0%, #F58634 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 45px;
        line-height: 55px;
        font-weight: 700;
        line-height: normal;
        display: block;
        font-family: "Unbounded", sans-serif;
    }

}

.common-heading-box {
    .heading {
        font-family: "Unbounded", sans-serif;
        font-size: 40px;
        font-weight: 600;
        line-height: normal;
        background: linear-gradient(90deg, #F58634 0%, #143058 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;

        &::before,
        &::after {
            content: '';
            display: inline-block;
            background: url('../img/left-arrow.svg')no-repeat;
            width: 75px;
            height: 23px;
            vertical-align: middle;
            background-size: 75px;
            margin-right: 20px;
        }

        &:after {
            transform: rotate(180deg);
            margin-inline: 20px 0;
        }

        .text {
            color: #293651;
            font-size: 24px;
            line-height: normal;
        }

    }
}




.banner-section {
    background: linear-gradient(0deg, #FFF 50%, #BDD8FF 100%);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-inline: 20px;

    .banner-content {
        .sub-heading {
            font-size: 18px;
            line-height: 28px;
            color: #1E1E1E;

            span {
                color: #143058;
                font-family: "Unbounded", sans-serif;
            }
        }

        .heading-one {
            font-size: 27px;
            line-height: 37px;

            span {
                font-size: 35px;
                line-height: 45px;
            }
        }

        .desc {
            color: #1E1E1E;
            font-size: 16px;
            font-weight: 400;
            line-height: 26px;
        }


    }

    .banner-image-box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: relative;
        gap: 20px;

        .image-item {
            position: relative;

            .tag {
                border-radius: 50px;
                border: 1px dashed #FFF;
                background: #F58634;
                color: #FFF;
                font-size: 12px;
                font-weight: 500;
                line-height: normal;
                display: inline;
                padding: 4px 8px;
                position: absolute;
                top: 16px;
                right: 16px;
                width: max-content;
                z-index: 1;
            }

            .image {
                position: relative;
                padding-top: calc(400/230*100%);

                img,
                video {
                    position: absolute;
                    top: 0;
                    left: 0;
                }

                video,
                img {
                    border-radius: 40px;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            &.manneque-image {
                margin-top: 30px;

                .tag {
                    left: 50%;
                    right: inherit;
                    transform: translateX(-50%);
                    border: 1px dashed #143058;
                    background: #FFF;
                    color: #143058;

                }
            }

            &.model-image {
                margin-top: 60px;
            }

            &.output-image {
                .tag {
                    right: inherit;
                    left: 16px;
                }
            }
        }

        &::before,
        &:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 28%;
            width: 116px;
            height: 116px;
            background: url('../img/banner-arrow-bottom.png') no-repeat;
            z-index: 1;
            animation: arrowUp 1.5s ease-in-out infinite;
        }

        &:after {
            left: inherit;
            right: 25%;
            top: 10%;
            background: url('../img/banner-arrow2.png')no-repeat;
        }
    }

}

@keyframes arrowUp {
    0% {
        transform: translateY(0);

    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);

    }
}


.arrow-link {
    border-radius: 50px;
    background: #143058;
    padding: 4px 5px 5px 20px;
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    transition: all 0.5s ease-in-out;
    display: inline-flex;
    align-items: center;

    span {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #F58534;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 9px;
    }

    &:hover {
        background: #F58534;
        color: #fff;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

        span {
            background: #143058;
        }
    }

}

.img-hover {
    overflow: hidden;

    img {
        transition: all 0.5s ease-in-out;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    &:hover {
        img {
            transform: scale(1.1);
        }
    }
}

/* Base circle styles */
[class*=circle-arrow] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray);
}

[class*=circle-arrow] img {
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow-current {
    transform: translateY(0);
}

.arrow-next {
    transform: translateY(-40px);
}

[class*=arrow-link]:hover [class*=circle-arrow] .arrow-current {
    transform: translateY(40px);
}

[class*=arrow-link]:hover [class*=circle-arrow] .arrow-next {
    transform: translateY(0);
}




#featureid {
    position: relative;
    /* width: 1200px; */
    margin: auto;
    margin-top: 55px;
}

#featureid .wrap {
    text-align: center;
    position: relative;
    display: flex;
}

#featureid .point_panel {
    position: relative;
    max-width: 30%;
    padding: 0;
    height: 500px;
    overflow: hidden;
    border-radius: 30px;
    width: 100%;
}

#featureid .panel_list {
    display: none;
    height: 100%;
    width: 100%;
    padding-top: calc(500/350*100%);
}

#featureid .panel_list.active {
    display: inline-block;
}

#featureid .panel_list img {
    width: auto;
    height: 100%;
/*    object-fit: cover;*/
    margin: auto;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
	right: 0px;
    object-position: top center; 
}


#featureid .point_tab {
    z-index: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-block: 43px;
    max-width: 35%;
}

#featureid .tab_list,.feature-slider .content-box h3 {
    cursor: pointer;
    position: relative;
}


#featureid .tab_list:after,.feature-slider .content-box h3:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 70px;
    height: 70px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    background-color: white;
}

li.tab_list.n1,
li.tab_list.n3 {
    margin-right: -30px;
}

li.tab_list.n2 {
    margin-right: 10px;
}

li.tab_list.n5,
li.tab_list.n7 {
    margin-left: -30px;
}

li.tab_list.n6 {
    margin-left: 10px;
}

#featureid .tab_list.n1:after,.feature-slider .swiper-slide:first-child h3:after {
    right: 0;
    background-image: url('../img/bg_point1.png');
}

#featureid .tab_list.n2:after,.feature-slider .swiper-slide:nth-child(2) h3:after {
    right: 0;
    background-image: url('../img/bg_point2.png');
}

#featureid .tab_list.n3:after,.feature-slider .swiper-slide:nth-child(3) h3:after {
    right: 0;
    background-image: url('../img/bg_point3.png');
}

#featureid .tab_list.n5:after,.feature-slider .swiper-slide:nth-child(4) h3:after {
    left: 0;
    background-image: url('../img/bg_point5.png');
}

#featureid .tab_list.n6:after,.feature-slider .swiper-slide:nth-child(5) h3:after {
    left: 0;
    background-image: url('../img/bg_point6.png');
}


#featureid .tab_list.n7:after,.feature-slider .swiper-slide:nth-child(6) h3:after {
    left: 0;
    background-image: url('../img/bg_point7.png');
}

#featureid .tab_list h3 {
    display: block;
    word-break: keep-all;
    color: #000;
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

#featureid .tab_list.n1 h3,
#featureid .tab_list.n2 h3,
#featureid .tab_list.n3 h3 {
    padding-right: 80px;
    text-align: right;
}

#featureid .tab_list.n5 h3,
#featureid .tab_list.n6 h3,
#featureid .tab_list.n7 h3 {
    padding-left: 80px;
    text-align: left;
}

#featureid .tab_list h3 span,.feature-slider .content-box h3 span {
    width: 100%;
    display: block;
    color: #666;
    text-align: right;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin-top: 6px;
}

#featureid .right-point-tab .tab_list h3 span {
    text-align: left;
}

#featureid .tab_list.active:after {
    background-color: #c1c1c1;
}

#featureid .tab_list.active h3 {
    color: #F58534;
}


@media all and (max-width:1024px) {
    #featureid .tab_list {
        margin-top: 4px;
        padding-right: 30px;
    }

    #featureid .tab_list a {
        padding-top: 2px;
        padding-left: 71px !important;
        padding-right: 0 !important;
        text-align: left !important;
        font-size: 16px;
        line-height: 22px;
    }

    #featureid .tab_list a span {
        display: block;
        font-size: 14px;
        line-height: 20px;
        margin-top: 4px;
    }

    #featureid .point_panel {
        margin-top: 0;
        padding-top: 15px;
    }

}

@media all and (max-width:768px) {
.feature-slider .swiper-slide h3:after{
    right: inherit;
    left: 0;
    width: 50px;
    height: 50px;
    background-size: 25px;
}
.feature-slider .swiper-slide{
    height: auto;
}
 .feature-slider .content-box h3 span{
    text-align: left;
}
 .feature-slider .content-box{
    margin-top: 20px;
}
 .feature-slider .fature-box{
        border: 1px solid #666;
        border-radius: 20px;
        padding: 20px;
        height: 100%;
}
.feature-slider .content-box h3 {
    font-size: 18px;
    line-height: 28px;
    color: #000;
    font-family: "Unbounded", sans-serif;
    padding-left: 60px;
}
.feature-slider .image {
    height: 400px;
    text-align: center;
}
.feature-slider .image img {
    height: 100%;
    object-fit: contain;
    width: auto !important;
    margin: 0px auto;
    text-align: center;
    border-radius: 10px;
}



}
.feature-slider{
        position: relative;
        overflow: hidden;
        padding-bottom: 30px;
    }


.benifit-section .integration_section {
    background: url('../img/benifit-bg.png')no-repeat;
    background-size: cover;
    border-radius: 20px;
    padding: 40px 20px;
    overflow: hidden;
}


.swiper-3d {
    overflow: visible;
}

.swiper-slide.is-integration-text.is-active {
    opacity: 1;
}


.swiper.is-integration-text {
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: auto;
    overflow: hidden;
}

.swiper-wrapper {
    flex-flow: row;
    display: flex;
}

.swiper-wrapper.is-integration-text {
    flex-flow: column;
}

.swiper-wrapper.is-integration-text.active-slide-centered {
    margin-top: 40%;
}

.swiper-slide.is-integration-text {
    opacity: .2;
    flex: none;
    height: auto;
    transition: opacity .5s;
}

.swiper-slide.is-integration-text:last-child {
    height: 100%;
}

.swiper-slide.is-integration-image {
    flex: none;
    max-width: 100%;
    transition: opacity .1s;
}

.slider_component.is-integrations {
    width: 100%;
    position: relative;
}



.slider_pagination.is-integration {
    display: none;
}

.slider_pn-wr {
    margin-bottom: 1rem;
}

.slider_arrow.is-omnichannel {
    display: none;
}

.swiper_arrows-wr {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.integration_layout {
    justify-content: space-between;
    max-height: 25.2rem;
    display: flex;
}

.integration_left-wr {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.integration_right-wr {
    flex: none;
    width: 40rem;
    height: 28rem;
    padding-left: 6rem;
}

.integration_right-wr.layouts-carousel {
    justify-content: flex-start;
    align-items: center;
    width: 48rem;
    display: flex;
}

.slider_pn-white_wr {
    margin-bottom: 3rem;
    display: none;
}

.slider_pn-white_wr.moblrg-show {
    display: none;
}

.integration_text-wr {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 33rem;
    padding-bottom: 2rem;
    display: flex;
}

.swiper-slide.is-integration-text.is-active {
    opacity: 1;
}

.integrations_image {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.heading-style-h4 {
    font-size: 30px;
    line-height: 40px;
    color: #Fff;
    font-family: "Unbounded", sans-serif;
}

.integration_text-wr.text-color-white p {
    color: #fff;
    font-size: 20px;
    line-height: 32px;
}

.swiper-slide.is-integration-text.is-active .heading-style-h4 {
    color: #143058;
}




@media screen and (max-width: 767px) {

    .swiper-wrapper.is-integration-text {
        flex-flow: row;
        margin-top: 1rem;
    }

    .swiper-wrapper.is-integration-text.active-slide-centered {
        margin-top: 1rem;
    }

    .slider_pagination.is-integration {
        grid-column-gap: .625rem;
        grid-row-gap: .625rem;
        display: flex;
    }

    .slider_bullet-text {
        display: none;
    }

    .slider_pn-wr {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        order: 1;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        display: flex;
    }

    .slider_arrow.is-omnichannel {
        display: block;
    }

    .integration_layout {
        flex-flow: column;
        max-width: 30rem;
        max-height: 43rem;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .integration_left-wr {
        grid-column-gap: .25rem;
        grid-row-gap: .25rem;
        background-image: none;
    }

    .integration_right-wr {
        order: -1;
        width: 26rem;
        height: 26rem;
        padding-left: 0;
    }

    .integration_right-wr.layouts-carousel {
        width: 100%;
        height: auto;
    }

    .integration_text-wr {
        padding-bottom: .25rem;
    }

    .slider_bullet--omnichannel {
        background-color: #Fff;
        width: .75rem;
        height: .75rem;
        padding: 0;
        transition: transform .2s, background-color .2s, color .4s;
        border-radius: 50%;
    }

    .slider_bullet--omnichannel.is-active {
        background-color: #fff;
        transform: scale(1.4);
    }


    .slider_pn-white_wr {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        opacity: .5;
        order: 1;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .is-omnichannel {
        grid-column-gap: .625rem;
        grid-row-gap: .625rem;
        display: flex;
    }

    .heading-style-h4 {
        font-size: 22px;
        line-height: 27px;
    }

    .integration_text-wr.text-color-white p {
        font-size: 16px;
        line-height: 23px;
    }

}

@media screen and (max-width: 479px) {
    .integration_left-wr {
        grid-column-gap: 0rem;
        grid-row-gap: 0rem;
        margin-left: 0;
        margin-right: 0;
        padding-top: 1.5rem;
    }

    .integration_right-wr {
        order: -1;
        width: 100%;
        height: auto;
        padding-left: 0;
    }

    .swiper-wrapper.is-integration-text {
        flex-flow: row;
        margin-left: 0;
        margin-right: 0;
    }

    .integration_layout {
        flex-flow: column;
        max-height: none;
        margin-top: 0;
    }

    .benifit-section .integration_section {
        padding-top: 20px;
        padding-bottom: 20px;
        overflow: hidden;
    }

    .slider_pn-white_wr {
        margin: 0 auto;
        display: flex;
    }

    .is-omnichannel {
        background-color: var(--color_transparent);
        margin-bottom: 0;
    }
}



/* faq */
.faq-section .accordion-item {
    background: white;
    overflow: hidden;
    border-radius: 5px !important;
    border: 1px solid #DFEAFF !important;
    margin-bottom: 30px;
}

.accordion-flush>.accordion-item:first-child,
.accordion-flush .accordion-item:last-child {
    border: 1px solid #DFEAFF !important;
}

.faq-section .faq-btn {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    position: relative;
    padding-right: 50px;
    font-weight: 400;
    font-size: 20px;
    color: #666666;
}

.faq-section .faq-btn .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: 0.3s;
}

.faq-section .accordion-button:not(.collapsed) .icon {
    transform: translateY(-50%) rotate(180deg);
}

.faq-section .faq-content {
    padding: 0 20px 20px 20px;
    color: #444;
}

.faq-section .accordion-button {
    box-shadow: none !important;
    background: none !important;
    padding-right: 16px;
    justify-content: space-between;
}

.faq-section::before {
    transform: rotate(180deg);
}

.accordion-button::after {
    content: "";
    width: 35px !important;
    height: 35px !important;
    flex-shrink: 0;
    background-color: #EEF4FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
    transition: transform .3s ease;
    margin-left: 20px;
}

/* ai-fashion-model-section */
.ai-fashion-model-section {
    background: #EFF5FF;

    .fashion-slider {
        position: relative;
        padding-bottom: 30px;
        overflow: hidden;

        .swiper-scrollbar {
            bottom: 0;
            top: inherit;
        }

        .swiper-slide {
            height: auto;
        }

        .steps-card {
            border-radius: 20px;
            background: #FFF;
            padding: 24px 15px;
            height: 100%;

            .step-number {
                text-align: center;
                color: #000;
                font-size: 22px;
                font-weight: 600;
                line-height: 28px;
                margin-bottom: 20px;
            }

            .title {
                color: #000;
                font-family: "Unbounded", sans-serif;
                font-size: 18px;
                font-weight: 400;
                line-height: normal;
            }

            p {
                color: #666;
                font-size: 12px;
                line-height: 18px;
                margin-bottom: 0;
            }

            .steps-image {
                text-align: center;
                max-width: 245px;
                margin: auto;
                height: 255px;
                overflow: hidden;
                padding-bottom: 20px;
                margin-bottom: 16px;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }

                .border02 {
                    height: 1px;
                    background-image: linear-gradient(90deg, #000, #000 75%, transparent 75%, transparent 100%);
                    background-size: 20px 1px;
                    border: none;
                }
            }
        }
    }

}

/* photoshoot-section */
.photoshoot-section {
    background: #F0F0F0;
    max-width: calc(100% - 120px);
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;

    .image {
        border-radius: 40px;
    }

    .content-box {
        padding-left: 35px;

        .title {
            color: #000;
            font-size: 30px;
            font-weight: 400;
            line-height: 46px;
            font-family: "Unbounded", sans-serif;
        }

        p {
            color: #000;
            font-size: 20px;
            line-height: normal;
            text-transform: uppercase;
        }
		a{
			text-decoration: none;
		}
    }
}

/* use-case-section */
.use-case-section {
    .image {
        border-radius: 20px;
    }

    .content-box {
        padding-left: 35px;

        .title {
            color: #000;
            font-size: 30px;
            font-weight: 400;
            line-height: 46px;
            font-family: "Unbounded", sans-serif;
        }

        p {
            color: #666;
            font-size: 20px;
            line-height: 32px;
            /* 160% */
        }
    }
}

/* courter-box */
.courture-box {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 12px;
    height: 100%;

    .icon {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: #D9D9D9;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 25px;
            height: 25px;
        }
    }

    .text {
        flex: 0 0 calc(100% - 65px);
        color: #666;
        font-size: 16px;
        font-weight: 400;
        line-height: 32px;
    }

    &:hover {
        box-shadow: 0 0 34.3px 0 rgba(0, 0, 0, 0.11);
    }


}

@media (min-width: 1400px) {
    .container-fluid {
        max-width: 1320px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 20px;
    }

    .arrow-link {
        padding: 4px 5px 5px 20px;
        font-size: 14px;
        line-height: 26px;

        span {
            width: 30px;
            height: 30px;
            margin-left: 9px;

            img {
                width: 100%;
                height: 100%;
            }
        }

    }

    .common-heading-box {
        .heading {
            font-size: 22px;
            line-height: 32px;

            &::before,
            &::after {
                display: none;
            }

        }
    }
   
    .banner-section {
        margin-inline: 5px;

        .banner-content {
            .sub-heading {
                font-size: 14px;
                line-height: 26px;
            }

            .heading-one {
                font-size: 18px;
                line-height: 24px;

                span {
                    font-size: 25px;
                    line-height: 30px;
                }
            }

            .desc {
                font-size: 14px;
                line-height: 24px;
            }


        }

        .banner-image-box {
            display: block;

            &:after,
            &::before {
                display: none;
            }

            .image-item {
                display: none;
            }
        }

    }

    .heading-one {
        font-size: 18px;
        line-height: 28px;

        span {
            font-size: 28px;
            line-height: 38px;
        }
    }

    /* use-case-section */
    .use-case-section {
        .row {
            margin-bottom: 40px;
			border-bottom: 2px dashed #757575;
        }

        .content-box {
            padding-left: 0;
            margin-top: 20px;

            .title {
                font-size: 22px;
                line-height: 28px;
            }

            p {
                font-size: 14px;
                line-height: 20px;
            }
        }
    }

    /* courter-box */
    .courture-box {
        gap: 10px;
        padding: 10px;

        .icon {
            width: 45px;
            height: 45px;

            img {
                width: 25px;
                height: 25px;
            }
        }

        .text {
            flex: 0 0 calc(100% - 65px);
            font-size: 14px;
            line-height: 24px;
        }

    }

    /* photoshoot-section */
    .photoshoot-section {
        max-width: 100%;

        .content-box {
            padding-left: 0;
            margin-top: 20px;

            .title {
                font-size: 22px;
                line-height: 28px;
            }

            p {
                font-size: 14px;
                line-height: 20px;
            }
        }
    }

    .faq-section .faq-btn {
        font-size: 16px;
        line-height: 26px;
    }

    .accordion-body.faq-content p {
        font-size: 14px;
        line-height: 20px;
    }

    .faq-section .accordion-item {
        margin-bottom: 16px;
    }

}