* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "gilroy";
    src: url("../fonts/fonts/Gilroy-Heavy.woff2") format("woff2"),
        url("../fonts/fonts/Gilroy-Heavy.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "gilroy";
    src: url("../fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "gilroy";
    src: url("../fonts/gilroy/Gilroy-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "gilroy";
    src: url("../fonts/gilroy/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "gilroy";
    src: url("../fonts/gilroy/Gilroy-Regular.woff2") format("woff2"),
        url("../fonts/fonts/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "gilroy";
    src: url("../fonts/fonts/Gilroy-Light.woff2") format("woff2"),
        url("../fonts/fonts/Gilroy-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face{
    font-family:"recoleta";
    src:url("../fonts/fonts/Recoleta-Regular.otf") format("otf");
    font-weight:500;
    font-style:normal;
}
html {
    scroll-behavior: smooth;
}

:root {
    --color-black: #252726;
    --color-light-black: rgba(37, 39, 38, 0.7);
    --color-green: #ceff68;
    --color-border: #7c993e;
    --color-light-blue: #f6f4ff;
    --color-light-blue-300: #eeeeff;
    --color-light-blue-200: #f6f6ff;
    --color-light-blue-100: #fdfcff;
    --color-pure-blue: #9180ff;
    --color-blue-border: #ebe8ff;
}

body {
    font-family: "gilroy", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 140%;
    line-height: 30px;
    color: var(--color-light-black);
    background-color: var(--color-light-blue-100);
    overflow-x: clip;
}

.bg-green {
    background-color: var(--color-green);
}

.bg-1 {
    background-color: var(--color-light-blue);
}

.bg-2 {
    background-color: var(--color-light-blue-200);
}

.bg-3 {
    background-color: var(--color-light-blue-300);
}

.bg-white {
    background-color: #fff;
}

p {
    margin-bottom: 0.8em;
    margin-top: 0.8em;
}

p:first-child,
p:first-of-type {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

.br-24 {
    border-radius: 24px;
}

.br-48 {
    border-radius: 48px;
}

.text-center {
    text-align: center;
}

a {
    color: var(--color-black);
}

/* a:hover{color: var(--color-pure-blue);} */
.list-ul ul {
    margin-left: 28px;
}

.list-ul li {
    margin-bottom: 10px;
}

.list-ul li:last-child {
    margin-bottom: 0;
}

.mt-70 {
    margin-top: 70px;
}

.overflow-hidden {
    overflow: hidden;
}

.pb-140 {
    padding: 140px 0;
}

p,
a,
span,
li,
b,
em,
button {
    font-family: "gilroy", sans-serif;
    font-style: normal;
}

strong {
    font-family: "gilroy", sans-serif;
    color: var(--color-black);
}

a {
    text-decoration: none;
    cursor: pointer;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "gilroy", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: var(--color-black);
}

h1 {
    font-size: 70px;
    line-height: 82px;
    line-height: 117%;
    letter-spacing: -0.02em;
}

.h1-48 {
    font-size: 48px;
    line-height: 82px;
    /* or 171% */
}

h2 {
    font-size: 60px;
    line-height: 82px;
    line-height: 137%;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.h2-44 {
    font-weight: 400;
    font-size: 44px;
    line-height: 58px;
    line-height: 132%;
}

.h2-55 {
    font-size: 55px;
    line-height: 218%;
    /* identical to box height, or 218% */
}

.h2-64 {
    font-size: 64px;
    line-height: 120px;
    line-height: 188%;
}

.h2-70 {
    font-size: 70px;
    line-height: 82px;
    /* or 117% */
    line-height: 117%;
}

.h2-80 {
    font-size: 80px;
    line-height: 150%;
}

.h2-100 {
    font-size: 100px;
    line-height: 120px;
    line-height: 120%;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 28px;
    line-height: 38px;
    line-height: 136%;
}

.h3-20 {
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.02em;
}

.h3-34 {
    font-size: 34px;
    line-height: 124%;
}

.h3-38 {
    font-size: 28px;
    line-height: 136%;
}

.h3-44 {
    font-size: 44px;
    line-height: 54px;
    /* identical to box height, or 123% */
    line-height: 123%;
}

.btn-primary {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 40px 20px;
    gap: 23px;
    background: var(--color-green);
    border: 1px solid var(--color-border);
    box-shadow: inset 0px -6px 0px var(--color-border);
    border-radius: 14px;
    font-style: normal;
    letter-spacing: 0.02em;
    color: var(--color-black);
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.btn-primary svg {
    width: 18px;
    height: 14px;
}

.btn-primary:hover {
    box-shadow: none;
}

.btn-arrow {
    display: inline-flex;
    width: 70px;
    height: 70px;
    background: var(--color-green);
    border: 1px solid var(--color-border);
    box-shadow: 0px 4px 0px var(--color-border);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
}

.btn-arrow:hover,
.btn-arrow:active {
    /* background: var(--color-border); */
    /* background: var(--color-green); */
    box-shadow: none;
}

.btn-secondary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 2px 4px;
    gap: 16px;
    width: fit-content;
    border-bottom: 1px solid transparent;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--color-black);
    transition: all 0.3s ease-in-out;
}

.btn-secondary svg path {
    stroke: var(--color-black);
    transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
    color: var(--color-pure-blue);
    border-bottom: 1px solid var(--color-pure-blue);
}

.btn-secondary:hover svg path {
    stroke: var(--color-pure-blue);
}

.btn-filter {
    display: inline-block;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 8px;
    padding: 8px 33px 6px;
    color: #252726cc;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.btn-filter.active {
    background: var(--color-green);
    border: 1px solid var(--color-border);
    color: var(--color-black);
    box-shadow: 0px 4px 0px 0px var(--color-border);
}

img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

figure {
    margin: 0;
    display: flex;
}

.container {
    max-width: 1446px;
    margin: 0 auto;
    padding: 0 18px;
}

/* Header Css */
header {
    padding: 20px 30px 20px;
    background-color: var(--color-light-blue-100);
    position: relative;
    z-index: 10;
}

.page_contents {
    margin-top: -20px;
}

.header_wrapper {
    padding: 9px 10px 9px 25px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid rgba(37, 39, 38, 0.05);
    box-shadow: 0px 6px 17px rgba(239, 237, 242, 0.53);
    border-radius: 20px;
}

.header_wrapper .btn-primary {
    font-weight: 600;
    font-size: 16px;
    line-height: 162%;
    padding: 14px 24px 12px;
    border-radius: 12px;
    letter-spacing: 0px;
    box-shadow: 0px 4px 0px var(--color-border);
}

.header_wrapper .btn-primary:hover {
    box-shadow: none;
}

.header_logo {
    display: flex;
    max-width: 217px;
}

.header_wrapper .nav_list {
    margin-left: -21px;
    margin-bottom: 8px;
}

.nav_list li a,
.nav_list li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    line-height: 150%;
    color: rgba(37, 39, 38, 0.8);
    text-decoration: none;
}

.nav_list li {
    list-style: none;
    display: inline-block;
    margin-right: 49px;
}

.nav_list li:last-child {
    margin-right: 0;
}

.hamburger_open {
    display: none;
}

/* END Header Css */

/* Home Banner */
.home_banner_section {
    padding: 50px 0 52px;
    background-color: var(--color-light-blue-100);
}

.home_banner_section .container {
    position: relative;
    display: flex;
    height: calc(100vh - 156px);
    align-items: flex-end;
    overflow: hidden;
}

.home_banner_section figure {
    /* margin-bottom: -87px; */
    margin-bottom: -164px;
    padding-left: 42px;
    padding-right: 42px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
}

.home_banner_section figure img {
    object-fit: contain;
}

.h_banner_content_wrap {
    background-color: var(--color-light-blue-100);
    position: relative;
    z-index: 2;
}

.home_h1 {
    max-width: 1334px;
    font-size: 100px;
    line-height: 120%;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.home_h1:before {
    content: '';
    position: absolute;
    top: -233px;
    left: 0;
    width: 100%;
    height: 324px;
    background: linear-gradient(180deg, rgba(253, 252, 255, 0) 18.76%, #FDFCFF 69.14%);
    z-index: -1;
}

.banner_bot .desc {
    max-width: 806px;
    padding-top: 4px;
}

.banner_bot.d-flex {
    justify-content: space-between;
    gap: 30px;
    padding-right: 20px;
}

/* ENd Home Banner */

/* Social Proffing */
.social_proffing_section {
    padding: 63px 0 100px;
    background-color: var(--color-light-blue-100);
    overflow: hidden;
}

.social_proffing_swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 15px;
    height: 80px !important;
    background: #fdfcff;
    border: 1px solid rgba(37, 39, 38, 0.06);
    box-shadow: 0px 2px 4px rgba(227, 227, 227, 0.3);
    border-radius: 14px;
}

.social_proffing_swiper img {
    object-fit: contain;
    width: auto;
}

.social_proffing_wrapper {
    margin-left: -212px;
}

/*.swiper-slide img {*/
/*    max-width: 100px;*/
/*    height: auto;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.swiper-slide-active img {*/
/*    filter: none;*/
/*    opacity: 1;*/
/*}*/

/* END Social Proffing */
/* Start Fueling Section */
.fueling_next_gen_section {
    background: #ffffff;
    border-radius: 48px;
    padding: 124px 0 140px;
    position: relative;
    z-index: 2;
}

.stack_img_box {
    max-width: 180px;
}

.stack_img_wrapper {
    display: flex;
    margin-bottom: 20px;
    padding-left: 9px;
}

.stack_img_box .desc {
    max-width: 180px;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: rgba(37, 39, 38, 0.7);
}

.stack_img_wrapper img {
    width: 60px;
    height: 60px;
    border: 4px solid #ffffff;
    margin-left: -12px;
    border-radius: 50%;
    position: relative;
}

.stack_img_wrapper img:first-child {
    z-index: 3;
}

.stack_img_wrapper img:nth-child(2) {
    z-index: 2;
}

.stack_img_wrapper img:nth-child(3) {
    z-index: 1;
}

.fueling_wrapper .title_wrapper.d-flex h2 {
    max-width: 936px;
}

.title_wrapper.d-flex h2 {
    flex: 1;
    max-width: 740px;
    margin-bottom: 0;
    font-weight: 500;
}

.stack_img_box {
    margin: 22px 40px 0 0;
}

.fueling_wrapper .title_wrapper {
    margin-bottom: 83px;
}

.title_wrapper.d-flex {
    justify-content: space-between;
    align-items: center;
}

.fueling_wrapper>.row.d-flex {
    gap: 26px;
}

.fueling_wrapper>.row.d-flex>.col:first-child {
    flex-basis: 61%;
}

.fueling_wrapper>.row.d-flex>.col:last-child {
    flex-basis: 40%;
}

.no_box {
    padding: 84px 80px 84px 56px;
}

.no_box>.col.d-flex {
    justify-content: space-between;
}

.no_box_title {
    font-weight: 500;
    font-size: 70px;
    line-height: 85px;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: 12px;
}

.no_box>.col:first-child {
    padding-bottom: 54px;
    border-bottom: 1px dashed rgba(37, 39, 38, 0.6);
}

.no_box>.col:last-child {
    justify-content: space-between;
    padding-top: 55px;
}

.no_box>.col:last-child .col_wrap:last-child .no_box_title {
    margin-left: -5px;
}

.no_box>.col:last-child .col_wrap:last-child p {
    position: relative;
    left: -5px;
}

.fueling_wrapper>.row.d-flex figure {
    height: 100%;
}

.fueling_bot_content {
    padding-top: 93px;
    max-width: 1051px;
    margin-inline: auto;
}

.fueling_bot_content.d-flex {
    gap: 25px;
}

.fueling_bot_content p {
    flex: 1;
}

.fueling_bot_content p:first-child {
    font-weight: 500;
    font-size: 34px;
    line-height: 198%;
    color: rgba(37, 39, 38, 0.8);
    margin-bottom: 0;
}

.fueling_bot_content p:last-child {
    opacity: 0.8;
    margin: 0;
}

span.with_no {
    font-size: 138px;
    color: var(--color-pure-blue);
    letter-spacing: -1.41px;
}

/* ENd Fueling Section */
/* START Explore Our AI Services */
.explore_our_ai_section {
    padding: 182px 0 140px;
    margin-top: -50px;
    background-color: var(--color-light-blue-200);
    position: relative;
    z-index: 1;
}

.explore_our_ai_section h2 {
    margin-bottom: 36px;
}

.explore_our_ai_section .title_wrapper .desc {
    font-size: 24px;
    line-height: 142%;
}

.service_wrapper.d-flex {
    padding-top: 74px;
    flex-wrap: wrap;
    gap: 41px 30px;
}

.title_icon_wrapper {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 18px;
    flex: 1;
}

.title_icon_wrapper>img {
    width: 54px;
    height: 54px;
    background: var(--color-black);
    box-shadow: 0px 8px 24px rgba(37, 39, 38, 0.16);
    border-radius: 12px;
    padding: 10px;
    backdrop-filter: blur(17px);
    margin-top: 5px;
}

.title_wrapper.title_icon {
    align-items: start;
    justify-content: space-between;
}

.title_wrapper.title_icon .btn-arrow {
    margin-top: 3px;
}

.service_wrapper .col .desc {
    max-width: 774px;
    color: rgba(37, 39, 38, 0.6);
    margin-bottom: 38.19px;
    margin-top: 6px;
}

.service_wrapper>.col {
    background: #fafafa;
    border-radius: 24px;
    padding: 56px 50px 0 54px;
    background: linear-gradient(180deg, #ffffff 0%, #faf9fe 100%);
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    position: relative;
    z-index: 1;
}

.service_wrapper>.col:before {
    content: "";
    background: url(../images/dotted-bg.png);
    position: absolute;
    top: 0;
    border-radius: 24px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    opacity: 5%;
}

.service_wrapper>.col:nth-child(2),
.service_wrapper>.col:nth-child(3) {
    flex-basis: calc(50% - 15px);
}

.service_wrapper>.col:nth-child(2) {
    padding: 47px 40px 20px 50px;
}

.service_wrapper>.col:nth-child(3) {
    padding: 47px 40px 0 50px;
}

.service_wrapper>.col>figure {
    margin-left: -13px;
    margin-right: -8px;
}

.service_wrapper>.col:nth-child(2) .desc {
    max-width: 508px;
    margin-top: 3px;
}

.service_wrapper>.col:nth-child(3) .desc {
    max-width: 504px;
    margin-top: 3px;
}

.service_wrapper>.col:nth-child(2)>figure {
    margin: -26px -17px 0 -27px;
}

.service_wrapper>.col:nth-child(3)>figure {
    margin: 84px -12px 11px -21px;
}

.service_wrapper>.col:nth-child(4) {
    padding: 53px 55px 0 54px;
}

.service_wrapper>.col:nth-child(4) .desc {
    max-width: 829px;
}

.service_wrapper>.col:nth-child(4)>figure {
    margin: 0 -15px 0;
    padding-top: 4px;
}

.service_wrapper>.col:nth-child(3n - 2) {
    background: linear-gradient(180deg, #ffffff 0%, #c8bfff21 100%);
}

.title_icon_wrapper .h3-44 {
    line-height: 132%;
    letter-spacing: -0.02em;
}

/* END Explore Our AI Services */
/* Data annotation tools */
.data_annotation_tools_section {
    background: #ffffff;
    padding: 124px 0 120px;
    position: relative;
    z-index: 2;
}

.data_annotation_tools_section h2 {
    text-align: center;
    margin-bottom: 0;
    max-width: 848px;
    margin-inline: auto;
}

.tab_header {
    display: flex;
    align-items: center;
    padding: 9px;
    /* height: 72px; */
    background: #ffffff;
    border: 1px solid rgba(37, 39, 38, 0.04);
    box-shadow: 0px 4px 16px #f5f5f5;
    border-radius: 20px;
    /* max-width: 1187px; */
    max-width: fit-content;
    margin: 24px auto 70px;
}

.tab_header li {
    list-style: none;
    padding: 14px 23.3px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 14px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.02em;
    color: rgba(37, 39, 38, 0.6);
    cursor: pointer;
    outline: none;
    margin: 0;
}

.tab_header li.active {
    background: var(--color-green);
    border: 1px solid #7c993e;
    color: var(--color-black);
}

ul.tab_list.d-flex {
    margin-left: 1px;
}

.video_menu_wrap {
    border-left: 1px solid #efefef;
    border-right: 1px solid #efefef;
}

.tab_content_bg {
    padding: 20px 40px 0;
    background-image: url(../images/video-bg-vector.png);
    background-color: #f8f8f9;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 50px 50px;
    border: 1px solid #efefef;
    border-top: 0;
}

.tab_content_bg>.tab_item {
    display: flex;
}

.tab_item video {
    width: 100%;
    height: auto;
    background: #ffffff;
    /* border: 10px solid rgba(0, 0, 0, 0.01); */
    backdrop-filter: blur(40px);
    /* border-radius: 22.8066px; */
}

.tab_item:first-child video {
    height: 745px;
}

/* END data annotation tools */
/* START Trusted Partners */
.trusted_partners_section {
    padding: 140px 0 140px;
    background-color: var(--color-light-blue-300);
}

.trusted_partners_section h2 {
    max-width: 703px;
    margin-inline: auto;
    margin-bottom: 114px;
}

.partners_img_wrapper img {
    object-fit: contain;
    height: 74px;
}

.partners_img_wrapper {
    /* width: 570px; */
    height: 232px;
    background: #fdfcff;
    border: 1px solid #ebe8ff;
    box-shadow: 0px 0px 10px rgba(235, 235, 235, 0.22);
    border-radius: 20px;
}

.partners_wrapper.d-flex {
    flex-wrap: wrap;
    gap: 28px 2%;
}

/* .partners_wrapper.d-grid {
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 28px 27px;
} */

.partners_wrapper.d-grid {
    display: flex;
    gap: 28px 27px;
    flex-wrap: wrap;
}

.partners_wrapper .partners_img_wrapper:nth-child(1),
.partners_wrapper .partners_img_wrapper:nth-child(2),
.partners_wrapper .partners_img_wrapper:nth-child(3) {
    flex: 1 0 32%;
}

.partners_wrapper .partners_img_wrapper:nth-child(4),
.partners_wrapper .partners_img_wrapper:nth-child(5),
.partners_wrapper .partners_img_wrapper:nth-child(6),
.partners_wrapper .partners_img_wrapper:nth-child(7) {
    flex: 1 0 23%;
}

.partners_img_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 34px;
}

/* .partners_img_wrapper:nth-child(n+4){width: calc(25% - 22px);height: 232px;} */
/* .partners_img_wrapper:nth-child(n+4){width: calc(25% - 1.5%);height: 232px;} */
/* .partners_img_wrapper:nth-child(n+4){height: 232px;} */

.partners_img_wrapper:nth-child(1) img {
    height: 70px;
}

.partners_img_wrapper:nth-child(2) img {
    height: 54px;
}

.partners_img_wrapper:nth-child(3) img {
    height: 66px;
}

.partners_img_wrapper:nth-child(4) img {
    height: 66px;
}

.partners_img_wrapper:nth-child(5) img {
    height: 74px;
}

.partners_img_wrapper:nth-child(6) img {
    height: 46px;
}

.partners_img_wrapper:nth-child(7) img {
    height: 60px;
}

/* END Trusted Partners */

/* START Our Customers */
.our_customers_section {
    padding: 140px 0 65px;
    background-color: var(--color-light-blue-200);
}

.our_customers_section h2 {
    margin-bottom: 22px;
}

.our_customers_section h2+.desc {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

.testimonials_wrapper {
    padding-top: 70px;
}

.testimonials_wrapper.d-grid {
    grid-template-columns: repeat(auto-fill, minmax(336px, 1fr));
    gap: 28px 24px;
    padding-top: 70px;
    display: grid;
}

.testimonials_wrapper .col {
    background: #fdfcff;
    border: 1px solid #ebe8ff;
    border-radius: 20px;
    padding: 38px 38px 45px;
    height: 448px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials_wrapper .col .desc {
    font-size: 18px;
    line-height: 178%;
}

.name p:last-child {
    font-size: 14px;
    line-height: 17px;
    color: rgba(37, 39, 38, 0.6);
    margin: 0;
}

.testimonials_wrapper .col:first-child .name {
    margin-bottom: -7px;
    max-width: 272px;
}

.name {
    flex: 1;
    margin-top: 1px;
}

.icon_border {
    background: linear-gradient(180deg, #ecdfff, #c196ff);
    border-radius: 12px;
    padding: 1px;
    box-shadow: 0px 4px 10px rgba(98, 0, 238, 0.06);
    height: fit-content;
}

.name_wraper .icon {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.name_wraper.d-flex {
    gap: 16px;
    align-items: center;
}

.customer_name {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: rgba(37, 39, 38, 0.7);
    margin-bottom: 8px;
    letter-spacing: 0;
}

/* END Our Customers */
/* START DATA SECURITY home */
.data_security_section {
    background-color: var(--color-light-blue-200);
    padding: 70px 0 136px;
}

.data_security_section h2 {
    margin-bottom: 25px;
}

.data_security_section h2+.desc {
    max-width: 1084px;
    margin-inline: auto;
    font-size: 24px;
    line-height: 34px;
    color: rgba(37, 39, 38, 0.7);
}

.security_socials {
    padding-top: 70px;
}

.security_img_wrapper {
    background: var(--color-light-blue-100);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    position: relative;
    border: 1px solid #efe5fb;
    z-index: 1;
}

.security_img_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/ISO-Mask\ group.png");
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 1;
}

.security_socials.d-flex {
    flex-wrap: wrap;
    gap: 26.7px 25.23px;
}

.security_img_wrapper figure {
    /* padding-inline: 34px; */
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
}

.security_img_wrapper h3 {
    position: absolute;
    bottom: 33.39px;
    left: 50%;
    transform: translateX(-50%);
}

.security_img_wrapper:nth-child(1),
.security_img_wrapper:nth-child(5) {
    flex-basis: calc(39% - 8.41px);
}

.security_img_wrapper:nth-child(2),
.security_img_wrapper:nth-child(6) {
    flex-basis: calc(32% - 8.41px);
}

.security_img_wrapper:nth-child(3),
.security_img_wrapper:nth-child(4) {
    flex-basis: calc(27.2% - 8.41px);
}

.security_img_wrapper:nth-child(3),
.security_img_wrapper:nth-child(6) {
    flex: 1;
}

.security_img_wrapper:nth-child(1),
.security_img_wrapper:nth-child(2),
.security_img_wrapper:nth-child(3) {
    height: 318.5px;
}

.security_img_wrapper:nth-child(4),
.security_img_wrapper:nth-child(5),
.security_img_wrapper:nth-child(6) {
    height: 323px;
}

/* END Data secutity home */
/* Footer */
footer {
    padding: 100px 0 93px;
    border-radius: 0;
    background-color: #fcfdff;
    margin-top: 0;
}

footer .container {
    max-width: 1404px;
}

.footer_title {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: rgba(37, 39, 38, 0.6);
    margin-bottom: 10px;
}

.footer_menu li a {
    font-size: 18px;
    color: var(--color-black);
}

.footer_menu li {
    list-style: none;
    color: var(--color-black);
}

.footer_socials {
    padding-bottom: 70px;
    margin-top: -40px;
}

.footer_top.d-grid {
    grid-template-columns: 22% 18% 25.5% 34.5%;
}

.footer_menu+.footer_title {
    margin-top: 48px;
}

.footer_socials .socials {
    padding-top: 10px;
}

.socials a {
    background: var(--color-green);
    border: 1px solid #7c993e;
    box-shadow: 0px 2px 0px #7c993e;
    border-radius: 10px;
    padding: 9px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.socials a:hover {
    box-shadow: none;
}

.socials a:last-child {
    margin-right: 0;
}

.socials svg {
    width: 22px;
    height: 22px;
}

.copyright.d-flex {
    align-items: center;
    justify-content: space-between;
    color: rgba(37, 39, 38, 0.6);
    padding: 27px 16px 27px 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.copyright_side_img.d-flex {
    gap: 18px;
}

.copyright_side_img img {
    filter: drop-shadow(0px 6px 10px rgba(165, 165, 165, 0.16));
    object-fit: contain;
}

.copyright_side_img figure {
    width: 60px;
    height: 60px;
}

.footer_bot {
    padding: 110px 13px 0;
}

.copyright .desc {
    text-align: center;
}

.copyright .desc a {
    color: rgba(37, 39, 38, 0.6);
}

.copyright .desc a:last-child {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* END Footer */

.swiper-pagination-bullet {
    transition: all 0.3s linear !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-pure-blue) !important;
    width: 28px !important;
    border-radius: 30px !important;
}

/* ===============================================================================================================
*  About Us Page
*/
.row_alt_banner {
    padding: 110px 0 24px;
}

.row.row_alt_banner {
    display: grid;
    grid-template-columns: 48% 50%;
    gap: 2%;
}

.row_alt_banner .col {
    font-size: 20px;
    line-height: 30px;
}

.full_width_img {
    padding: 64px 0 0;
    display: flex;
}

.who_we_are_section {
    padding: 140px 0 172px;
}

.positive_change_section {
    padding: 0;
    background-color: var(--color-light-blue-200);
}

.right_experts_section {
    padding: 133px 0 150px;
    background-color: var(--color-light-blue-200);
    overflow: hidden;
}

.who_we_are_wrapper.d-grid {
    grid-template-columns: 39% 57%;
    gap: 4%;
}

.who_we_are_wrapper h2 {
    max-width: 535px;
}

.who_we_are_wrapper>.col.desc {
    line-height: 32px;
    line-height: 178%;
    font-size: 18px;
}

.who_we_are_wrapper>.col.desc p {
    margin-bottom: 22px;
}

.who_we_are_wrapper>.col.desc p:last-child {
    margin-bottom: 0;
}

.who_we_are_wrapper>.col.desc:last-child>p:first-child {
    font-weight: 500;
    font-size: 28px;
    line-height: 40px;
    line-height: 143%;
    color: var(--color-black);
}

.who_we_are_wrapper>.col.desc:last-child>p:nth-child(2) {
    color: var(--color-black);
}

.who_we_are_wrapper>.col.desc:last-child>p {
    color: rgba(37, 39, 38, 0.6);
}

.bg_wrap {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.positive_change_section .container {
    padding-block: 94px;
}

.pc_wrapper {
    background-color: #fff;
    margin: 0 0 0 auto;
    max-width: 705px;
    padding: 48px;
}

.pc_wrapper h2 {
    margin-bottom: 11px;
    font-weight: 500;
    font-size: 36px;
    line-height: 58px;
    letter-spacing: 0;
}

.pc_info_wrapper {
    padding: 28px 0 0;
}

.pc_info_wrapper .col {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 22px 24px 19px;
}

.pc_info_wrapper.d-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pc_info_wrapper .col p {
    color: rgba(37, 39, 38, 0.45);
    margin-top: 0;
}

.pc_info_wrapper .col p:first-child {
    font-weight: 500;
    font-size: 44px;
    line-height: 58px;
    line-height: 132%;
    color: var(--color-pure-blue);
    margin-bottom: 8px;
}

.pc_info_wrapper .col:nth-child(3) {
    padding-bottom: 0;
}

.pc_info_wrapper .col:nth-child(1) p:last-child {
    max-width: 201px;
}

.right_experts_section h2 {
    max-width: 1492px;
    margin-inline: auto;
    margin-bottom: 84px;
}

.right_experts_slider img {
    border-radius: 16px;
}

.right_experts_slider_wrapper {
    /* margin-inline: -30px; */
    margin: 0 -97px 0 -30px;
    padding-bottom: 20px;
}

.our_history_section {
    background-color: var(--color-light-blue-300);
    padding: 140px 0 162px;
}

.our_history_section h2 {
    font-size: 44px;
    line-height: 54px;
    max-width: 424px;
    letter-spacing: 0;
}

.histroy_slider_wrapper {
    max-width: 601px;
    margin: 0 0 0 auto;
}

.history_slider_title {
    font-weight: 500;
    font-size: 34px;
    line-height: 30px;
    color: #252726;
    margin-bottom: 20px;
}

.history_dots {
    position: relative !important;
    display: flex;
    gap: 14%;
    justify-content: space-between;
    padding-top: 110px;
    align-items: center;
    max-width: 1254px;
    margin-inline: auto;
    padding-left: 7px;
    width: 90% !important;
}

.history_dots:before {
    content: "";
    position: absolute;
    height: 2px;
    background-color: rgba(37, 39, 38, 0.2);
    left: 0;
    width: 100%;
}

.history_dots .swiper-pagination-bullet {
    position: relative;
    width: 12px !important;
    min-width: 12px;
    height: 12px;
    margin: 0 !important;
    opacity: 1;
    background-color: rgba(157, 158, 157);
}

.history_dots .swiper-pagination-bullet-active {
    width: 18px !important;
    min-width: 18px;
    height: 18px;
    background-color: var(--color-black) !important;
}

.dot-label-top,
.dot-label-bottom {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
}

.dot-label-top {
    top: -34px;
    font-weight: 500;
    color: rgba(37, 39, 38, 0.45);
}

.dot-label-bottom {
    bottom: -31px;
    color: rgba(37, 39, 38, 0.45);
}

.history_dots .swiper-pagination-bullet-active .dot-label-top,
.history_dots .swiper-pagination-bullet-active .dot-label-bottom {
    color: var(--color-black);
}

.history_dots .swiper-pagination-bullet-active .dot-label-top {
    top: -31px;
}

.history_dots .swiper-pagination-bullet-active .dot-label-bottom {
    bottom: -28px;
}

.pagination_arrow>button {
    margin-right: 24px;
}

.pagination_arrow>button:last-child {
    margin-right: 0;
}

.join_us_section {
    padding: 140px 0 70px;
    background-color: var(--color-light-blue-200);
}

.join_us_section .container {
    max-width: 1380px;
}

.join_us_section .btn_wrapper {
    margin-top: 40px;
}

.join_us_section .row.d-grid {
    grid-template-columns: 51% 42%;
    gap: 7%;
    align-items: center;
}

.join_us_section .btn-primary {
    gap: 12px;
}

.our_values_section {
    padding: 65px 0 70px;
    background-color: var(--color-light-blue-200);
}

/* ICON BOX */
.icon_wrapper.d-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 38px 24px;
    padding-top: 56px;
    display: grid;
}

.icon_wrapper .col {
    background: #ffffff;
    box-shadow: 0px 5px 12px rgba(227, 227, 227, 0.3);
    border-radius: 20px;
    padding: 34px 34px 34px;
}

.icon_img {
    width: 72px;
    height: 72px;
    background: #252726;
    box-shadow: 0px 4px 16px rgba(37, 39, 38, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
}

.icon_img img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.icon_wrapper h3 {
    margin-bottom: 16px;
    margin-right: -26px;
}

/* END ICON BOX */
.office_workspace_section {
    padding: 70px 0;
    background-color: var(--color-light-blue-200);
}

.office_workpspace_wrapper h2 {
    max-width: 420px;
    line-height: 54px;
    letter-spacing: 0;
}

.office_workpspace_wrapper.d-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.ow_info_wrapper {
    margin-top: 120px;
    border-top: 1.5px solid rgba(37, 39, 38, 0.2);
    padding: 22px 8px 0 7px;
}

.ow_info_wrapper .col>p {
    color: rgba(37, 39, 38, 0.45);
}

.ow_info_wrapper .col>p:first-child {
    font-size: 70px;
    line-height: 84px;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: var(--color-pure-blue);
    margin-bottom: 12px;
}

.ow_info_wrapper.d-flex {
    justify-content: space-between;
}

.ow_info_wrapper .col>p:last-child {
    margin: 0;
}

.office_location_section {
    padding: 50px 0 127px;
    background-color: var(--color-light-blue-200);
}

.office_location_wrapper {
    position: relative;
}

.office_location_wrapper figure {
    border-radius: 24px;
    overflow: hidden;
}

.office_location_tabs {
    border-radius: 16px;
    background-color: var(--color-black);
    color: #fff;
    padding: 28px;
    width: fit-content;
    position: absolute;
    bottom: 50px;
    left: 40px;
}

.office_location_tabs h3 {
    font-size: 34px;
    line-height: 1.3em;
    color: #fff;
    margin-bottom: 32px;
}

.ol_tab_item {
    border: 1px solid #ffffff26;
    padding: 13px 24px;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    border-radius: 14px;
    list-style: none;
    display: inline-block;
    margin-right: 9px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.ol_tab_item:last-child {
    margin-right: 0;
}

.ol_tab_item:hover,
.ol_tab_item:active,
.ol_tab_item.active {
    background-color: var(--color-green);
    color: var(--color-black);
}

.info_wrap {
    border: 0.5px solid #25272673;
    border-radius: 10px;
    padding: 16px 24px 13px 17px;
    background-color: #fff;
    width: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(3%, -124%);
    max-width: 325px;
}

.info_wrap h3 {
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 10px;
}

.info_wrap_desc {
    border-top: 1px solid #25272673;
    padding-top: 19px;
}

.info_wrap p {
    max-width: 281px;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 2px;
    margin-top: 0;
}

.info_wrap p:last-child {
    margin-bottom: 0;
}

.office_location_icon .icon {
    padding: 12px;
    border-radius: 50%;
    background: #ffffff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-78%, -154%);
}

.office_location_icon svg {
    width: 12px;
    height: 12px;
}

.ol_img,
.ol_img>img {
    width: 100%;
    min-height: 708px;
    height: 100%;
}

.spin-once {
    animation: spinOnce 0.6s ease-in-out forwards;
}

@keyframes spinOnce {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 
* About Us Page
* ===============================================================================================================*/

/* ===============================================================================================================
* Data Sourcing Page
*/
.row.banner_wrapper.d-grid {
    grid-template-columns: 50% 46%;
    padding: 78px 0 32px;
    gap: 4%;
}

.ds_page .row.banner_wrapper.d-grid>.col:last-child figure {
    margin-right: -20px;
    margin-top: -17px;
}

.row.banner_wrapper h1 {
    margin-bottom: 18px;
}

.row.banner_wrapper .btn-wrapper {
    margin-top: 44px;
}

.row.banner_wrapper.d-grid>.col:first-child {
    padding-top: 66px;
}

.banner_wrapper .btn-primary {
    padding: 18px 26px;
}

:is(.why_tuoda, .cms_stand_out) h2 {
    font-size: 44px;
    line-height: 58px;
    max-width: 740px;
    margin-bottom: 0;
}

.dc_services_swiper_wrapper {
    padding: 70px 0 0 0;
    margin-right: calc(50% - 50vw + 9px);
}

.dc_service_item {
    background-color: var(--color-light-blue);
    padding: 16px 16px 28px;
    border-radius: 20px;
    height: 100%;
}

.dc_service_item figure {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 34px;
}

.dc_service_item figure img {
    aspect-ratio: 2 / 1.1;
}

.dc_service_item h3 {
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.social_proffing_section.dsp_sp {
    padding: 75px 0 120px;
}

.why_tuoda {
    padding: 140px 0;
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.our_adc_services {
    padding: 135px 0 140px;
    background-color: var(--color-light-blue-200);
}

.our_adc_services h2 {
    margin-bottom: 74px;
}

.our_adc_services .desc {
    max-width: 542px;
}

.left_img figure {
    border-radius: 24px;
    overflow: hidden;
    flex-basis: 55%;
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    border: 1px solid #ededed;
}

.left_img.row.d-flex {
    gap: 79px;
    align-items: end;
}

.left_img.row.d-flex>.col:last-child {
    flex-basis: 44%;
    padding-bottom: 36px;
}

.left_img.row h3,
.cm_wrapper h3 {
    font-size: 44px;
    line-height: 58px;
    letter-spacing: -0.02em;
}

.left_img.row h3 {
    margin-bottom: 20px;
}

.collection_section {
    padding: 140px 0 70px;
    background-color: #fff;
}

.collection {
    border-radius: 20px;
    background: var(--color-light-blue-100);
    border: 1px solid #25272633;
    margin-bottom: 70px;
    overflow: hidden;
}

.collection:last-child {
    margin-bottom: 0;
}

.collection>.col:first-child {
    flex-basis: 39%;
}

.collection>.col:last-child {
    flex-basis: 61%;
    padding: 42px 40px 34px;
    display: flex;
    background-color: #f2f2ff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.collection>.col:last-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../images/dotted-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 153%;
    opacity: 5%;
    z-index: -1;
    scale: revert;
    border-radius: 20px;
}

.collection:nth-child(2)>.col:last-child {
    padding: 48px 40px 42px;
}

.collection:nth-child(3)>.col:last-child {
    padding: 60px 40px 52px;
}

.collection:nth-child(4)>.col:last-child {
    padding: 46px 63px 33px;
}

.collection>.col {
    padding: 60px 71px 48px 48px;
}

.collection:nth-child(2)>.col {
    padding: 60px 60px 48px 48px;
}

.collection>.col:last-child img {
    object-fit: contain;
}

.collection h2.h2-44 {
    font-weight: 500;
    font-size: 44px;
    margin-right: -20px;
    margin-bottom: 22px;
}

.our_customers_section.dsc_oc_section {
    padding: 70px 0 140px;
    background-color: #fff;
}

.contact_us_section {
    padding: 130px 0 130px;
}

.contact_us_section .row.d-flex>.col {
    flex-basis: 50%;
}

.contact_us_section .row.d-flex>.col:first-child {
    padding-top: 22px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.contact_us_section .row.d-flex>.col:first-child h2 {
    max-width: 527px;
    letter-spacing: 0;
}

.contact_us_section .row.d-flex>.col:first-child figure {
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.contact_form {
    max-width: 688px;
    margin-left: auto;
}

.input-group label {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.3em;
    letter-spacing: 0;
    color: var(--color-black);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 39px;
}

.form-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

input,
select,
textarea {
    border-radius: 12px;
    border-width: 1px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    padding: 20px 20px;
    color: var(--color-black);
    font-size: 16px;
    outline: none;
    font-family: "gilroy";
    width: 100%;
}

textarea {
    height: 162px;
    padding: 20px 24px;
}

/* select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
} */
.select_wrap {
    position: relative;
}

.select_wrap:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-image: url("../images/select-form-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.contact_us_section .btn-primary {
    padding: 20px 40px 20px 58px;
    gap: 31px;
}

.ds_page+footer {
    margin-top: 0;
}

.contact_us_section .btn_wrapper {
    margin-top: -1px;
}

.collection:first-child .desc,
.collection:last-child .desc {
    max-width: 421px;
}

/* 
* Data Sourcing Page
* ===============================================================================================================*/
/* =============================================================================================================== 
* Data Labeling Page
*/
.why_choose_odas {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    padding: 140px 0;
}

.c_vision_das {
    padding: 135px 0 62px;
    background-color: var(--color-light-blue-200);
}

.row.no_img_box {
    margin-top: 75px;
}

.no_img_box.d-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.no_img_box>.col {
    padding: 34px 28px 32px;
    border-radius: 16px;
    border-width: 1px;
    background-color: #ffffff;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #f5f5f5 0%, #ededed 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tag_no {
    position: relative;
    color: var(--color-pure-blue);
    padding-left: 13px;
    font-size: 16px;
    line-height: 7px;
    margin-bottom: 24px;
}

.tag_no:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 6px;
    background: var(--color-pure-blue);
}

.no_img_box h3 {
    margin-bottom: 14px;
    margin-right: -20px;
    letter-spacing: -0.02em;
}

.no_img_box figure {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    margin-inline: 2px;
}

.no_img_box figure img {
    aspect-ratio: 1.577 / 1;
}

.npl_das {
    padding: 70px 0 140px;
    background-color: var(--color-light-blue-200);
}

.other_das {
    padding: 136px 0 80px;
}

.other_das h2 {
    margin-bottom: 15px;
}

.row.oda_services.d-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 86px;
    align-items: center;
    max-width: 1286px;
    margin-inline: auto;
    padding: 60px 0;
}

.oda_services img {
    border-radius: 24px;
}

.oda_services .col_contents {
    max-width: 566px;
}

.oda_services:nth-child(odd) .col_contents {
    margin-left: auto;
}

.oda_services:nth-child(odd) .col:first-child,
.oda_services:nth-child(even) .col:last-child {
    display: flex;
}

.oda_services:nth-child(even) .col_contents {
    margin-top: 30px;
}

.oda_services h3 {
    margin-bottom: 19px;
}

.getting_started_section {
    padding: 130px 0;
    background-color: var(--color-light-blue-300);
}

.getting_started_section h2 {
    font-weight: 500;
}

.getting_started_section .row.d-flex {
    gap: 10px;
    align-items: center;
}

.getting_started_section .row.d-flex .col:first-child {
    flex-basis: 51%;
    margin-left: -6px;
    padding-right: 40px;
}

.getting_started_section .row.d-flex .col:last-child {
    flex-basis: 49%;
    display: flex;
}

.getting_started_section img {
    border-radius: 24px;
    aspect-ratio: 1.21 / 1;
}

.getting_started_section .desc {
    max-width: 566px;
}

.getting_started_section .btn_wrapper {
    margin-top: 44px;
}

.kickoff {
    padding: 135px 0 140px;
    background-color: var(--color-light-blue-200);
}

.kickoff h2 {
    max-width: 1029px;
    margin-inline: auto;
}

.kickoff_steps figure img {
    max-width: 136px;
    aspect-ratio: 1 /1;
}

.kickoff_steps figure {
    padding: 40px;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.kickoff_steps {
    max-width: 1000px;
    margin-inline: auto;
}

.kickoff_steps .col_wrap {
    display: flex;
    gap: 63px;
    align-items: center;
    margin-block: -1px;
}

.kickoff_steps:nth-child(even) .col_wrap {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.kickoff_steps:nth-child(even) .kickoff_joiner svg {
    transform: rotateX(180deg);
}

.kickoff_steps:last-child .kickoff_joiner {
    display: none;
}

.kickoff_steps h3 {
    margin-bottom: 22px;
    line-height: 58px;
    letter-spacing: -0.02em;
}

.kickoff_joiner {
    max-width: 803px;
    margin-inline: auto;
    display: flex;
    position: relative;
    right: -5px;
}

.kickoff_wrapper.row.mt-70 {
    margin-top: 75px;
}

.kickoff_steps .figure_wrap {
    position: relative;
}

.kickoff_steps .figure_wrap svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.kickoff_steps:nth-child(odd):not(:first-child) .col_contents {
    padding-left: 112px;
}

.kickoff_joiner svg {
    height: 92px;
    width: 100%;
}

.data_labeling_page .our_customers_section {
    background-color: #fff;
    padding: 140px 0 140px;
}

.data_labeling_page+footer {
    margin-top: 0;
}

/* 
* Data Labeling Page
* ===============================================================================================================*/
/* ===============================================================================================================
* Content Moderation Page
*/
.cms_stand_out {
    padding: 140px 0;
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.our_cms_side_img {
    padding: 136px 0 139px;
    background-color: var(--color-light-blue-200);
}

.our_cms_side_img .left_img.row {
    margin-top: 70px;
}

.our_cms_side_img h3 {
    margin-bottom: 28px;
}

.cm_vti_section {
    padding: 0 0 70px;
    background-color: var(--color-light-blue-200);
}

.cm_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.cm_wrapper .col {
    flex: 1 0 100%;
    background: #ffffff;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #f5f5f5 0%, #ededed 100%);
    border-radius: 24px;
    padding: 44px 36px 34px 60px;
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
}

.cm_wrapper .col:nth-child(3n + 2),
.cm_wrapper .col:nth-child(3n + 3) {
    flex: 1 0 calc(50% - 20px);
    border-radius: 14px;
    padding: 28px 27.5px 40px 28.5px;
}

.cm_wrapper .col>.col_inner {
    display: flex;
    justify-content: space-between;
}

.cm_wrapper .col:nth-child(3n + 1) .col_inner {
    align-items: start;
    gap: 20px;
}

.cm_wrapper .col:nth-child(3n + 2) .col_inner,
.cm_wrapper .col:nth-child(3n + 3) .col_inner {
    flex-direction: column-reverse;
}

.cm_wrapper .col .col-contents {
    max-width: 440px;
}

.cm_wrapper .col:first-child .col-contents {
    padding: 42px 0 0;
}

.cm_wrapper .col .col_image {
    max-width: 630px;
    border-radius: 16px;
    overflow: hidden;
}

.cm_wrapper .col:nth-child(3n + 2) .col-contents,
.cm_wrapper .col:nth-child(3n + 3) .col-contents {
    max-width: 100%;
    padding-inline: 11px;
}

.cm_wrapper .col:nth-child(3n + 2) .col_image,
.cm_wrapper .col:nth-child(3n + 3) .col_image {
    margin-bottom: 32px;
}

.cm_wrapper .col:nth-child(3n + 2) .col_image img,
.cm_wrapper .col:nth-child(3n + 3) .col_image img {
    aspect-ratio: 16 / 9;
}

.cm_wrapper h3 {
    font-weight: 500;
    margin-bottom: 12px;
}

:is(.cm_wrapper .col:nth-child(3n + 2), .cm_wrapper .col:nth-child(3n + 3)) h3 {
    font-size: 34px;
    line-height: 46px;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.cm_wrapper .list-ul ul {
    margin-left: 17px;
}

.cm_wrapper .list-ul li {
    margin-bottom: 2px;
}

.cm_wrapper .list-ul li:last-child {
    margin-bottom: 0;
}

.moderation_services {
    padding: 64px 0 70px;
    background-color: var(--color-light-blue-200);
}

.moderation_services h2 {
    max-width: 1200px;
    margin-bottom: 70px;
}

.ms_row.d-flex {
    align-items: center;
}

.ms_row {
    background: #ffffff;
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    padding: 48px 70px 40px 52px;
    border-radius: 20px;
    margin-bottom: 28px;
}

.ms_row:last-child {
    margin-bottom: 0;
}

.ms_row img {
    width: 112px;
    object-fit: contain;
    height: 112px;
}

.ms_row.d-flex figure {
    flex-basis: 12%;
}

.ms_row.d-flex h3 {
    flex-basis: 47%;
    padding: 0 145px 0 5px;
}

.ms_row.d-flex .desc {
    flex-basis: 41%;
    padding-left: 7px;
}

.cmp_section {
    padding: 70px 0 137px;
    background-color: var(--color-light-blue-200);
}

.cmp_section h2 {
    max-width: 809px;
    margin-inline: auto;
    margin-bottom: 20px;
}

.cmp_row.d-grid {
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 24px 25px;
}

.cmp_row>.col {
    background: #ffffff;
    border: 1px solid;
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    border-image-source: linear-gradient(180deg, #f5f5f5 0%, #ededed 100%);
    padding: 8px 8px 24px 8px;
    text-align: center;
    border-radius: 16px;
}

.cmp_row>.col figure {
    margin-bottom: 24px;
    border-radius: 10px;
    overflow: hidden;
}

.cmp_row>.col figure img {
    aspect-ratio: 1.38 / 1;
}

.cmp_row h3 {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.02em;
    max-width: 236px;
    margin-inline: auto;
}

.content_m_page .our_customers_section {
    background-color: var(--color-light-blue-100);
    padding: 140px 0;
}

.content_m_page .contact_us_section {
    background-color: var(--color-light-blue-300);
    padding: 129px 0 126px;
}

/* 
* Content Moderation Page
* ===============================================================================================================*/
/* ===============================================================================================================
* Generative AI Page
*/
.generative_ai_page .row.banner_wrapper.d-grid>.col:first-child {
    padding-top: 11px;
}

.llm_services h2 {
    max-width: 777px;
    margin-inline: auto;
}

.llm_services {
    padding: 135px 0 70px;
    background-color: var(--color-light-blue-200);
}

.generative_ais_section {
    padding: 64px 0 70px;
    background-color: var(--color-light-blue-200);
}

.generative_ais_section h2,
.generative_ais_section>div>.desc {
    margin-inline: auto;
}

.generative_ais_section h2 {
    max-width: 1055px;
    margin-bottom: 24px;
}

.generative_ais_section>div>.desc {
    max-width: 939px;
}

.generative_ais_section .row.d-grid {
    grid-template-columns: 44.4% 1fr;
    gap: 94px;
    align-items: center;
}

.generative_ais_section .img_wrapper,
.optimizing_llm_section .img_wrapper {
    border-radius: 24px;
    background-color: #fdfcff;
    border: 1px solid;
    border-image-source: linear-gradient(180deg, #f5f5f5 0%, #ededed 100%);
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    display: flex;
}

.generative_ais_section .img_wrapper img {
    object-fit: contain;
}

.accordion_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
}

.accordion_wrapper {
    margin-bottom: 24px;
    border-radius: 16px;
    border: 1px solid #25272633;
}

.accordion_wrapper:last-child {
    margin-bottom: 0;
}

.accordion_content {
    margin-top: -10px;
    padding: 0 28px 24px;
}

.accordion_wrapper.active {
    background-color: var(--color-green);
}

.accordion_header svg {
    transition: all 0.2s ease;
}

.accordion_header.active svg {
    transform: rotateX(180deg);
}

.accordion_header h3 {
    margin-bottom: 0;
}

.optimizing_llm_section {
    padding: 70px 0 140px;
    background-color: var(--color-light-blue-200);
}

.optimizing_llm_section .row.d-grid,
.build_le_section .row.d-grid {
    grid-template-columns: 1fr 44.4%;
    gap: 94px;
    align-items: start;
}

.key_genrative_ai h2 {
    max-width: 910px;
    margin-inline: auto;
}

.swiper-slide {
    height: auto !important;
}

.experience_with_gai_swiper .dc_service_item {
    background-color: #fdfcff;
    border: 1px solid #ebe8ff;
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    border-radius: 16px;
    padding: 20px 20px 28px;
}

.experience_with_gai_swiper .dc_service_item figure {
    margin-bottom: 28px;
}

.experience_with_gai_swiper .dc_service_item h3 {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.experience_with_gai_swiper .desc {
    color: #252726cc;
    margin: 0 -2px 0 0;
}

.experience_with_gai_swiper {
    margin-block: -20px;
}

.experience_with_gai_swiper .swiper-slide {
    margin-block: 20px;
}

.experience_with_gai {
    padding: 140px 0 70px;
}

.title_wrapper.d-flex>div>h2 {
    margin-bottom: 16px;
    max-width: 100%;
}

.build_le_section {
    padding: 66px 0 140px;
}

.build_le_section h2 {
    max-width: 897px;
    margin-inline: auto;
}

.build_le_section>div>.desc {
    max-width: 853px;
    margin-inline: auto;
}

.build_le_section .img_wrapper {
    border-radius: 24px;
    display: flex;
}

.build_le_section .img_wrapper img {
    aspect-ratio: 1.4 / 1;
}

.accordion_content ul {
    margin-left: 28px;
}

.accordion_content li {
    margin-bottom: 10px;
}

.accordion_content li:last-child {
    margin-bottom: 0;
}

.accordion_image img {
    display: none;
    aspect-ratio: 1.22 / 1;
}

.accordion_image img.active {
    display: block;
}

/* 
* Generative AI Page
* ===============================================================================================================*/

.right_experts_slider .swiper-slide {
    height: 100% !important;
}

.dc_services_swiper .swiper-pagination,
.swiper-pagination {
    display: none;
}

.swiper-pagination.history_dots {
    display: flex;
}

.contact_us_section .row.d-flex {
    gap: 20px;
}

.data_labeling_page .row.banner_wrapper.d-grid {
    padding: 94px 0 32px;
    grid-template-columns: 52% 44%;
}

.data_labeling_page .row.banner_wrapper.d-grid>.col:last-child figure {
    margin-right: -27px;
    margin-left: 4px;
}

.data_labeling_page .row.banner_wrapper.d-grid>.col:first-child {
    padding-top: 43px;
}

.data_labeling_page .row.banner_wrapper h1,
.content_m_page .row.banner_wrapper h1 {
    margin-bottom: 24px;
}

.data_labeling_page .banner_wrapper .btn-primary {
    padding: 18px 44px 20px 48px;
}

.data_labeling_page .row.banner_wrapper .desc {
    max-width: 640px;
}

.data_labeling_page .social_proffing_section.dsp_sp {
    padding: 80px 0 120px;
}

.why_choose_odas .title_wrapper.d-flex h2 {
    max-width: 899px;
}

.c_vision_das h2 {
    max-width: 788px;
}

.npl_das .no_img_box h3 {
    letter-spacing: 0;
}

.data_labeling_page .contact_us_section {
    padding: 124px 0 114px;
}

.data_labeling_page .contact_us_section .row.d-flex>.col:first-child {
    padding-top: 0px;
    padding-bottom: 40px;
}

.data_labeling_page .input-group {
    margin-bottom: 38px;
}

.data_labeling_page .contact_us_section .row.d-flex>.col:last-child {
    padding-left: 7px;
}

.overlay_container {
    position: relative;
}

.overlay_container:before {
    content: "";
    position: absolute;
    top: 36%;
    left: 0;
    width: 786px;
    height: 500px;
    background: radial-gradient(circle 300px at bottom left,
            /* Force a fixed-size circle */
            rgb(206 255 104),
            rgb(0 0 0 / 0%));
    filter: blur(100px);
    z-index: 2;
    pointer-events: none;
}

/* ==============================================================================================
* Content Moderation pixel perfect 
*/
.content_m_page h1 {
    max-width: 632px;
}

.content_m_page .row.banner_wrapper.d-grid>.col:first-child {
    padding-top: 40px;
}

.content_m_page .row.banner_wrapper.d-grid>.col:last-child figure {
    margin: 4px -22px 0 13px;
}

.content_m_page .row.banner_wrapper .desc {
    max-width: 586px;
}

.content_m_page .banner_wrapper .btn-primary {
    padding: 18px 58px 20px 62px;
}

.content_m_page .row.banner_wrapper.d-grid {
    padding-bottom: 38px;
}

.content_m_page .dc_service_item .desc {
    margin-right: -13px;
}

.content_m_page .left_img figure {
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    border: 1px solid #ededed;
    flex-basis: 50%;
}

.content_m_page .left_img.row.d-flex {
    align-items: center;
}

.content_m_page .left_img.row.d-flex>.col:last-child {
    padding-right: 10px;
    padding-bottom: 0;
}

.content_m_page .our_cms_side_img .list-ul ul {
    margin-left: 18px;
}

.content_m_page .our_cms_side_img .desc {
    max-width: 560px;
}

.content_m_page .our_cms_side_img .left_img.row {
    margin-top: 74px;
    max-width: 1383px;
    margin-inline: auto;
}

.cm_wrapper p {
    margin-bottom: 1.19em;
}

.cm_wrapper p+p {
    margin-bottom: 0.5em;
}

.content_m_page .contact_us_section .row.d-flex>.col:first-child {
    padding-top: 0;
    margin-top: -10px;
}

/* 
* END Content Moderation Pixel Perfect 
* ============================================================================================ */
/* ============================================================================================ 
* Generative AI Perfect 
*/
.generative_ai_page .row.banner_wrapper.d-grid {
    grid-template-columns: 47% 49%;
    padding: 92px 0 20px;
}

.generative_ai_page .row.banner_wrapper.d-grid>div:last-child {
    margin: 0 -14px 0 8px;
}

.generative_ai_page .row.banner_wrapper h1 {
    margin-bottom: 22px;
}

.generative_ai_page .banner_wrapper .desc {
    max-width: 626px;
}

.generative_ai_page .banner_wrapper .btn-primary {
    padding: 18px 40px 20px 55px;
    gap: 35px;
}

.llm_services .list-ul ul {
    margin-left: 16px;
}

.llm_services .left_img.row.d-flex {
    align-items: start;
}

.llm_services .left_img figure {
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    border: 1px solid #ededed;
    flex-basis: 50%;
    max-width: 690px;
    margin: 4px 0 0 7px;
}

.llm_services .left_img.row.d-flex>.col:last-child {
    padding-bottom: 0;
    flex-basis: 44%;
    padding-left: 15px;
    padding-top: 21px;
}

.optimizing_llm_section h2 {
    max-width: 1195px;
    margin-inline: auto;
}

.optimizing_llm_section .desc {
    max-width: 915px;
    margin-inline: auto;
}

.key_genrative_ai.pb-140 {
    padding: 130px 0 140px;
}

.icon_wrapper .desc {
    line-height: 26px;
    letter-spacing: 0;
    font-size: 16px;
}

.experience_with_gai_swiper .dc_service_item figure img {
    aspect-ratio: 1.496 / 1;
}

.generative_ai_page .contact_us_section {
    padding: 123px 0 110px;
}

.generative_ai_page .input-group label {
    max-width: 90%;
}

.generative_ai_page .contact_us_section .row.d-flex>.col:first-child {
    padding: 0 0 42px;
}

.title_wrapper.d-flex>.title_wrap_left:first-child {
    max-width: 78%;
}

/* 
* END Generative AI Pixel Perfect 
* ============================================================================================ */
/* ==========================================================================================
* About Us Page 
*/
.our_history_section .title_wrapper.d-flex {
    justify-content: end;
}

.our_history_section .slide-row.d-flex {
    padding-top: 78px;
    gap: 20px;
}

.join_us_section .col:first-child {
    display: flex;
    border-radius: 24px;
    overflow: hidden;
}

.row_alt_banner h1 {
    max-width: 577px;
    font-size: 44px;
    line-height: 54px;
    letter-spacing: 0;
}

.row_alt_banner .col:last-child {
    max-width: 692px;
    margin-left: auto;
    margin-right: -9px;
}

.row_alt_banner p {
    margin-bottom: 30px;
}

.row_alt_banner p:last-child {
    margin-bottom: 0;
}

.our_values_section .icon_wrapper .col {
    padding: 34px 34px 40px;
    min-height: 346px;
}

.our_values_section .icon_wrapper.d-grid {
    padding-top: 60px;
    gap: 30px 24px;
}

/* 
* END About Us Page
* ============================================================================================ */
/* ============================================================================================
* Blog Page 
*/
.filter_btn_wrapper a.btn-primary {
    padding: 14px 24px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.014em;
    background-color: var(--color-light-blue-100);
    border: 1px solid #25272673;
    box-shadow: none;
}

.filter_btn_wrapper a.btn-primary.active {
    background-color: var(--color-green);
    border: 1px solid #7c993e;
    box-shadow: 0px 4px 0px 0px #7c993e;
}

.filter_btn_wrapper.d-flex {
    gap: 12px;
    flex-wrap: wrap;
}

.filter_btn_wrapper {
    border-top: 1px solid #25272633;
    padding: 48px 0 40px;
    margin-right: -14px;
}

.blog_page .row_alt_banner .col:last-child {
    max-width: 391px;
    font-size: 18px;
    margin-right: 0;
}

.blog_page .row.row_alt_banner {
    align-items: center;
    grid-template-columns: 62% 36%;
}

.blog_page .row_alt_banner h1 {
    font-size: 64px;
    max-width: 710px;
    letter-spacing: -0.02em;
    line-height: 117%;
}

.blog_page .row_alt_banner {
    padding: 101px 0 43px;
}

.post_blog .blog_figure {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
}

.post_blog .post_title h3 {
    font-weight: 500;
    font-size: 34px;
    line-height: 46px;
    letter-spacing: 0;
    margin-bottom: 12px;
}

.post_blog .post_title a {
    color: var(--color-black);
}

.post_blog .desc {
    max-width: 660px;
}

.post_blog .category {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: var(--color-pure-blue);
}

span.category a {
    color: var(--color-pure-blue);
}

.blogs_wrapper.d-grid {
    grid-template-columns: 1fr 1fr;
    gap: 100px 40px;
}

.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #25272673;
    border-radius: 50%;
    margin: 0 12px 2px 13px;
}

.date {
    display: inline-block;
}

.post-info {
    margin-bottom: 18px;
}

.blog_figure img {
    aspect-ratio: 1.8074 / 1;
}

.featured_posts .row.d-flex {
    gap: 50px;
}

.side_post_blog .blog_figure {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-basis: calc(34% - 12px);
}

.side_post_blog {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    border-bottom: 1px solid #25272633;
    margin-bottom: 26px;
    padding-bottom: 26px;
}

.side_post_blog:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.side_post_blog h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
}

.side_post_blog h3 a {
    font-weight: 500;
}

.post_blog .post_title h3 a {
    font-weight: 500;
}

.side_post_blog .post-info {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 28px;
}

.side_post_blog .post_contents {
    padding-top: 3px;
    flex-basis: calc(66% - 12px);
}

.side_post_blog .dot {
    margin: 0 5px 2px 6px;
    width: 3px;
    height: 3px;
}

.featured_posts .row.d-flex>.col:first-child {
    flex-basis: calc(56.6% - 25px);
}

.featured_posts .row.d-flex>.col:last-child {
    flex-basis: calc(43.4% - 25px);
}

.side_post_blog .blog_figure img {
    max-height: 118px;
    aspect-ratio: 186 / 118;
}

.featured_posts {
    padding: 38px 0 0px;
}
.page-template-blog-page .blog_lists {
    padding-top: 90px;
}

.featured_posts .post_blog:first-child .blog_figure img {
    aspect-ratio: 43 / 26;
}

.featured_posts .post_blog:first-child .blog_figure {
    margin-bottom: 34px;
}

.featured_posts .post_blog:first-child .post_title {
    max-width: 96%;
}

.side_post_blog .category {
    color: var(--color-pure-blue);
    display: inline-block;
}

nav.edublink-pagination-wrapper {
    width: 100%;
    grid-column: 1 / -1;
    max-width: fit-content;
    margin-inline: auto;
}

ul.page-number {
    list-style: none;
    display: flex;
    gap: 8.4px;
    margin-left: 0px;
}

/*.page-number li {*/
/*    display: inline-block;*/
/*    padding: 8px 19px;*/
/*    border-radius: 8px;*/
/*    border: 1px solid #ffffff00;*/
/*    height: 46px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    font-weight: 500;*/
/*}*/

/*.page-number li.active,*/
/*.page-number li:last-child {*/
/*    background: #ceff68;*/
/*    border: 1px solid #7c993e;*/
/*}*/

/*.page-number li:last-child {*/
/*    box-shadow: 0px -4px 0px 0px #7c993e inset;*/
/*    margin-left: 9px;*/
/*    padding-inline: 12px;*/
/*}*/

/*.page-number li:last-child a {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    gap: 9.33px;*/
/*}*/

/*.page-number li:first-child {*/
/*    padding-inline: 12px;*/
/*    margin-right: 1px;*/
/*}*/

.page-number li:not(:first-child):not(:last-child) {
    width: 44px;
}

.page-number li a, .page-number li span.current, .page-number li span.dots {
    display: inline-block;
    padding: 8px 19px;
    border-radius: 8px;
    border: 1px solid #ffffff00;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.page-number li a.prev {
    padding-inline: 12px;
    margin-right: 1px;
}

.page-number li.active span.current, .page-number li a.next {
    background: #ceff68;
    border: 1px solid #7c993e;
}

.page-number li a.next {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9.33px;
}

.page-number li a.next {
    box-shadow: 0px -4px 0px 0px #7c993e inset;
    margin-left: 9px;
    padding-inline: 12px;
}

.prev.page-numbers {
    color: #25272699;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9.33px;
}

.blog_lists {
    padding-bottom: 50px;
}

.our_authors {
    padding: 48px 0 135px;
}

.author_title.d-flex {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.author_title .desc {
    max-width: 485px;
}

.author_title h2 {
    margin-bottom: 0;
    position: relative;
    top: -6px;
}

.author_item figure {
    border-radius: 50%;
}

.author_item figure img,
.author_item figure {
    width: 114px;
    height: 114px;
}

.author_item {
    display: flex;
    gap: 30px;
    border-radius: 16px;
    border: 1px solid #efefef;
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    padding: 34px 34px 44px 34px;
}

.our_authors .btn-primary {
    padding: 18px 38px 24px;
}

.author_lists.d-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 70px 0 0;
}

.author_content {
    flex: 1;
    padding-top: 7px;
}

.author_name {
    color: var(--color-black);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 6px;
    font-weight: 600;
}

.author_item:hover .author_name {
    color: #9180ff;
}

.author_position {
    font-size: 16px;
    line-height: 24px;
    color: #25272673;
    margin-bottom: 20px;
}

.our_authors .btn_wrapper {
    padding: 80px 0 0;
}

.blog_page .contact_us_section {
    padding: 65px 0 104px;
    border-radius: 48px;
}

.blog_page .contact_us_section .row.d-flex>.col:first-child {
    padding-top: 0;
    padding-bottom: 22px;
}

.blog_page .contact_us_section .row.d-flex>.col:last-child {
    padding-top: 37px;
}

.blog_page .contact_us_section .row.d-flex>.col:first-child h2 {
    max-width: 550px;
}

input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
    border: 1px solid #252726;
}

.blog_category_page .blog_lists {
    padding-top: 40px;
}

.blog_category_page.blog_page .row_alt_banner {
    padding: 88px 0 43px;
}

/* BLog Images Hover Effect */

.blog_page a.blog_figure img:hover {
    transform: scale(1.1);
}

.blog_page a.blog_figure img {
    transition: transform 0.5s ease-in-out;
}

/* 
* Blog Page 
============================================================================================ */
/* ============================================================================================ 
* FAQ Page
*/
.faq_page .row_alt_banner h1 {
    font-size: 64px;
    line-height: 82px;
    letter-spacing: -0.02em;
    max-width: 1139px;
    margin-bottom: 15px;
}

.faq_page .row.row_alt_banner {
    grid-template-columns: 1fr;
    gap: 0;
}

.faq_page .row_alt_banner .col:last-child {
    max-width: 920px;
    margin-left: 0;
    margin-right: 0;
}

.faq_page .row_alt_banner {
    padding: 70px 0 30px;
}

.filter_faq {
    padding: 1px 20px 0 0;
}

.faq_contents {
    padding: 29px 0 95px;
}

.filter_faq_lists {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 14px;
    padding-top: 16px;
}

.faq_accordion_wrap_title {
    font-size: 34px;
    line-height: 46px;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.faq_accordion_wrapper h3 {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.002em;
    flex: 1;
}

.faq_accordion_wrapper .accordion_header {
    padding: 0;
}

.faq_accordion_wrapper .accordion_content {
    color: #25272699;
    font-size: 16px;
    line-height: 30px;
    max-width: 95%;
    padding: 25px 0 0;
}

.faq_accordion_wrapper .accordion_header svg {
    margin-right: 4px;
}

.faq_accordion_wrapper .accordion_wrapper {
    border: 0;
    border-bottom: 1px solid #25272633;
    margin-bottom: 27px;
    border-radius: 0;
    padding-bottom: 28px;
}

.faq_accordion_wrapper .accordion_wrapper.active {
    background-color: unset;
}

.faq_contents .row.d-grid {
    grid-template-columns: 23.2% 76.8%;
    max-width: 1354px;
}

.filer_tab_conent {
    padding-bottom: 64px;
}

.filer_tab_conent:last-child {
    padding-bottom: 0;
}

.filter_faq_title {
    font-size: 14px;
    line-height: 24px;
    color: #25272699;
    font-weight: 500;
    text-transform: uppercase;
}

.filer_tab_conent:nth-child(2) {
    padding-bottom: 155px;
}

.filer_tab_conent:nth-child(3) {
    padding-bottom: 91px;
}

.faq_page .contact_us_section {
    padding: 93px 0 104px;
    border-radius: 48px;
}

.faq_page .contact_us_section .row.d-flex>.col:first-child {
    padding-top: 0;
}

.faq_page .contact_us_section .row.d-flex>.col {
    padding-top: 6px;
}

.faq_page .contact_us_section .btn-primary {
    padding: 20px 73px 20px 104px;
    gap: 51px;
}

/* 
* FAQ Page 
============================================================================================ */
/* ============================================================================================ 
* Contact Us Page
*/
.contact_banner_sec {
    padding: 91px 0 140px;
}

.contact_banner .col:first-child {
    padding-top: 47px;
    padding-right: 30px;
}

.contact_banner .row.row_alt_banner {
    grid-template-columns: 1fr;
    padding: 50px 0 0;
}

.contact_banner .row_alt_banner .col:first-child {
    max-width: 540px;
}

.contact_banner .row_alt_banner .col:last-child {
    max-width: 540px;
    margin-left: 0;
    margin-right: 0;
}

.contact_banner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.contact_banner h1 {
    margin-bottom: 22px;
}

.contact_banner .banner_title {
    max-width: 450px;
    padding-bottom: 60px;
}

.contact_banner .desc p {
    max-width: 494px;
    margin-bottom: 18px;
}

.contact_banner .desc p:last-child {
    max-width: 560px;
}

.contact_banner .desc a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cp_map {
    padding: 130px 0 11px;
    border-radius: 48px 48px 0 0;
}

.cp_list {
    display: grid;
    grid-template-columns: 47% 53%;
    gap: 20px;
    padding-bottom: 50px;
}

.cp_list:last-child {
    padding-bottom: 0;
}

.cp_list .col:first-child {
    padding: 36px 40px 0 0px;
}

.cp_list h2 {
    margin-bottom: 32px;
}

.cp_list .desc p {
    margin: 0;
}

.cp_list .btn_wrapper {
    margin-top: 48px;
}

.iframe_wrapper iframe {
    width: 100% !important;
    height: calc(372px + 50px);
    position: relative;
    top: -50px;
    left: -2px;
    border-radius: 20px;
}

.cp_list .iframe_wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    position: relative;
    bottom: -50px;
}

.cp_list .col:last-child {
    position: relative;
    top: -50px;
    padding-right: 16px;
}

.contact_page .our_customers_section {
    padding: 65px 0 130px;
}

.cp_lists {
    max-width: 1260px;
    margin-inline: auto;
}

.cp_list .btn-primary {
    padding: 18px 40px 18px 46px;
    box-shadow: 0px 6px 0px 0px #7c993e;
}

/* 
* Contact Us Page
============================================================================================ */
/* ============================================================================================ 
* Industries Page v1
*/
.row.indrustry_wrapper.d-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 49px 30px;
}

.industry_col_v1 {
    border: 1px solid #ededed;
    padding: 30px 20px 20px;
    border-radius: 20px;
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    display: block;
}

.industry_col_v1 figure {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 42px;
}

.industry_col_v1 .title_icon_wrapper {
    margin-bottom: 24px;
}

.industry_list_section {
    padding: 52px 0 140px;
}

.industry_col_v1 .col_contents {
    padding: 0 20px 0 10px;
}

.industry_banner .row.row_alt_banner {
    grid-template-columns: 58.2% 39.8%;
    align-items: center;
}

.industry_banner .row_alt_banner h1 {
    font-size: 70px;
    line-height: 82px;
    max-width: 630px;
    letter-spacing: -0.02em;
}

.industry_banner .row_alt_banner {
    padding: 88px 0 30px;
}

.industry_col_v1 .title_icon_wrapper>img {
    width: 60px;
    height: 60px;
    margin-top: 0;
}

.industry_col_v1 img {
    aspect-ratio: 2.07 / 1;
}

.industries_page_v1 .our_customers_section {
    padding: 140px 0;
}

/* 
* Industries Page v1
============================================================================================ */
/*  ============================================================================================
* Industries Page v2
*/
.row.indrustry_wrapper.alt_indrustry_wrapper.d-grid {
    grid-template-columns: 1fr;
}

.alt_indrustry_wrapper .title_icon_wrapper {
    flex-direction: column;
    align-items: start;
    gap: 30px;
    margin-bottom: 17px;
}

.alt_indrustry_wrapper .industry_col_v1 {
    display: grid;
    grid-template-columns: 43% 57%;
    padding: 40px 40px 40px 60px;
    align-items: center;
}

.alt_indrustry_wrapper .industry_col_v1:hover .btn-secondary {
    color: var(--color-pure-blue);
    border-bottom: 1px solid var(--color-pure-blue);
}

.alt_indrustry_wrapper .industry_col_v1:hover .btn-secondary svg path {
    stroke: var(--color-pure-blue);
}

.alt_indrustry_wrapper .industry_col_v1 .figure {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0;
}

.industry_col_v1 .btn-secondary {
    justify-content: start;
}

.alt_indrustry_wrapper .btn_wrapper {
    margin-top: 28px;
}

.alt_indrustry_wrapper .industry_col_v1 img {
    aspect-ratio: 1.7087 / 1;
}

.alt_indrustry_wrapper .industry_col_v1 .col_contents {
    padding: 0 30px 0 0;
    max-width: 485px;
}

.industries_page_v2 .our_customers_section h2 {
    max-width: 1172px;
    margin-inline: auto;
}

.industries_page_v2 .industry_banner .row.row_alt_banner {
    grid-template-columns: 62.2% 35.8%;
}

/* 
* Industries Page v2
============================================================================================ */
/* ============================================================================================
* Industry Single / autonomous-vehicle.html
*/
.industry_single_banner {
    padding: 88px 0 120px;
    background-color: #fdfcff;
}

.industry_single_banner .col_contents {
    margin-right: 44px;
    max-width: 601px;
}

.industry_single_banner .desc {
    max-width: 581px;
}

.industry_single_banner .btn-primary {
    padding: 18px 40px 18px;
    gap: 33px;
    box-shadow: 0px 6px 0px 0px #7c993e;
}

.industry_single_banner .btn-primary:hover{
    box-shadow: none;
}

.industry_single_banner img {
    aspect-ratio: 1.419 / 1;
}

.industry_single_banner .row.d-grid {
    grid-template-columns: 49% 51%;
    align-items: center;
}

.industry_single_banner .btn_wrapper {
    margin-top: 44px;
}

.industry_single_banner h1 {
    margin-bottom: 18px;
}

.impact_ai {
    background: #f6f6ff;
    padding: 111px 0 130px;
}

.highlight_desc {
    background-color: #f6f6ff;
    padding: 100px 0;
}

.highlight_desc .desc {
    font-size: 34px;
    line-height: 46px;
    color: #252726;
    font-weight: 500;
    max-width: 1260px;
    margin-inline: auto;
}

.financial_services .highlight_desc .desc {
    font-size: 44px;
    line-height: 58px;
    letter-spacing: -0.02em;
    max-width: 1157px;
}

.why_use_ai {
    padding: 140px 0 70px;
    background-color: #fff;
}

.wu_ai_header.d-grid {
    grid-template-columns: 55.6% 44.4%;
}

.wu_ai_header h2 {
    max-width: 700px;
    margin-right: 30px;
}

.wu_ai_header .desc {
    color: #25272699;
}

.wu_ai_gallery {
    display: flex;
    align-items: start;
    gap: 40px;
    padding: 70px 25px 0 15px;
}

:is(.media_entertainment, .financial_services) .wu_ai_gallery {
    padding-inline: 0;
}

.wu_ai_gallery figure {
    border-radius: 20px;
}

.ai_being_used {
    padding: 70px 0 100px;
    background-color: #fff;
}

.ai_being_used .title_wrapper {
    max-width: 1119px;
    margin-inline: auto;
    padding-bottom: 70px;
}

.abu_row_wrapper .col {
    flex-basis: 49.66%;
}

.abu_row_wrapper .col.col_contents {
    flex-basis: 50.34%;
    padding: 0 100px 0 0;
}

.abu_row_wrapper .row:nth-child(even) .col.col_contents {
    padding: 0 0 0 100px;
}

.abu_row_wrapper .row {
    padding: 60px 0;
}

.abu_row_wrapper .row:first-child {
    padding-top: 0;
}

.abu_row_wrapper .row:last-child {
    padding-bottom: 0;
}

.abu_row_wrapper .row:nth-child(even) {
    flex-direction: row-reverse;
}

.abu_row_wrapper figure {
    border-radius: 20px;
}

.abu_row_wrapper .desc {
    max-width: 496px;
}

.abu_row_wrapper .h3-44 {
    line-height: 58px;
    margin-bottom: 18px;
    max-width: 566px;
    letter-spacing: -0.02em;
}

.abu_row_wrapper {
    max-width: 1323px;
    margin-inline: auto;
}

.abu_row_wrapper .row.d-flex {
    align-items: center;
}

.benefits_of_ai .title_wrapper.d-grid {
    grid-template-columns: 47.82% 52.18%;
    max-width: 1380px;
    margin-inline: auto;
}

.benefits_of_ai .title_wrapper.d-grid h2 {
    max-width: 530px;
}

.benefits_of_ai .title_wrapper.d-grid .col:first-child {
    padding-right: 40px;
}

.benefits_of_ai {
    padding: 0 0 140px;
    background-color: #fff;
}

:is(.manufacturing,
    .health_life_sciences,
    .financial_services,
    .media_entertainment) .benefits_of_ai {
    padding: 0;
}

.benefits_of_ai .container {
    padding-top: 100px;
    border-top: 1px solid #d9d9d9;
}

.benefits_of_ai .desc {
    font-size: 24px;
    line-height: 34px;
    color: #252726;
}

.benefits_of_ai .list-ul ul {
    margin-left: 35px;
}

.benefits_of_ai .list-ul li {
    margin-bottom: 0px;
}

.impact_ai h2 {
    font-size: 44px;
    line-height: 54px;
    letter-spacing: 0;
    font-weight: 400;
}

.impact_ai .col {
    padding: 0 116px 10px 116px;
    border-right: 1px solid #25272633;
}

.impact_ai .col:first-child {
    padding-left: 0;
}

.impact_ai .col:last-child {
    padding-right: 0;
    border-right: 0;
}

.impact_ai .col div {
    font-weight: 400;
    font-size: 100px;
    line-height: 130px;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin-bottom: 10px;
    max-width: 312px;
}

.impact_ai .col p {
    color: #25272699;
    max-width: 312px;
}

.impact_ai .row.d-flex {
    padding-top: 90px;
    max-width: 1400px;
    margin-inline: auto;
}

.lead_with_ai {
    padding: 140px 0;
    background-color: #fff;
}

.lead_with_ai h2 {
    max-width: 930px;
    margin-inline: auto;
}

.lead_with_ai h3 {
    font-size: 34px;
    line-height: 46px;
    letter-spacing: 0;
}

.lead_with_ai .indrustry_wrapper {
    margin-top: 70px;
}

/* 
* Industry Single / autonomous-vehicle.html
============================================================================================ */
/* ============================================================================================ 
* Industry Single / manufacturing.html
*/
:is(.manufacturing, .health_life_sciences, .financial_services) .wu_ai_gallery {
    gap: 30px;
}

.benefits_of_ai li::marker {
    font-size: 0.8em;
}

/* 
* Industry Single / Manufacturing.html
============================================================================================ */
/* ============================================================================================ 
* Use Case
*/
.uc_contents h2 {
    max-width: 1086px;
    margin-inline: auto;
}

.before_after_wrap {
    margin-top: 75px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    max-width: 1200px;
    margin-inline: auto;
    aspect-ratio: 2.67 / 1;
}

.before_after_wrap .img-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before_after_wrap .img-wrapper:nth-child(2) {
    clip-path: inset(0px 0px 0px 50%);
}

.before_after_wrap .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before_after_wrap #line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0.2rem;
    height: 100%;
    background-color: #fafafa;
}

/* .before_after_wrap #line:before {
    content: '';
    width: 54px;
    height: 74px;
    background: var(--color-pure-blue);
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    border-radius: 60px;
    background-image: url('data:image/svg+xml,<svg width="17" height="24" viewBox="0 0 17 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0L1 24M8.2 0L8.2 24M15.4 0L15.4 24" stroke="white" stroke-width="2"/></svg>');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: grab;
} */
.before_after_wrap input {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    position: absolute;
    width: calc(100% + 2.25rem);
    height: 100%;
    left: -1.125rem;
    border: 0;
    border-radius: 0;
}

.before_after_wrap input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 54px;
    height: 74px;
    border: 0;
    border-radius: 60px;
    background-color: var(--color-pure-blue);
    background-image: url('data:image/svg+xml,<svg width="17" height="24" viewBox="0 0 17 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0L1 24M8.2 0L8.2 24M15.4 0L15.4 24" stroke="white" stroke-width="2"/></svg>');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: grab;
}

.before_after_wrap input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 54px;
    height: 74px;
    border: 0;
    border-radius: 60px;
    background-color: var(--color-pure-blue);
    background-image: url('data:image/svg+xml,<svg width="17" height="24" viewBox="0 0 17 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 0L1 24M8.2 0L8.2 24M15.4 0L15.4 24" stroke="white" stroke-width="2"/></svg>');
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: grab;
}

.before_after_wrap input:active::-webkit-slider-thumb {
    cursor: grabbing;
}

.before_after_wrap .input:active::-moz-slider-thumb {
    cursor: grabbing;
}

.before_after_text {
    position: absolute;
    bottom: 34px;
    display: inline-block;
    padding: 11px 38px;
    font-size: 24px;
    line-height: 1em;
    letter-spacing: -0.02em;
    color: #fff;
    font-weight: 500;
    border-radius: 12px;
    background: var(--color-pure-blue);
}

.before_text {
    right: unset;
    left: 19.7%;
}

.after_text {
    right: 19.7%;
    left: unset;
}

.use_case_lists {
    background-color: #f6f6ff;
    padding: 145px 0 68px;
}

.toc {
    position: sticky;
    top: 30px;
}

.toc li {
    list-style: none;
}

.use_case_lists .btn-filter {
    padding: 8px 22px 6px;
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
}

.use_case_lists .btn-filter.active {
    box-shadow: 0px 4px 0px 0px #7c993e;
}

.use_case_lists .row.d-grid {
    grid-template-columns: 37.58% 62.42%;
}

.uc_contents {
    background-color: #eeeeff;
    padding: 114px 0 44px;
    border-radius: 48px 48px 0 0;
}

.banner_tag {
    font-size: 20px;
    background: #9180ff;
    color: #fff;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 16px;
}

.uc_contents .desc {
    max-width: 930px;
    padding-top: 100px;
    margin-inline: auto;
    line-height: 32px;
}

.uc_contents .desc strong {
    color: #4d4f51;
}

.uc_contents h3 {
    font-size: 34px;
    line-height: 46px;
    margin-bottom: 18px;
    margin-top: 60px;
}

.uc_contents h3:first-child {
    margin-top: 0;
}

.uc_contents p {
    margin-bottom: 1.3em;
}

.uc_contents p:last-child {
    margin-bottom: 0;
}

.uc_contents .list-ul li {
    margin-bottom: 12px;
}

.use_case_lists .h2-44 {
    font-weight: 500;
    line-height: 54px;
    letter-spacing: 0;
    margin-bottom: 38px;
}

.use_case_lists h3 {
    line-height: 36px;
    margin-bottom: 18px;
}

.use_case_lists .desc {
    color: #25272673;
    line-height: 32px;
}

.use_case_lists .col.toc_contents {
    padding-top: 38px;
}

.use_case_lists .col_list {
    margin-bottom: 28px;
}

.use_case_lists .col_list:last-child {
    margin-bottom: 0;
}

.use_case_lists .col_wrap {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #25272633;
}

.use_case_lists .col_wrap:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.use_case_lists .filter_faq_lists {
    gap: 18px;
    padding-top: 24px;
}

.more_articles {
    padding: 70px 0 140px;
    background-color: #f6f6ff;
}

.more_articles .blogs_wrapper {
    margin-top: 70px;
}

.industry_single_banner.case_study_banner {
    padding: 82px 0 122px;
}

.industry_single_banner.case_study_banner .col_contents,
.industry_single_banner.case_study_banner .desc {
    max-width: 626px;
}

.industry_single_banner.case_study_banner .btn-primary {
    gap: 22px;
}

/* 
* Use Case
============================================================================================ */
/* ============================================================================================ 
* Case Study Archive
*/
.case_study_banner .row.row_alt_banner {
    grid-template-columns: 58.2% 39.6%;
    gap: 2%;
    padding: 84px 0 25px;
}

.case_studies_archive .row_alt_banner h1 {
    font-size: 70px;
    line-height: 117%;
    max-width: 445px;
    letter-spacing: -0.02em;
}

.case_studies_archive .row_alt_banner .col:last-child {
    padding-top: 26px;
}

.case_study_list_section {
    padding: 60px 0 140px;
}

.row.case_study_wrapper.d-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 48px;
    max-width: 1332px;
    margin-inline: auto;
}

.col_case_study .figure_wrapper>figure {
    border-radius: 8px;
    overflow: hidden;
}

.cs_col_header>p {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--color-pure-blue);
}

.cs_col_header {
    padding: 5px 12px 5px 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cs_col_header figure {
    height: 14px;
}

.cs_col_header img {
    object-fit: contain;
}

.col_case_study .figure_wrapper {
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    border: 1px solid #ededed;
    padding: 0 6px 6px;
    border-radius: 12px;
    margin-bottom: 22px;
}

.col_case_study h3 {
    margin-bottom: 12px;
}

.col_case_study .desc {
    font-size: 16px;
    line-height: 26px;
    max-width: 610px;
}

.col_case_study .btn_wrapper {
    margin-top: 20px;
}

.case_studies_archive .our_customers_section {
    padding: 140px 0;
}

/* 
* Case Study Archive
============================================================================================ */
/* ============================================================================================ 
* Single Blog Page
*/
nav.breadcrumb li {
    list-style: none;
    display: inline-block;
}

.blog_single_banner {
    padding: 66px 0 0;
}

.breadcrumb .separator {
    margin-inline: 15px;
}

nav.breadcrumb {
    padding-bottom: 60px;
}

.author_wrap img,
.author_wrap figure {
    width: 62px;
    height: 62px;
}

.blog_single_banner .row_wrap.d-flex {
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(37, 39, 38, 0.2);
}

.author_wrap .row_wrap.d-flex {
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 48px;
}

.author_wrap.d-flex {
    gap: 18px;
    align-items: center;
}

.author_info .name {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #252726;
}

.author_info .info {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: rgba(37, 39, 38, 0.6);
}

.blog_single_banner a.category_tag {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    padding: 8px 22px;
    border-radius: 8px;
    background-color: var(--color-pure-blue);
}

.blog_single_banner h1 {
    max-width: 1319px;
}

.sec_single_blog_contents {
    padding: 70px 0;
}

.sec_single_blog_contents .row {
    grid-template-columns: 36.13% 63.87%;
}

.toc_title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: rgba(37, 39, 38, 0.45);
}

.blog_contents_sidebar {
    padding-right: 70px;
}

.share_post h2 {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #252726;
    margin-bottom: 0;
}

/* Blog Deatails */

.blog_contents img {
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.blog_desc> :nth-child(1) {
    padding-bottom: 30px;
}

.dive_in_wrap h2 {
    font-size: 24px;
}

.col.blog_contents.blog_desc p {
    margin-bottom: 24px;
}

.single_blog_page .author_box figure {
    max-width: 116px;
    max-height: 116px;
    font-size: unset;
    line-height: unset;
    padding: 0;
}

.single_blog_page .author_details {
    max-width: 684px;
}

.single_blog_page .author_box {
    display: flex;
    gap: 30px;
}

.single_blog_page .author_box {
    display: flex;
    gap: 30px;
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    background-color: #fff;
    max-width: 900px;
    padding: 34px;
    border-radius: 16px;
    margin-bottom: 140px;
}

.single_blog_page .blog_more {
    border-top: 1px solid #25272633;
    padding-bottom: 90px;
}

.more_title {
    text-align: center;
    font-size: 70px;
    line-height: 82px;
    letter-spacing: 0.02px;
    padding-block: 120px 70px;
}

.blog_desc p:nth-child(4) {
    margin-bottom: 36px;
}

.single_blog_page h2 {
    margin-bottom: 16px;
}

.single_blog_page .blog_desc h2 {
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 46px;
}

.single_blog_page .sec_single_blog_contents {
    padding: 70px 0 80px 0;
}

.single_blog_page figure {
    display: block;
}

.single_blog_page figure {
    display: block;
    color: #25272699;
    padding-bottom: 40px;
}

.single_blog_page figure {
    display: block;
    color: #25272699;
    padding-bottom: 40px;
    font-size: 14px;
    line-height: 24px;
}

.page_contents.single_blog_page ul li {
    padding-bottom: 18px;
}

.page_contents.single_blog_page ul li:last-child {
    padding-bottom: 48px;
}

.dive_in_wrap {
    box-shadow: 0px 5px 12px 0px #e3e3e34d;
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px 20px;
}

.dive_in_wrap h2 {
    font-size: 26px;
    line-height: 37px;
}

.single_blog_page .share_post.d-flex {
    padding-block: 50px;
    align-items: center;
    gap: 16px;
}

.single_blog_page .share_post.d-flex h2 {
    margin-bottom: 0;
    /* align-items: center; */
}

.single_blog_page .filter_faq_lists.toc_list {
    font-size: 14px;
    color: #25272699;
}

/*.single_blog_page .toc a.active {*/
/*  color: #9180ff;*/
/*}*/

/*.single_blog_page .toc a.active {*/
/*  position: relative;*/
/*  padding-left: 10px;*/
/*  color: #9180ff;*/
/*}*/

/*.single_blog_page .toc a active:before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  background: #9180ff;*/
/*  width: 1%;*/
/*  height: 80%;*/
/*  top: 6%;*/
/*  left: 0;*/
/*}*/

/* Styling the active TOC link */
.single_blog_page .toc a.active {
    color: #9180ff;
    position: relative;
    padding-left: 10px;
}

.single_blog_page .toc a.active:before {
    content: "";
    position: absolute;
    background: #9180ff;
    width: 3px;
    height: 80%;
    top: 6%;
    left: 0;
}

.single_blog_page .toc {
    position: static;
}

.single_blog_page .related_more_articles {
    padding-block: 140px 70px;
    text-align: center;
    font-size: 70px;
    line-height: 82px;
    letter-spacing: 0.02px;
}

.single_blog_page button.btn-primary {
    font-size: 14px;
    line-height: 24px;
    width: 100%;
}

.single_blog_page figcaption.fig_center {
    text-align: center;
}

.dive_in_wrap .desc {
    text-align: center;
    padding-bottom: 24px;
}

.single_blog_page .blog_desc a {
    text-decoration: underline;
}

.single_blog_page .related_more_articles {
    border-top: 1px solid #25272633;
}

.single_blog_page .toc a {
    text-decoration: none;
}

.single_blog_page .btn_wrapper a {
    text-decoration: none;
}

button.btn-arrow.swiper-button-disabled {
    opacity: 70%;
    box-shadow: none;
}

/* 
* Single Blog Page
============================================================================================ */

.history_dots .dot {
    display: none;
}

.responsive-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

video {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    display: block;
}

footer {
    position: relative;
    z-index: 2;
}

footer:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/dotted-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    z-index: -1;
    opacity: 0.06;
}

footer:after {
    content: "";
    background: linear-gradient(180deg,
            #fbfcff 13.1%,
            rgba(255, 255, 255, 0) 100%);
    left: 0;
    top: 0;
    height: 47%;
    width: 100%;
    z-index: -1;
    position: absolute;
}

@media (max-width: 1224px) {
    .tab_header li {
        padding: 14px 20.4px;
    }

    .tab_header {
        width: fit-content;
    }
}

@media (max-width: 1180px) {
    ul.tab_list.d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 52px;
    }

    .home_h1,
    .h2-100 {
        font-size: 72px;
    }

    .row_alt_banner h1 {
        font-size: 40px;
        line-height: 49px;
        margin-bottom: 18px;
    }

    .h2-70 {
        font-size: 48px;
    }

    .h3-44 {
        font-size: 32px;
    }

    .btn-arrow {
        width: 60px;
        height: 60px;
    }

    .btn-arrow svg {
        width: 15px;
        height: 15px;
    }

    .h2-44 {
        font-size: 38px;
    }

    .h2-64 {
        font-size: 54px;
        line-height: 64px;
    }

    .h2-70 {
        font-size: 56px;
    }

    h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .h3-34 {
        font-size: 30px;
        line-height: 124%;
    }

    .industry_banner .row_alt_banner h1,
    .case_studies_archive .row_alt_banner h1 {
        font-size: 62px;
        line-height: 72px;
    }

    .lead_with_ai h3 {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: 0;
    }

    ul.tab_list.d-flex {
        margin-left: 1px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab_item:first-child video {
        height: 100%;
    }

    .service_wrapper>.col:nth-child(2),
    .service_wrapper>.col:nth-child(3) {
        flex-basis: 100%;
    }

    .banner_bot.d-flex,
    .fueling_wrapper>.row.d-flex {
        flex-direction: column;
    }

    .footer_socials {
        padding-bottom: 70px;
        margin-top: 48px;
    }

    nav.header_nav {
        display: none;
    }

    .home_banner_section figure {
        margin-bottom: -40px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .btn-primary {
        font-size: 20px;
    }

    .btn-primary svg {
        width: 14px;
        height: 12px;
    }

    .stack_img_box {
        margin: 22px 0px 0 0;
    }

    .title_wrapper.d-flex {
        gap: 15px;
    }

    span.with_no {
        font-size: 97px;
    }

    .fueling_bot_content p:first-child {
        font-size: 26px;
    }

    .fueling_bot_content.d-flex {
        gap: 20px;
        align-items: end;
    }

    .security_img_wrapper:nth-child(1),
    .security_img_wrapper:nth-child(2),
    .security_img_wrapper:nth-child(3) {
        height: 268.5px;
    }

    .security_img_wrapper:nth-child(4),
    .security_img_wrapper:nth-child(5),
    .security_img_wrapper:nth-child(6) {
        height: 255px;
    }

    .security_img_wrapper h3 {
        font-size: 20px;
    }

    .footer_top.d-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding-bottom: 70px;
    }

    .footer_top.d-grid>.col:nth-child(4) {
        grid-column: span 2 / 3;
    }

    .copyright_side_img.d-flex {
        gap: 10px;
    }

    .copyright .desc {
        font-size: 16px;
        line-height: 26px;
    }

    .footer_bot {
        padding: 80px 13px 0;
    }

    .row.banner_wrapper.d-grid>.col:first-child,
    .data_labeling_page .row.banner_wrapper.d-grid>.col:first-child,
    .generative_ai_page .row.banner_wrapper.d-grid>.col:first-child {
        padding-top: 0;
    }

    .left_img.row.d-flex {
        gap: 40px;
        align-items: center;
    }

    .collection>.col:first-child,
    .collection>.col:last-child {
        flex-basis: 50%;
    }

    .collection>.col,
    .collection:nth-child(2)>.col {
        padding: 40px 50px 44px 36px;
    }

    .collection h2.h2-44 {
        font-size: 34px;
    }

    .explore_our_ai_section {
        padding: 150px 0 100px;
    }

    .our_history_section {
        padding: 100px 0 160px;
    }

    .pb-140,
    .why_tuoda,
    .our_adc_services,
    .contact_us_section,
    .trusted_partners_section,
    .fueling_next_gen_section,
    .content_m_page .contact_us_section,
    .content_m_page .our_customers_section,
    .cms_stand_out,
    .our_cms_side_img,
    .key_genrative_ai.pb-140,
    .who_we_are_section,
    .right_experts_section,
    .contact_banner_sec,
    .industries_page_v1 .our_customers_section {
        padding: 100px 0;
    }

    .collection_section,
    .our_customers_section,
    .llm_services,
    .join_us_section,
    .cp_map {
        padding: 100px 0 50px;
    }

    .our_customers_section.dsc_oc_section,
    .social_proffing_section,
    .cmp_section,
    .optimizing_llm_section,
    .contact_page .our_customers_section,
    .industry_list_section {
        padding: 50px 0 100px;
    }

    .generative_ais_section,
    .our_values_section,
    .office_workspace_section {
        padding: 50px 0;
    }

    .form-group {
        gap: 18px;
    }

    .left_img.row.d-flex>.col:last-child {
        padding-bottom: 0;
    }

    .our_adc_services .desc,
    .collection:last-child .desc,
    .collection:first-child .desc,
    .content_m_page .row.banner_wrapper .desc {
        max-width: 100%;
    }

    .collection>.col:last-child,
    .collection:nth-child(2)>.col:last-child,
    .collection:nth-child(3)>.col:last-child,
    .collection:nth-child(4)>.col:last-child {
        padding: 20px;
    }

    .kickoff_joiner svg {
        height: 62px;
    }

    .kickoff_joiner {
        max-width: 521px;
    }

    .kickoff_steps {
        max-width: 732px;
    }

    .kickoff_steps figure {
        width: 200px;
        height: 200px;
    }

    .kickoff_steps:nth-child(odd):not(:first-child) .col_contents {
        padding-left: 0;
    }

    .kickoff_steps h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .kickoff_steps .col_wrap {
        gap: 50px;
    }

    .content_m_page .banner_wrapper .btn-primary {
        padding: 18px 24px 20px 24px;
        gap: 18px;
    }

    .cm_wrapper h3 {
        font-size: 32px;
        line-height: 42px;
    }

    .cm_wrapper .col:nth-child(3n + 1) .col_inner .col_image {
        flex: 0 0 50%;
    }

    .cm_wrapper .col:first-child .col-contents {
        padding: 0;
    }

    .cm_wrapper .col {
        padding: 28px 27.5px 40px 28.5px;
    }

    .cm_wrapper h3 {
        font-size: 34px;
        line-height: 46px;
        margin-bottom: 12px;
    }

    .cm_wrapper .col:nth-child(3n + 1) .col_inner {
        align-items: center;
    }

    :is(.cm_wrapper .col:nth-child(3n + 2), .cm_wrapper .col:nth-child(3n + 3)) h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .ms_row {
        padding: 24px 20px 24px 20px;
    }

    .ms_row.d-flex h3 {
        padding: 0 38px 0 28px;
    }

    .ms_row {
        padding: 24px 20px 24px 24px;
    }

    .ms_row img {
        width: 70px;
        height: 70px;
    }

    .generative_ais_section .row.d-grid,
    .optimizing_llm_section .row.d-grid,
    .build_le_section .row.d-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .social_proffing_wrapper {
        margin-left: 0;
    }

    .right_experts_slider_wrapper {
        margin: 0 -30px 0 -30px;
        padding-bottom: 20px;
    }

    .row_alt_banner .col:last-child {
        margin-right: 0;
    }

    .histroy_slider_wrapper {
        max-width: 50%;
        flex-basis: 50%;
    }

    .join_us_section .row.d-grid {
        grid-template-columns: 1fr 1fr;
        gap: 7%;
    }

    .office_workpspace_wrapper.d-grid {
        gap: 40px;
    }

    .ow_info_wrapper {
        margin-top: 50px;
    }

    .ow_info_wrapper .col>p:first-child {
        font-size: 48px;
        line-height: 52px;
    }

    .featured_posts .row.d-flex {
        gap: 30px;
    }

    .side_post_blog h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .side_post_blog .post-info {
        margin-bottom: 2px;
        font-size: 12px;
        line-height: 16px;
    }

    .side_post_blog .blog_figure {
        flex-basis: calc(34% - 8px);
    }

    .side_post_blog .post_contents {
        flex-basis: calc(66% - 8px);
    }

    .side_post_blog {
        gap: 16px;
    }

    .post_blog .post_title h3 {
        font-size: 28px;
        line-height: 34px;
    }

    .post-info,
    .post_blog .category {
        font-size: 16px;
    }

    .blogs_wrapper.d-grid {
        gap: 50px 40px;
    }

    .contact_banner .col:first-child {
        padding-top: 0;
    }

    .row.indrustry_wrapper.d-grid {
        gap: 40px 20px;
    }

    .industry_col_v1 {
        padding: 28px 18px 18px;
    }

    .impact_ai .col div {
        font-size: 70px;
        line-height: 83px;
    }

    .impact_ai .col {
        padding: 0 60px 10px 60px;
    }

    .abu_row_wrapper .col.col_contents {
        padding: 0 40px 0 0;
    }

    .abu_row_wrapper .row:nth-child(even) .col.col_contents {
        padding: 0 0 0 40px;
    }

    .abu_row_wrapper .h3-44 {
        line-height: 42px;
    }

    .highlight_desc .desc {
        font-size: 24px;
        line-height: 38px;
    }

    .use_case_lists .filter_faq_lists {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .use_case_lists .row.d-grid {
        grid-template-columns: 1fr;
    }

    .before_after_text {
        font-size: 18px;
    }

    .use_case_lists .btn-filter:active,
    .use_case_lists .btn-filter:focus {
        box-shadow: 0px 4px 0px 0px #7c993e;
    }

    .row.case_study_wrapper.d-grid {
        gap: 40px 28px;
    }
}

@media (max-width: 980px) {
    .left_img.row.d-flex {
        gap: 40px;
        flex-direction: column;
    }

    .no_img_box.d-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .generative_ais_section .row.d-grid,
    .optimizing_llm_section .row.d-grid,
    .build_le_section .row.d-grid,
    .office_workpspace_wrapper.d-grid,
    .faq_contents .row.d-grid {
        grid-template-columns: 1fr;
    }

    .generative_ais_section .row.d-grid,
    .optimizing_llm_section .row.d-grid,
    .build_le_section .row.d-grid {
        gap: 40px;
    }

    .pc_wrapper {
        margin: 0 auto 0 auto;
    }

    .office_workpspace_wrapper.d-grid {
        gap: 20px;
    }

    .side_post_blog h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .side_post_blog .post-info {
        font-size: 10px;
        line-height: 16px;
    }

    .blog_category_page .blog_lists {
        padding-top: 0;
    }

    .filter_faq_lists {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq_contents .row.d-grid {
        gap: 60px;
    }

    .cp_list .col:first-child {
        padding: 36px 20px 0 0px;
    }

    .alt_indrustry_wrapper .industry_col_v1 {
        grid-template-columns: 1fr;
        padding: 20px 20px 20px 40px;
        gap: 30px;
    }

    .alt_indrustry_wrapper .industry_col_v1 .col_contents {
        padding: 0 30px 0 0;
        max-width: 100%;
    }

    .impact_ai .col {
        padding: 0 40px 10px 40px;
    }

    .industry_single_banner .col_contents {
        margin-right: 30px;
    }

    .before_text {
        left: 15.7%;
    }

    .after_text {
        right: 15.7%;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
        /* line-height: 30px; */
        line-height: 26px;
        /* line-height: 140%; */
    }

    h1 {
        font-size: 48px;
        line-height: 52px;
    }

    .row_alt_banner h1 {
        font-size: 34px;
        line-height: 46px;
    }

    .header_wrapper .nav_list,
    .header_wrapper .btn-primary:first-child {
        display: none;
    }

    .btn-primary {
        font-size: 20px;
        line-height: 150%;
    }

    .d-flex {
        flex-direction: column;
    }

    .h2-44 {
        font-weight: 400;
        font-size: 28px;
        line-height: 136%;
    }

    .h2-64 {
        font-size: 48px;
        line-height: 52px;
    }

    .h2-70 {
        font-size: 34px;
        line-height: 135%;
    }

    .h2-100 {
        font-size: 48px;
        line-height: 108%;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .h3-34 {
        font-size: 28px;
        line-height: 38px;
    }

    .h3-44 {
        font-size: 24px;
        line-height: 117%;
        letter-spacing: -0.02em;
    }

    .mt-70 {
        margin-top: 40px;
    }

    .br-24,
    .contact_us_section .row.d-flex>.col:first-child figure,
    .testimonials_wrapper .col,
    .tab_header,
    .collection,
    .left_img figure,
    .dc_service_item,
    .oda_services img,
    .join_us_section .col:first-child {
        border-radius: 14px;
    }

    .ls-0,
    .left_img.row h3,
    .fueling_wrapper .title_wrapper.d-flex h2,
    .trusted_partners_section h2,
    .our_adc_services h2,
    .collection h2.h2-44,
    .why_choose_odas .title_wrapper.d-flex h2,
    .npl_das h2,
    .c_vision_das h2,
    .no_img_box h3,
    .other_das h2 {
        letter-spacing: 0;
    }

    .banner_bot .desc,
    .fueling_bot_content p,
    .service_wrapper .col .desc,
    .testimonials_wrapper .col .desc,
    .row.banner_wrapper .desc,
    .left_img.row li,
    .collection .desc,
    .positive_change_section .desc {
        line-height: 26px;
    }

    .btn-arrow {
        width: 40px;
        height: 40px;
        box-shadow: 0px 2px 0px var(--color-border);
    }

    .btn-arrow svg {
        width: 12px;
        height: 12px;
    }

    .data_labeling_page .row.banner_wrapper h1,
    .content_m_page .row.banner_wrapper h1 {
        font-size: 46px;
        line-height: 52px;
    }

    .our_customers_section h2+.desc,
    .our_customers_section h2 {
        text-align: left;
    }

    .header_wrapper .btn-primary.hamburger_open {
        display: inline-flex;
        padding: 9px;
    }

    header {
        padding: 10px 18px 10px;
    }

    .page_contents {
        margin-top: -10px;
    }

    .header_logo {
        max-width: 164.79px;
    }

    ul.tab_list.d-flex {
        margin-left: 1px;
        flex-direction: column;
        width: 100%;
    }

    .tab_item:first-child video {
        height: 100%;
    }

    .home_banner_section .container {
        position: unset;
        display: block;
        height: unset;
        align-items: unset;
        overflow: unset;
    }

    .home_banner_section figure {
        margin-bottom: 9px;
        padding-left: 0;
        padding-right: 0;
        margin-inline: -17px;
        position: unset;
        width: unset;
    }

    .header_wrapper {
        padding: 14px 9px 14px 15px;
        border-radius: 17px;
    }

    .header_wrapper .btn-primary svg {
        width: 24px;
        height: 24px;
    }

    .home_banner_section {
        padding: 24.08px 0 30px;
    }

    .home_h1 {
        font-size: 48px;
        line-height: 108%;
        margin-bottom: 20px;
    }

    .home_h1:before {
        top: -50px;
        height: 100px;
    }

    .banner_bot.d-flex {
        padding-right: 0;
        gap: 32px;
    }

    .banner_bot .btn-primary {
        width: 100%;
        padding: 13px;
    }

    .banner_bot .desc {
        padding-top: 2px;
    }

    .social_proffing_section {
        padding: 30px 0 30px;
    }

    .fueling_next_gen_section {
        padding: 68px 0 62px;
        border-radius: 28px;
    }

    .stack_img_box {
        max-width: 100%;
        margin: 11px 0 0 0;
        display: flex;
        gap: 0px;
        align-items: center;
    }

    .stack_img_wrapper {
        display: flex;
        margin-bottom: 0;
        padding-left: 9px;
        margin-right: 21px;
    }

    .stack_img_box .desc {
        max-width: 100%;
        font-size: 18px;
        line-height: 32px;
        letter-spacing: 0.01em;
    }

    .stack_img_wrapper img {
        width: 51px;
        height: 51px;
        margin-left: -13px;
    }

    .fueling_wrapper .title_wrapper {
        margin-bottom: 40px;
    }

    .fueling_wrapper>.row.d-flex {
        gap: 18px;
    }

    .social_proffing_swiper .swiper-slide {
        padding: 2px 15px;
        height: 58px !important;
    }

    .no_box {
        padding: 22px 24px 26px;
    }

    .no_box_title {
        font-size: 34px;
        line-height: 46px;
        margin-bottom: 8px;
    }

    .no_box p {
        font-size: 14px;
        line-height: 24px;
    }

    .no_box>.col:first-child {
        padding-bottom: 24px;
    }

    .no_box>.col:last-child {
        padding-top: 21px;
    }

    .no_box>.col.d-flex>.col_wrap:last-child {
        padding-left: 17px;
    }

    .no_box>.col.d-flex {
        flex-direction: row;
        gap: 10px;
    }

    .no_box>.col.d-flex>.col_wrap {
        flex-basis: 50%;
    }

    .no_box>.col:last-child .col_wrap:last-child .no_box_title {
        margin-left: 0;
    }

    .no_box>.col:last-child .col_wrap:last-child p {
        left: 0;
    }

    .no_box>.col>.col_wrap:first-child {
        flex-basis: 55%;
    }

    .fueling_bot_content {
        padding-top: 77px;
    }

    span.with_no {
        font-size: 99px;
        margin-left: 4px;
    }

    .fueling_bot_content p:first-child {
        font-size: 18px;
        padding-left: 5px;
    }

    .fueling_bot_content.d-flex {
        gap: 31px;
        align-items: start;
    }

    .fueling_bot_content p {
        text-align: center;
    }

    .explore_our_ai_section h2 {
        margin-bottom: 19px;
    }

    .explore_our_ai_section {
        padding: 109px 0 75px;
        margin-top: -50px;
    }

    .explore_our_ai_section .title_wrapper .desc {
        font-size: 18px;
        line-height: 30px;
    }

    .service_wrapper.d-flex {
        padding-top: 54px;
        gap: 34px;
    }

    .service_wrapper>.col,
    .service_wrapper>.col:nth-child(2),
    .service_wrapper>.col:nth-child(3),
    .service_wrapper>.col:nth-child(4) {
        padding: 26px 18px 0;
    }

    .service_wrapper>.col>figure {
        margin: 0;
    }

    .service_wrapper>.col:nth-child(3)>figure {
        margin: 0 0 18px 0;
    }

    .service_wrapper>.col:nth-child(2)>figure {
        margin: -10px 0px 19px -13px;
    }

    .service_wrapper>.col:nth-child(4) {
        padding-bottom: 35px;
    }

    .title_icon_wrapper>img {
        width: 36px;
        height: 36px;
        margin-top: 0;
        border-radius: 8px;
    }

    .title_icon_wrapper {
        gap: 14px;
        margin-bottom: 0;
        align-items: start;
    }

    .partners_img_wrapper {
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }

    .title_wrapper.title_icon.d-flex {
        flex-direction: row;
        align-items: start;
        gap: 10px;
    }

    /* .explore_our_ai_section .title_icon_wrapper h3 { */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 1; */
    /* -webkit-box-orient: vertical; */
    /* overflow: hidden; */
    /* word-break: initial; */
    /* white-space: nowrap;
        width: 190px;
        text-overflow: ellipsis; */
    /* } */
    .title_icon_wrapper .h3-44 {
        line-height: 28px;
    }

    .service_wrapper .col .desc {
        margin-top: 16px;
        margin-bottom: 40.19px;
    }

    .service_wrapper>.col:nth-child(4) .desc {
        margin-bottom: 5px;
    }

    .service_wrapper>.col:nth-child(2) .desc,
    .service_wrapper>.col:nth-child(3) .desc {
        max-width: 100%;
        margin-top: 16px;
    }

    .service_wrapper>.col:nth-child(2) .desc {
        margin-bottom: 36px;
    }

    .service_wrapper>.col:nth-child(3) .desc {
        margin-bottom: 49px;
    }

    .service_wrapper>.col {
        border-radius: 16px;
    }

    .service_wrapper>.col:nth-child(4)>figure {
        margin: 0 -5px 0;
    }

    .data_annotation_tools_section {
        padding: 66px 0 66px;
        border-radius: 28px;
    }

    .data_annotation_tools_section h2 {
        font-size: 48px;
        line-height: 52px;
        max-width: 80%;
    }

    .tab_header {
        margin: 21px 7px 45px;
        padding: 9px;
    }

    .tab_header li {
        padding: 8px;
        border-radius: 8px;
        font-size: 14px;
        line-height: 24px;
        border: none;
        height: 40px;
    }

    .tab_content_bg {
        padding: 12px 10px 10px;
        border-radius: 0 0 12.5px 12.5px;
    }

    .tab_item:first-child video {
        border-radius: 4px;
        border: 2px solid rgba(0, 0, 0, 0.01);
    }

    .trusted_partners_section {
        padding: 74px 0 75px;
    }

    .trusted_partners_section h2 {
        margin-bottom: 40px;
    }

    .partners_wrapper.d-flex {
        flex-direction: row;
        gap: 18px;
        justify-content: center;
    }

    .partners_wrapper.d-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 18px;
    }

    .partners_wrapper.d-grid .partners_img_wrapper {
        height: 100px;
        padding-inline: 10px;
    }

    .our_customers_section {
        padding: 72px 0 62px;
    }

    .our_customers_section h2 {
        margin-bottom: 19px;
        font-size: 48px;
        line-height: 52px;
    }

    .our_customers_section h2+.desc,
    .data_security_section h2+.desc {
        font-size: 18px;
        line-height: 30px;
    }

    .testimonials_wrapper.d-grid {
        grid-template-columns: repeat(auto-fill, minmax(336px, 1fr));
        gap: 0;
        padding-top: 52px;
        display: flex;
    }

    .swiper-container,
    .swiper_key_genrative_ai_container {
        margin-right: -20px !important;
    }

    .name_wraper.d-flex {
        gap: 16px;
        flex-direction: row;
        margin-top: 48px;
    }

    .swiper.swiper-container,
    .swiper.dc_services_swiper,
    .swiper.swiper_key_genrative_ai_container,
    .swiper.experience_with_gai_swiper {
        overflow: visible;
        overflow-x: clip;
    }

    .testimonials_wrapper .col {
        padding: 28px 24px;
        height: 100% !important;
        min-height: 370px;
    }

    .testimonials_wrapper .col .desc {
        font-size: 14px;
    }

    .swiper-pagination {
        display: block;
        bottom: -60px !important;
        margin-left: -3px;
    }

    .customer_name {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 10px;
    }

    .name p:last-child {
        font-size: 12px;
        line-height: 12px;
    }

    .data_security_section h2 {
        margin-bottom: 22px;
        font-size: 48px;
        line-height: 52px;
    }

    .security_socials {
        padding-top: 48px;
    }

    .security_img_wrapper {
        border-radius: 16px;
    }

    .security_socials.d-flex {
        gap: 30px;
    }

    .security_img_wrapper h3 {
        font-size: 28px;
        bottom: 36.39px;
    }

    .security_img_wrapper figure {
        top: 0;
    }

    .security_img_wrapper {
        flex-basis: unset !important;
        overflow: hidden;
        height: 286px !important;
    }

    .security_img_wrapper:nth-child(1) {
        height: 285px !important;
    }

    .data_security_section {
        padding: 60px 0 78px;
    }

    footer {
        padding: 70px 0 64px;
        border-radius: 24px;
    }

    .footer_top.d-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 14.4%;
        padding-bottom: 0;
    }

    .footer_socials {
        padding-bottom: 48px;
        margin-bottom: 0;
        margin-top: 0;
    }

    .footer_menu li a,
    .footer_menu {
        font-size: 18px;
        line-height: 30px;
    }

    .footer_menu+.footer_title,
    .footer_title {
        margin-top: 34px;
    }

    .footer_top .col:first-child .footer_title,
    .footer_top .col:nth-child(2) .footer_title {
        margin-top: 0;
    }

    .copyright_side_img.d-flex {
        gap: 26px;
        flex-direction: row;
    }

    .copyright.d-flex {
        padding: 20px;
        text-align: center;
        gap: 18px;
    }

    .footer_bot {
        padding: 34px 0 0;
    }

    .socials a {
        margin-right: 6px;
    }

    .copyright_side_img figure {
        width: 49px;
        height: 49px;
    }

    .footer_top.d-grid .col:nth-child(2) {
        width: 35%;
    }

    .row.banner_wrapper.d-grid,
    .data_labeling_page .row.banner_wrapper.d-grid,
    .form-group,
    .no_img_box.d-grid,
    .row.oda_services.d-grid,
    .generative_ai_page .row.banner_wrapper.d-grid,
    .join_us_section .row.d-grid,
    .who_we_are_wrapper.d-grid,
    .row.row_alt_banner,
    .blog_page .row.row_alt_banner,
    .author_lists.d-grid,
    .blogs_wrapper.d-grid,
    .contact_banner,
    .cp_list,
    .row.indrustry_wrapper.d-grid,
    .industry_banner .row.row_alt_banner,
    .industries_page_v2 .industry_banner .row.row_alt_banner,
    .alt_indrustry_wrapper .industry_col_v1,
    .industry_single_banner .row.d-grid,
    .wu_ai_header.d-grid,
    .benefits_of_ai .title_wrapper.d-grid,
    .use_case_lists .row.d-grid,
    .case_study_banner .row.row_alt_banner,
    .row.case_study_wrapper.d-grid {
        grid-template-columns: 1fr;
    }

    .row.banner_wrapper.d-grid,
    .data_labeling_page .row.banner_wrapper.d-grid,
    .generative_ai_page .row.banner_wrapper.d-grid {
        padding: 54px 0 32px;
        gap: 44.5px;
    }

    .row.banner_wrapper .desc {
        font-size: 16px;
    }

    .ds_page .row.banner_wrapper.d-grid>.col:last-child figure {
        margin-right: -7px;
        margin-top: 0;
    }

    .row.banner_wrapper.d-grid>.col:first-child,
    .data_labeling_page .row.banner_wrapper.d-grid>.col:first-child,
    .content_m_page .row.banner_wrapper.d-grid>.col:first-child {
        padding-top: 0;
    }

    .row.banner_wrapper .btn-wrapper {
        margin-top: 47px;
    }

    .banner_wrapper .btn-primary,
    .data_labeling_page .banner_wrapper .btn-primary,
    .content_m_page .banner_wrapper .btn-primary,
    .generative_ai_page .banner_wrapper .btn-primary {
        padding: 13px 26px;
        width: 100%;
    }

    .row.banner_wrapper h1,
    .data_labeling_page .row.banner_wrapper h1,
    .content_m_page .row.banner_wrapper h1 {
        margin-bottom: 20px;
    }

    .dc_services_swiper_wrapper {
        padding: 28px 0 0 0;
        margin-right: calc(50% - 50vw + 0px);
    }

    .dc_service_item h3 {
        margin-bottom: 6px;
    }

    .why_tuoda .dc_service_item h3 {
        letter-spacing: 0.02em;
    }

    :is(.why_tuoda, .cms_stand_out) h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .pagination_arrow {
        display: none;
    }

    .left_img.row h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .collection>.col,
    .collection:nth-child(2)>.col {
        padding: 28px 34px 40px 24px;
    }

    .collection h2.h2-44 {
        font-size: 34px;
        line-height: 46px;
        margin: 0 0 8px;
    }

    .collection_section {
        padding: 75px 0 30px;
    }

    .our_customers_section.dsc_oc_section {
        padding: 40px 0 130px;
    }

    .contact_us_section {
        padding: 75px 0 75px;
    }

    .contact_us_section .row.d-flex>.col:first-child {
        padding-bottom: 48px;
        padding-top: 0;
        gap: 22px;
    }

    .form-group {
        gap: 0;
    }

    .input-group,
    .data_labeling_page .input-group {
        margin-bottom: 24px;
        gap: 10px;
    }

    .input-group label {
        font-size: 16px;
        line-height: 20.6px;
    }

    .contact_us_section .btn_wrapper {
        margin-top: 32px;
    }

    .contact_us_section .btn-primary {
        width: 100%;
        padding: 12px;
        gap: 19px;
    }

    .collection>.col:last-child,
    .collection:nth-child(2)>.col:last-child,
    .collection:nth-child(3)>.col:last-child,
    .collection:nth-child(4)>.col:last-child {
        padding: 16px;
    }

    .collection:nth-child(2)>.col:last-child {
        padding: 20px 16px 16px;
    }

    .collection:nth-child(3)>.col:last-child {
        padding: 25px 16px 22px;
    }

    .collection:nth-child(4)>.col:last-child {
        padding: 11px 16px 8px;
    }

    .our_adc_services h2 {
        margin-bottom: 40px;
    }

    .left_img.row.d-flex {
        gap: 32px;
    }

    .left_img.row.d-flex>.col:last-child {
        flex-basis: 100%;
    }

    .our_adc_services {
        padding: 75px 0 75px;
    }

    .social_proffing_section.dsp_sp,
    .data_labeling_page .social_proffing_section.dsp_sp {
        padding: 45px 0 75px;
    }

    .why_tuoda {
        padding: 70px 0 130px;
    }

    .dc_service_item figure img {
        aspect-ratio: 1.68 / 1;
    }

    .dc_service_item {
        padding: 10px 10px 18px;
    }

    .dc_service_item figure {
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .dc_services_swiper .swiper-pagination {
        bottom: -62px !important;
        margin-left: -23px;
        left: -26px;
    }

    .why_tuoda .dc_services_swiper .swiper-pagination {
        bottom: -69px !important;
        margin-left: -2px;
        left: -26px;
    }

    .cms_stand_out .dc_services_swiper .swiper-pagination {
        bottom: -39px !important;
    }

    .our_adc_services .list-ul ul {
        margin-left: 24px;
    }

    .dc_service_item .desc {
        font-size: 14px;
        line-height: 24px;
    }

    .collection {
        margin-bottom: 40px;
    }

    .dc_services_swiper .swiper-pagination {
        display: block;
    }

    .contact_us_section .row.d-flex {
        gap: 0;
    }

    .data_labeling_page .row.banner_wrapper.d-grid>.col:last-child figure {
        margin: 0 -4px;
    }

    .data_labeling_page .row.banner_wrapper.d-grid {
        gap: 60px;
        padding-bottom: 8px;
    }

    .why_choose_odas {
        padding: 69px 0 129px;
    }

    .why_choose_odas .dc_service_item h3 {
        letter-spacing: 0.02em;
    }

    .dc_services_swiper .swiper-slide {
        height: 100% !important;
    }

    .row.oda_services.d-grid {
        gap: 30px;
        padding: 30px 0;
    }

    .oda_services:nth-child(even) .col_contents {
        margin-top: 0;
    }

    .oda_services:nth-child(even) .col:first-child {
        order: 2;
    }

    .oda_services:nth-child(even) .col:last-child {
        order: 1;
    }

    .getting_started_section .row.d-flex {
        gap: 40px;
        flex-direction: column-reverse;
    }

    .getting_started_section .row.d-flex .col:first-child {
        flex-basis: 100%;
        margin-left: 0;
        padding-right: 0;
    }

    .kickoff_steps .col_wrap {
        display: flex;
        gap: 28px;
        margin-block: 0;
        flex-direction: column;
        text-align: center;
    }

    .kickoff_joiner {
        display: none;
    }

    .kickoff_steps:nth-child(even) .col_wrap {
        flex-direction: column;
    }

    .kickoff_steps:nth-child(odd):not(:first-child) .col_contents {
        padding-left: 0;
    }

    .kickoff_steps {
        margin-bottom: 34px;
    }

    .kickoff_steps:last-child {
        margin-bottom: 0;
    }

    .kickoff_steps .figure_wrap svg,
    .kickoff_steps figure {
        width: 140px;
        height: 140px;
    }

    .kickoff_steps figure {
        padding: 24px;
    }

    .c_vision_das {
        padding: 75px 0;
    }

    .row.no_img_box {
        margin-top: 43px;
    }

    .no_img_box.d-grid {
        gap: 28px;
    }

    .no_img_box>.col .tag_no {
        line-height: 16px;
        margin-bottom: 20px;
    }

    .no_img_box>.col {
        padding: 20px 18px 17px;
        border-radius: 16px;
    }

    .no_img_box h3 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 14px;
        margin-right: -7px;
    }

    .no_img_box .desc {
        line-height: 26px;
    }

    .no_img_box figure {
        margin-top: 30px;
        margin-inline: -1px;
    }

    .no_img_box.d-grid {
        gap: 28px;
    }

    .c_vision_das .no_img_box>.col:nth-child(2) h3 {
        letter-spacing: -0.02em;
    }

    .npl_das {
        padding: 0 0 75px;
    }

    .npl_das .no_img_box h3 {
        margin-bottom: 12px;
    }

    .npl_das .no_img_box>.col .tag_no {
        margin-bottom: 21px;
    }

    .other_das {
        padding: 75px 0 45px;
    }

    .oda_services h3 {
        margin-bottom: 12px;
        font-size: 28px;
        line-height: 38px;
    }

    .oda_services img {
        height: 264px;
    }

    .oda_services .desc {
        line-height: 26px;
    }

    .other_das h2 {
        margin-bottom: 12px;
    }

    .getting_started_section {
        padding: 75px 0;
    }

    .getting_started_section img {
        border-radius: 12px;
        aspect-ratio: 1.22 / 1;
    }

    .getting_started_section h2 {
        font-size: 34px;
        line-height: 46px;
        letter-spacing: 0;
    }

    .getting_started_section .desc {
        line-height: 26px;
    }

    .getting_started_section .btn_wrapper {
        margin-top: 34px;
    }

    .getting_started_section .btn-primary {
        width: 100%;
        padding: 14px 14px;
    }

    .kickoff {
        padding: 72px 0 70px;
    }

    .kickoff_wrapper.row.mt-70 {
        margin-top: 40px;
    }

    .kickoff_steps h3 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 14px;
    }

    .kickoff_steps .desc {
        line-height: 26px;
    }

    .kickoff_steps:nth-child(4) .col_contents {
        margin-top: 6px;
    }

    .data_labeling_page .our_customers_section.dsc_oc_section {
        padding: 74px 0 127px;
    }

    .testimonials_wrapper .col:first-child .name {
        margin-bottom: 1px;
        max-width: 100%;
    }

    .testimonials_wrapper .col .name {
        max-width: 100%;
        margin-bottom: 1px;
    }

    .data_labeling_page .contact_us_section {
        padding: 60px 0 63px;
    }

    .data_labeling_page .contact_us_section .row.d-flex>.col:first-child {
        gap: 30px;
        padding-bottom: 48px;
    }

    .data_labeling_page .contact_us_section .row.d-flex>.col:last-child {
        padding-left: 0;
    }

    input,
    select,
    textarea {
        padding: 15px 20px 15px;
        font-size: 14px;
        line-height: 18px;
        border-radius: 10px;
    }

    input,
    select {
        height: 52px;
    }

    textarea {
        height: 142px;
    }

    .content_m_page .row.banner_wrapper.d-grid>.col:last-child figure {
        margin: 11px 0 0;
    }

    .content_m_page .row.banner_wrapper.d-grid {
        padding-bottom: 15px;
    }

    .cms_stand_out {
        padding: 70px 0 100px;
    }

    .cms_stand_out h2 {
        letter-spacing: 0;
        margin-right: 5%;
    }

    .content_m_page .dc_service_item h3 {
        letter-spacing: 0.02em;
    }

    .content_m_page .dc_service_item .desc {
        margin-right: 0;
    }

    .our_cms_side_img {
        padding: 75px 0;
    }

    .content_m_page .our_cms_side_img .left_img.row {
        margin-top: 42px;
        gap: 27px;
    }

    .our_cms_side_img .left_img.row h3 {
        padding-left: 0;
        letter-spacing: -0.02em;
    }

    .content_m_page .left_img.row.d-flex>.col:last-child {
        padding: 0 0 0 12px;
    }

    .content_m_page .our_cms_side_img .list-ul ul {
        margin-left: 13px;
    }

    .cm_wrapper .col:nth-child(3n + 1) .col_inner {
        flex-direction: column;
        gap: 42px;
    }

    .cm_wrapper .col:nth-child(3n + 1) .col_inner .col_image {
        flex: 1 0 100%;
        margin: 0 -20px 0 -18px;
    }

    .cm_wrapper .col {
        padding: 40px 22px 12px 18px;
        border-radius: 16px;
    }

    .cm_wrapper p {
        margin-bottom: 19px;
    }

    .cm_wrapper p+p {
        margin-bottom: 12px;
    }

    .cm_wrapper .list-ul ul {
        margin-left: 8px;
    }

    .cm_wrapper .list-ul li {
        margin-bottom: 0px;
        line-height: 26px;
    }

    .cm_wrapper ul li::marker {
        font-size: 0.4em;
        margin-right: 0 !important;
    }

    .cm_wrapper .col:nth-child(3n + 2),
    .cm_wrapper .col:nth-child(3n + 3) {
        padding: 18px 18px 40px;
    }

    .cm_wrapper .col:nth-child(3n + 2) .col_image,
    .cm_wrapper .col:nth-child(3n + 3) .col_image {
        margin-bottom: 35px;
    }

    .cm_wrapper .col:nth-child(3n + 2) .col-contents,
    .cm_wrapper .col:nth-child(3n + 3) .col-contents {
        padding: 0;
    }

    :is(.cm_wrapper .col:nth-child(3n + 2), .cm_wrapper .col:nth-child(3n + 3)) h3 {
        letter-spacing: -0.02em;
    }

    .cm_wrapper h3 {
        font-size: 28px;
        line-height: 38px;
    }

    .cm_wrapper .desc {
        line-height: 26px;
    }

    .cm_wrapper .col:nth-child(3n + 3) .desc {
        max-width: 90%;
    }

    .cm_vti_section {
        padding: 0 0 30px;
    }

    .moderation_services {
        padding: 45px 0 30px;
    }

    .moderation_services h2 {
        margin-bottom: 48px;
    }

    .ms_row.d-flex {
        align-items: start;
        gap: 10px;
    }

    .ms_row {
        border-radius: 12px;
        padding: 28px 20px;
    }

    .ms_row img {
        width: 60px;
        height: 60px;
    }

    .ms_row.d-flex h3 {
        padding: 0;
        letter-spacing: -0.02em;
    }

    .ms_row.d-flex figure {
        margin-bottom: 14px;
    }

    .ms_row.d-flex .desc {
        flex-basis: 100%;
        padding-left: 0;
        line-height: 26px;
    }

    .cmp_section {
        padding: 45px 0 75px;
    }

    .cmp_section .desc {
        line-height: 26px;
    }

    .cmp_section h2 {
        margin-bottom: 18px;
    }

    .cmp_row h3 {
        max-width: 100%;
    }

    .cmp_row>.col figure {
        margin-bottom: 20px;
    }

    .cmp_row>.col {
        padding: 8px 8px 18px 8px;
    }

    .cmp_row>.col figure img {
        aspect-ratio: 1.4696 / 1;
    }

    .cmp_row.d-grid {
        gap: 23px;
    }

    .content_m_page .our_customers_section {
        padding: 72px 0 130px;
    }

    .content_m_page .contact_us_section {
        padding: 53px 0 66px;
    }

    .content_m_page .contact_us_section .row.d-flex>.col:first-child {
        margin-top: 0;
        gap: 13px;
    }

    .content_m_page .our_customers_section h2+.desc {
        max-width: 90%;
    }

    .generative_ai_page .banner_wrapper .btn-primary {
        gap: 18px;
    }

    .generative_ai_page .row.banner_wrapper .btn-wrapper {
        margin-top: 45px;
    }

    .generative_ai_page .row.banner_wrapper.d-grid>div:last-child {
        margin: 15px 0 0;
    }

    .generative_ai_page .row.banner_wrapper.d-grid {
        padding-bottom: 17px;
    }

    .what_set_apart_gai.pb-140 {
        padding: 68px 0 117px;
    }

    .what_set_apart_gai .dc_service_item h3 {
        letter-spacing: 0.02em;
    }

    .llm_services {
        padding: 75px 0 30px;
    }

    .llm_services h2 {
        margin-bottom: 0;
    }

    .llm_services .mt-70 {
        margin-top: -8px;
    }

    .llm_services .left_img figure {
        flex-basis: 100%;
        max-width: 100%;
        margin: 0;
    }

    .llm_services img {
        aspect-ratio: 1.383 / 1;
    }

    .llm_services .left_img.row.d-flex>.col:last-child {
        flex-basis: 100%;
        padding-left: 12px;
        padding-top: 9px;
    }

    .llm_services .left_img.row h3 {
        margin-bottom: 10px;
    }

    .llm_services .desc {
        line-height: 26px;
    }

    .llm_services p {
        margin-bottom: 20px;
    }

    .list-ul li {
        margin-bottom: 8px;
    }

    .llm_services .list-ul ul {
        margin-left: 12px;
    }

    .generative_ais_section {
        padding: 45px 0 40px;
    }

    .generative_ais_section>div>.desc {
        line-height: 26px;
    }

    .generative_ais_section h2 {
        margin-bottom: 17px;
    }

    .generative_ais_section .row.d-grid>.accordion_image {
        order: 1;
    }

    .generative_ais_section .row.d-grid>.accordion_section {
        order: 2;
    }

    .generative_ais_section .row.d-grid.mt-70 {
        margin-top: 48px;
    }

    .accordion_header {
        padding: 20px;
        letter-spacing: 0.02em;
    }

    .accordion_wrapper {
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .accordion_content {
        margin-top: -5px;
        padding: 0 20px 20px;
        line-height: 26px;
    }

    .optimizing_llm_section {
        padding: 33px 0 75px;
    }

    .optimizing_llm_section .desc {
        line-height: 26px;
    }

    .generative_ais_section .img_wrapper,
    .optimizing_llm_section .img_wrapper {
        border-radius: 16px;
    }

    .optimizing_llm_section .accordion_wrapper:nth-child(1) .accordion_header h3 {
        max-width: 80%;
    }

    .optimizing_llm_section .accordion_wrapper {
        margin-bottom: 22px;
    }

    .optimizing_llm_section .accordion_wrapper:last-child {
        margin-bottom: 0;
    }

    .optimizing_llm_section .accordion_wrapper:nth-child(3) .accordion_header h3 {
        margin: 0 -6px 0 -1px;
    }

    .key_genrative_ai.pb-140 {
        padding: 75px 0 135px;
    }

    .icon_wrapper .col,
    .our_values_section .icon_wrapper .col {
        padding: 24px 24px 18px;
        border-radius: 14px;
    }

    .icon_img {
        width: 54px;
        height: 54px;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .icon_wrapper.d-grid {
        padding-top: 25px;
        display: flex;
        gap: 0;
    }

    .icon_wrapper h3 {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 14px;
        letter-spacing: -0.03em;
    }

    .icon_wrapper .desc {
        font-size: 14px;
        line-height: 24px;
    }

    .swiper_key_genrative_ai_container .swiper-pagination {
        bottom: -65px !important;
        margin-left: -9px;
    }

    .title_wrapper.d-flex>.title_wrap_left:first-child {
        max-width: 100%;
    }

    .experience_with_gai {
        padding: 72px 0 100px;
    }

    .experience_with_gai_swiper .dc_service_item h3 {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.02em;
        margin-bottom: 12px;
    }

    .experience_with_gai .desc {
        line-height: 26px;
    }

    .experience_with_gai_swiper .dc_service_item {
        padding: 12px 12px 42px 12px;
        border-radius: 14px;
    }

    .experience_with_gai .dc_services_swiper_wrapper {
        padding: 42px 0 0;
    }

    .experience_with_gai_swiper .dc_service_item figure img {
        aspect-ratio: 1.551 / 1;
    }

    .experience_with_gai_swiper .dc_service_item figure {
        margin-bottom: 20px;
    }

    .experience_with_gai_swiper .swiper-pagination {
        bottom: -42px !important;
    }

    .build_le_section {
        padding: 30px 0 60px;
    }

    .build_le_section>div>.desc {
        line-height: 26px;
    }

    .build_le_section .img_wrapper {
        border-radius: 12px;
    }

    .build_le_section .accordion_wrapper {
        margin-bottom: 17px;
    }

    .generative_ai_page .contact_us_section {
        padding: 37px 0 55px;
    }

    .generative_ai_page .contact_us_section .row.d-flex>.col:first-child {
        padding: 0 0 46px;
    }

    .tab_header {
        width: 100%;
        max-width: 100%;
    }

    .partners_img_wrapper img,
    .partners_img_wrapper:nth-child(1) img {
        height: 41px;
    }

    .partners_img_wrapper:nth-child(2) img {
        height: 32px;
    }

    .partners_img_wrapper:nth-child(3) img {
        height: 30px;
    }

    .partners_img_wrapper:nth-child(4) img {
        height: 18px;
    }

    .partners_img_wrapper:nth-child(5) img {
        height: 38px;
    }

    .partners_img_wrapper:nth-child(6) img {
        height: 18px;
    }

    .partners_img_wrapper:nth-child(7) img {
        height: 28px;
    }

    .partners_img_wrapper:nth-child(8) img {
        height: 16px;
    }

    .our_values_section .icon_wrapper.d-grid {
        gap: 0;
    }

    .ow_info_wrapper.d-flex {
        flex-direction: row;
    }

    .histroy_slider_wrapper {
        max-width: 100%;
        flex-basis: 100%;
    }

    .info_wrap p {
        font-size: 5.1px;
        line-height: 8.74px;
        margin-bottom: 1px;
    }

    .info_wrap h3 {
        font-size: 10.19px;
        line-height: 100%;
        margin-bottom: 4px;
    }

    .info_wrap_desc {
        border-top: 0.5px solid #25272673;
        padding-top: 6px;
    }

    .info_wrap {
        padding: 7px 7px 4px;
        box-shadow: 0px 5.1px 8.74px 0px #6755dc29;
        border: 0.18px solid #25272673;
        border-radius: 3.64px;
        max-width: 118px;
        transform: translate(14%, -128%);
    }

    .office_location_icon .icon {
        width: 14px;
        height: 14px;
        padding: 4px;
        transform: translate(23%, -170%);
    }

    .ol_img>img {
        object-position: -32px;
    }

    .office_location_tabs {
        border-radius: 6px;
        padding: 12px;
        bottom: 13px;
        left: 12px;
    }

    .office_location_tabs h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .office_location_tabs {
        border-radius: 6px;
        padding: 12px;
    }

    .ol_tab_item {
        font-size: 10px;
        border-radius: 5.24px;
        padding: 4px 8px;
        margin-right: 0px;
        line-height: 1em;
    }

    .ol_img,
    .ol_img>img {
        min-height: 254px;
    }

    .office_location_wrapper figure {
        border-radius: 10px;
    }

    .pc_wrapper {
        padding: 28px 24px 30px;
    }

    .pc_wrapper h2 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .pc_info_wrapper .col {
        padding: 17px 16px 20px;
        border-radius: 10px;
    }

    .pc_info_wrapper .col:nth-child(3) {
        padding-bottom: 18px;
    }

    .pc_info_wrapper .col p:first-child {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 5px;
    }

    .pc_info_wrapper .col p:last-child {
        font-size: 14px;
        line-height: 24px;
    }

    .pc_info_wrapper.d-grid {
        gap: 18px;
    }

    .dots_wrap {
        padding: 26px 30px 0;
        overflow-x: scroll;
        margin-right: -18px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .swiper-pagination.history_dots {
        position: unset !important;
        width: 588px !important;
        height: 125px;
        padding: 0;
    }

    .dot-label-top,
    .dot-label-bottom {
        font-size: 14px;
        line-height: 24px;
    }

    .history_dots .swiper-pagination-bullet-active .dot-label-top,
    .history_dots .swiper-pagination-bullet-active .dot-label-bottom {
        font-size: 18px;
        line-height: 30px;
    }

    .dot-label-top {
        top: -30px;
    }

    .dot-label-bottom {
        bottom: -29px;
    }

    .row_alt_banner,
    .case_study_banner .row.row_alt_banner {
        padding: 56px 0 24px;
    }

    .row.row_alt_banner,
    .who_we_are_wrapper.d-grid,
    .join_us_section .row.d-grid,
    .office_workpspace_wrapper.d-grid,
    .author_title.d-flex,
    .case_study_banner .row.row_alt_banner {
        gap: 0;
    }

    .row_alt_banner .col {
        font-size: 16px;
        line-height: 26px;
    }

    .row_alt_banner p {
        margin-bottom: 28px;
    }

    .full_width_img {
        padding: 25px 0 0;
    }

    .full_width_img img {
        aspect-ratio: 2.0526 / 1;
    }

    .who_we_are_section {
        padding: 58px 0;
    }

    .who_we_are_wrapper h2 {
        font-size: 44px;
        line-height: 58px;
        margin-bottom: 30px;
    }

    .who_we_are_wrapper>.col.desc p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 17px;
    }

    .who_we_are_wrapper>.col.desc:last-child>p:first-child {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.02em;
        margin-bottom: 17px;
    }

    .positive_change_section .container {
        padding-block: 68px 70px;
    }

    .positive_change_section .desc {
        max-width: 285px;
    }

    .pc_info_wrapper {
        padding: 25px 0 0;
    }

    .right_experts_section {
        padding: 57px 0 18px;
    }

    .right_experts_section h2 {
        margin-bottom: 46px;
    }

    .right_experts_slider_wrapper {
        margin: 0px -122px 0 -120px;
        padding-bottom: 20px;
    }

    .our_history_section h2 {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        letter-spacing: -0.02em;
        margin-right: -18px;
    }

    .our_history_section {
        padding: 75px 0 50px;
    }

    .history_slider_title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 16px;
    }

    .our_history_section .slide-row.d-flex {
        padding: 0;
        gap: 33px;
    }

    .join_us_section {
        padding: 62px 0 30px;
    }

    .join_us_section .col:first-child {
        margin-bottom: 26px;
    }

    .join_us_section h2 {
        line-height: 46px;
        max-width: 342px;
        margin-bottom: 16px;
    }

    .join_us_section .btn_wrapper {
        margin-top: 42px;
    }

    .join_us_section .btn-primary {
        gap: 17px;
        width: 100%;
        font-size: 24px;
        line-height: 36px;
        padding: 14px 16px 17px;
    }

    .our_values_section {
        padding: 30px 0 100px;
    }

    .our_values_section .icon_wrapper.d-grid {
        padding-top: 32px;
    }

    .our_values_section .icon_wrapper h3 {
        letter-spacing: 0.02em;
    }

    .our_values_section .icon_wrapper .col {
        min-height: unset;
    }

    .our_values_section .swiper-pagination {
        bottom: -67px !important;
    }

    .office_workpspace_wrapper h2 {
        font-size: 44px;
        line-height: 58px;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }

    .office_workspace_section {
        padding: 30px 0 76px;
    }

    .ow_info_wrapper {
        margin-top: 62px;
        padding: 24px 8px 0 9px;
    }

    .ow_info_wrapper .col>p:first-child {
        margin-bottom: 10px;
    }

    .ow_info_wrapper .col>p:last-child {
        margin: 0;
        letter-spacing: -1px;
    }

    .ol_img {
        display: flex;
    }

    .blog_page .row_alt_banner h1 {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 21px;
    }

    .blog_page .row_alt_banner {
        padding: 55px 0 29px;
    }

    .filter_btn_wrapper a.btn-primary {
        padding: 10px 18px;
        width: fit-content;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 0.02em;
    }

    .filter_btn_wrapper.d-flex {
        gap: 12px;
        flex-direction: row;
    }

    .filter_btn_wrapper {
        padding: 30px 0 48px;
    }

    .author_lists.d-grid {
        gap: 22px;
        padding: 48px 0 0;
    }

    .our_authors {
        padding: 43px 0 75px;
    }

    .author_item {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        border-radius: 14px;
    }

    .author_item figure img,
    .author_item figure {
        width: 74px;
        height: 74px;
    }

    .author_position {
        margin-bottom: 16px;
    }

    .our_authors .btn_wrapper {
        padding: 40px 0 0;
    }

    .our_authors .btn_wrapper .btn-primary {
        width: 100%;
        font-size: 20px;
        padding: 15px 16px 12px;
        line-height: 30px;
    }

    .our_authors .btn_wrapper .btn-primary svg {
        display: none;
    }

    .our_authors h2 {
        font-size: 48px;
        margin-bottom: 16px;
        line-height: 52px;
    }

    .author_title.d-flex {
        align-items: start;
    }
    
    .page-number li span.current{
        width: 36px;
    }
    .page-number li a,
    .page-number li span.current{
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        padding: 5px 5px;
        border-radius: 8px;
        height: unset;
    }

    .page-number li a,
    .page-number li span {
        font-weight: 500;
    }

    .blogs_wrapper.d-grid {
        gap: 28px;
    }

    .post_blog .post_title h3 {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.02em;
        margin-right: -16px;
    }

    .post_blog .desc {
        font-size: 14px;
        line-height: 24px;
    }

    .post_blog .post-info {
        margin-bottom: 16px;
    }

    .post_blog .blog_figure {
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .side_post_blog h3 {
        font-size: 18px;
        line-height: 30px;
    }

    .side_post_blog {
        gap: 16px;
        margin-bottom: 18px;
        padding-bottom: 19px;
    }

    .side_post_blog .blog_figure img {
        /* height: 74px; */
        aspect-ratio: 1.581 / 1;
    }

    .side_post_blog .post-info {
        font-size: 12px;
        line-height: 20px;
        margin: 0;
    }

    .dot {
        margin: 0 9px 2px;
    }

    .side_post_blog .dot {
        width: 4px;
        height: 4px;
        margin: 0 4px 1px 5px;
    }

    .blog_page .row_alt_banner .col:last-child {
        margin: 0;
        font-size: 16px;
    }

    /*.page-number li:nth-child(4),*/
    /*.page-number li:nth-child(7) {*/
    /*    display: none;*/
    /*}*/

    nav.edublink-pagination-wrapper {
        grid-column: 1;
        padding-top: 24px;
        margin: 0;
        margin-left: 6px;
    }

    .page-number li:not(:first-child):not(:last-child) {
        width: 36px;
    }

    .page-number li a.next {
        margin-left: 0;
        padding-inline: 9px 12px;
    }

    ul.page-number svg {
        width: 7px;
        height: 7px;
    }

    .page-number li a.next,
    .prev.page-numbers {
        gap: 5.5px;
    }

    ul.page-number {
        flex-wrap: wrap;
        gap: 8px;
    }

    .featured_posts {
        padding: 0 0 90px;
    }

    .featured_posts .post_blog:first-child .blog_figure {
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .post-info,
    .post_blog .category {
        font-size: 14px;
        line-height: 24px;
    }

    .featured_posts .row.d-flex {
        gap: 37px;
    }

    .side_post_blog .blog_figure {
        flex-basis: calc(35% - 8px);
        margin-top: 6px;
    }

    .side_post_blog .post_contents {
        flex-basis: calc(65% - 8px);
    }

    .side_post_blog:last-child {
        padding-bottom: 20px;
        border-bottom: 1px solid #25272633;
    }

    .featured_posts {
        padding: 0 0 0;
    }
    
    .blog_lists {
        padding: 20px 0 50px;
    }
    .page-template-blog-page .blog_lists{
        padding-top: 58px;
    }

    .blog_figure img {
        aspect-ratio: 1.774 / 1;
    }

    .author_content {
        padding-top: 0;
    }

    .blog_page .contact_us_section {
        border-radius: 28px;
        padding: 75px 0 77px;
    }

    .blog_page .contact_us_section .row.d-flex>.col:last-child {
        padding-top: 24px;
    }

    .blog_page .input-group {
        gap: 11px;
    }

    .blog_page label.label-message {
        font-size: 18px;
        line-height: 22px;
    }

    .blog_page .contact_us_section .btn_wrapper {
        margin-top: 40px;
    }

    .blog_page .contact_us_section .btn-primary {
        padding: 12px 12px 18px;
    }

    .blog_category_page.blog_page .row_alt_banner {
        padding: 54px 0 31px;
    }

    .btn-filter {
        padding: 6px 16px 4px;
        font-size: 14px;
        line-height: 24px;
    }

    .filter_faq_lists {
        gap: 14px 13px;
    }

    .faq_accordion_wrap_title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 24px;
    }

    .faq_accordion_wrapper h3 {
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
    }

    .faq_accordion_wrapper .accordion_content {
        line-height: 26px;
        padding: 20px 0 0;
    }

    .faq_accordion_wrapper .accordion_wrapper {
        margin-bottom: 19px;
        padding-bottom: 20px;
    }

    .faq_accordion_wrapper .accordion_header {
        gap: 23px;
    }

    .faq_accordion_wrapper .accordion_header svg {
        width: 14.5px;
        height: 10px;
        margin-right: 2px;
    }

    .faq_accordion_wrapper .accordion_wrapper:last-child {
        margin-bottom: 0px;
    }

    .filer_tab_conent,
    .filer_tab_conent:nth-child(3),
    .filer_tab_conent:nth-child(2) {
        padding-bottom: 48px;
    }

    .faq_contents {
        padding: 29px 0 75px;
    }

    .faq_page .row_alt_banner h1,
    .industry_banner .row_alt_banner h1 {
        font-size: 48px;
        line-height: 52px;
    }

    .faq_page .row_alt_banner h1 {
        margin-bottom: 26px;
    }

    .faq_page .row_alt_banner {
        padding: 55px 0 19px;
    }

    .faq_contents .row.d-grid {
        gap: 59px;
    }

    .faq_page .contact_us_section .row.d-flex>.col:first-child h2 {
        max-width: 348px;
        letter-spacing: 0;
    }

    .faq_page .contact_us_section {
        padding: 48px 0 64px;
        border-radius: 28px;
    }

    .faq_page .contact_us_section .row.d-flex>.col:first-child {
        gap: 31px;
        padding-bottom: 43px;
    }

    .faq_page .contact_us_section .btn-primary {
        line-height: 36px;
        font-size: 24px;
        padding: 13px 16px 18px;
        gap: 20px;
    }

    .contact_banner .col:first-child,
    .cp_list .col:first-child,
    .cp_list .col:last-child {
        padding: 0;
    }

    .cp_list h2 {
        font-size: 44px;
        line-height: 58px;
        margin-bottom: 17px;
    }

    .cp_list .desc p {
        display: inline;
    }

    .cp_list:not(:first-child) .desc p {
        display: block;
    }

    .cp_list .btn_wrapper {
        margin-top: 29px;
    }

    .cp_list .col:last-child {
        top: -26px;
    }

    .cp_list .iframe_wrapper {
        border-radius: 14px;
        bottom: -26px;
    }

    .iframe_wrapper iframe {
        height: calc(240px + 26px);
        top: -26px;
        border-radius: 14px;
    }

    .cp_list {
        gap: 44px;
        padding-bottom: 14px;
    }

    .cp_list .btn-primary {
        padding: 13px 16px 8px;
        width: 100%;
    }

    .cp_map {
        border-radius: 28px 28px 0 0;
        padding: 70px 0 10px;
    }

    .contact_banner .btn-primary {
        width: 100%;
    }

    .contact_banner_sec {
        padding: 54px 0 75px;
    }

    .contact_banner .desc p {
        max-width: 340px;
    }

    .contact_banner {
        gap: 3px;
    }

    label.label-message {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 22px;
    }

    .contact_banner .btn-primary {
        width: 100%;
        padding: 16px 16px 14px;
    }

    .contact_page .our_customers_section {
        padding: 36px 0 130px;
    }

    .industries_page_v1 .our_customers_section {
        padding: 75px 0 130px;
    }

    .industry_col_v1 {
        padding: 20px 12px 12px;
        border-radius: 16px;
    }

    .industry_col_v1 .col_contents {
        padding: 0 6px;
    }

    .industry_col_v1 .title_icon_wrapper>img {
        width: 52px;
        height: 52px;
        border-radius: 10px;
    }

    .industry_col_v1 .title_icon_wrapper {
        margin-bottom: 18px;
        flex-direction: column;
    }

    .industry_banner .row_alt_banner {
        padding: 54px 0 30px;
    }

    .industry_banner .row_alt_banner h1 {
        margin-bottom: 21px;
    }

    .industry_col_v1 .title_icon_wrapper .h3-44 {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: 0;
    }

    .industry_col_v1 .desc {
        font-size: 18px;
        line-height: 30px;
    }

    .industry_col_v1 figure {
        border-radius: 8px;
        margin-top: 30px;
    }

    .industry_col_v1 img {
        aspect-ratio: 1.71875 / 1;
    }

    .row.indrustry_wrapper.d-grid {
        gap: 35px;
    }

    .industry_list_section {
        padding: 20px 0 75px;
    }

    .alt_indrustry_wrapper .industry_col_v1 {
        padding: 20px 12px 12px 12px;
        border-radius: 16px;
        gap: 30px;
    }

    .alt_indrustry_wrapper .industry_col_v1 .figure {
        border-radius: 8px;
    }

    .alt_indrustry_wrapper .industry_col_v1 img {
        aspect-ratio: 1.71875 / 1;
    }

    .industries_page_v2 .our_customers_section {
        padding: 72px 0 130px;
    }

    .alt_indrustry_wrapper .industry_col_v1 .col_contents {
        padding-inline: 6px 0;
    }

    .alt_indrustry_wrapper .title_icon_wrapper {
        gap: 22px;
        margin-bottom: 12px;
    }

    .alt_indrustry_wrapper .btn_wrapper {
        margin-top: 20px;
    }

    .impact_ai .row.d-flex {
        margin-top: 40px;
        padding-top: 0;
        flex-direction: row;
        gap: 0px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .impact_ai .col {
        padding: 40px 42px 52px 0;
        flex-basis: 100%;
        border-right: 0;
        border-bottom: 1px solid #25272633;
    }
    
    .impact_ai .col p {
        max-width: 100%;
    }
    
    .impact_ai .col:first-child{
        padding-top: 0;
    }

    .impact_ai .col:last-child {
        border: 0;
        padding-bottom: 0;
    }

    .industry_single_banner .row.d-grid {
        gap: 30px;
    }

    .highlight_desc {
        padding: 50px 0;
    }

    .highlight_desc .desc,
    .financial_services .highlight_desc .desc {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0;
    }

    .why_use_ai {
        padding: 75px 0 35px;
    }

    .wu_ai_gallery,
    :is(.manufacturing, .health_life_sciences, .financial_services) .wu_ai_gallery {
        gap: 10px;
        padding: 35px 0 0;
    }

    .wu_ai_gallery figure,
    .abu_row_wrapper figure {
        border-radius: 8px;
    }
    
    .wu_ai_gallery{
        gap: 32px;
        flex-direction: column;
    }

    .ai_being_used {
        padding: 35px 0 50px;
    }

    .ai_being_used .title_wrapper {
        padding-bottom: 35px;
    }

    .abu_row_wrapper .col.col_contents {
        flex-basis: 100%;
        padding: 0 0 20px 0;
    }

    .abu_row_wrapper .row:nth-child(even) .col.col_contents {
        padding: 0 0 20px 0;
    }

    .abu_row_wrapper .h3-44 {
        line-height: 32px;
    }

    .abu_row_wrapper .row:nth-child(even) {
        flex-direction: column;
    }

    .abu_row_wrapper .row {
        padding: 20px 0;
    }

    .benefits_of_ai .container {
        padding-top: 35px;
    }

    .benefits_of_ai .desc {
        font-size: 16px;
        line-height: 26px;
    }

    .benefits_of_ai {
        padding: 0 0 75px;
    }

    .impact_ai,
    .lead_with_ai {
        padding: 75px 0;
    }

    .impact_ai h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .impact_ai .col div {
        font-size: 42px;
        line-height: 48px;
    }

    .impact_ai .col p {
        font-size: 14px;
        line-height: 24px;
    }

    .industry_single_banner .col_contents {
        margin-right: 0;
        max-width: 100%;
    }

    .industry_single_banner {
        padding: 55px 0 75px;
    }

    .industry_single_banner .btn-primary {
        width: 100%;
        padding: 16px 16px 16px;
    }

    .wu_ai_header h2 {
        margin-right: 0;
    }

    .lead_with_ai .indrustry_wrapper {
        margin-top: 35px;
    }

    .lead_with_ai h3 {
        font-size: 28px;
        line-height: 38px;
        letter-spacing: 0;
    }

    .abu_row_wrapper .row.d-flex {
        align-items: start;
    }

    .abu_row_wrapper .desc {
        max-width: 100%;
    }

    .use_case_lists .filter_faq_lists {
        gap: 12px;
        padding-top: 16px;
        flex-direction: column;
    }

    .use_case_lists {
        padding: 75px 0 30px;
    }

    .use_case_lists .h2-44 {
        line-height: 38px;
        margin-bottom: 28px;
    }

    .use_case_lists h3 {
        line-height: 36px;
        margin-bottom: 16px;
        font-size: 28px;
    }

    .use_case_lists .desc {
        line-height: 26px;
    }

    .use_case_lists .col_list {
        margin-bottom: 24px;
    }

    .use_case_lists .col.toc_contents {
        padding-top: 60px;
    }

    .use_case_lists .col_wrap {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .more_articles {
        padding: 35px 0 75px;
    }

    .more_articles .blogs_wrapper {
        margin-top: 40px;
    }

    .uc_contents h3 {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: 0.02em;
        margin-bottom: 16px;
        margin-top: 40px;
    }

    .uc_contents .desc {
        padding-top: 40px;
        line-height: 26px;
    }

    .before_after_wrap {
        aspect-ratio: 1.5526 / 1;
        min-height: unset;
        border-radius: 14px;
        margin-top: 48px;
    }

    .before_after_text {
        font-size: 14px;
        padding: 9px 24px;
        border-radius: 7px;
        bottom: 18px;
    }

    .before_text {
        left: 12.7%;
    }

    .after_text {
        right: 12.7%;
    }

    .before_after_wrap input::-webkit-slider-thumb {
        width: 34px;
        height: 50px;
        border-radius: 60px;
        background-size: 10px;
    }

    .before_after_wrap input::-webkit-slider-thumb {
        width: 34px;
        height: 50px;
        border-radius: 60px;
        background-size: 10px;
    }

    .uc_contents {
        padding: 75px 0 28px;
        border-radius: 28px 28px 0 0;
    }

    .industry_single_banner.case_study_banner {
        padding: 60px 0 75px;
    }

    .industry_single_banner.case_study_banner .row.d-grid {
        gap: 48px;
    }

    .banner_tag {
        font-size: 16px;
        border-radius: 8px;
        line-height: 26px;
        padding: 4px 14px;
    }

    .case_studies_archive .row_alt_banner h1 {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 18px;
    }

    .case_studies_archive .row_alt_banner .col:last-child {
        padding-top: 0;
    }

    .case_study_list_section {
        padding: 26px 0 75px;
    }

    .cs_col_header figure {
        height: 12px;
    }

    .cs_col_header>p {
        font-size: 12px;
    }

    .cs_col_header {
        padding: 4px 6px 4px 8px;
    }

    .col_case_study .figure_wrapper>figure img {
        aspect-ratio: 1.425 / 1;
    }

    .col_case_study h3 {
        margin-bottom: 12px;
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.02em;
    }

    .col_case_study .desc {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
    }

    .col_case_study .btn_wrapper .btn-secondary {
        font-size: 16px;
        line-height: 24px;
    }

    .row.case_study_wrapper.d-grid {
        gap: 35px;
    }

    .case_studies_archive .our_customers_section {
        padding: 75px 0 120px;
    }

    /* Single Blog */
    .single_blog_page .dive_in_wrap {
        display: none;
    }

    .single_blog_page .sec_single_blog_contents .row {
        grid-template-columns: 1fr;
    }

    .single_blog_page .filter_faq_lists {
        flex-direction: column;
    }

    .single_blog_page .toc_title {
        font-size: 18px;
    }

    .single_blog_page .blog_single_banner .row_wrap.d-flex {
        justify-content: unset;
        align-items: unset;
    }

    .single_blog_page .author_wrap.d-flex {
        align-items: unset;
        flex-direction: row;
        padding-bottom: 20px;
    }

    .single_blog_page .blog_single_banner .row_wrap.d-flex {
        justify-content: unset;
        align-items: unset;
        flex-direction: column;
    }

    .single_blog_page .blog_single_banner .row_wrap.d-flex {
        padding-bottom: 29px;
    }

    .single_blog_page .share_post.d-flex {
        flex-direction: row;
    }

    .single_blog_page .share_post.d-flex {
        padding-block: 40px 60px;
        flex-direction: row;
    }

    .single_blog_page .blog_contents_sidebar {
        padding-right: unset;
    }

    .single_blog_page .blog_desc h2 {
        font-size: 28px;
    }

    .single_blog_page .author_box figure {
        max-width: 74px;
        max-height: 74px;
    }

    .single_blog_page .author_box {
        flex-direction: column;
    }

    .single_blog_page .related_more_articles {
        padding-block: 60px 70px;
    }

    .single_blog_page .author_box {
        margin-bottom: 60px;
    }

    .single_blog_page .related_more_articles {
        padding-block: 60px 40px;
        font-size: 34px;
        line-height: 46px;
        border-top: 1px solid #25272633;
    }

    .overlay_container:before {
        width: 100px;
        height: 100px;
    }
}