@font-face {
  font-family: 'Advert';
  src: url('../fonts/Advert-Bold.woff2') format('woff2'),
    url('../fonts/Advert-Bold.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


:root {
  --white: #fff;
  --black: #000;
  --color_orange_deep: #D55A2D;
  --sky_light: #E6F1F6;
  --color_steel_blue: #283C5A;
  --color_gray_medium: #111111;
  --color_gray_light: #252525;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  font-family: "Outfit", sans-serif;
}

html {
  position: relative;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

:focus {
  outline: none;
}

input[type="submit"],
button {
  -webkit-appearance: none;
}

select {
  word-wrap: normal;
}

::-webkit-input-placeholder {
  color: #6f6f6f;
}

:-moz-placeholder {
  color: #6f6f6f;
}

::-moz-placeholder {
  color: #6f6f6f;
}

ul {
  list-style: none;
}

.clr {
  clear: both;
  float: none;
  display: block;
}

.clr:after,
.afclr:after {
  clear: both;
  float: none;
  display: block;
  content: "";
}

.wrapper {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.outer_block {
  overflow: hidden;
}

.wrapper_xl {
  width: 100%;
  max-width: 1380px;
  padding: 10px 20px;
  margin: 0 auto;
}


a {
  text-decoration: none;
  color: var(--color_orange_deep);
}

.heading_02 h2 {
  font-size: 50px;
  line-height: 1.2em;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 13px;
}


.heading_05 h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--block_color);
  line-height: 1.3;
  margin-bottom: 8px;
}

.heading_03 h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--color_steel_blue);
  text-transform: uppercase;
  line-height: 1.2;
  padding-bottom: 20px;
}


.heading_04 h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
  padding-bottom: 6px;
}


.heading_pra p {
  font-size: 22px;
  font-weight: 500;
  color: var(--color_steel_blue);
  line-height: 1.4;
  padding-bottom: 20px;
}

.heading_pra p span {
  font-weight: 600;
}

.paragraph_pra p {
  font-size: 16px;
  font-weight: 400;
  color: #282828;
  line-height: 1.5;
  padding-bottom: 15px;
}

.paragraph_pra p:last-child,
.heading_pra p:last-child {
  padding-bottom: 0;
}

.site_button {
  font-weight: 400;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: var(--white);
  padding: 16px 50px 16px 28px;
  background-color: var(--color_orange_deep);
  border: 1px solid var(--color_orange_deep);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  border-radius: 32px;
  background-image: url(../images/site-fa-btn-arrow-n.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 21px) center;
  background-size: 20px;
}

.site_button:hover {
  border-color: var(--color_steel_blue);
  background-color: var(--color_steel_blue);
  color: var(--white);
}


.cart_box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--sky_light);
  display: flex;
  align-items: center;
  justify-content: center;
}


.header-cart-inner {
  position: relative;
}

.cart_icon.login_info svg,
.cart_icon.login_info img {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
}

.login_info>svg path {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.header-cart-count {
  position: absolute;
  top: -8px;
  right: -9px;
  font-size: 14px;
  color: var(--black);
}


/* .site_button:hover {
  background-image: url(../images/site-fa-btn-arrow-r.svg);
} */

/* header  */
.header_sec {
  padding: 28px 0 23px;

  background-color: var(--white);
}

.header_inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header_img_sec {
  /* width: 17%; */
  width: 18%;
}

.header_img_sec a {
  display: inline-block;
}



.header_menu_sec {
  /* width: 59%; */
  width: 68%;
}

.header_btn_sec {
  /* width: 24%; */
  width: 14%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}


.header_btn.site_button {
  padding: 16px 40px 16px 24px;
  background-position: calc(100% - 16px) center;
}

.get_header_btn {
  margin-right: 16px;
}

.header_mobile_menu {
  display: none;
}

/* css sticky header */

.sticky_header {
  position: fixed;
  left: 0;
  right: 0;
  top: -80px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.19);
  background-color: var(--white);
}

.sticky_header.header_is_sticky {
  top: 0;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}


.sticky_header_inner .main_logo a {
  max-width: 120px;
}

.sticky_header_inner {
  padding: 18px 0 15px;
}


.sticky_header_inner .header_img_sec {
  width: 16%;
}


/* css end sticky header */

/* menu  */
.site-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}

.nav-menu {

  padding-right: 8px;
}

.nav-menu li {
  position: relative;
  display: inline-block;
}

.nav-menu>li {
  margin: 0 3px;
}

.nav-menu>li>a {
  position: relative;
  font-weight: 500;
  color: #1c1e1b;
  text-transform: uppercase;
  font-size: 16px;
  padding: 8px 7px;
  display: block;
  line-height: 1.2;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  display: inline-block;
}


.nav-menu>li:hover>a {
  color: var(--color_steel_blue);
}


.nav-menu .sub-menu ul li,
.nav-menu .sub-menu li {
  background: #ffffff;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  z-index: 1000;
  visibility: visible;
  filter: alpha(opacity=0);
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.211764);
  transform: translateY(20px);
}

.nav-menu .sub-menu li {
  background: #ffffff;
  border-bottom: 1px solid var(--color_steel_blue);
  border-left: none;
  padding: 0;
  display: block;
  position: relative;
}

.nav-menu .sub-menu li a {
  text-align: left;
  font-weight: 500;
  color: var(--color_steel_blue);
  font-size: 15px;
  line-height: 1.2;
  display: block;
  padding: 9px 35px 9px 10px;
  transition: all 0.3s ease;
}

.nav-menu .sub-menu li:hover>a {
  background: #e7e7e7;
}

.nav-menu .sub-menu ul {
  position: absolute;
  top: 0px;
  left: 100%;
  border-top: 0;
  padding-left: 0px;
  padding-top: 0;
  filter: alpha(opacity=0);
  width: 180px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(40px, 0);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.211764);
}

.nav-menu .sub-menu li:last-child {
  border-bottom: none;
}

.nav-menu li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translateY(0);
}

.nav-menu .sub-menu li:hover ul {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate(0px, 0);
}

.nav-menu .sub-menu ul li:first-child {
  border-top: none;
}

.menu_expand {
  display: none;
  color: #000;
  transition: all 0.2s ease;
  text-decoration: none;
}

.menu_expand i {
  height: 2px;
  background: var(--color_steel_blue);
  display: block;
  width: 35px;
  border-radius: 5px;
}

.menu_expand i:nth-child(2) {
  margin: 10px 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  opacity: 0;
}

.overlay.active {
  z-index: 100;
  opacity: 1;
}

.nav-menu .sub-menu>.menu-item-has-children>a::before {
  position: absolute;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  transition: all 0.5s ease-in-out;
  transform: rotate(135deg);
}


.nav-menu>.menu-item-has-children>a {
  padding-right: 20px;
  position: relative;
}

.nav-menu>.menu-item-has-children>a::before {
  position: absolute;
  content: "";
  display: block;
  height: 7px;
  width: 7px;
  right: 6px;
  top: 10px;
  transition: all 0.5s ease-in-out;
  transition: all 0.3s ease;
  border-top: 2px solid #1c1e1b;
  border-left: 2px solid #1c1e1b;
  transform: rotate(225deg);
}

.nav-menu>.menu-item-has-children:hover>a::before {
  border-top: 2px solid var(--color_steel_blue);
  border-left: 2px solid var(--color_steel_blue);
}

.cross_button {
  margin-top: 20px;
  display: block;
  text-align: center;
  position: absolute;
  top: 0px;
  right: 20px;
  display: none;
}

.cross_button a {
  font-size: 22px;
  color: #242323;
  cursor: pointer;
  border: 1px solid #242323;
  border-radius: 3px;
  padding: 4px;
  display: inline-block;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 1.2;
}

.m_close_icon:before,
.m_close_icon:after {
  display: block;
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #000000;
  top: 17px;
  left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m_close_icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.haeder_mobile_menu_bottom,
.haeder_mobile_menu_top {
  display: none;
}

.expand_plus {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 35px;
  padding: 25px 10px 2px;
  cursor: pointer;
  z-index: 100;
  display: none;
}

.expand_plus i {
  display: block;
  position: relative;
  width: 12px;
  height: 10px;
  top: -8px;
}

.expand_plus:after {
  margin-right: -2px;
  transform: translate(-50%, -50%) rotate(-135deg);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -2px;
  box-sizing: border-box;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  transform-origin: center;
}

.expand_plus.active:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav_menu_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #0000008f;
  z-index: 20;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.nav_menu_overlay.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.header_mobile_logo {
  max-width: 250px;
  width: 100%;
}

/* banner  */


.banner_section {
  position: relative;

}


.banner_section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_section img,
.banner_section {
  min-height: 530px;
}

/* .banner_section::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.68);
} */

.banner_section_inner {
  position: absolute;
  top: 0px;
  left: 0;
  display: block;
  width: 100%;
  left: 0;
  z-index: 2;
  right: 0;
  margin: 0 auto;
}

.content_top_entry {
  width: 95%;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 55px 0;
  position: relative;
  z-index: 1;
}

.content_top_entry h1 {
  font-size: 68px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  margin-bottom: 11px;
}

.banner_section_inner .content_top_entry h1 {
  visibility: hidden;
}

.content_top_entry p {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  margin-bottom: 12px;

}

.content_top_entry p>span {
  color: var(--color_orange_deep);
}

.banner_btn {
  margin-top: 35px;
}


.list_wph_ctc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list_wph_ctc ul li {
  font-size: 18px;
  font-weight: 400;
  padding-left: 27px;
  position: relative;
  color: var(--color_steel_blue);
  line-height: 1.4;
  margin-bottom: 10px;
}

.list_wph_ctc ul li:last-child {
  margin-bottom: 0px;
}

.list_wph_ctc ul li b {
  display: block;
  font-weight: 500;
}

.list_wph ul li:last-child {
  margin-bottom: 0;
}

.list_wph_ctc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  background-image: url(../images/list-tick-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}


.empowering_ai_section {
  padding: 100px 0;
  background-color: var(--sky_light);
}

.powering_ai_title {
  width: 85%;
}

.powering_ai_content {
  width: calc(50% - 25px);
}

.powering_ai_title.heading_02 h2 {
  font-size: 48px;
  line-height: 1.3em;
  font-weight: 100;
}

.powering_ai_title.heading_02 h2>span {
  max-width: 400px;
  display: block;
}

.powering_ai_content.paragraph_pra p {
  font-size: 18px;
  color: var(--black);
}

.outer_row_precision {
  position: relative;
}

.outer_inner_precision {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding-top: 30px;
}

.circle_top_line_ctc {
  height: 1px;
  top: -41px;
  left: -6px;
  width: 455px;
  background-color: var(--black);
  margin: 0 auto;
  position: relative;
}

.circle_top_line_ctc::before,
.circle_top_line_ctc::after {
  position: absolute;
  content: '';
  right: -21px;
  bottom: 0;
  top: 0px;
  width: 32px;
  height: 41px;
  border: 1px solid var(--black);
  border-radius: 50%;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
}

.circle_top_line_ctc::after {
  right: auto;
  left: -21px;
  border-left: 0;
  border-right: 1px solid;
}


.our_company_section {
  padding: 100px 0;
}

.company_sub_item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.company_sub_item_l {
  width: 47%;
}

.company_sub_item_r {
  width: 53%;
}

.our_cpy_ctc {
  padding-right: 48px;
}


.icon_item_box_ctc {
  display: flex;

  flex-wrap: wrap;
  margin-bottom: 28px;
}

.icon_item_box_ctc:last-child {
  margin-bottom: 0;
}

.icon_item_l {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  padding: 20px;
  background-color: var(--color_gray_light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon_item_box_ctc:hover .icon_item_l {
  background-color: var(--color_orange_deep);
}

.icon_item_r {
  width: calc(100% - 85px);
  padding-left: 20px;
}

.icon_item_l>img {
  width: 100%;
  object-fit: contain;
  height: 46px;
}

.our_iconbox {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.atx_icon_list {

  width: calc(50% - 30px);
}

.atx_icon_list .icon_item_l {
  width: 70px;
  height: 70px;
  background-color: var(--color_steel_blue);
  padding: 11px;
}

.atx_icon_list .icon_item_r {
  width: calc(100% - 70px);

}

.atx_icon_list .icon_item_title.heading_04 h4 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 4px;
}

.cpy_more_btn {
  padding-top: 75px;
}




.our_cpy_ctr {
  height: 100%;
}

.our_cpy_ctr img {
  width: 100%;
}

.cpy_ctr_l {
  width: calc(100% - 190px);
  display: flex;
  gap: 12px;
  flex-direction: column;
  padding-right: 12px;
}

.cpy_ctr_r {
  width: 190px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}


.our_cpy_item>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.our_cpy_item {
  height: 100%;
}

.our_cpy_card {
  background-color: var(--color_orange_deep);
  padding: 28px 18px 24px;
  border-radius: 10px;
}

.cpy_card_icon img {
  max-width: 60px;
}

.cpy_card_icon.paragraph_pra p {
  font-size: 20px;
  color: var(--white);
  margin-top: 15px;
  line-height: 1.4;
}


.our_services_section {
  padding: 100px 0 88px;
}


.our_service_title,
.wy_choose_title {
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  padding-bottom: 30px;
}

.our_service_title.heading_02 h2 {
  line-height: 1.1;
}

.service_blog_new{ display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;  }

.service_blog_new_inner{ width: 50%;
  padding: 12px;}

.service_blog_new_inner .blog_box_outer{     width: 100%;
    padding: 0;}

.service_blog_new_inner_second .blog_box{ display: flex; flex-wrap: wrap; transition: all 0.3s 
ease;}
.service_blog_new_inner_second .blog_box_img{     width: 50%;   padding: 0;}
.service_blog_new_inner_second .blog_box_details{     width: 50%;     padding: 18px 15px 18px;  }

.service_blog_new_inner_second{     display: flex;
    flex-direction: column;
    gap: 40px;}


.blog_container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  justify-content: center;
}

.blog_box_outer {
  width: 33.33%;
  padding: 12px;
}

.blog_box {
  background-color: var(--sky_light);
  border: 1px solid var(--sky_light);
  padding: 11px 10px 15px;
  border-radius: 8px;
  height: 100%;
}

.blog_box_img {
  position: relative;
  padding-top: 50%;
}

.blog_box_img>a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 8px;
}

.blog_box_img>a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog_box:hover .blog_box_img>a img {
  transform: scale(1.1);
}

.blog_box:hover {
  border-color: var(--color_steel_blue);
}

.blog_box_cat {
  position: absolute;
  bottom: -40px;
  left: auto;
  width: 100%;
  right: auto;
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog_box_cat a {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 22px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgb(0 0 0 / 7%);
}

.blog_box_cat a>img {
  width: 100%;
}


.blog_box_title h4 {
  font-size: 28px;
  font-weight: 100;
}

.blog_box_title h4 a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.blog_box_contant {
  padding: 5px 0 30px;
  transition: all 0.3s ease;
}

.blog_box_contant p {
  font-weight: 300;
}


.blog_box_btn a {
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--black);
  position: relative;
  line-height: 1;
  color: var(--black);
  padding: 10px 30px 10px 54px;
  border-radius: 32px;
  transition: all 0.5s ease;
}

.blog_box_btn a span {
  position: absolute;
  content: '';
  width: 40px;
  left: 0;
  height: 100%;
  top: 0;
  color: inherit;
  bottom: 0;
  transition: left 0.3s ease;
}

.blog_box_btn a span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: left 0.3s ease;
}

.blog_box_btn a:hover {
  color: var(--color_steel_blue);
  padding: 10px 54px 10px 30px;
  border-color: var(--color_steel_blue);
}

.blog_box_btn a:hover span {
  left: calc(100% - 40px);
}

.blog_box_btn a:hover span img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(29%) saturate(1147%) hue-rotate(174deg) brightness(95%) contrast(89%);
}

.blog_box:hover .blog_box_btn a span {
  left: calc(100% - 40px);
}

.blog_box:hover .blog_box_btn a {
  color: var(--color_steel_blue);
  padding: 10px 54px 10px 30px;
  border-color: var(--color_steel_blue);
}

.blog_box:hover .blog_box_btn a span img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(29%) saturate(1147%) hue-rotate(174deg) brightness(95%) contrast(89%);
}



.blog_box:hover .blog_box_cat a {
  background: var(--color_steel_blue);
}

.blog_box:hover .blog_box_cat a>img {
  filter: brightness(0) invert(1);
}

.blog_box_details {
  padding: 55px 22px 30px;
  text-align: left;
}


.wy_choose_out {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wy_choose_blog {
  width: calc(50% - 8px);
}

.wy_choose_ctc {
  width: calc(50% - (100% - 1240px) / 2);
  margin-left: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wy_top_tt_bg {
  background-color: var(--color_steel_blue);
  width: 100%;
}



.wy_top_tt_bg .heading_03 h3 {
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
  padding-bottom: 0px;
  font-weight: 500;
}

.wy_choose_blog:nth-child(odd) .wy_top_tt_bg .wy_choose_ctc {
  padding: 12px 157px 12px 0;
}

.wy_choose_blog:nth-child(even) .wy_top_tt_bg .wy_choose_ctc {
  padding: 12px 0px 12px 157px;
}



.wy_choose_blog:nth-child(odd) .wy_choose_ctc {
  margin-left: auto;
  margin-right: 0;
  padding: 25px 157px 0 0;
}

.wy_choose_blog:nth-child(even) .wy_choose_ctc {
  margin-right: auto;
  margin-left: 0;
  padding: 25px 0px 0 157px;
}

.wy_choose_info {
  height: 100%;
  position: relative;
  min-height: 500px;
  z-index: 3;
}

.wy_choose_img {
  width: 100%;

}

.wy_choose_img img {
  width: 100%;
  height: 490px;
  object-fit: cover;

}



.wy_choose_ctc.heading_04 h4 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}



.list_solutions_ctc {
  width: 100%;
  padding: 40px 0px;
  background-color: var(--color_gray_light);
}

.investment_ctc_title.heading_02 h2 {
  color: var(--white);
  margin: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3em;
}


.why_choose_section {
  padding: 0 0 100px;
}



.our_testimonials_section {
  padding: 100px 0;
  background-color: var(--color_steel_blue);
  position: relative;
}

.our_testimonials_section::after,
.our_testimonials_section::before {
  position: absolute;
  top: 0;
  left: 0px;
  content: '';
  width: 50%;
  height: 100%;
  background-image: url(../images/testbg-element-img.svg);
  opacity: 0.7;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: -475px;
  background-repeat: no-repeat;
  z-index: 0;
}

.our_testimonials_section::before {
  left: auto;
  right: 0px;
  transform: rotate(-180deg);
}


.our_testimonials_sub {
  position: relative;
  z-index: 1;
}

.our_tls_title {
  padding-bottom: 25px;
}

.our_tls_title>.heading_02 {
  max-width: 70%;

}

.our_tls_title>.heading_03 h3,
.our_tls_title>.heading_02 h2 {
  color: var(--white);
}

.our_tls_title>.heading_02 h2 {
  line-height: 1.1em;
}

.tls_slide_black {
  position: relative;

}


.tls_img_user_row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}


.tls_img_user img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.img_user_title_sl {
  width: calc(100% - 95px);
}

.img_user_title_ft h5 {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
}

.img_user_title_ft h5 span {
  font-size: 16px;
  display: block;
  color: #2a2a2a;
}

.img_user_title_ft {
  margin-top: 8px;
}

.tls_swiper_content {
  padding: 25px 20px 30px;
  border-radius: 11px;
  background-color: var(--white);
}

.testimonials_reviews {
  margin-bottom: 25px;
}

.testimonials_reviews img {
  max-width: 36px;
}

.tls_img_user {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our_tls_arrow {
  position: relative;
}

.our_tls_arrow_next,
.our_tls_arrow_prev {

  border-radius: 20px;
  width: 85px;
  height: 40px;
  top: -26px;
  border: 1px solid var(--white);
  transition: all 0.3s ease;
}

.our_tls_arrow_next::after,
.our_tls_arrow_prev::after {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}

.our_tls_arrow_next {
  right: 0px;
}

.our_tls_arrow_prev {
  right: 92px;
  left: auto;
}


.from_startups_logo {
  padding: 100px 0 70px;
}

.fr_startup_title.heading_03 {
  text-align: center;
}

.fr_startup_title.heading_03 h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  padding-bottom: 0;
  text-transform: none;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  gap: 25px;

}

.fr_startup_title.heading_03 h3::after,
.fr_startup_title.heading_03 h3::before {
  content: '';
  flex: 1;
  width: 100%;
  height: 1px;
  background-color: var(--black);
}


.client_logo_table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px;
  margin-top: 40px;

}

.client_logo_item {
  width: 20%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.client_logo_item a {
  display: block;
}

.ct_logo_info {
  height: 100%;
  padding: 15px 25px;
  box-shadow: rgba(0, 0, 0, 0.30) 0px 4px 25px;
  border-radius: 8px;
}


.et_logo_ctc {
  position: relative;
  display: block;
  padding-top: 40%;
}

.et_logo_ctc>img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  mix-blend-mode: multiply;
  object-fit: contain;
  border: none;
}


/* get started  */
.get_started_sec {
  padding: 0px 0 100px;
}

.get_started_title {
  text-align: center;
  margin-bottom: 70px;
}

.get_started_container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  justify-content: center;
  counter-reset: step;
  gap: 40px 34px;
}

.get_started_box {
  width: calc(33.33% - 23.3px);
  text-align: center;
  counter-increment: step;
}

.get_started_number {
  margin: 0 auto;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.get_started_content {
  max-width: 85%;
  margin: 0 auto;
}


.get_started_btn {
  text-align: center;
  margin-top: 40px;
}

.get_started_number::before {
  content: counter(step);
  font-size: 140px;
  line-height: 140px;
  font-family: 'Advert';
  position: relative;
  display: inline-block;
  color: var(--color_steel_blue);
  font-weight: 600;
  top: 2px;
}


.get_started_btn .site_button {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--black);
  background-image: url(../images/site-fa-btn-arrow-b.svg);
}

.get_started_btn .site_button:hover {
  background-color: var(--color_steel_blue);
  color: var(--white);
  border-color: var(--color_steel_blue);
  background-image: url(../images/site-fa-btn-arrow-n.svg);
}


/**Footer Top**/
.f__top_info_outer {
  background-color: var(--color_orange_deep);
  border-radius: 10px;
  position: relative;
  bottom: -10px;
}

.f__top_info {
  color: var(--white);
  padding: 70px 60px 70px 60px;
  position: relative;
  overflow: hidden;
}

.f__top_info_outer:after {
  position: absolute;
  top: 0;
  left: 0px;
  content: '';
  width: 50%;
  border-radius: 12px;
  height: 100%;
  background-image: url('../images/bg-orange-element-img.svg');
  opacity: 0.4;
  transition: all 0.3s ease;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  z-index: 0;
}


.f__top_info__content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  z-index: 2;
  align-items: center;
  position: relative;
}

.f__top_info__text.heading_02 h2 {
  color: var(--white);
  font-weight: 100;
  font-size: 42px;

}

.f__top_info__text.heading_03 h3 {
  color: var(--white);


}


/* .f__top_info__text h2 { font-size: 36px; font-weight: 500; font-family: "Poppins", sans-serif;line-height: 1.2em;margin-bottom: 10px;} */
.f__top_info__text {
  width: 63%;
}

.f__top_info__contact {
  width: 37%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.f__top_info__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f__top_info__icon {
  background-color: var(--white);
  border-radius: 50%;
  padding: 17px;
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
}

.f__top_info__icon img {
  width: 100%;
}

.f__top_info__item_content {
  width: calc(100% - 75px);
}

.f__top_info__label {
  font-size: 16px;
  color: #dcdada;
  margin-bottom: 5px;
  font-family: "Outfit", sans-serif;
}

.f__top_info__info a {
  font-size: 22px;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  transition: all 0.3s ease;
  word-break: break-all;
}

.f__top_info__info a:hover {
  opacity: 0.7;
}


/**Footer **/
.footer__container_outer {
  background-color: #172335;
  color: var(--white);
  padding: 5px 0 30px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 110px 0 100px;
}

.footer__branding {
  width: 280px;
  padding: 0px 50px 0 0;
  margin-right: 40px;
}


.footer__logo img {
  max-width: 250px;
  width: 100%;
}


.footer__links {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 70px;
  font-family: "Outfit", sans-serif;
  width: calc(100% - 280px);
  flex-wrap: wrap;
}

.footer__column {
  width: calc(33.33% - 46.7px);

}

.footer__heading {
  font-weight: 100;
  line-height: 1.4;
  font-size: 20px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  position: relative;
  max-width: 201px;
}

.footer__heading::after {
  position: absolute;
  content: '';
  bottom: 0;
  height: 1px;
  width: 100%;
  left: 0;
  background-color: #294f81;
}

.footer__heading::before {
  position: absolute;
  content: '';
  bottom: 0;
  height: 1px;
  width: 44%;
  right: 0px;
  background-color: var(--white);
  z-index: 1;
}

.footer__column a.tel_ft_size {
  font-size: 20px;
  color: var(--white);
  line-height: 1;
}

.footer__column a.mailto_ft_size {
  word-break: break-all;
}

.footer__column ul {
  list-style: none;
  padding: 0;
}

.footer__column li {
  margin-bottom: 15px;
}

.footer__column li:last-child {
  margin-bottom: 0px;
}

.footer__column a,
.footer__column.timings_list ul li {
  color: #c0c0c0;
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.4em;
  display: inline-block;
}

.footer__column.timings_list ul li {
  margin-bottom: 10px;
  letter-spacing: 1px;
  /* display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px; */
}

.approach_inner_img {
  width: 92px;
  height: 92px;
  border-radius: 100%;
  align-items: center;
  display: flex;
  background-color: var(--color_steel_blue);
  justify-content: center;
}

.footer__column.timings_list ul li:last-child {
  margin-bottom: 0;
}

.footer__column a:hover {
  color: var(--color_orange_deep);
}


.social_links_ft {
  margin-top: 50px;
}

.footer_ctc_us ul li {
  display: flex;
  align-items: self-start;
  gap: 13px;
}


.footer_ctc_us ul li>span {
  position: relative;
  top: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.footer_ctc_us ul li>span svg {
  width: 19px;
}

.footer_ctc_us .social_links_ft ul li {
  align-items: center;
}

.footer_ctc_us .social_links_ft ul li>span {
  top: auto;
}


.footer__bottom p {
  font-size: 14px;
  padding-top: 25px;
  color: #e5ece9;
  font-weight: 200;

}

.footer__bottom p a {
  color: #e5ece9;
  transition: transform 0.3s ease;
}

.footer__bottom p a:hover {
  color: var(--color_orange_deep);
}

.footer__bottom {
  border-top: 1px solid var(--white);
}


.no_overflow {
  overflow: hidden;
}

.sub-menu-toggle {
  display: none;
}



.form_field_full {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.form_field {
  width: 100%;
}

.fm_input {
  display: block;
  outline: none;
  border: 0;
  border: 1px solid var(--color_steel_blue);
  width: 100%;
  border-radius: 14px;
  background-color: var(--white);
  padding: 15px 16px 15px;
  color: #000;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  box-sizing: border-box;
}

.fm_input::placeholder {
  color: #282828;
}

.fm_input:focus {
  border-color: var(--color_orange_deep);
}

.fn_input_textarea {
  resize: none;
  height: 155px;
}

.submit_fr_info {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
  justify-content: center;
}

.list_add_ft .elementor-icon-list-item a {
  word-break: break-all;
}

.wpcf7-spinner {
  position: absolute;
}

.ele_full_height {
  height: 100%;
}

.logo_link_hi .elementor-widget-image>a {
  height: 100%;
}



/* ///////////// */





.page_title_section {
  position: relative;
  overflow: hidden;
}

.page_title_section img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;

}

.page_title_section_inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.full_height {
  height: 100%;
}

.page_title_section_text {
  width: 100%;
  height: 100%;
  display: table;
  margin: auto;
}

.txt_inn {
  display: table-cell;
  vertical-align: middle;

  padding: 0;

}

.page_title_section_text.content_top_entry {
  padding: 0;
}

.page_title_section_text .txt_inn h1 {


  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0;



}

.page_title_section_inner:after {
  left: 0px;
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #00000052;
  top: 0px;
}


.top_banner_sec_outer{background: #172335; padding: 8px 0;}
.top_banner_sec_inner p{ color: #fff; font-size: 16px; text-align: center;}





.get_started_sec.our_testimonials_section{padding-top: 100px;}
.get_started_sec.our_testimonials_section .heading_02 h2, .get_started_sec.our_testimonials_section .get_started_number::before, .get_started_sec.our_testimonials_section .heading_04 h4, .get_started_sec.our_testimonials_section .paragraph_pra p{color: #fff;}
.get_started_sec.our_testimonials_section .get_started_inner{
  z-index: 1;
  position: relative;
}

.get_started_sec.our_testimonials_section .get_started_btn .site_button:hover{border-color: var(--white);}



.privacy_policy_sec a{color:#d55a2d !important;}
.privacy_policy_sec ul{list-style-type: disc; padding-left: 30px;}
.privacy_policy_sec ul li{padding: 4px 0;}
.privacy_policy_sec [data-custom-class='link'], .privacy_policy_sec [data-custom-class='link'] * {color: #d55a2d !important;}

@media screen and (max-width: 1350px) {


  .nav-menu {
    padding-right: 5px;
  }

  .wy_choose_blog:nth-child(odd) .wy_choose_ctc {

    padding: 20px 160px 20px 20px;
  }

  .wy_choose_blog:nth-child(even) .wy_choose_ctc {

    padding: 20px 20px 20px 160px;
  }

  .wkg_prs_ctc {

    padding-left: 20px;

  }

  .get_header_btn {
    margin-right: 10px;
  }

  .nav-menu>li {
    margin: 0 4px;
  }

  .wy_choose_blog:nth-child(odd) .wy_top_tt_bg .wy_choose_ctc {
    padding: 12px 157px 12px 20px;
  }

  .wy_choose_blog:nth-child(even) .wy_top_tt_bg .wy_choose_ctc {
    padding: 12px 20px 12px 157px;
  }
  /* .nav-menu>li>a{ font-size: 15px; padding: 8px 5px;} */

}

@media screen and (max-width: 1280px) {
  .menu_expand {
    display: inline-block;
  }

  .nav_menu_container {
    display: block;
    position: fixed;
    top: 0;
    left: -220px;
    bottom: 0;
    z-index: 100;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    text-align: left;
    margin-right: 0px;
    background: #ffffff;
    width: 100%;
    padding: 20px 20px 45px 0;
    max-width: 600px;
  }

  .nav_menu_container.state-active {
    clear: both;
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .header_sec.active .nav_menu_container {
    padding: 0;
  }

  .header_img_sec {
    width: 50%;
    order: 1;
  }

  .header_img_sec a {
    max-width: 254px;
  }

  .header_btn_sec {
    width: 50%;
    order: 2;
  }

  .haeder_mobile_menu_top {
    display: inline-block;
    width: 100%;
    padding-left: 20px;
  }

  .expand_plus,
  .cross_button {
    display: block;
  }

  .nav-menu {
    padding: 50px 0 20px;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-menu a {
    width: 100%;
  }

  .nav-menu .sub-menu li:hover>a {
    background: none;
  }

  .nav-menu .sub-menu li {
    border: none;
  }

  .nav-menu .sub-menu>.menu-item-has-children>a::before,
  .nav-menu>.menu-item-has-children>a::before,
  .nav-menu>li>a:after {
    display: none;
  }

  .nav-menu>li.current-menu-item>a,
  .nav-menu .sub-menu li a,
  .nav-menu>li>a {
    padding: 10px 20px;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 1.2em;
  }

  .nav-menu .sub-menu li ul,
  .nav-menu .sub-menu {
    padding-left: 20px;
    width: auto;
    position: relative;
    display: none;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    left: 0;
    transform: translate(0, 0);
    top: 0;
    transition: none;
  }

  .header_mobile_menu {
    display: flex;
  }

  .header_btn_sec {
    gap: 25px;
  }

  .header_sec {
    padding: 20px 0 20px;

  }

  .header_mobile_logo {

    padding-top: 15px;
  }


  .site_button {

    padding: 13px 50px 13px 22px;
  }


  .cart_box {
    width: 50px;
    height: 50px;
  }

  .content_top_entry h1 {
    font-size: 55px;
    margin-bottom: 23px;
    line-height: 1.2;
  }


  .empowering_ai_section {
    padding: 80px 0;

  }

  .powering_ai_title {
    width: 100%;
  }

  .powering_ai_title.heading_02 h2 {
    font-size: 42px;

  }

  .powering_ai_title.heading_02 h2>span {
    max-width: 362px;

  }

  .circle_top_line_ctc {
    width: 353px;
    left: 38px;
    top: -37px;
  }

  .outer_inner_precision {

    gap: 40px;
    padding-top: 20px;
  }

  .powering_ai_content {
    width: calc(50% - 20px);
  }



  .our_company_section {
    padding: 80px 0;
  }

  .heading_02 h2 {
    font-size: 45px;

  }

  .our_cpy_ctc {
    padding-right: 40px;
  }

  .cpy_ctr_l {
    width: calc(100% - 175px);

  }

  .cpy_card_icon img {
    max-width: 50px;
  }

  .cpy_card_icon.paragraph_pra p {
    font-size: 18px;

  }

  .cpy_ctr_r {
    width: 175px;

  }



  .company_sub_item {

    align-items: unset;

  }

  .our_service_title,
  .wy_choose_title {

    padding-bottom: 20px;
  }

  .blog_box_cat a {
    width: 85px;
    height: 85px;

    padding: 18px;
  }

  .blog_box_cat {

    bottom: -33px;
  }

  .blog_box_details {
    padding: 44px 10px 30px;

  }

  .blog_box_title h4 {
    font-size: 24px;

  }

  .our_services_section {
    padding: 80px 0 80px;
  }

  .wy_choose_blog:nth-child(odd) .wy_choose_ctc {

    padding: 20px 40px 20px 20px;
  }

  .wy_choose_blog:nth-child(even) .wy_choose_ctc {

    padding: 20px 20px 20px 40px;
  }

  .wy_choose_ctc {
    width: auto;
  }

  .wy_choose_info {

    min-height: 385px;

  }

  .wy_choose_ctc.heading_04 h4 {
    padding-bottom: 8px;
  }

  .list_solutions_ctc {

    padding: 30px 0px 30px;

  }



  .wkg_prs_ctc {
    width: auto;
    padding-right: 40px;
    padding-bottom: 80px;
    padding-top: 80px;

  }

  .icon_item_l {
    width: 75px;
    height: 75px;

    padding: 18px;

  }

  .our_testimonials_section {
    padding: 80px 0;

  }

  .our_tls_title>.heading_02 {
    max-width: 75%;
  }

  .from_startups_logo {
    padding: 80px 0 50px;
  }

  .get_started_number::before {

    font-size: 110px;
    line-height: 110px;
  }

  .get_started_content {
    max-width: 100%;

  }

  .get_started_title {

    margin-bottom: 50px;
  }

  .get_started_sec {
    padding: 0px 0 80px;
  }

  .get_started_btn {

    margin-top: 45px;
  }

  .f__top_info__text.heading_02 h2 {

    font-size: 36px;
  }


  .f__top_info {

    padding: 60px 45px 60px 45px;
  }

  .f__top_info__text {
    width: 55%;
  }

  .f__top_info__contact {
    width: 45%;
  }

  .footer__content {

    padding: 80px 0 70px;
  }

  .footer__branding {
    width: 250px;
    margin-right: 25px;
    padding: 0px 20px 0 0;

  }

  .footer__column.timings_list ul li {

    letter-spacing: 0;
  }

  .footer__links {

    gap: 40px;

    width: calc(100% - 250px);

  }

  .footer__column {
    width: calc(33.33% - 26.7px);
  }


  .sticky_header_inner .header_img_sec {
    width: 50%;
  }

  .sticky_header_inner {
    padding: 15px 0 15px;
  }

  .get_header_btn {
    margin-right: 15px;
  }

  .our_iconbox {

    gap: 40px;

  }

  .atx_icon_list {
    width: calc(50% - 20px);
  }

  .cpy_more_btn {
    padding-top: 60px;
  }

  .investment_ctc_title.heading_02 h2 {

    font-size: 32px;

  }

  .wy_top_tt_bg .heading_03 h3 {
    font-size: 22px;

  }

  .wy_choose_img img {

    height: 325px;

  }

  .why_choose_section {
    padding: 0 0 60px;
  }

  .wy_choose_blog:nth-child(odd) .wy_top_tt_bg .wy_choose_ctc {
    padding: 12px 80px 12px 20px;
  }

  .wy_choose_blog:nth-child(even) .wy_top_tt_bg .wy_choose_ctc {
    padding: 12px 20px 12px 40px;
  }

  .img_user_title_sl {
    width: calc(100% - 90px);
  }

  .testimonials_reviews {
    margin-bottom: 20px;
  }

  .single_property_h .txt_inn h1 {

    margin-bottom: 40px;
  }
  .get_started_sec.our_testimonials_section{padding-top: 70px;}
}

@media screen and (max-width: 992px) {

  .service_blog_new_inner {
    width: 100%;
     
}


  .site_button {
    padding: 13px 43px 13px 20px;
    font-size: 16px;
    background-position: calc(100% - 16px) center;
    background-size: 18px;
  }

  .content_top_entry h1 {
    font-size: 45px;
    margin-bottom: 20px;

  }

  .header_btn.site_button {
    padding: 13px 43px 13px 20px;

  }

  .content_top_entry {
    padding: 40px 0;
  }

  .banner_section img,
  .banner_section {
    min-height: 415px;
  }

  .empowering_ai_section {
    padding: 70px 0;
  }

  .circle_top_line_ctc {
    display: none;
  }

  .outer_inner_precision {
    gap: 15px;
    padding-top: 5px;
  }

  .powering_ai_content {
    width: 100%;
  }

  .powering_ai_title {
    width: 100%;
  }

  .powering_ai_title.heading_02 h2 {
    font-size: 38px;
  }

  .our_company_section {
    padding: 70px 0;
  }

  .company_sub_item_l,
  .company_sub_item_r {
    width: 100%;
  }

  .heading_02 h2 {
    font-size: 38px;
  }

  .atx_icon_list .icon_item_l {
    width: 60px;
    height: 60px;
    padding: 13px;
  }

  .atx_icon_list .icon_item_r {
    width: calc(100% - 60px);
  }

  .our_cpy_ctc {
    padding-right: 0;
  }

  .company_sub_item {
    gap: 30px;
  }

  .our_iconbox {
    gap: 30px;
  }

  .atx_icon_list {
    width: calc(50% - 15px);
  }

  .cpy_more_btn {
    padding-top: 45px;
  }

  .cpy_ctr_r {
    width: 230px;
  }

  .investment_ctc_title.heading_02 h2 {
    font-size: 27px;
  }

  .cpy_ctr_l {
    width: calc(100% - 230px);
  }

  .our_service_title,
  .wy_choose_title {
    padding-bottom: 10px;
  }

  .blog_box_outer {
    width: 50%;

  }

  .our_services_section {
    padding: 70px 0 58px;
  }

  .wy_choose_info {
    min-height: 300px;
  }


  .wy_choose_blog:nth-child(odd) .wy_choose_ctc {
    padding: 15px 25px 20px 20px;
  }

  .wy_choose_blog:nth-child(even) .wy_choose_ctc {
    padding: 15px 20px 20px 30px;
  }

  .wy_choose_ctc.heading_04 h4 {
    font-size: 18px;

    line-height: 1.3;
  }

  .wy_top_tt_bg .heading_03 h3 {
    font-size: 20px;
  }

  .why_choose_section {
    padding: 0 0 50px;
  }

  .list_solutions_ctc {
    padding: 25px 0px 25px;
  }

  .wy_choose_title {
    padding-bottom: 20px;
  }

  .wy_choose_img img {
    height: 255px;
  }

  .wy_choose_blog:nth-child(odd) .wy_top_tt_bg .wy_choose_ctc {
    padding: 10px 40px 10px 20px;
  }

  .wy_choose_blog:nth-child(even) .wy_top_tt_bg .wy_choose_ctc {
    padding: 10px 20px 10px 30px;
  }


  .working_sub_item_l,
  .wkg_sub_item_r {
    width: 100%;
  }

  .wkg_prs_ctc {

    padding-right: 20px;
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .icon_item_l {
    width: 65px;
    height: 65px;
    padding: 15px;
  }

  .working_icon_list {
    padding-top: 22px;
  }

  .wkg_sub_item_r {
    display: none;
  }

  .our_testimonials_section {
    padding: 70px 0;
  }

  .testimonials_reviews {
    margin-bottom: 20px;
  }

  .img_user_title_ft {
    margin-top: 0px;
  }

  .from_startups_logo {
    padding: 70px 0 50px;
  }

  .client_logo_table {

    margin: 0 -10px;
    margin-top: 20px;
  }

  .client_logo_item {
    width: 20%;
    padding: 0 10px;
    margin-bottom: 20px;
  }



  .ct_logo_info {

    padding: 7px 11px;

  }

  .et_logo_ctc {

    padding-top: 55%;
  }

  .get_started_title {
    margin-bottom: 35px;
  }

  .get_started_number::before {
    font-size: 82px;
    line-height: 82px;
  }

  .heading_04 h4 {
    font-size: 22px;
  }

  .get_started_sec {
    padding: 0px 0 70px;
  }

  .f__top_info__content {
    flex-wrap: wrap;
    gap: 20px;
  }

  .f__top_info__text {
    width: 100%;
  }

  .f__top_info__contact {
    width: 100%;
  }

  .heading_03 h3 {
    padding-bottom: 16px;
  }

  .f__top_info {
    padding: 50px 40px 50px 40px;
  }

  .footer__content {
    flex-wrap: wrap;
    padding: 70px 0 30px;
  }

  .footer__branding {
    width: 239px;
    margin-right: 0;
    margin-bottom: 40px;

  }

  .footer__logo img {
    max-width: 272px;

  }

  .footer__links {
    flex: auto;
    width: 100%;
  }

  .f__top_info__text.heading_02 h2 {
    font-size: 32px;
  }

  .f__top_info__icon {

    padding: 15px;

    width: 50px;
    height: 50px;

  }

  .powering_ai_title.heading_02 h2>span {
    display: unset;
    max-width: 100%;
  }

  .f__top_info__item_content {
    width: calc(100% - 65px);
  }

  .header_btn_sec {
    gap: 20px;
  }

  .get_header_btn {
    margin-right: 10px;
  }

  .content_top_entry p {
    font-size: 18px;
  }

  .sticky_header_inner {
    padding: 18px 0 18px;
  }

  .page_title_section img {
    min-height: 220px;
    object-fit: cover;
    max-height: 220px;
  }

  .cart_icon.login_info svg,
  .cart_icon.login_info img {
    width: 22px;
    height: 21px;
  }

  .approach_inner_img {
    width: 70px;
    height: 70px;
  }
}

@media screen and (max-width: 767px) {

  .header_btn,
  .get_header_btn {
    display: none;
  }

  .haeder_mobile_menu_bottom {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    padding-left: 20px;
  }

  .header_sec, .sticky_header_inner {
    padding: 10px 0;
  }

  .content_top_entry h1 {
    font-size: 34px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .content_top_entry p {
    font-size: 16px;
  }

  .banner_btn {
    margin-top: 15px;
  }

  .content_top_entry {
    width: 100%;
    padding: 30px 0;
  }

  .banner_section img,
  .banner_section {
    min-height: 360px;
  }

  .atx_icon_list {
    width: 100%;
  }

  .company_sub_item {

    margin-bottom: 40px;
  }

  .cpy_more_btn {
    padding-top: 40px;
  }

  .investment_ctc_title.heading_02 h2 {
    font-size: 24px;
  }

  .our_service_title,
  .wy_choose_title {

    max-width: 100%;
  }

  .wy_choose_out {

    gap: 20px;
  }

  .wy_choose_blog:nth-child(even) .wy_top_tt_bg .wy_choose_ctc {
    padding: 10px 20px 10px 20px;
  }

  .powering_ai_title.heading_02 h2 {
    font-size: 32px;
  }

  .powering_ai_content {

    padding-top: 0px;
  }

  .heading_02 h2 {
    font-size: 35px;
  }

  .icon_item_r {

    padding-left: 16px;
  }



  .cpy_ctr_r {
    width: 180px;
  }

  .cpy_ctr_l {
    width: calc(100% - 180px);
  }

  .blog_box_outer {
    width: 100%;
  }


  .wy_choose_blog {
    width: 100%;
  }

  .wy_choose_info {
    min-height: 250px;
  }

  .our_tls_title>.heading_02 h2 br {
    display: none;
  }

  .our_tls_title>.heading_02 h2 {
    margin-bottom: 40px;
  }

  .our_tls_arrow_next,
  .our_tls_arrow_prev {

    width: 70px;
    height: 36px;
    top: -16px;
  }

  .our_tls_arrow_prev {
    right: 80px;

  }

  .tls_swiper_content {
    padding: 20px 15px 25px;

  }

  .testimonials_reviews {
    margin-bottom: 15px;
  }

  .tls_img_user {
    width: 60px;
    height: 60px;
    margin-right: 0;
  }

  .img_user_title_sl {
    width: calc(100% - 75px);
  }


  .fr_startup_title.heading_03 h3::after,
  .fr_startup_title.heading_03 h3::before {
    display: none;
  }

  .client_logo_item {
    width: 33.33%;
  }

  .get_started_container {

    gap: 35px 30px;
  }

  .get_started_box {
    width: calc(50% - 15px);
  }

  .get_started_number::before {
    font-size: 72px;
    line-height: 72px;
  }


  .get_started_btn {
    margin-top: 37px;
  }

  .f__top_info__text.heading_02 h2 {
    font-size: 30px;
  }

  .f__top_info {
    padding: 40px;
  }

  .f__top_info_outer:after {

    width: 100%;
  }

  .footer__column {
    width: calc(50% - 15px);
  }


  .social_links_ft {
    margin-top: 38px;
  }

  .footer__heading {

    font-size: 18px;
    margin-bottom: 22px;
    padding-bottom: 7px;
  }

  .footer__links {

    gap: 30px;
  }

  .footer__content {

    padding: 70px 0 30px;
  }

  .footer__bottom p {

    padding-top: 20px;

  }

  .footer__column.footer_ctc_us {
    order: 3;
    width: 100%;
  }

  .footer__container_outer {

    padding: 0px 0 20px;
  }

  .footer__branding {

    margin-bottom: 30px;
  }

  .f__top_info__item_content {
    width: calc(100% - 60px);
  }

  .wy_choose_blog:nth-child(even) .wy_choose_ctc {
    padding: 15px 20px 20px;
  }

  .wy_choose_blog:nth-child(odd) .wy_choose_ctc {
    padding: 15px 20px 20px 20px;
  }

  .sticky_header_inner .header_img_sec a {
    max-width: 188px;
  }

  .cart_box {
    width: 45px;
    height: 45px;
  }

  .wy_choose_blog:nth-child(odd) .wy_top_tt_bg .wy_choose_ctc {
    padding: 10px 20px 10px 20px;
  }

  .single_property_h .txt_inn h1 {
    margin-bottom: 30px;
  }

  .page_title_section img {
    min-height: 150px;
  }

  .et_logo_ctc {
    padding-top: 48%;
  }

}


@media screen and (max-width: 479px) {

  .our_tls_title>.heading_02 h2 {
    margin-bottom: 20px;
  }

  .header_mobile_menu {

    width: 100%;

    justify-content: end;
  }

  .header_mobile_logo {
    max-width: 50%;
  }

  .header_img_sec {
    width: 62%;
  }

  .banner_section img,
  .banner_section {
    min-height: 375px;
  }

  .header_btn_sec {
    width: 38%;
    flex-wrap: wrap;
    gap: 15px 12px;
  }

  .cart_box {
    width: 36px;
    height: 36px;
  }

  .content_top_entry {

    padding: 25px 0;
  }

  .cart_icon.login_info svg,
  .cart_icon.login_info img {
    width: 18px;
    height: 18px;
  }

  .content_top_entry h1 {
    font-size: 30px;


  }

  .banner_btn {
    margin-top: 25px;
  }

  .our_cpy_ctr img {

    height: 175px;
    object-fit: cover;
  }

  .empowering_ai_section {
    padding: 60px 0;
  }

  .powering_ai_title.heading_02 h2 {
    font-size: 27px;
  }

  .powering_ai_content.paragraph_pra p {
    font-size: 16px;
  }

  .our_company_section {
    padding: 60px 0;
  }

  .heading_02 h2 {
    font-size: 32px;
  }

  .heading_03 h3 {
    padding-bottom: 14px;
  }



  .atx_icon_list .icon_item_l {
    width: 55px;
    height: 55px;
    padding: 9px;
  }

  .atx_icon_list .icon_item_r {
    width: calc(100% - 55px);
  }

  .icon_item_r {
    padding-left: 12px;
  }

  .icon_item_box_ctc {

    margin-bottom: 22px;
  }

  .cpy_more_btn {
    padding-top: 30px;
  }

  .investment_ctc_title.heading_02 h2 {
    font-size: 20px;
  }

  .cpy_ctr_r {
    width: 130px;
    gap: 8px;
  }

  .cpy_ctr_l {
    width: calc(100% - 130px);
    padding-right: 8px;
    gap: 8px
  }

  .cpy_card_icon.paragraph_pra p {
    font-size: 16px;
  }

  .cpy_card_icon img {
    max-width: 42px;
  }

  .our_cpy_card {

    padding: 15px 15px 15px;

  }

  .company_sub_item {
    gap: 30px;
  }

  .our_service_title,
  .wy_choose_title {

    max-width: 100%;
  }

  .wy_choose_title {
    padding-bottom: 15px;
  }

  .wy_choose_img img {
    height: 210px;
  }

  .our_services_section {
    padding: 60px 0 48px;
  }

  .blog_box_title h4 br {
    display: none;
  }

  .list_solutions_ctc {
    padding: 20px 0px 20px;
  }

  .wkg_prs_ctc {

    padding-bottom: 60px;
    padding-top: 60px;
  }

  .icon_item_l {
    width: 60px;
    height: 60px;
    padding: 13px;
  }

  .icon_item_r {
    width: calc(100% - 60px);

  }

  .our_testimonials_section {
    padding: 60px 0;
  }

  .our_tls_title>.heading_02 {
    max-width: 100%;
  }

  .our_tls_title {
    padding-bottom: 50px;
  }

  .our_tls_arrow_next,
  .our_tls_arrow_prev {

    top: 25px;
  }

  .our_tls_title {
    padding-bottom: 63px;
  }

  .our_tls_arrow_next::after,
  .our_tls_arrow_prev::after {
    font-size: 18px;
  }

  .testimonials_reviews img {
    max-width: 29px;
  }

  .testimonials_reviews {
    margin-bottom: 10px;
  }

  .from_startups_logo {
    padding: 60px 0 40px;
  }

  .wy_top_tt_bg .heading_03 h3 {
    font-size: 18px;
  }

  .client_logo_item {
    width: 50%;
  }

  .why_choose_section {
    padding: 0 0 40px;
  }

  .et_logo_ctc {
    padding-top: 43%;
  }

  .get_started_box {
    width: 100%;
  }

  .get_started_container {
    gap: 30px 30px;
  }

  .get_started_title {
    margin-bottom: 30px;
  }

  .get_started_sec {
    padding: 0px 0 60px;
  }

  .get_started_btn {
    margin-top: 32px;
  }

  .f__top_info {
    padding: 20px 0px;
  }

  .f__top_info__icon {
    padding: 13px;
    width: 45px;
    height: 45px;
  }

  .f__top_info__item_content {
    width: calc(100% - 55px);
  }

  .f__top_info__label {

    margin-bottom: 3px;

  }

  .approach_inner_img {
    width: 66px;
    height: 66px;
  }

  .f__top_info__text.heading_02 h2 {
    font-size: 30px;
  }

  .f__top_info__content {

    gap: 15px;
  }

  .f__top_info__info a {
    font-size: 17px;
  }

  .f__top_info__contact {

    gap: 20px;
  }

  .footer__column {
    width: 100%;
  }

  .footer__links {
    gap: 24px;
  }

  .social_links_ft {
    margin-top: 30px;
  }

  .footer__heading {
    max-width: 177px;
    margin-bottom: 15px;
    padding-bottom: 6px;
  }

  .footer__column a.tel_ft_size {
    font-size: 18px;

  }

  .nav-menu {
    padding: 35px 0 15px;
  }
  
  .sticky_header_inner .header_img_sec {
        width: 62%;
    }

  .sticky_header_inner .header_btn_sec {
    /* width: 50%; */
    width: 38%;
  }

  .menu_expand i:nth-child(2) {
    margin: 8px 0;
  }

  .service_blog_new_inner_second .blog_box_img {
    width: 100%;
        padding-top: 50%;
     
}

.service_blog_new_inner_second .blog_box_details {
    width: 100%;
    padding: 44px 10px 30px;
}
.service_blog_new_inner {
       
        gap: 24px;
    }
    .top_banner_sec_inner p{font-size: 14px;}
  .get_started_sec.our_testimonials_section{padding-top: 60px;}


}