@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    line-height: 15px;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
}

dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
legend,
input,
textarea,
p {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
}

fieldset,
img {
    border: 0
}

ol,
ul {
    list-style: none
}

a {
    cursor: pointer;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    display: block;
    content: "";
    line-height: 0
}

.clearfix:after {
    clear: both
}

.clear {
    clear: both
}

.btn {
    outline: 0px;
}

.lists {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.mainpage {
    position: relative;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: bold;
}

a {
    font-family: 'Bai Jamjuree', sans-serif;
}

img {
    width: auto;
    height: auto;
}

.container {
    max-width: 1480px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

h2 {
    font-size: 38px;
    font-weight: bold;
    line-height: 46px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
    color: #161616;
}



/*Sec 01 start*/
.chatbot_one {
    width: 100%;
    background: url(../images/aichatbotdevelopment_img/banner-bg.png) center center no-repeat;
    padding: 60px 0 60px;
    position: relative;
    margin-bottom: 120px;
}

.chatbot_one_outer {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 50px;
    flex-direction: row-reverse;
}

.chatbot_one_outer .left_part {
    width: 50%;
    text-align: right;
}


.chatbot_one_outer .right_part {
    width: 50%;
}

.chatbot_one_outer .right_part h1 {
    color: #fc7600;
    display: block;
    font-size: 60px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 10px;
}

.chatbot_one_outer .right_part h1 b {
    -webkit-text-fill-color: #161616;
    display: block;
}

.counter.col_fourth {
    text-align: left;
    display: flex;
    margin-bottom: 10px;
}

.item {
    text-align: left;
}

.iconouter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.icon img {
    max-width: 50px;
}

#counter .item .count {
    color: #fc7600;
    margin-bottom: 5px;
    font-size: 40px;
    font-weight: 700;
}

#counter p {
    color: #fff;
    font-size: 22px;
}

.heading_new h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 40px;
    font-weight: 700;
}

#counter .item span {
    color: #fc7600;
    margin-bottom: 5px;
    font-size: 40px;
    font-weight: 700;
}

#counter .item h3 {
    color: #fc7600;
    text-transform: capitalize;
}

.count_head {
    display: flex;
    align-items: center;
    justify-content: center;
}

#counter {
    display: flex;
    gap: 20px;
    justify-content: right;
    background: #1a1a1c;
    padding: 60px 60px;
    border-radius: 30px
}

.sec01_digital_inner_btn {
    width: fit-content;
    margin-top: 20px;
    position: relative;
}

.sec01_digital_inner_btn a {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    box-shadow: rgba(255, 255, 255, 0.30) 9px 7px 38px 0px;
    background: #000;
    padding: 20px 20px;
    border-radius: 15px;
    white-space: nowrap;
    gap: 20px;
    text-decoration: none !important;
    width: fit-content;
    position: relative;
    z-index: 9;
}

.bg {
    position: relative;
}

.bg::before {
    position: absolute;
    content: "";
    background: red;
    width: 100%;
    height: 100%;
}

.sec01_digital_inner_btn a:hover {
    color: #fff;
}

.card {
    position: relative;
    height: auto;
    background-color: #000;
}

.card::after,
.card::before {
    content: " ";
    position: absolute;
    z-index: 1;
    inset: -0.3rem;
    background: conic-gradient(from var(--gradient-angle),
            var(--clr-card),
            var(--clr-1),
            var(--clr-2),
            var(--clr-3),
            var(--clr-2),
            var(--clr-1),
            var(--clr-card));
    border-radius: 15px;
    animation: rotate 2.5s linear infinite;
}

@keyframes rotate {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 90deg;
    inherits: false;
}

:root {
    --bg-background: #111827;
    --clr-card: #1f2937;
    --clr-1: #6420aa;
    --clr-2: #ff3ea5;
    --clr-3: #ff7ed4;
}

/*Sec 01 end*/

/*Sec 03 start*/
.businesses {
    margin-bottom: 120px;
}

.delivery_app_company_sliderBox {
    background: #2b2b2b;
    border-radius: 30px;
    border: solid 1px #4b4b4b;
    padding: 30px;
    height: 100%;
    min-height: 420px;
}

.delivery_app_company_sliderBox h3 {
    color: #fff;
    padding-bottom: 20px;
}

.delivery_app_company_sliderBox p {
    color: #959494;
}

.slider_heading {
    width: 40%;
}

.businesses_outer {
    display: flex;
    align-items: center;
    gap: 50px;
}

.businesses_inner {
    width: 60%;
}

.slider_heading p {
    color: #000;
    width: 100%;
}

.slider_heading h2 {
    width: 100%;
    padding-bottom: 20px;
}

.delivery_app_company_sliderBox span {
    width: 100px;
    height: 100px;
    background: rgb(121, 120, 120, 0.3);
    border-radius: 100px;
    border: solid 1px #4b4b4b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.businesses_inner ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.businesses_inner ul li {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: solid 1px #fff;
    box-shadow: 0px 8px 32px rgba(32, 21, 21, 5%);
    position: relative;
}

.businesses_inner ul li span {
    position: absolute;
    content: "";
    right: 20px;
    top: 20px;
    font-size: 26px;
    font-weight: 800;
    color: #0000001c;
}

.businesses_inner ul li h3 {
    padding-bottom: 15px;
}

/*Sec 03 End*/
/*Sec 04 End*/
.vr_developmen {
    margin-bottom: 120px;
}

.vr_developmen_outer {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: row-reverse;
}


.vr_developmen_outer .right_part {
    width: 80%;
    margin: auto;
    text-align: center;
}

.vr_developmen_outer .right_part .sec01_digital_inner_btn {
    margin: auto;
}

.vr_developmen_outer .right_part .sec01_digital_inner_btn a {
    background: #fc7600;
    border-radius: 100px;
}

.vr_developmen_outer .right_part h2 {
    padding-bottom: 30px;
}

.vr_developmen_outer .right_part p {
    padding-bottom: 20px;
}


/*Sec 04 End*/

/*Sec 05 End*/
.sys_wordPress_reasons {
    margin-bottom: 120px;
}

.sys_wordPress_reasons_heading {
    padding: 0;
    text-align: center;
    padding-bottom: 50px;
}

.sys_wordPress_reasons_heading h2 {
    padding-bottom: 20px;
}

.sys_wordPress_reasons_outer {
    width: 100%;
    margin: auto;
}

.sys_wordPress_reasons_outer ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sys_wordPress_reasons_outer ul li {
    background: #f5f7f9;
    padding: 34px;
    border-radius: 30px;
}

.sys_wordPress_reasons_outer ul li span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 7%);
    border-radius: 100px;
    margin-bottom: 20px;
}


.sys_wordPress_reasons_outer ul li h3 {
    font-size: 20px;
    font-weight: 600;
    color: #161616;
    padding-bottom: 20px;
}

.sys_wordPress_reasons_outer ul li p {
    font-size: 16px;
    font-weight: 400;
    color: #161616;
    line-height: 28px;
}

/*Sec 05 End*/

.benefits_outer {
    border: 1px solid rgb(213 210 210 / 49%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
}

.left_item {
    width: 55%;
    background: #fc7600;
    padding: 50px 45px;
    border-radius: 22px 0 0 22px;
    transform: scale(1.01);
    margin: 0;
}

.right_item {
    width: 45%;
    padding: 20px 20px 40px 50px;
    position: relative;
}

.right_item li span {
    background: #fc7600;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right_item li h3 {
    margin: 20px 0 15px;
    font-weight: 700;
}

.left_item li:hover+.right_item li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.right_item li span img {
    max-width: 35px;
    filter: brightness(0) invert(1);
}

.right_item li {
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 30px;
}

.left_item li.active,
.right_item li.active {
    opacity: 1;
}

.left_item li {
    color: #fff;
    font-size: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .44);
    padding-bottom: 18px;
    margin-bottom: 18px;
    position: relative;
    list-style: decimal;
    opacity: .7;
    font-weight: 500;
    list-style-position: inside;
    line-height: normal;
    cursor: pointer;
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;

}

.left_item li:last-child {
    margin-bottom: 0;
}

.left_item li.active {
    opacity: 1;
}

.left_item li:hover {
    opacity: 1;
}




/*Sec 07 End*/
.framework {
    margin-bottom: 120px;
}

.framework_outer h2 {
    text-align: center;
    padding-bottom: 50px;
}

.logos {
    padding: 0;
}

.logos ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.logos ul li {
    background: #fff;
    box-shadow: 0px 8px 32px rgba(32, 21, 21, 5%);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
}

.logos ul li img {
    max-width: 150px;
}

/*Sec 07 End*/






.key_benefits {
    margin-bottom: 120px;
    background: #fdf7f2;
    padding: 100px 0;
}

.key_benefits_outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.key_benefits_outer .heading {
    width: calc(100% + 67px);
}

.heading h2 {
    padding-bottom: 20px;
}

.key_benefits_list {
    width: 100%;
}

.key_benefits_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.key_benefits_list ul li {
    width: 100%
}

.key_benefits_list_box {
    background: #fff;
    padding: 25px;
    box-shadow: 0px 8px 32px rgba(32, 21, 21, 5%);
    min-height: 100%;
    text-align: center;
    border: solid 2px #fc7600;
    border-style: dashed;
    border-radius: 30px;
}

.key_benefits_list_box span {
    padding: 0;
    background: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    box-shadow: 0px 8px 32px rgba(32, 31, 31, 8%);
    margin-bottom: 25px;
}

.key_benefits_list_box h3 {
    font-size: 22px;
    font-weight: 500;
    color: #161616;
    padding-bottom: 15px;
}

.key_benefits_list_box p {
    font-size: 16px;
    font-weight: 400;
    color: #161616;
    line-height: 26px;
}

.key_benefits_list.one {
    width: 100%;
    margin-top: 24px;
}

/*Sec 11 start*/
.education_mobileapp {
    padding: 0;
    background: #fdf7f2;
    padding: 100px 0;
}



.education_mobileapp_outer h2 {
    margin-bottom: 0;
    color: #161616;
    text-align: left;
}

.education_mobileapp_outer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.education_mobileapp_outer::before {
    position: absolute;
    content: "";
    background-image: url(../images/aichatbotdevelopment_img/vrwomentow.png);
    width: 230px;
    height: 218px;
    background-repeat: no-repeat;
    top: -70px;
    right: 30%;
    background-size: 100%;
}

.education_mobileapp_outer a {
    background: #fc7600;
    display: flex;
    padding: 20px 30px;
    border-radius: 100px;
    align-items: center;
    text-decoration: none !important;
    white-space: nowrap;
    font-size: 16px;
    gap: 10px;
    font-weight: 600;
    color: #fff;
    box-shadow: 9px 7px 38px 0px #fc760078;
    width: fit-content;
    margin: auto;
    text-transform: uppercase;
}

.education_mobileapp_outer a:hover {
    background: #fc7600;
    color: #fff;
}

.education_mobileapp_outer .left_part {
    text-align: center;
    width: 100%;
}

.education_mobileapp_outer .left_part p {
    margin: 0;
}


/*Sec 11 End*/


/*Sec 05 Start*/
.sec05_digital_outer {
    padding: 100px 0px 50px;
    width: 100%;
    display: block;
    position: relative;
}

.sec05_digital_inner {
    display: flex;
    align-items: center;
    gap: 120px;
}

.sec05_digital_inner .sec05_digital_outer_Left {
    width: 50%;
    position: relative;
}

.slider-wrap {
    height: 100%;
    min-height: 650px;
    position: relative;
}


.slider-wrap .slider {
    position: absolute;
    width: 100%;
    left: -40px;
    top: -60px;
}

.slider-item {
    width: 650px;
    padding: 40px 40px;
    border-radius: 20px;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    position: absolute;
    opacity: 0;
    z-index: 0;
    box-shadow: 0 4px 9px #f1f1f4;
    left: 0;
    top: 0;
    gap: 20px;
    align-items: center;
}

.slider-item .animation-card_image {
    max-width: 115px;
    max-height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 9px rgba(241, 241, 244, 0.72);
    background-color: #ffffff;
}

.slider-item .animation-card_image img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
}

.slider-item .animation-card_content {
    width: 100%;
}

.slider-item .animation-card_content .animation-card_content_title {
    color: #161616;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: normal;
    line-height: normal;
    margin: 0;
}

.slider-item .animation-card_content .animation-card_content_description {
    color: #161616;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: normal;
    line-height: 26px;
    margin: 5px 0 0 0;
}

.slider-item .animation-card_content .animation-card_content_city {
    margin: 10px 0 0 0;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #161616;
    background: #eceae7;
    width: fit-content;
    padding: 0px 16px;
    border-radius: 100px;
}



.sec05_digital_outer_Right {
    width: 50%;
    margin: -100px 0 0 0;
    position: relative;
}

.sec05_digital_outer_Right:before {
    position: absolute;
    content: "";
    background-image: linear-gradient(to left, #fdecde4f, #fff);
    width: 100559px;
    height: 280px;
    top: -60px;
    left: -99999px;
    z-index: -1;
}

.sec05_digital_outer_Right::after {
    position: absolute;
    content: "";
    background-image: url(../images/aichatbotdevelopment_img/ai.png);
    width: 440px;
    height: 258px;
    top: -210px;
    left: 0px;
    background-repeat: no-repeat;
    background-size: 100%;
}

/*Sec 05 End*/

.process_new {
    background-image: radial-gradient(at center right, #FFFFFF 0%, #F6EFFF 100%);
    padding: 50px;
    margin-bottom: 120px;
}

.process_new_outer {
    padding: 0;
}

.process_new_outer ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process_new_outer ul li {
    width: 200px;
    text-align: center;
    border: dashed 2px #000000;
    height: 200px;
    border-radius: 20px;
    line-height: 140px;
    position: relative;
}

.process_new_outer ul li span {
    width: 45px;
    text-align: center;
    background: #fc7600;
    height: 45px;
    border-radius: 100px;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.process_new_outer ul li img {
    padding-top: 30px;
    filter: brightness(0);
}

.process_new_outer ul li h3 {
    color: #000;
    font-size: 18px;
}

.process_new h2 {
    color: #000;
    padding-bottom: 80px;
    text-align: center;
}

.company.new {
    background: transparent;
    padding: 0;
}

.company.new ul {
    grid-template-columns: repeat(3, 1fr);
}

.company.new ul li {
    text-align: center;
}

@media only screen and (max-width:1366px) {
    #counter {
        padding: 40px;
    }

    .chatbot_one_outer .right_part h1 {
        font-size: 50px;
    }

    #counter p {
        font-size: 16px;
        text-align: center;
    }


    .sec01_digital_outer {
        padding: 50px 0 0px;
    }

    .vr_services {
        padding: 100px 0;
    }

    .delivery_app_company_sliderBox span {
        width: 80px;
        height: 80px;
    }

    .delivery_app_company_sliderBox span img {
        max-width: 50px;
    }

    .delivery_app_company_sliderBox {
        border-radius: 20px;
        padding: 20px;
    }

    .sys_wordPress_reasons_outer ul li {
        padding: 24px;
        border-radius: 20px;
    }

    .slider-item {
        width: 550px;
    }

    .logos ul {
        grid-template-columns: repeat(4, 1fr);
    }

    .process_new_one_outer img {
        width: 100%;
    }

    .education_mobileapp {
        padding: 30px 0;
    }

    .education_mobileapp_outer::before {
        top: 0;
    }

    .sys_wordPress_reasons_outer ul {
        gap: 20px;
    }

    .logos ul {
        gap: 20px;
    }

    .logos ul li img {
        max-width: 170px;
    }

    .framework_outer {
        padding: 40px 40px;
    }

    .businesses_inner ul li {
        padding: 30px;
        border-radius: 20px;
    }

    .businesses_inner ul {
        gap: 20px;
    }


    .process_outer .left_part img {
        width: auto;
        max-width: 400px;
    }

    .process_outer .left_part {
        width: 40%;
    }

    .company {
        padding: 60px 0;
    }

    .company_inner ul {
        gap: 20px;
    }

    .education_mobileapp_outer {
        padding: 80px 40px;
    }

    h2 {
        font-size: 32px;
        line-height: 40px;
    }
}

@media only screen and (max-width:1200px) {
    .chatbot_one_outer .right_part h1 {
        font-size: 38px;
    }

    .businesses_outer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .slider_heading {
        width: 100%;
        text-align: center;
    }

    .businesses_inner {
        width: 100%;
    }

    .slider-item {
        width: 470px;
        padding: 20px 20px;
        left: 30%;
    }

    .chatbot_one_outer .left_part img {
        max-width: 470px;
    }

    .framework_outer {
        padding: 0;
    }

    .ubrcln_buld_bx {
        width: 30% !important;
    }

    #counter .item .count {
        font-size: 30px;
    }

    #counter .item span {
        font-size: 30px;
    }

    .chatbot_one {
        padding: 50px 0;
    }

    .chatbot_one {
        margin-bottom: 100px;
    }

    .company_inner ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .company_heading {
        padding-bottom: 20px;
    }

    .key_benefits_outer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .key_benefits_outer .heading {
        width: 100%;
        text-align: center;
    }

    .process_new_one h2 {
        padding-bottom: 50px;
    }

    .process_new_one {
        margin-bottom: 100px;
    }

    .key_benefits_list ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ubrcln_buld_bx {
        margin: 0 20px 20px 0 !important
    }

    .ubrcln_buld_bx:nth-child(3),
    .ubrcln_buld_bx:nth-child(6) {
        margin-right: 0 !important;
    }

    section.chatbot {
        margin-bottom: 100px;
    }

    .process_new {
        padding: 50px 0;
    }

    .process_new_outer ul li {
        width: 150px;
        height: 170px;
        line-height: 100px;
    }

    .process_new h2 {
        padding-bottom: 50px;
    }

    .process_new_outer ul li span {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .process_new {
        margin-bottom: 100px;
    }

    .education_mobileapp_outer {
        border-radius: 30px;
        padding: 0;

    }

    .education_mobileapp {
        padding: 60px 0;
    }

    h2 {
        font-size: 28px !important;
    }

    .key_benefits {
        padding: 40px 0;
    }

    .vr_services_outer {
        padding-bottom: 60px;
    }

    .benefits_outer {
        width: 100%;
    }

    .left_item li {
        font-size: 24px;
    }

    .left_item {
        padding: 40px 35px;
    }

    .vr_services {
        margin-bottom: 100px;
    }

    .sec05_digital_outer_Right:before {
        display: none;
    }

    .sec05_digital_outer_Right::after {
        display: none;
    }

    .sec05_digital_inner {
        flex-wrap: wrap;
    }

    .sec05_digital_outer_Right {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .sec05_digital_outer_Right h2 br {
        display: none;
    }

    .sec05_digital_outer {
        padding: 0 0px 0;
    }

    .sec05_digital_inner .sec05_digital_outer_Left {
        width: 100%;
    }

    .vr_developmen {
        margin-bottom: 100px;
    }

    .sys_wordPress_reasons {
        margin-bottom: 100px;
    }

    .industries {
        margin-bottom: 100px;
    }

    .framework {
        margin-bottom: 100px;
    }

    .businesses {
        margin-bottom: 100px;
    }

    .process {
        margin-bottom: 100px;
    }

    .company {
        margin-bottom: 100px;
    }

    .sys_wordPress_reasons_outer ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery_app_company_sliderBox_tow {
        padding: 40px;
        border-radius: 20px;
    }

    .process_outer .left_part img {
        max-width: 350px;
    }

    .education_mobileapp_outer::before {
        display: none;
    }
}


@media only screen and (max-width:991px) {
    .logos ul {
        grid-template-columns: repeat(3, 1fr);
    }


    .process_outer .left_part img {
        max-width: 240px;
    }

    .sec01_digital_outer .sec01_digital_inner {
        gap: 20px;
    }

    .sec01_digital_outer .sec01_digital_inner .right_part h1 {
        font-size: 48px;
    }

    .sec01_digital_outer {
        padding: 30px 0 0px;
    }

    .vr_services_outer {
        flex-wrap: wrap;
    }

    .vr_services_outer .left_part {
        width: 100%;
    }

    .vr_services_outer .right_part {
        width: 100%;
    }

    .industries_outer .right_part h2 {
        padding-bottom: 10px;
    }

    .sec01_digital_inner_btn {
        margin: 0 auto;
    }

    .vr_services_outer .left_part p {
        text-align: center;
    }

    h2 {
        font-size: 26px;
        line-height: 34px;
    }


    .chatbot_one_outer {
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .chatbot_one_outer .left_part {
        width: 100%;
        text-align: center;
    }

    .businesses_outer {
        gap: 30px;
    }

    .businesses_inner ul li span {
        display: none;
    }

    .chatbot_one_outer .right_part p {
        padding-bottom: 20px;
    }

    #counter {
        padding: 30px 0;
        border-radius: 20px;
    }

    .chatbot_one {
        margin-bottom: 70px;
    }

    .chatbot_one {
        padding: 10px 0 30px;
    }

    .chatbot_one_outer .right_part h1 {
        font-size: 35px;
    }

    .chatbot_one_outer .left_part img {
        width: auto;
        max-width: 460px;
        margin: auto;
    }

    .chatbot_one_outer .right_part {
        width: 100%;
        text-align: center;
    }

    .delivery_app_company_sliderBox {
        min-height: 350px;
    }

    .vr_services {
        margin-bottom: 80px;
    }

    .vr_developmen {
        margin-bottom: 80px;
    }

    .sys_wordPress_reasons {
        margin-bottom: 80px;
    }

    .industries {
        margin-bottom: 80px;
    }

    .framework {
        margin-bottom: 80px;
    }

    .businesses {
        margin-bottom: 80px;
    }

    .process {
        margin-bottom: 80px;
    }

    .company {
        margin-bottom: 80px;
    }

    .vr_developmen_outer {
        flex-direction: column-reverse;
        flex-wrap: wrap;
        gap: 30px;
    }

    .vr_developmen_outer .right_part h2 {
        padding-bottom: 20px;
    }

    .vr_developmen_outer .right_part {
        width: 100%;
        text-align: center;
    }

    .vr_developmen_outer .left_part {
        width: 100%;
        text-align: center;
    }

    .vr_developmen_outer .left_part img {
        max-width: 400px;
    }

    .sys_wordPress_reasons_heading h2 {
        margin-bottom: 0;
        text-align: center;
    }

    .process_new_outer ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .sys_wordPress_reasons_heading {
        padding-bottom: 30px;
    }

    .left_item {
        padding: 40px 20px;
    }

    .right_item {
        padding: 30px;
    }

    .right_item li {
        padding-right: 10px;
    }

    .left_item li {
        font-size: 18px;
    }

    .process_new_outer ul li {
        width: 170px;
        height: 170px;
    }

    .process_new_outer ul li h3 {
        font-size: 16px;
    }

    .heading h2 {
        padding-bottom: 10px;
    }

    .company.new ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .key_benefits {
        margin-bottom: 70px;
    }

    .process_new {
        margin-bottom: 70px;
    }

    .sys_wordPress_reasons_outer ul li {
        padding: 20px;
        text-align: center;
    }

    .sys_wordPress_reasons_outer ul li span {
        margin: 0 auto 20px;
    }

    .industries_outer {
        gap: 30px;
    }

    .delivery_app_company_sliderBox_tow {
        padding: 24px;
        border-radius: 20px;
        margin: 20px;
    }

    .framework_outer {
        padding: 30px;
    }

    .framework_outer h2 {
        padding-bottom: 30px;
    }

    .logos ul li img {
        max-width: 150px;
    }

    .businesses_inner ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider_heading {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .businesses_outer .slider_heading p {
        text-align: center;
        padding-top: 20px;
    }

    .businesses_inner ul li {
        padding: 24px;
    }

    .process_outer {
        flex-wrap: wrap;
    }

    .process_outer .left_part {
        width: 100%;
    }

    .process_outer .right_part {
        width: 100%;
    }

    .process_outer ul li::before {
        display: none;
    }

    .processb::after {
        display: none;
    }

    .process_outer ul li span {
        left: 0;
    }

    .process_outer ul li {
        margin-bottom: 20px !important;
        margin: auto;
    }

    .process_outer ul li:nth-child(2n) {
        margin: auto;
        margin-bottom: 20px;
    }

    .process_outer .left_part img {
        max-width: 50%;
    }

    .company_heading {
        padding-bottom: 30px;
    }

    .company_inner ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .company_inner ul li {
        padding: 24px;
        text-align: center;
    }

    .company_inner ul li span {
        margin-bottom: 20px !important;
        margin: auto;
    }

    .education_mobileapp_outer {
        padding: 50px 30px;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 30px;
    }

    .education_mobileapp_outer h2 {
        margin-bottom: 20px;
        text-align: center;
    }

    .slider-item {
        width: calc(100% - 70px);
        border-radius: 10px;
        min-height: 220px;
        left: 40px;
    }

    .sec05_digital_inner {
        gap: 90px;
    }

    .process_new_one h2 {
        padding-bottom: 30px !important;
    }

    .process_new_one {
        margin-bottom: 50px !important;
    }

    .chatbot_heading {
        padding-bottom: 30px !important;
    }

    h3 {
        font-size: 19px;
    }

    section.chatbot {
        margin-bottom: 50px !important;
    }
}

@media only screen and (max-width:768px) {
    .logos ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .chatbot_one_outer .right_part h1 {
        font-size: 30px;
        padding-top: 20px;
    }

    .chatbot_one_outer .left_part img {
        max-width: 400px;
    }

    .sec01_digital_outer .sec01_digital_inner {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .iconouter {
        width: 48%;
    }

    .vr_developmen {
        margin-bottom: 50px;
    }

    .businesses {
        margin-bottom: 50px;
    }

    .vr_developmen_outer .left_part img {
        max-width: 350px;
    }

    .sec01_digital_outer .sec01_digital_inner .right_part {
        width: 100%;
        text-align: center;
    }

    .sec01_digital_outer .sec01_digital_inner .left_part {
        width: 100%;
        text-align: center;
    }

    .sec01_digital_outer .sec01_digital_inner .left_part img {
        max-width: 400px;
        margin: 0 auto -20px;
    }

    .sec01_digital_outer .sec01_digital_inner .right_part h1 {
        font-size: 40px;
    }

    .vr_services {
        padding: 50px 0;
        background: #000;

    }

    .vr_services_outer {
        gap: 40px;
        padding-bottom: 40px;
    }

    .sec01_digital_inner_btn a {
        font-size: 18px;
    }

    .sec01_digital_inner_btn span {
        width: auto;
        height: auto;
    }

    .sec01_digital_inner_btn span img {
        max-width: 20px;
    }

    .delivery_app_company_sliderBox {
        min-height: 310px;
        text-align: center;
    }

    .delivery_app_company_sliderBox span {
        margin: auto;
        margin-bottom: 20px;
    }

    .slider_heading {
        gap: 20px;
    }

    .industries_outer {
        gap: 30px;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .industries_outer .right_part {
        width: 100%;
        text-align: center;
    }

    .industries_outer .right_part h2 {
        text-align: center;
    }

    .next_slider {
        display: none;
    }

    .industries_outer .left_part {
        width: 100%;
    }

    .industries_outer .left_part img {
        max-width: 400px;
    }

    .framework_outer {
        border-radius: 20px;
    }

    .logos ul li {
        padding: 16px;
        border-radius: 10px;
    }

    .framework {
        margin-bottom: 50px;
    }

    .businesses_outer .slider_heading p {
        padding-top: 0;
    }

    .businesses_inner ul li {
        padding: 20px;
        border-radius: 10px;
        text-align: center;
    }

    h2 {
        font-size: 24px !important;
    }

    .right_item {
        padding: 20px;
    }

    .sys_wordPress_reasons {
        margin-bottom: 50px;
    }

    .logos ul li img {
        max-width: 120px;
    }

    .education_mobileapp_outer {
        padding: 0;
        border-radius: 0;
    }

    .company {
        padding: 50px 0;
    }

    .company_heading {
        padding-bottom: 10px;
    }

    #counter {
        flex-wrap: wrap;
    }

    .key_benefits_list_box {
        padding: 20px;
        text-align: center;
        border-radius: 10px;
    }

    .key_benefits {
        margin-bottom: 50px;
    }

    .ubrcln_buld_bx {
        width: 46% !important;
    }

    .ubrcln_buld_bx:nth-child(3),
    .ubrcln_buld_bx:nth-child(6) {
        margin-right: 20px !important;
    }

    .ubrcln_buld_bx:nth-child(2),
    .ubrcln_buld_bx:nth-child(4),
    .ubrcln_buld_bx:nth-child(6) {
        margin-right: 0 !important;
    }

    .education_mobileapp {
        padding: 40px 0;
    }

    .key_benefits_list_box h3 {
        font-size: 20px;
    }

    .company_inner ul li {
        padding: 20px;
    }

    .process_new {
        padding: 30px 0;
    }

    .process_new {
        margin-bottom: 50px;
    }

    .chatbot_one {
        padding: 50px 0 60px;
        margin-top: -55px;
    }

    .chatbot_one_outer {
        gap: 20px;
    }

    .chatbot_one {
        margin-bottom: 0px;
    }
}

@media only screen and (max-width:600px) {
    .vr_services {
        margin-bottom: 50px;
    }

    .iconouter {
        width: 47%;
    }

    .chatbot_one_outer .left_part img {
        max-width: 350px;
    }

    .chatbot_one {
        margin-bottom: 40px;
    }

    .sys_wordPress_reasons_heading h2 {
        margin-bottom: 0;
    }

    .benefits_outer {
        width: 100%;
        flex-wrap: wrap;
    }

    .left_item {
        width: 100%;
        display: none;

    }

    .right_item {
        width: 100%;
        height: 100%;
        opacity: 1;
        position: unset;
        transform: translate(10px, 10px);
        padding: 0;
        display: flex;
        gap: 20px;
        overflow-x: auto;
    }

    .right_item li {
        opacity: 1;
        position: unset;
        transform: unset;
        padding-right: 0;
        border: 1px solid rgb(213 210 210 / 49%);
        border-radius: 22px;
        padding: 20px;
        min-width: 350px;
    }

    .benefits_outer {
        border-radius: 0;
        padding: 0;
        border: none;
    }

    .industries_outer .left_part {
        display: none;
    }

    .vr_developmen {
        margin-bottom: 50px;
    }

    .sys_wordPress_reasons {
        margin-bottom: 50px;
    }

    .industries {
        margin-bottom: 30px;
    }

    .framework {
        margin-bottom: 50px;
    }

    .businesses {
        margin-bottom: 50px;
    }

    .process {
        margin-bottom: 50px;
    }

    .process_outer ul li {
        text-align: center;
    }

    .process h2 {
        padding-bottom: 50px;
    }

    .company {
        margin-bottom: 50px;
    }

    .vr_services {
        padding: 30px 0;
    }

    h2 {
        font-size: 20px;
        line-height: 30px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14px !important;
    }

    .vr_services_outer {
        gap: 30px;
        padding-bottom: 30px;
    }

    .slider_heading {
        gap: 10px;
    }

    .sys_wordPress_reasons_outer ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .sys_wordPress_reasons_outer ul li {
        border-radius: 10px;
    }

    .delivery_app_company_sliderBox_tow {
        padding: 20px;
        border-radius: 10px;
        margin: 10px;
    }

    .logos ul li img {
        max-width: 120px;
    }

    .logos ul li {
        padding: 12px;
        border-radius: 10px;
    }

    .framework_outer {
        padding: 20px;
    }

    .framework_outer h2 {
        padding-bottom: 20px;
    }

    .businesses {
        padding: 30px 0 0;
    }

    .businesses_inner ul {
        display: flex;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .businesses_inner ul li {
        min-width: 280px;
    }

    .slider_heading {
        padding-bottom: 20px;
    }

    .process_outer {
        gap: 30px;
    }

    .process_outer .left_part img {
        max-width: 70%;
    }

    .company {
        padding: 30px 0;
    }

    .company_inner ul {
        display: flex;
        overflow-x: auto;
    }

    .company_inner ul li {
        min-width: 300px;
    }

    .company_heading {
        padding-bottom: 20px;
    }

    .education_mobileapp_outer {
        padding: 0;
        border-radius: 0;
    }

    .education_mobileapp_outer a {
        padding: 16px 20px;
    }

    .slider-item {
        width: calc(100% - 50px);
        border-radius: 10px;
        min-height: 200px;
        left: 40px;
    }

    .logos ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .key_benefits_list ul {
        grid-template-columns: repeat(1, 1fr);
    }

    h2 {
        font-size: 22px !important;
    }

    .cardflipbox {
        height: 250px !important;
    }

    .cardflipbox .cardback,
    .cardflipbox .cardfront {
        min-height: 250px !important;
    }

    br {
        display: none;
    }

}

@media only screen and (max-width:480px) {
    .logos ul li img {
        max-width: 100px;
    }

    .cardflipbox {
        height: 200px !important;
    }

    .cardflipbox .cardback,
    .cardflipbox .cardfront {
        min-height: 200px !important;
    }

    .ubrcln_buld_bx {
        width: 100% !important;
    }

    .ubrcln_buld_bx {
        margin: 0 0 10px 0 !important;
    }

    .cardflipbox .innercontent p {
        text-align: center !important;
    }

    .ubrcln_buld_bx:nth-child(3),
    .ubrcln_buld_bx:nth-child(6) {
        margin-right: 0 !important;
    }

    .chatbot_one {
        margin-bottom: 0px;
    }

    .chatbot_one_outer .left_part img {
        max-width: 100%;
    }

    .vr_developmen_outer .left_part img {
        max-width: 100%;
    }

    .key_benefits_list ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .sec01_digital_inner_btn a {
        font-size: 14px;
    }

    .chatbot_one_outer .right_part h1 {
        font-size: 26px;
    }

    .sec01_digital_inner_btn a {
        padding: 14px 14px;
        border-radius: 10px;
    }

    .businesses {
        padding: 0;
    }

    .vr_developmen_outer .right_part p {
        padding-bottom: 10px;
    }

    .vr_developmen {
        margin-bottom: 30px;
    }

    .slider_heading {
        padding-bottom: 0;
    }

    .businesses_outer {
        gap: 20px;
    }

    .businesses_inner ul li {
        background: #f5f5f5;
    }

    .iconouter {
        width: 100%;
    }

    #counter {
        padding: 20px 0;
    }

    #counter {
        gap: 10px;
        border-radius: 10px;
    }

    .vr_developmen {
        margin-bottom: 30px;
    }

    .right_item li {
        min-width: 270px;
        border-radius: 10px;
    }

    .slider-item .animation-card_content .animation-card_content_title {
        font-size: 18px;
    }

    .slider-item {
        padding: 10px;
    }

    .slider-item {
        width: calc(100% - 70px);
    }

    .slider-item .animation-card_content .animation-card_content_description {
        padding: 0 !important;
    }

    .businesses {
        margin-bottom: 30px;
    }

    .key_benefits_outer .heading {
        padding-bottom: 20px;
    }

    .key_benefits {
        margin-bottom: 40px;
    }

    .process_new h2 {
        padding-bottom: 40px;
    }

    .process_new_outer ul li {
        width: 130px;
        height: 130px;
        line-height: 70px;
        border-radius: 10px;
    }

    .process_new_outer ul li img {
        padding-top: 10px;
    }

    .process_new_outer ul li span {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .process_new_outer ul li img {
        max-width: 35px;
    }

    .sec01_digital_inner_btn a {
        gap: 10px;
    }

    .logos ul {
        gap: 10px;
    }

    .logos ul li {
        padding: 8px;
    }

    .process_outer ul li {
        padding: 16px 16px 16px 40px;
        border-radius: 100px;
        margin-bottom: 20px;
        min-width: 100%;
    }

    .process_outer ul li span {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .process h2 {
        padding-bottom: 30px;
    }

    .process_outer ul li span {
        left: 35px;
    }

    .delivery_app_company_sliderBox h3 {
        padding-bottom: 10px;
    }

    .education_mobileapp_outer a {
        padding: 16px 16px;
        font-size: 14px;
    }

    .education_mobileapp_outer {
        padding: 0;
    }

    .iconouter {
        border-radius: 10px;
    }

    .sec01_digital_outer .sec01_digital_inner .right_part h1 {
        font-size: 30px;
    }

    section.chatbot {
        margin-bottom: 30px !important;
    }

    .framework_outer {
        border-radius: 10px;
    }

    .sys_wordPress_reasons_outer ul li span {
        width: 50px;
        height: 50px;
    }

    .company_heading {
        padding-bottom: 20px;
    }

    .chatbot_one_outer {
        gap: 30px;
    }

    .process_new_outer ul li span {
        top: -19px;
    }

    .cardflipbox .cardfront {
        display: none;
    }

    .cardflipbox .cardback {
        transform: unset !important;
    }

    .cardflipbox .cardback .innercontent h3 {
        display: block !important;
        padding-bottom: 10px;
    }

    .cardflipbox .cardback,
    .cardflipbox .cardfront {
        background: #f7f7f7 !important;

    }
}


.ubrcln_buld_lst {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap
}

.ubrcln_buld_bx {
    width: 25%;
    margin: 0 30px 30px 0;
}

.cardflipbox {
    position: relative;
    height: 360px
}

.cardflipbox .cardflipinner {
    position: relative;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    -ms-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    -webkit-backface-visibility: hidden
}

.cardflipbox .innercontent {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 10px;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%) translateZ(60px) scale(.94);
    text-align: center;
}

.cardflipbox .cardback,
.cardflipbox .cardfront {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    min-height: 340px;
    background: transparent linear-gradient(212deg, #fc7600 0, #ffaa5e 100%) 0 0 no-repeat;
    transition: transform .7s cubic-bezier(.4, .2, .2, 1);
    backface-visibility: hidden;
}

.cardflipbox .cardfront {
    transform: rotateY(0);
    transform-style: preserve-3d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative
}

.cardflipbox .cardback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotateY(180deg);
    transform-style: preserve-3d
}

.cardflipbox:hover .cardfront {
    transform: rotateY(-180deg);
    transform-style: preserve-3d
}

.cardflipbox:hover .cardback {
    transform: rotateY(0);
    transform-style: preserve-3d
}

.cardfront.one {
    background-image: url(../images/aichatbotdevelopment_img/chatbot-1.png);
}

.cardfront.tow {
    background-image: url(../images/aichatbotdevelopment_img/chatbot-2.png);
}

.cardfront.three {
    background-image: url(../images/aichatbotdevelopment_img/chatbot-3.png);
}

.cardfront.fore {
    background-image: url(../images/aichatbotdevelopment_img/chatbot-4.png);
}

.cardfront.five {
    background-image: url(../images/aichatbotdevelopment_img/chatbot-5.png);
}

.cardfront.six {
    background-image: url(../images/aichatbotdevelopment_img/chatbot-6.png);
}

.cardflipbox .cardflipinner .cardfront::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: .4;
    border-radius: 15px;
    background-color: inherit;
    backface-visibility: hidden;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px
}

.cardflipbox .cardfront:after {
    position: absolute;
    content: "";
    background: #000;
    inset: 0;
    margin: auto;
    border-radius: 15px;
    opacity: .5;
    width: 100%;
    height: 100%
}

.cardflipbox .innercontent p {
    color: #000;
    font-size: 18px;
    text-align: left
}

.cardflipbox .cardback .innercontent h3 {
    display: none
}

.cardflipbox .innercontent h3 b {
    font-size: 28px
}

.ubrcln_wrp .sdi_achve_sc {
    background-color: #efefef
}

.ubrcln_wrp .sdi_achve_ryt p {
    color: #030303;
    margin: 15px 0 45px
}

.ubrcln_wrp .sdi_achve_ryt h2 {
    font-weight: 800
}

.ubrcln_wrp .sdi_achve_ryt {
    right: 0;
    width: 50%;
    left: -60px
}

.ubrcln_apnl_sc {
    background: var(--c_dark);
    margin-bottom: 130px
}

.unrcln_apnl_nv {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap
}

.unrcln_apnl_nv li {
    border: 2px solid #ffffff33;
    padding: 22px 10px;
    border-radius: 12px;
    width: 31.5%;
    margin: 0;
    text-align: center;
    text-transform: uppercase
}

.unrcln_apnl_nv li h3 {
    font-weight: 700;
    font-size: 18px
}

.chatbot_heading {
    padding-bottom: 50px;
    text-align: center;
}

.chatbot_heading h2 {
    padding-bottom: 20px;
}

section.chatbot {
    margin-bottom: 120px;
}

.innercontent h3 {
    color: #fc7600;
}

.process_new_one_outer {
    text-align: center;
}

.process_new_one {
    margin-bottom: 120px;
}

.process_new_one h2 {
    padding-bottom: 70px;
    text-align: center;
}