/* Typography */

/* // End typography */

/*	Resets
	------	*/

  html,
  body,
  div,
  span,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  address,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  samp,
  small,
  strong,
  sub,
  sup,
  var,
  b,
  i,
  hr,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  figure,
  figcaption,
  hgroup,
  menu,
  footer,
  header,
  nav,
  section,
  summary,
  time,
  mark,
  audio,
  video {
    margin: 0;
    padding: 0;
    border: 0;
  }
  
  ul {
    list-style: none;
  }
  article,
  aside,
  canvas,
  figure,
  figure img,
  figcaption,
  hgroup,
  footer,
  header,
  nav,
  section,
  audio,
  video {
    display: block;
  }
  
  blockquote,
  q {
    quotes: none;
  }
  blockquote:before,
  blockquote:after,
  q:before,
  q:after {
    content: "";
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  b,
  strong {
    font-weight: bold;
  }
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box;
    padding: 0;
  }
  [type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
  }
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
  }
  
  .clear:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
  }
  a img {
    border: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
  }
  a,
  input,
  select,
  textarea {
    outline: none;
  }
  img {
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
  }
  
  /* Selection colours (easy to forget) */
  img::selection {
    background: transparent;
  }
  img::-moz-selection {
    background: transparent;
  }
  a {
    text-decoration: none;
    display: inline-block;
  }
  
  input[type="number"] {
    -moz-appearance: textfield;
  }
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  input:invalid,
  input:required {
    box-shadow: none;
  }
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }
  input:required {
    box-shadow: none;
  }
  input::-moz-focus-inner {
    box-shadow: 0 0 0px transparent;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="search"],
  input[type="number"],
  input[type="submit"],
  input[type="password"],
  select,
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  a img {
    border: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
    -webkit-perspective: 0;
    perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
    backface-visibility: hidden;
  }
  img {
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
    -webkit-perspective: 0;
    perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
    backface-visibility: hidden;
  }
  /*		Default Layout
        -------------------------------------------------------------------------------
        */
  
  /*
        
        Font property css
        
        font: font-style font-variant font-weight font-size/line-height font-family|caption|icon|menu|message-box|small-caption|status-bar|initial|inherit;
        
        */
  
  html {
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    overflow: hidden;
    overflow-y: scroll;
  }
  
  :root {
    --white: #ffffff;
    /* --black: #30353e; */
    --grey: #f8f9fa;
    --light-green: #ecf2f0;
    --black: #000;
  }
  
  body {
    background: #f8f9fa;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "Thareja Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--black);
  }
  
  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  /* Global style */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #000;
    font-family: "Thareja Sans", sans-serif;
  }
  h1 {
    font-size: 80px;
    line-height: normal;
    letter-spacing:normal;
    font-weight: 400;
  }
  h2 {
    font-size: 80px;
    line-height: normal;
    letter-spacing: normal;
    font-weight: 400;
  }
  h3 {
    font-size: 60px;
    line-height: normal;
    letter-spacing: normal;
    font-weight: 400;
  }
  h6 {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  p {
    letter-spacing: -0.01em;
  }
  span,
  em,
  dfn {
    display: inline-block;
  }
  
  .lead-text {
    font-size: 27px;
    line-height: 34px;
    letter-spacing: -0.02em;
    font-weight: 400;
  }
  .small-text {
    font-size: 16px;
    line-height: 28px;
  }
  
  dfn,
  address,
  em {
    font-style: normal;
  }
  label,
  input[type="submit"] {
    cursor: pointer;
  }
  button:focus {
    outline: none;
  }
  .btn {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    font-family: "Thareja Sans", sans-serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    box-sizing: border-box;
    position: relative;
    padding: 14px 54px 14px 27px;
  }
  .btn:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 19px;
    width: 18px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
  }
  .btn:hover:after {
    right: 15px;
  }
  .btn.gradient_btn {
    padding: 16px 54px 16px 27px;
    color: var(--white);
    background: linear-gradient(99.39deg, #01d18f 0.47%, #005aff 99.05%);
    border-radius: 6px;
    letter-spacing: 0.02em;
    box-shadow: -6px 0px 30px 0px rgba(0, 0, 0, 0.15);
  }
  .btn.gradient_btn:after {
    background-image: url(https://web.thareja.ai/svgs/arrow-white.svg);
  }
  .btn.transparent_btn {
    color: var(--black);
    border: 2px solid var(--black);
    padding: 14px 53px 14px 26px;
    border-radius: 6px;
    letter-spacing: 0.02em;
  }

  .btn.button-footer-submit:after {
    background-image: url(../svgs/arrow-black.svg);
  }
  
  .btn.without-icon {
    padding: 14px 27px 14px 27px;
  }
  
  .btn.transparent_btn:after {
    background-image: url(../svgs/arrow-black.svg);
  }
  .btn.arrow_btn {
    background: linear-gradient(99.39deg, #01d18f 0.47%, #005aff 99.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 0.02em;
  }
  .btn.arrow_btn:after {
    background-image: url(../svgs/arrow-blue.svg);
  }
  
  .mobi {
    display: none;
  }
  .desk {
    display: block;
  }
  
  .common-wrap {
    max-width: 1150px;
    margin: 0 auto;
    clear: both;
    padding: 0 20px;
  }
  
  .centerY {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #ffffff;
  }
  
  /* Flex style */
  .flex-box {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .flex-horizontal-align {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .flex-vertical-align {
    -webkit-box-align: center;
    align-items: center;
  }
  .flex-bottom-align {
    -webkit-box-align: flex-end;
    align-items: flex-end;
  }
  .flex-content-align {
    -webkit-align-content: center;
    -moz-align-content: center;
    align-content: center;
  }
  .order-1 {
    -webkit-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    order: 1;
  }
  .order-2 {
    -webkit-order: 2;
    -moz-order: 2;
    -ms-order: 2;
    order: 2;
  }
  .flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-flow: row wrap;
  }
  /* End Flex style */
  
  section,
  footer,
  header {
    float: left;
    width: 100%;
    position: relative;
  }
  
  body,
  html {
    height: 100%;
  }
  .main-wrap {
    min-height: 100%;
    overflow: hidden;
    position: relative;
    overflow-x: hidden;
  }
  
  /* Start Header Style */
  .main-header-section {
    float: left;
    width: 100%;
    padding: 14px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    position: fixed;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.06);
  }
  .main-header-section .common-wrap {
    max-width: 1728px;
  }
  .header-inner {
    width: 100%;
    align-items: center;
  }
  .logo-wrap {
    width: 164px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
  }
  .main-logo {
    width: 100%;
  }
  .main-logo a {
    width: 100%;
  }
  .main-logo a img {
    width: 100%;
  }
  .header-btn a {
    border-radius: 6px;
  }
  .hamburger {
    width: 25px;
    height: 22px;
    display: none;
    flex-flow: row wrap;
    align-items: center;
    cursor: pointer;
  }
  .hamburger div {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    position: relative;
    transition: 0.3s ease-in-out;
  }
  .hamburger div::before,
  .hamburger div::after {
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    background-color: var(--black);
    transition: 0.3s ease-in-out;
  }
  .hamburger div::after {
    top: auto;
    bottom: -8px;
  }
  .navShown {
    overflow: hidden;
  }
 
  .navShown .hamburger div {
    background-color: transparent;
  }
  .navShown .hamburger div::before {
    transform: rotate(-45deg);
    top: 0;
  }
  .navShown .hamburger div::after {
    transform: rotate(45deg);
    top: 0;
  }
  
  .nav-wrap {
    width: calc(100% - 164px);
    align-items: center;
    padding-left: 40px;
    column-gap: 20px;
    justify-content: space-between;
  }
  .main-nav {
    width: auto;
  }
  .main-nav ul {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    column-gap: 60px;
    row-gap: 18px;
  }
  .main-nav ul li {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  .main-nav ul li a {
    color: var(--black);
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    position: relative;
  }
  .header-btn {
    width: auto;
    row-gap: 18px;
    column-gap: 10px;
  }
  /* .main-header-section a.btn.transparent_btn{color: var(--white); border-color: var(--white);} */
  /* .main-header-section a.btn.transparent_btn:after { background-image: url(../svgs/arrow-white.svg); } */
  
  .nav-link {
    position: relative;
  }
  .nav-link:after {
    content: "";
    position: absolute;
    background-image: url(https://web.thareja.ai/svgs/drop-down.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 24px;
    height: 24px;
    right: -30px;
    top: -2px;
  }
  .mega-menu-inner {
    float: left;
    width: 100%;
  }
  
  .arrow_btn-rgba {
    border: 2px solid #005aff;
    color: #005aff;
  }
  .sign-icon:after {
    background-image: url(../svgs/sign.svg);
    op: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
  }
  .fixed-menu .main-header-section:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 1px solid #dde3e7;
  }
  
  /* End Header Style */
  
  .green-bg {
    background: var(
      --Gradient-2,
      linear-gradient(180deg, #01d18f 0%, #00b179 100%)
    );
  }
  .blue-bg {
    background-color: #005aff;
  }
  .bg-black {
    background-color: #000;
  }
  
  .rgba-text {
    background: linear-gradient(99.39deg, #01d18f 0.47%, #005aff 99.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* Start Hero Style */
  .hero-wrap {
    float: left;
    width: 100%;
    padding: 105px 0 23px;
    margin-top: 0px;
    position: relative;
  }
  .hero-wrap .common-wrap {
    max-width: 1728px;
  }
  .hero-inner {
    width: 100%;
    align-items: center;
  }
  .hero-content-wrap {
    width: 100%;
    float: left;
  }
  .hero-content {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
  }
  
  .home-page-2 #customer-slider-wrapper {
    padding-bottom: 100px;
  }
  
  .home-page #hero-wrapper .hero-conten h2.text-anim {
    color: white;
  }
  
  .hero-content h1 {
    margin-bottom: 40px;
    background: linear-gradient(99.39deg, #01d18f 0.47%, #005aff 99.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .home-page .hero-content h1 {
    margin-bottom: 0px;
    line-height: 123%;
    font-size: 100px;
    font-weight: 700;
  }
  
  .home-page .hero-content h2 {
    line-height: 123%;
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .home-page #hero-wrapper .light-text {
    color: white !important;
  }
  
  .home-page #hero-wrapper h2.light-text {
    font-weight: 400;
  }
  
  .home-page #hero-wrapper .lead-text {
    color: white;
  }
  
  .hero-content-btn {
    width: 100%;
    margin-top: 45px;
    column-gap: 24px;
    row-gap: 20px;
    align-items: center;
  }
  .home-page .hero-content-btn span {
    color: white;
  }
  
  .home-page .wavy-bg-wrapper {
    width: 100%;
    height: 110px;
    float: left;
    overflow: hidden;
  }
  
  .home-page .wavy-bg-wrapper.bg-black {
    background-color: black;
  }
  
  .wavy-bg-wrapper.left-curve svg {
    margin-bottom: -1px;
  }
  
  .home-page .wavy-bg-wrapper svg.bg-gray {
    background: #f8f9fa;
  }
  
  .home-page .wavy-bg-wrapper.bg-gray {
    background: #f8f9fa;
  }
  
  .home-page .wavy-bg-wrapper.bg-white {
    background: white;
  }
  
  .home-page .wavy-bg-wrapper.bg-white svg {
    background: #f8f9fa;
  }
  
  .home-page .wavy-bg-wrapper.bg-gray {
    background: #f8f9fa;
  }
  
  .home-page .wavy-bg-wrapper img,
  .home-page .wavy-bg-wrapper svg {
    width: 100%;
    height: auto;
    clear: both;
  }
  
  @media (max-width: 1730px) {
    .home-page .wavy-bg-wrapper {
      height: 110px;
    }
  }
  
  .home-page .how-thareja-ai-works {
    width: 100%;
    float: left;
    padding-top: 100px;
  }
  
  .home-page .how-thareja-ai-works .common-wrap {
    max-width: 1370px;
  }
  
  .home-page .how-thareja-ai-works .top-text {
    margin-bottom: 50px;
  }
  
  .home-page .how-thareja-ai-works .top-text h3 {
    display: inline;
  }
  
  .home-page .how-thareja-ai-works .top-text h3:last-of-type {
    font-weight: 700;
  }
  
  .home-page .thareja-working-process {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 42px;
  }
  
  .home-page .thareja-working-process .working-process-card {
    width: 50%;
    max-width: 260px;
    min-width: 240px;
  }
  
  .home-page .how-thareja-ai-works .index {
    font-family: "Thareja Sans";
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -7.5px;
    background: var(
      --Gradient-1,
      linear-gradient(99deg, #01d18f 0.47%, #005aff 99.05%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: auto;
    min-width: 100px;
    display: inline-block;
  }
  
  .home-page .how-thareja-ai-works h4 {
    color: var(--Black, #000);
    font-family: "Thareja Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.2px;
    margin: 20px 0;
  }
  
  .home-page .how-thareja-ai-works p {
    color: var(--Black, #000);
    font-family: "Thareja Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .home-page-2 .how-thareja-ai-works {
    margin-top: 0 !important;
  }
  
  .home-page-2 .how-thareja-ai-works .section-details {
    margin-top: 30px;
  }
  
  .home-page-2 .how-thareja-ai-works .contents {
    width: 46.24%;
  }
  .home-page-2 .how-thareja-ai-works .section-thum {
    width: 46.24%;
  }
  
  .home-page-2 .how-thareja-ai-works .top-text {
    margin-bottom: 60px;
  }
  .home-page-2 .how-thareja-ai-works .bottom-spaching {
    margin-bottom: 30px;
  }
  
  .home-page-2 .how-thareja-ai-works .indexing {
    max-width: 50px;
  }
  
  .home-page-2 .how-thareja-ai-works .round-indexing {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: black;
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .home-page-2 .how-thareja-ai-works .vertical-line {
    border-left: 2px solid #000000;
  }
  
  .home-page-2 .how-thareja-ai-works .content-box h4 {
    margin: 0;
    margin-bottom: 10px;
  }
  
  .home-page-2 .how-thareja-ai-works .get-started-cta {
    margin-top: 60px;
    justify-content: start;
  }
  
  .home-page-2 .why-choose-us-wrap {
    background: white;
  }
  .home-page .why-choose-us-wrap {
    width: 100%;
    float: left;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  
  .home-page .why-choose-us-wrap .common-wrap {
    max-width: 1470px;
  }
  
  .home-page .why-choose-us-wrap .top-text {
  }
  

  .home-page .why-choose-us-wrap .top-text h4:first-child {
    color: var(--Black, #000);
    text-align: center;
    font-family: "Thareja Sans";
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 148.148% */
    margin-bottom: 10px;
  }
  .home-page .why-choose-us-wrap .top-text h2.text-anim {
    max-width: 100%;
  }
  
  .home-page .why-choose-us-wrap .top-text h2.last {
    margin-top: -20px;
  }
  
  .home-page .why-choose-us-wrap .top-text h2:last-of-type {
    max-width: 100%;
    font-weight: 400;
    margin-bottom: 60px;
    text-align: center;
    margin-top: 60px;
  }
  
  .home-page .why-choose-us-wrap .top-text h4:last-of-type {
    color: var(--Black, #000);
    text-align: center;
  
    /* Paragraph Large */
    font-family: "Thareja Sans";
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 148.148% */
  }
  
  .home-page .why-choose-us-wrap div.flex {
    margin-top: 60px;
    gap: 30px;
    flex-wrap: nowrap;
  }
  .home-page .remote-work-challenges {
    width: 50%;
  }
  
  .home-page .why-choose-us-inner ul li {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 4px;
    line-height: 136%;
  }
  
  .home-page .hwo-thareja-helps {
    width: 50%;
  }
  
  .home-page .why-choose-us-wrap h5 {
    color: var(--Black, #000);
    font-family: "Thareja Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
  }
  
  .home-page .why-choose-us-wrap ul {
  }
  
  .home-page .why-choose-us-wrap li {
    color: var(--Black, #000);
    font-family: "Thareja Sans";
    font-size: 20px;
    font-style: normal;
  }
  
  .home-page .pt-none {
    padding-top: 0 !important;
  }
  
  .home-page .pb-none {
    padding-top: 0 !important;
  }
  
  .hero-content-btn a.btn {
    box-shadow: -6px 6px 30px rgba(0, 0, 0, 0.15);
  }
  
  .hero-content-btn span {
    display: block;
    letter-spacing: -0.01em;
    margin-top: 15px;
    color: #005aff;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-size: 20px;
    line-height: 26px;
  }
  
  /* End Hero Style */
  .tab-wrap {
    float: left;
    width: 100%;
    padding: 60px 0 0;
    position: relative;
  }
  .tabs-button {
    float: left;
    width: 100%;
    margin-bottom: 40px;
  }
  .tab-wrap .common-wrap {
    max-width: 1320px;
  }
  .tab-inner {
    float: left;
    width: 100%;
    position: relative;
    z-index: 11;
  }
  .tabs-button {
    float: left;
    width: 100%;
    margin-bottom: 40px;
  }
  /* .img2, .img3{display: none;} */
  .button-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  .home-page .button-nav span {
    color: white;
  }
  
  .button-nav li {
    width: 120px;
    font-size: 16px;
    float: left;
    text-align: center;
    color: #30353e;
  }
  .button-nav li a {
    font-size: 16px;
    color: #30353e;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .button-nav span {
    font-size: 16px;
    color: #30353e;
    margin-top: 10px;
  }
  /* .button-nav img { width: 92px; object-fit: cover; padding: 20px; } */
  /* .button-nav img {  object-fit: cover; padding: 20px; } */
  
  .home-page .tab-wrap .button-nav {
    gap: 30px;
    align-items: start;
  }
  
  .home-page .tab-wrap .button-nav li {
    width: auto;
    height: auto;
    max-width: 102px;
    margin-top: 0;
  }
  
  .home-page .tab-wrap .button-nav li:hover,
  .home-page .tab-wrap .button-nav li.tab-active {
    margin-top: -10px;
  }
  
  .home-page .tab-wrap .button-nav li .home-tab-icon.active {
    display: none;
    width: 102px;
    height: 102px;
  }
  
  .home-page .tab-wrap .button-nav li .home-tab-icon.inactive {
    width: 92px;
    height: 92px;
    display: block;
  }
  
  .home-page .tab-wrap .button-nav li:hover .home-tab-icon.inactive,
  .home-page .tab-wrap .button-nav li.tab-active .home-tab-icon.inactive {
    display: none;
  }
  
  .home-page .tab-wrap li:hover .home-tab-icon.active,
  .home-page .tab-wrap li.tab-active .home-tab-icon.active {
    display: inline-block;
  }
  
  /* .home-page .tab-wrap .tab-active .home-tab-icon.inactive{
        display: none;
      } */
  
  /* .home-page .tab-wrap .button-nav li:hover .home-tab-icon.active,
      .home-page .tab-wrap .tab-active .home-tab-icon.active{
        display: block;
       
      } */
  
  .home-page .tab-wrap .button-nav li:hover .home-tab-icon-active {
  }
  
  .button-nav li:hover .img1 {
    display: none;
  }
  
  .button-nav li:hover .img2 {
    display: block;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.06);
  }
  
  .button-nav .tab-active .img1 {
    display: none;
  }
  .button-nav .tab-active:hover .img2 {
    display: none;
  }
  /* .button-nav .tab-active .img3{display: block; background: linear-gradient(99.39deg, #01D18F 0.47%, #005AFF 99.05%);border-radius: 16px;} */
  .button-nav .tab-active .img3 {
    display: block;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 12px 0px;
    width: 104px;
    border-radius: 24px;
  }
  .button-nav li img:hover {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
  }
  
  .brand-wrap {
    float: left;
    width: 100%;
    padding: 100px 0 0;
    background: var(--Grey-1, #f8f9fa);
    padding-bottom: 100px;
  }
  .brand-wrap .common-wrap {
    max-width: 1360px;
  }
  .brand-inner {
    width: 100%;
    justify-content: center;
  }
  .brand-title {
    width: 100%;
    text-align: center;
    padding-top: 100px;
  }
  .lead-text {
    font-size: 27px;
    line-height: 34px;
    letter-spacing: -0.02em;
    font-weight: 400;
  }
  .about-thareja-org-heading-text h2 {
    font-size: 80px;
    line-height: normal;
    margin-bottom: 20px;
    background: var(
      --Gradient-1,
      linear-gradient(99deg, #01d18f 0.47%, #005aff 99.05%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
  .brand-item-wrap.flex {
    justify-content: center;
    gap: 30px;
    width: 100%;
    float: left;
  }
  .brand-item {
    max-width: 135px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  
  .customer-wrap {
    float: left;
    width: 100%;
    margin-top: 80px;
  }
  .customer-wrap .common-wrap {
    max-width: 1340px;
  }
  .customer-inner {
    float: left;
    width: 100%;
  }
  .gradient-text {
    background: linear-gradient(99.39deg, #01d18f 0.47%, #005aff 99.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .top-text {
    max-width: 857px;
    margin: 0 auto;
    text-align: center;
  }
  .top-text p {
    margin-top: 15px;
  }
  .customer-slider {
    float: left;
    width: 100%;
    margin-top: 60px;
  }
  .customer-item {
    float: left;
    width: 23.788806%;
    margin: 0 10px;
    position: relative;
    height: auto;
  }
  .slider-thumb {
    float: left;
    width: 100%;
  }
  .slider-thumb img {
    border-radius: 20px;
    width: 100%;
  }
  .customer-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px;
    bottom:60px;
  
    /*background: rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    */
    border-bottom-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .customer-content h3 {
    color: var(--white);
    font-size: 27px;
    line-height: normal;
    font-weight: 400;
  }
  .customer-content p {
    color: var(--white);
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  .customer-content span {
    color: var(--white);
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
    margin-top: 5px;
    display: block;
  }
  .customer-slider .slick-prev::before,
  .customer-slider .slick-next::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    height: 100%;
    background-image: url(../svgs/white-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 1;
  }
  .customer-slider .slick-prev,
  .customer-slider .slick-next {
    width: 40px;
    height: 40px;
    left: 20px;
    z-index: 11;
  }
  .customer-slider .slick-next {
    left: auto;
    right: 20px;
    transform: rotate(180deg);
  }
  .play-btn {
    display: flex;
    justify-content: center;
  }
  .play-btn a {
    display: flex;
    background-color: #fff;
    border-radius: 100px;
    padding: 8px;
    text-align: center;
    width: 118px;
    color: #525966;
    font-size: 16px;
    gap: 6px;
  }
  .customer-item:hover .content-bottom {
    display: none;
  }
  .customer-item:hover .play-btn {
    display: flex;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  .customer-item:hover .customer-content {
    background-color: transparent;
    backdrop-filter: none;
    bottom: 60px;
  }
  
  .home-page-2 #boost-productivity-wrap {
    padding-bottom: 100px;
  }
  
  .home-page .profitable-wrap {
    background-color: #f8f9fa;
  }
  
  .home-page .hero-wrap.black-bg {
    background-color: black;
  }
  
  .home-page .tab-wrap {
    background-color: transparent;
    position: relative;
    z-index: 0;
    height: auto;
    clear: both;
  }
  
  .home-page .tab-wrap.bg-black {
    background-color: black;
  }
  .home-page .tab-wrap .common-wrap {
    z-index: 1;
    background-color: transparent;
  }
  
  .home-page .tab-wrap .rounded-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
    clip-path: ellipse(100% 130% at 50% -30%);
    padding-bottom: 100px;
  }
  
  .home-page .tab-wrapper-container .tab-wrap {
    background-color: transparent;
  }
  
  .profitable-wrap {
    float: left;
    width: 100%;
    padding-top: 100px;
    background-color: #fff;
  }
  .profitable-wrap .common-wrap {
    max-width: 1420px;
  }
  .profitable-inner {
    float: left;
    width: 100%;
  }
  .profitable-item {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    margin-top: 75px;
    align-items: center;
  }
  .profitable-content {
    float: left;
    width: 48.45070422535211%;
  }
  .profitable-thumb {
    float: left;
    width: 37.6056338028169%;
  }
  .profitable-content p {
    font-size: 22px;
    line-height: normal;
    margin-top: 18px;
  }
  .profitable-content h4 {
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.96px;
    margin-top: 30px;
  }
  .profitable-content .btn.gradient_btn {
    margin-top: 40px;
  }
  .odd-item .profitable-item {
    flex-direction: row-reverse;
  }
  .profitable-content ul {
    padding-left: 25px;
  }
  .profitable-content ul li {
    list-style: disc;
    font-size: 22px;
    line-height: normal;
    margin-top: 18px;
  }
  
  .home-page-2 .enterprise-wrap {
    margin-top: 0 !important;
  }
  
  .enterprise-wrap {
    float: left;
    width: 100%;
    background-color: #000;
    padding: 50px 0;
    margin-top: 100px;
  }
  .enterprise-wrap .common-wrap {
    max-width: 1322px;
  }
  .enterprise-wrap .lead-text {
    color: #fff;
  }
  .enterprise-inner {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 60px;
  }
  .list-box {
    float: left;
    border-radius: 16px;
    width: 29.80332829046899%;
    padding: 1px;
    border: double 1px transparent;
    border-radius: 16px;
    display: inline-block;
    background-image: linear-gradient(#141414, #141414),
      radial-gradient(circle at top left, #01d18f, #005aff);
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  .list-box ul {
    padding: 20px;
  }
  .list-box ul li {
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 14px;
  }
  .list-box ul li img {
    width: 26px;
  }
  .two-btn {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .two-btn .white-btn {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 6px;
  }
  
  /* End service page */
  /* Start Footer Style */
  .main-footer-section {
    float: left;
    width: 100%;
    background-color: #000000;
    padding: 100px 0 33px;
  }
  .main-footer-section .common-wrap {
    max-width: 1584px;
  }
  .footer-inner {
    width: 100%;
  }
  
  .footer-widget-wrap {
    width: 100%;
    column-gap: 2.25531914893617%;
  }
  .footer-widget {
    width: 13.40425531914894%;
    padding-top: 9px;
  }
  .footer-widget.footer-logo {
    width: 20.49645390070922%;
    padding-top: 0;
  }
  .footer-widget.footer-logo a {
    max-width: 223px;
  }
  .footer-widget.footer-widget-gradient {
    width: 21.7% !important;
  }
  .footer-widget h6 {
    font-size: 16px;
    line-height: 18px;
    color: var(--white);
    letter-spacing: 0.02em;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(99.39deg, #01d18f 0.47%, #005aff 99.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .footer-widget ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    row-gap: 10px;
  }
  .footer-widget ul li {
    width: 100%;
  }
  .footer-widget ul li a {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  .footer-widget.footer-widget-gradient ul {
    row-gap: 20px;
  }
  .footer-widget.footer-widget-gradient ul li a {
    font-size: 27px;
    line-height: 30px;
    letter-spacing: -0.02em;
    background: linear-gradient(99.39deg, #01d18f 0.47%, #005aff 99.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  /* footer news letter form */
  .footer-news-letter-form-widget {
    width: 100%;
    max-width: 1064px;
    margin: 100px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .footer-form {
    align-items: center;
    width: 100%;
    justify-content: center;
    box-shadow: -6px 6px 30px 0px rgba(0, 0, 0, 0.15);
    flex-wrap: nowrap;
  }
  .footer-form .footer-form-input {
    /* width: 500px; */
    border: 2px solid var(--White, #fff);
    height: 58px;
    padding: 16px 22px 16px 27px;
    border-radius: 6px 0px 0px 6px;
    background-color: #000000;
    color: var(--white);
    font-size: 20px;
  }
  .button-footer-submit {
    padding-top: 16px;
    padding-bottom: 16px;
    font-weight: 700;
    color: #000000;;
    border-radius: 0px 6px 6px 0px;
    cursor: pointer;
    background: var(--white);
    border: none;
  }
  .footer-large-logo {
    height: 100%;
    max-height: 218px;
  }
  .footer-bottom {
    width: 100%;
    padding: 50px 30px 20px 30px;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer-bottom P {
    color: #fff;
  }
  .footer-bottom-owned-wrap {
    width: auto;
    column-gap: 68px;
    padding-bottom: 12px;
    align-items: end;
  }
  .footer-bottom-owned {
    width: auto;
  }
  .footer-bottom-owned h6 {
    font-size: 12px;
    line-height: 14px;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  .footer-bottom-owned-item-wrap {
    column-gap: 20px;
    margin-top: 20px;
  }
  .footer-bottom-owned-item {
    max-width: 83px;
  }
  .footer-social-wrap {
    width: auto;
  }
  .footer-social-wrap ul {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    column-gap: 10px;
  }
  .footer-social-wrap ul li {
    width: 40px;
  }
  .footer-widget-inner {
    margin-top: 50px;
  }
  /* End Footer Style */
  
  /* thareja org */
  .about-thareja-org-wrap {
    background-color: #000;
  }
  .about-thareja-org-wrap .common-wrap {
    max-width: 1347px;
  }
  .about-thareja-org-inner {
    float: left;
    width: 100%;
    margin: 40px 0 0;
  }
  .about-thareja-org-heading-text {
    float: left;
    width: 100%;
  }
  .about-thareja-org-heading-text p {
    color: #fff;
    text-align: center;
    font-size: 27px;
    line-height: 40px;
    letter-spacing: 0;
  }
  .about-thareja-org-content-wrap {
    float: left;
    width: 100%;
    padding: 0x 0;
  }
  .about-thareja-org-content-left {
    float: left;
    width: 69%;
  }
  .about-thareja-org-content-left figure {
    float: left;
    width: 100%;
  }
  .about-thareja-org-content-right {
    float: right;
    width: 23.3%;
    padding: 30px 0;
  }
  .about-thareja-org-content-right-item {
    float: left;
    width: 100%;
  }
  .about-thareja-org-content-right-item:first-child {
    margin-bottom: 50px;
  }
  .about-thareja-org-content-right-item h2 {
    float: left;
    width: 100%;
    margin-bottom: 9px;
    font-size: 80px;
    line-height: normal;
    font-weight: 400;
    letter-spacing: -2.4px;
    background: var(
      --Gradient-1,
      linear-gradient(99deg, #01d18f 0.47%, #005aff 99.05%)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .about-thareja-org-content-right-item h3 {
    float: left;
    width: 100%;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 44px;
    font-weight: 400;
    letter-spacing: -1.2px;
    color: #fff;
  }
  .about-thareja-org-content-right-item p {
    float: left;
    width: 285px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 21px;
    letter-spacing: 0;
  }
  .brand-wrap.bg-black {
    float: left;
    width: 100%;
    padding: 95px 0;
  }
  .brand-wrap.bg-black .common-wrap {
    max-width: 1372px;
  }
  .bg-black .brand-inner {
    width: 100%;
    justify-content: center;
  }
  .bg-black .brand-title {
    width: 100%;
    text-align: center;
  }
  .bg-black .brand-title h5 {
    color: #fff;
    letter-spacing: normal;
  }
  .bg-black .brand-item-wrap {
    width: 100%;
    column-gap: 35px;
    row-gap: 35px;
    align-items: center;
    justify-content: center;
    margin-top: 73px;
  }
  .bg-black .brand-item {
    max-width: 135px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  .bg-black .brand-btn {
    width: 100%;
    justify-content: flex-end;
    margin-top: 72px;
    padding-right: 5px;
  }
  
  /* End thareja org page */
  
  .home-page-2 .faq-wrap {
    padding-top: 0;
  }
  
  .faq-wrap {
    float: left;
    width: 100%;
    padding: 100px 0;
  }
  .faq-wrap .common-wrap {
    max-width: 1440px;
  }
  .faq-inner {
    float: left;
    width: 100%;
  }
  .faq-item-wrap {
    float: left;
    width: 100%;
  }
  .booking {
    float: left;
    width: 462px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(50px);
    padding: 40px 80px;
    position: relative;
    overflow: hidden;
  }
  .booking:after {
    position: absolute;
    top: -130px;
    left: -105px;
    content: "";
    width: 74%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    background-image: url(../img/top-curve.png);
    z-index: -1;
  }
  .booking:before {
    position: absolute;
    bottom: -77px;
    right: -88px;
    content: "";
    width: 74%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    background-image: url(../img/bottom.png);
    z-index: -1;
  }
  
  .accordion {
    width: 100%;
    float: left;
  }
  .accordion h2 {
    margin-bottom: 72px;
  }
  .accordion-item {
    float: left;
    width: 100%;
    margin-bottom: 12px;
  }
  .accordion-item h5 {
    font-family: "Thareja Sans";
    font-size: 22px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fafcff;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    padding: 20px 32px;
    cursor: pointer;
    position: relative;
    padding-right: 57px;
  }
  .accordion-item h5:after {
    position: absolute;
    top: 50%;
    right: 25px;
    content: "";
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    background-image: url(../svgs/plus.svg);
    transition: 0.35s ease-in-out;
  }
  .accordion-content {
    display: none;
    padding: 30px 32px 30px 32px;
  }
  .active.accordion-item h5:after {
    background-image: url(../svgs/minus.svg);
  }
  .accordion-item h5:hover {
    color: #005aff;
  }
  .accordion-item h5:hover:after {
    background-image: url(../svgs/blue-plus.svg);
  }
  .active.accordion-item h5:hover:after {
    background-image: url(../svgs/minus-blue.svg);
  }
  
  .brand-wrap.bg-black {
    float: left;
    width: 100%;
    padding: 100px 0 0;
    border-bottom: 3px solid #fff;
    padding-bottom: 0;
    background-color: #000;
  }
  
  .lion-icon {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .lion-icon img {
    width: 200px;
  }
  .viking-ship {
    opacity: 0;
    transform: translate3d(0px, 0px, 0px) scale3d(0.5, 0.5, 0.5) rotateX(90deg)
      rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: transform 0.5s;
  }
  .brand-item-wrap.flex {
    justify-content: center;
    gap: 30px;
    padding-top: 40px;
    width: 100%;
  }
  
  .text-holder {
    overflow: hidden;
  }
  .text-anim .current-word {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s;
    text-transform: unset;
    padding-right: 0px;
  }
  .text-anim .current-word.animate {
    opacity: 1;
  }
  .text-color span {
    background: linear-gradient(99.39deg, #01d18f 0.47%, #005aff 99.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  @keyframes slideIn {
    0% {
      transform: translateY(100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .spliting {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .spliting.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  header.main-header-section.sticky {
    background-color: #fff;
  }
  
  .line-or {
    background-color: #fff;
    float: left;
    width: 100%;
    padding: 5px 0;
  }
  .liner-inner {
    display: flex;
    gap: 25px;
    align-items: center;
  }
  .liner-inner img {
    width: 50%;
  }
  
  .build-speed {
    width: 100%;
    float: left;
    padding: 40px 0;
  }
  .build-speed .common-wrap {
    max-width: 1550px;
  }
  .build-speed-inner {
    float: left;
    width: 100%;
  }
  .build-speed-text {
    float: left;
    width: 100%;
  }
  .build-speed-text h6 {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }
  .build-speed-text h2 {
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.6px;
    max-width: 890px;
    margin: 0 auto;
  }
  .accordion h2 {
    text-align: center;
  }
  
  /* Contractor-page */
  .contractor-page .hero-wrap {
    padding-top: 20px;
  }
  .contractor-page .hero-content {
    max-width: 1280px;
  }
  .contractor-page .hero-content p {
    max-width: 1072px;
    margin: 0 auto;
  }
  .hero-bottom-wrap {
    float: left;
    width: 100%;
    margin-top: 100px;
  }
  .hero-bottom-wrap .common-wrap {
    max-width: 1280px;
  }
  .box-wrap {
    float: left;
    width: 100%;
    margin-top: 100px;
  }
  .box-wrap .common-wrap {
    max-width: 1340px;
  }
  .box-inner {
    float: left;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    gap: 38px;
  }
  .box-content-item {
    float: left;
    width: 31%;
    padding: 1px;
    border: double 1px transparent;
    border-radius: 16px;
    display: inline-block;
    background-image: linear-gradient(#fff, #fff),
      radial-gradient(circle at top left, #01d18f, #005aff);
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  .box-inner-content {
    padding: 26px;
    width: 100%;
  }
  .box-inner-content h4 {
    font-size: 22px;
    line-height: normal;
    font-weight: 400;
  }
  .box-inner-content p {
    font-size: 16px;
    line-height: normal;
    padding-top: 10px;
  }
  .group-img {
    width: 100%;
    margin-top: 40px;
  }
  .invoice-wrap .list-box {
    width: 49.2203328%;
    background-image: linear-gradient(#1f1f1f, #1f1f1f),
      radial-gradient(circle at top left, #01d18f, #005aff);
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  .invoice-wrap .enterprise-inner {
    gap: 20px;
  }
  .invoice-wrap .box-inner-content h4 {
    color: #fff;
  }
  .invoice-wrap .box-inner-content p {
    color: #fff;
    font-size: 18px;
  }
  .invoice-wrap .group-img {
    max-width: 370px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .contractor-page .profitable-content {
    width: 42.450704%;
  }
  .contractor-page .profitable-thumb {
    width: 46.605634%;
  }
  
  /* Price page */
  .price-page .hero-content h1 > del {
    color: #dde3e7;
    background: #2d050500;
    -webkit-text-fill-color: #dde3e7;
  }
  .price-page .hero-content span {
    color: #005aff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 400;
  }
  .hero-content .lead-text span {
    margin: 0;
  }
  .color-text {
    color: #005aff;
    display: inline-block;
  }
  .price-page .hero-wrap .common-wrap {
    max-width: 1452px;
  }
  .component-box-item {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    gap: 2%;
    margin-top: 60px;
    row-gap: 20px;
  }
  .component-item {
    float: left;
    width: 23.40625%;
    border-radius: 10px;
    background: #fff;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .img-text {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .green-text {
    color: #01d18f;
  }
  
  .personal-wrap {
    float: left;
    width: 100%;
    margin-top: 100px;
  }
  .personal-wrap .common-wrap {
    max-width: 1452px;
  }
  .personal-inner {
    float: left;
    width: 100%;
  }
  
  .save-big {
    background-color: #f8f9fa;
  }
  .save-big .common-wrap {
    max-width: 1452px;
    background-color: transparent;
  }
  .save-big .lead-text {
    color: #000;
  }
  .save-big .left-box {
    width: 25.48209366391185%;
  }
  .save-big .list-box {
    width: 100%;
    background-image: linear-gradient(#f8f9fa, #f8f9fa),
      radial-gradient(circle at top left, #01d18f, #005aff);
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  .save-big .list-box ul li {
    color: #000;
  }
  .app-logo {
    float: left;
    padding: 20px;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .app-text {
    float: left;
    width: 100%;
  }
  .app-text p {
    font-size: 20px;
  }
  .app-text span {
    font-size: 16px;
  }
  .save-big .list-box ul {
    padding: 26px;
    float: left;
    width: 100%;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 20px;
  }
  .bottom-price {
    float: left;
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }
  .bottom-price dfn {
    font-size: 14px;
  }
  .save-big .enterprise-inner {
    margin-top: 60px;
    gap: 20px;
    justify-content: unset;
  }
  .img-card-items {
    float: left;
    width: 71.630854%;
  }
  .img-card-item {
    float: left;
    width: 100%;
    background-image: linear-gradient(#f8f9fa, #f8f9fa),
      radial-gradient(circle at top left, #01d18f, #005aff);
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 1px;
    border: double 1px transparent;
    border-radius: 16px;
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  .img-card {
    float: left;
    width: 28.9438%;
    padding: 18px;
    text-align: center;
    background-color: #fff;
    border-radius: 14px;
    position: relative;
    z-index: 11;
  }
  .img-card img {
    width: 60px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  .checked-box {
    width: 100%;
    padding: 20px;
  }
  .card-box {
    float: left;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-flow: row wrap;
    row-gap: 20px;
    justify-content: space-between;
    padding-right: 58px;
  }
  .img-card p {
    padding-top: 30px;
    font-size: 27px;
    padding-bottom: 18px;
  }
  .img-card span {
    color: #525966;
    font-size: 14px;
    font-size: 18px;
  }
  .img-card::after {
    content: "";
    position: absolute;
    background-image: url(../svgs/plus-green.svg);
    width: 24px;
    height: 24px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    right: -44px;
    top: 50%;
    transform: translateY(-50%);
  }
  .img-card:last-child:after {
    display: none;
  }
  .resize-box {
    position: relative;
  }
  .resize-box:after {
    content: "";
    position: absolute;
    background-image: url(../svgs/resize.svg);
    width: 30px;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    bottom: -12px;
  }
  
  .top-heading {
    padding-bottom: 60px;
  }
  .top-heading h2 {
    margin-bottom: 0;
    text-align: center;
    padding-bottom: 15px;
  }
  /* .top-heading p {
    text-align: center;
    padding-top: 15px;
    max-width: 1020px;
    margin: 0 auto;
    font-size: 27px;
    line-height: normal;
  } */
  .future-work {
    padding-bottom: 100px;
  }
  .future-work .profitable-item {
    align-items: center;
  }
  
  .footer-bottom-owned-item {
    max-width: 83px;
  }
  .download-app .img-card img {
    width: 100px;
  }
  /* App */
  
  .img-card:after {
    display: none;
  }
  .app-item {
    float: left;
    width: 100%;
    margin-top: 60px;
  }
  .app-box {
    width: 32%;
    float: left;
    background-image: linear-gradient(#fff, #fff),
      radial-gradient(circle at top left, #01d18f, #005aff);
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 1px;
    border: double 1px transparent;
    border-radius: 16px;
    background-origin: border-box;
    background-clip: content-box, border-box;
  }
  .app-item .img-card {
    width: 100%;
    padding: 30px;
  }
  .app-item .btn {
    display: block;
    padding: 14px 27px 14px 50px;
    margin-top: 30px;
  }
  .app-item .btn:after {
    left: 20px;
    right: auto;
  }
  .app-item .btn.gradient_btn:after {
    background-image: url(../svgs/download.svg);
  }
  
  /* Invoice */
  
  .invoice-hero {
    background-image: url(../img/bg-gradiant.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  /* .invoice-page .invoice-hero{height: 100%;} */
  
  .invoice-hero .hero-content {
    max-width: 1180px;
  }
  .invoice-hero a.btn.transparent_btn {
    padding-right: 26px;
  }
  .invoice-hero .hero-content-btn {
    margin-top: 30px;
  }
  .invoice-hero dfn {
    width: 1px;
    height: auto;
    background-color: #fff;
    height: 20px;
  }
  .pay-roll .invoice-hero dfn {
    background-color: #000;
  }
  .app-benifit {
    float: left;
    width: 100%;
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 19px;
    align-items: center;
  }
  .app-benifit span {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    color: #005aff;
  }
  .app-icon {
    display: flex;
    width: auto;
    gap: 10px;
  }
  
  .invoice-page-widgets .img-text {
    flex-wrap: nowrap;
    align-items: center !important;
  }
  
  /* .bottom-thumb { max-width: 1180px; margin: 0 auto; margin-top: 60px; border-radius: 10px; border: 8px solid rgba(255, 255, 255, 0.30); background: #fff; box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.10); position: relative; z-index: 11; } */
  .hero-wrap .bottom-thumb {
    margin-top: 0px;
  }
  .bottom-thumb {
    max-width: 1080px;
    margin: 0 auto;
    margin-top: 60px;
    position: relative;
    z-index: 11;
  }
  
  .component-wrap {
    float: left;
    width: 100%;
    margin-top: 0px;
  }
  .component-wrap .common-wrap {
    max-width: 1420px;
  }
  .component-wrap .component-item {
    float: left;
    width: 31.40625%;
    border-radius: 14px;
    border: 1px solid transparent;
    border-bottom: 1px solid var(--Loop-Blue, #005aff);
    background: #f4f7ff;
  }
  .component-wrap .component-box-item {
    gap: 2%;
  }
  .component-wrap .img-text img {
    width: 42px;
  }
  .component-wrap .img-text {
    gap: 18px;
  }
  .component-wrap .img-text span {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    color: #30353e;
  }
  .list-box-item {
    float: left;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
  }
  .circle-box {
    width: 45px;
    border-radius: 100px;
    border: 1px solid var(--Gradient-1, #01d18f);
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
  }
  .circle-box::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 127px;
    background-image: url(../img/line.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    top: 56px;
  }
  
  .right-text-box {
    width: calc(100% - 70px);
    float: left;
  }
  .team-member .right-text-box {
    min-height: 175px;
  }
  .team-member .profitable-content h4 {
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .team-member .profitable-content p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
  }
  
  .client-billing {
    background-image: url(../img/group-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: auto;
    padding-top: 50px;
  }
  .client-billing .right-text-box .uppercase {
    margin-top: 7px;
  }
  
  .client-billing .top-text {
    max-width: 100%;
  }
  .client-billing .component-item {
    border-bottom: 0;
    background: #f4f7ff;
    flex-direction: column;
    border-radius: 20px;
    border: 3px solid rgba(0, 90, 255, 0.1);
    background: #fff;
    padding: 20px;
    justify-content: unset;
  }
  .client-billing .img-text {
    gap: 14px;
    border-radius: 10px;
    background: #f4f8ff;
    padding: 10px;
    width: 100%;
  }
  .invoice-details {
    float: left;
    width: 100%;
    margin-top: 12px;
  }
  .invoice-details h5 {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
  }
  .invoice-details p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    color: #525966;
    padding-top: 10px;
  }
  .client-billing .img-text span {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    color: #005aff;
    text-transform: uppercase;
  }
  .required-wrap .top-text {
    max-width: 100%;
  }
  .required-wrap .profitable-thumb {
    width: 50.605634%;
  }
  .required-wrap .profitable-content {
    width: 40.450704%;
  }
  .required-wrap .list-box-item {
    align-items: unset;
  }
  .required-wrap .right-text-box h4 {
    color: #005aff;
    text-transform: uppercase;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-top: 10px;
  }
  
  .admin-hours-bookkeeping.required-wrap .right-text-box h4 {
    margin-top: 7px;
  }
  
  .left-icon {
    width: 45px;
  }
  .required-wrap .right-text-box span {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #30353e;
    margin-top: 10.5px;
    margin-bottom: 4px;
  }
  .required-wrap .right-text-box p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    color: #525966;
    margin-top: 0;
  }
  
  .easier-invoice-wrap {
    float: left;
    width: 100%;
    margin-top: 100px;
    background: #f6faff;
    padding: 50px 0;
  }
  .easier-invoice-wrap .common-wrap {
    max-width: 1280px;
  }
  .easier-inner {
    float: left;
    width: 100%;
  }
  .easier-invoice-wrap .img-card-items {
    width: 100%;
    padding-top: 60px;
  }
  .easier-invoice-wrap .img-card-item {
    background-image: unset;
  }
  .easier-invoice-wrap .card-box {
    padding-right: 0;
  }
  
  .product-invoice .card-box {
    padding-right: 20px;
  }
  .easier-invoice-wrap .img-card {
    width: 31.9438%;
    height: 250px;
  }
  .easier-invoice-wrap .img-card span {
    color: #005aff;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 18px;
  }
  .easier-invoice-wrap .img-card p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    color: #525966;
    padding-top: 10px;
  }
  .easier-invoice-wrap h2 {
    text-align: center;
  }
  .cta-wrap {
    float: left;
    width: 100%;
    background-image: url(../img/cta-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    height: 100%;
    padding: 100px 0;
  }
  .cta-wrap .common-wrap {
    max-width: 1020px;
  }
  .cta-inner {
    float: left;
    width: 100%;
    text-align: center;
  }
  .cta-inner h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.2px;
  }
  .cta-inner p {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #30353e;
    padding-top: 20px;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 40px;
    padding-right: 7px;
  }
  .cta-btn a.btn.transparent_btn {
    color: var(--white);
    border-color: var(--white);
  }
  .product-invoice .customer-wrap {
    float: left;
    width: 100%;
    margin-top: 0px;
    padding-bottom: 80px;
    padding-top: 100px;
  }
  .product-invoice .top-text {
    max-width: 100%;
  }
  .payroll-page .profitable-content {
    width: 46.450704%;
  }
  .payroll-page .profitable-thumb {
    width: 51.605634%;
  }
  
  /* Solution page */
  .solution-hero {
    position: relative;
    height: 1000px;
  }
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .solution-hero .hero-inner {
    position: relative;
    z-index: 1;
  }
  .solution-hero .common-wrap {
    max-width: 1600px;
  }
  .solution-hero .hero-content {
    max-width: 800px;
    float: left;
    margin: 0;
  }
  .solution-hero .hero-content h1 {
    text-align: left;
  }
  .solution-hero .hero-content p {
    text-align: left;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #30353e;
  }
  .form-inner {
    float: left;
    display: flex;
    width: 100%;
    margin-top: 30px;
    justify-content: center;
  }
  .row-input {
    float: left;
    width: auto;
  }
  .row-input input[type="email"] {
    background-color: #fff;
    border: 0;
    padding: 0 16px;
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    color: #a8b7c1;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .row-input input::placeholder {
    color: #a8b7c1;
  }
  .row-input input[type="submit"] {
    background-color: #005aff;
    border: 0;
    padding: 0 20px;
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .solution-hero .app-benifit {
    margin-top: 25px;
    justify-content: left;
    gap: 20px;
  }
  .solution-hero .app-benifit dfn {
    width: 1px;
    height: 25px;
    background-color: #30353e;
  }
  .client-billing .component-box-item {
    margin-top: 60px;
  }
  .client-billing .component-box-item {
    margin-top: 60px;
  }
  .agency-page .component-wrap .img-text {
    align-items: flex-start;
  }
  .dot-icon {
    position: relative;
  }
  /* .dot-icon:after { content: ''; position: absolute; right: 75px; top: -10px; background-image: url(../img/agency/dot.png); width: 74px; height: 76px; background-repeat: no-repeat; background-position: center center; background-size: cover; } */
  
  .thareja-tracking-wrap {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
    height: auto;
    margin-top: 50px;
  }
  
  .thareja-tracking-wrap .common-wrap {
    max-width: 1420px;
  }
  .top-curve {
    float: left;
    width: 100%;
    position: absolute;
    top: 0;
  }
  .color-bg {
    float: left;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
  }
  
  .color-bg img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .thareja-inner {
    float: left;
    width: 100%;
    position: relative;
    z-index: 11;
  }
  .agency-page .odd-item.required-wrap {
    padding-bottom: 100px;
  }
  .thareja-tracking-wrap h3 {
    margin-top: 40px;
  }
  .thareja-tracking-wrap p {
    margin-top: 20px;
    font-size: 20px;
  }
  .thareja-tracking-wrap .btn.gradient_btn {
    padding-right: 27px;
    box-shadow: -6px 6px 30px rgba(0, 0, 0, 0.15);
  }
  .thareja-tracking-wrap .btn.gradient_btn:after {
    display: none;
  }
  .left-text-item h5 {
    color: #005aff;
    font-weight: 400;
    font-size: 20px;
    line-height: 23.6px;
    letter-spacing: 2%;
    padding-bottom: 10px;
  }
  .development-page .profitable-content h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.96px;
    margin-top: 30px;
    color: #005aff;
    text-transform: uppercase;
    margin-top: 0;
  }
  .development-page .profitable-content p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: #525966;
  }
  .development-page .list-box-item {
    align-items: flex-start;
  }
  
  .development-page .profitable-content {
    width: 41.450704%;
  }
  .development-page .profitable-thumb {
    width: 53.605634%;
  }
  .development-page .client-billing .right-text-box {
    min-height: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #dde3e7;
  }
  .development-page .list-box-item:last-child .right-text-box {
    border-bottom: 0;
  }
  .development-page .profitable-item {
    align-items: center;
  }
  .development-page .client-billing {
    margin-top: 0;
    padding: 80px 0;
  }
  .development-page .profitable-wrap.odd-item.team-member {
    padding-bottom: 100px;
  }
  .development-page .required-wrap .right-text-box span {
    margin-top: 0;
  }
  .social-icon {
    float: left;
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
  }
  .social-icon span {
    font-size: 18px;
    color: #005aff;
  }
  .text-color {
    color: #005aff;
  }
  .social-icon img {
    float: left;
    width: 120px;
  }
  .development-page .free-trail .profitable-content {
    width: 47.450704%;
    text-align: center;
    padding: 30px;
  }
  .development-page .free-trail .profitable-thumb {
    width: 50.605634%;
  }
  .development-page .free-trail .profitable-item {
    background-color: #ffffff59;
    border-radius: 20px;
  }
  .thareja-tracking-wrap.free-trail h3 {
    font-size: 34px;
  }
  #faq .top-text {
    color: #005aff;
    text-align: center;
    display: block;
    font-size: 27px;
  }
  
  /* =================== extra style to customize existing style starts======== */
  .common_section-wrap.where-metrics-meet-morals.leverage-your-tech {
    background-color: #fff;
  }
  .employee-productivity-page {
    background-color: #fff;
  }
  .profitable-wrap.odd-item.transparent-remote-team.employee-productivity-tracking {
    margin-top: 60px;
  }
  
  #tracking-software-for-employees.common_section-wrap
    .section-details
    .box-subtitle {
    text-transform: none !important;
  }
  
  /* utility classes starts  */
  .uppercase {
    text-transform: uppercase !important;
  }

  .lh-full{
    line-height: 100% !important;
  }

  .flex-align-center {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .inline-flex-align-center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  /* utility classes ends  */
  .common_section-wrap {
    float: left;
    width: 100%;
    padding-top: 100px;
    clear: both;
  }
  
  .common_section-wrap .common-wrap {
    width: 100%;
    max-width: 1380px;
  }
  .common_section-wrap .section_title {
    text-align: center;
    margin-inline: auto;
  }
  .common_section-wrap .section_subtitle {
    color: #005aff;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
  }
  .common_section-wrap .section_des {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
  }
  .common_section-wrap .section-details {
    width: 100%;
    margin-top: 60px;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 80px;
  }
  .common_section-wrap .section-thum {
    width: 50%;
  }
  .common_section-wrap .section-thum img {
    width: auto;
    max-width: 100%;
  }
  .common_section-wrap .contents {
    width: 50%;
  }
  .common_section-wrap .contents-inner {
    width: 100%;
  }
  .common_section-wrap .content-box {
    width: 100%;
  }
  .common_section-wrap .indexing-box .content-box.bottom-spaching {
    padding-bottom: 40px;
    margin-bottom: 0;
  }
  .common_section-wrap .indexing-box .box-title {
    margin-bottom: 14px;
    color: #30353e;
  }
  .common_section-wrap .indexing-box {
    width: 100%;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
  .common_section-wrap .indexing {
    width: 100%;
    max-width: 39px;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .common_section-wrap .vertical-line {
    margin: 10px 0;
    width: 0.1px;
    max-width: 1px;
    height: 1px;
    border-left: 1px dashed #01d18f;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex-grow: 1;
  }
  .common_section-wrap .index-gradient-border {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    padding: 1px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #01d18f, #005aff);
  }
  .common_section-wrap .index {
    width: 38px;
    border-radius: 100%;
    height: 38px;
    background-color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .common_section-wrap .index span {
    color: #30353e;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .common_section-wrap .icon-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .common_section-wrap .section-details .blue-text {
    color: #005aff;
  }
  .common_section-wrap .section-details .gray-text {
    color: #30353e;
  }
  .common_section-wrap .section-details .box-subtitle {
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .common_section-wrap .section-details .content-box-subtitle {
    font-size: 22px;
    font-style: normal;
    color: #30353e;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 10px;
    letter-spacing: normal;
  }
  .common_section-wrap .section-details .box-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 40px;
    color: #30353e;
  }
  .common_section-wrap .section-details p {
    color: #525966;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
  }
  .common_section-wrap .box-left-space {
    margin-left: 58px;
  }
  .common_section-wrap .horizontal-line {
    background: #dde3e7;
    width: 100%;
    height: 1px;
    margin: 24px 0;
  }
  .common_section-wrap .bottom-spaching {
    margin-bottom: 20px;
  }
  .common_section-wrap .hoverable {
    padding: 16px !important;
    transition: 0.2s;
  }
  .common_section-wrap .hoverable.active {
    border-radius: 10px;
    background: #fafcff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  }
  
  /* ===== fully remote page ======= */
  .main-wrap.service-page {
    background-color: #f8f9fa;
  }
  .btn-icon-disabled {
    padding-right: 22px !important;
    border: none;
    font-weight: 400;
  }
  .btn-outline {
    color: #525966;
    display: inline-flex;
    padding: 16px 22px 16px 27px;
    align-items: center;
    font-family: "Thareja Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 130% */
    border-radius: 6px;
    border: 2px solid #525966;
    box-shadow: -6px 6px 30px 0px rgba(0, 0, 0, 0.15);
  }
  .btn-icon-disabled::after {
    display: none;
  }
  .fully-remote-page p.section-des {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .fully-remote-page.profitable-wrap p {
    margin-top: 30px;
    color: #525966;
  }
  .smarter-tracking p.section-des,
  .smarter-tracking .list-box-item {
    margin-top: 0;
  }
  .fully-remote-page.client-billing .bottom-thumb {
    box-shadow: none;
  }
  
  .cliping-background {
    clip-path: ellipse(100% 58% at 43% 43%);
  }
  .top-features-for-smb .img-text {
    align-items: center !important;
  }
  .transparent-remote-team.profitable-wrap {
    margin-top: 0;
    padding: 50px 0;
    background: #f6faff;
  }
  .customize-experience.profitable-wrap {
    gap: 80px;
  }
  .customize-experience.profitable-wrap .section-des {
    max-width: 690px;
    margin-top: 0px;
  }
  .deeper-dive-into-business ul li {
    margin-top: 2px;
  }
  .transparent-remote-team.profitable-wrap h2 {
    color: #30353e;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.2px;
  }
  .transparent-remote-team.profitable-wrap p {
    color: #30353e;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 1000px;
    width: 100%;
    margin: 30px auto;
  }
  .transparent-remote-team.profitable-wrap .btn {
    border-radius: 6px;
    box-shadow: -6px 6px 30px 0px rgba(0, 0, 0, 0.15);
    outline: none;
    border: none;
    padding: 16px 22px 16px 27px;
  }
  .transparent-remote-team.profitable-wrap .btn::after {
    display: none;
  }
  .thareja-tracking-wrap.agile-project-management {
    padding: 0;
    height: auto;
  }
  .thareja-tracking-wrap.agile-project-management .profitable-item {
    align-items: center;
    padding: 50px 0;
    margin: 0;
  }
  .fully-remote-page.easier-invoice-wrap {
    margin: 100px 0;
    background: #f6faff;
    padding: 50px 0;
  }
  .fully-remote-page .img-card-items,
  .fully-remote-page .card-box {
    padding: 0;
  }
  .fully-remote-page.component-wrap .img-text {
    align-items: center;
  }
  .fully-remote-page .bottom-thumb img {
    width: 100%;
  }
  .transparent-remote-team.profitable-wrap {
    position: relative;
  }
  .transparent-remote-team.profitable-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    background-image: url(../img/boost-smb/line-effect.png);
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
  }
  
  /* ======= hybrid team page style starts===== */
  .hybrid-team-page .hero-bg img {
    width: 100%;
    height: 100%;
  }
  .hybrid-team-page .hero-content-btn {
    text-align: left;
    display: flex;
    gap: 16px;
    justify-content: start;
  }
  .hybrid-team-page .hero-content-btn a:first-child::after {
    display: none;
  }
  .hybrid-team-page .hero-content-btn a:first-child {
    padding-right: 22px;
    font-weight: 400;
  }
  .hybrid-team-page .hero-content-btn a:last-child {
    border: 2px solid #525966;
    color: #525966;
    font-weight: 400;
  }
  
  .hybrid-team-page.widgets-container .img-text {
    flex-wrap: nowrap;
  }
  
  .hybrid-team-page .component-box-item {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 20px;
    justify-content: space-between;
  }
  
  .hybrid-team-page .component-item {
    width: 100%;
  }
  .hybrid-team-page .component-item span {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
  }
  .hybrid-team-page .component-item img {
    width: 42px;
    height: 42px;
  }
  
  /* ========= field service page starts========= */
  
  .field-service-page.widget-container .component-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #f6f9ff;
    width: 100%;
    padding: 10px;
  }
  .field-service-page.widget-container .component-box-item {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: 10px;
    border-radius: 10px;
  }
  .how-workforce-management-works .contents {
    width: 51.95%;
  }
  .how-workforce-management-works .section-thum {
    width: 42.24%;
  }
  .field-service-page.widget-container .component-box-item.active,
  .field-service-page.widget-container .component-box-item.active h3 {
    background-color: #005aff;
    color: white;
  }
  .field-service-page.widget-container .component-box-item:nth-child(1) {
    max-width: 210px;
  }
  .field-service-page.widget-container .component-box-item:nth-child(2) {
    max-width: 296px;
  }
  .field-service-page.widget-container .component-box-item:nth-child(3) {
    max-width: 202px;
  }
  .field-service-page.widget-container .component-box-item:nth-child(4) {
    max-width: 192px;
  }
  .field-service-page.widget-container .component-box-item:nth-child(5) {
    max-width: 294px;
  }
  .field-service-page.widget-container img {
    width: 46px;
  }
  .field-service-page.widget-container h3 {
    color: #005aff;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    margin-bottom: 0;
  }
  .field-service-page.location-based-tracking {
    padding-bottom: 100px;
    background-color: white;
  }
  .field-service-page.location-based-tracking p {
    margin: 30px 0;
  }
  .field-service-page.location-based-tracking a {
    color: #005aff;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    padding-right: 40px;
    position: relative;
    display: inline-block;
  }
  .field-service-page.location-based-tracking a::after {
    content: "";
    position: absolute;
    background-image: url(../img/field-service/right-arrow-learn-more.svg);
    width: 24px;
    height: 24px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    top: 50%;
    transform: translateY(-45%);
  }
  .field-service-page.location-based-tracking img {
    width: 100%;
    max-width: 850px;
    display: block;
    margin: 0 auto;
    margin-top: 60px;
  }
  .field-service-page#phone-location {
    padding-bottom: 0;
  }
  .field-service-page#phone-location .profitable-item,
  .field-service-page#phone-address .profitable-item {
    margin-top: 0;
  }
  .field-service-page#phone-location .profitable-content,
  .field-service-page#phone-location .list-box-item,
  .field-service-page#phone-location .right-text-box {
    width: 100%;
    max-width: 644px;
  }
  .field-service-page#phone-location .list-box-item {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }
  .field-service-page#phone-address .profitable-content {
    width: 60.71%;
  }
  /* .field-service-page#phone-address .profitable-thumb{ width: 330px; } */
  .field-service-page#phone-address .profitable-thumb img {
    width: 100%;
  }
  .field-service-page.odd-item.profitable-wrap {
    padding-bottom: 0;
  }
  .field-service-page .profitable-item {
    gap: 20px;
    align-items: center;
  }
  .field-service-page.profitable-wrap .profitable-content {
    width: 53.26%;
  }
  .field-service-page .profitable-thumb {
    width: 36.94%;
  }
  .field-service-page h3 {
    font-size: 60px;
    line-height: normal;
    letter-spacing: -1.8px;
    margin-bottom: 30px;
  }
  .field-service-page .profitable-content {
    justify-content: start;
    width: 50%;
  }
  .field-service-page.thareja-tracking-wrap .common-wrap {
    max-width: 1500px;
  }
  .field-service-page.thareja-tracking-wrap .cta-inner {
    text-align: left;
    max-width: 602px;
  }
  .field-service-page.thareja-tracking-wrap .cta-inner h3 {
    margin: 0;
  }
  .field-service-page.thareja-tracking-wrap .cta-inner p {
    padding-top: 0px;
    margin-bottom: 30px;
  }
  .field-service-page.thareja-tracking-wrap .cta-inner div:first-child {
    justify-content: start;
  }
  .field-service-page .cta-inner div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }
  .field-service-page .accordion > span {
    color: #005aff;
    text-align: center;
    display: block;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
  }
  .filed-page {
    background-color: #fff;
  }
  div#phone-address {
    padding-top: 0;
  }
  div#phone-location {
    padding-top: 0;
    background-color: #fff;
  }
  
  .field-service-page .cta-btn {
    margin-top: 30px;
  }
  .field-service-page .text-anim {
    margin-bottom: 0;
    line-height: normal;
  }
  #faq .text-anim {
    margin-bottom: 50px;
  }
  
  .filed-page .customer-wrap {
    background-color: #fff;
  }
  
  /* ========= boost SMB page starts ============= */
  .birds-eye-view.profitable-wrap.odd-item {
    padding-bottom: 100px;
  }
  .birds-eye-view.profitable-wrap.odd-item .section-des {
    max-width: 680px;
    text-align: left;
  }
  .birds-eye-view.profitable-wrap.odd-item .profitable-thumb {
    max-width: 596px;
    width: 100%;
  }
  
  /* ======== enterprice workforce page====== */
  .enterprice-workforce .hero-content {
    max-width: 1280px;
  }
  .enterprice-workforce .hero-content-btn {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-bottom: 40px;
  }
  .enterprice-workforce .hero-content-btn a.btn {
    font-weight: 400;
    box-shadow: -6px 6px 30px 0px rgba(0, 0, 0, 0.15);
  }
  .enterprice-productivity-software .contents {
    width: 50.57%;
  }
  .enterprice-productivity-software .section-thum {
    width: 43.62%;
  }
  .enterprice-workforce .hero-content-btn a.btn:last-child {
    border: 2px solid #525966;
    box-shadow: -6px 6px 30px 0px rgba(0, 0, 0, 0.15);
  }
  .enterprice-workforce .profitable-item .profitable-content {
    width: 51%;
  }
  
  .enterprice-workforce-management {
    clip-path: ellipse(100% 58% at 43% 43%);
  }
  .enterprice-workforce-management .component-item img {
    max-width: 48px;
    max-height: 48px;
  }
  .enterprice-workforce-management .bottom-thumb img {
    width: 100%;
  }
  .enterprice-workforce-management .bottom-thumb::after {
    width: 94%;
  }
  .enterprice-workforce .profitable-content .list-box-item {
    margin-top: 0;
  }
  .enabling-growth-in-industry .section-des {
    margin-top: 0;
    margin-bottom: 6px;
    text-align: left;
    color: #525966;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
  }
  .enabling-growth-in-industry .profitable-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 50%;
  }
  .enabling-growth-in-industry .list-box-item {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 14px;
  }
  .enabling-growth-in-industry .list-box-item h5 {
    color: #525966;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px; /* 138.889% */
  }
  
  /* ========= employees timesheet page starts ========= */
  .employees-timesheet p.hero-des,
  .hero-wrap p.hero-des {
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #30353e;
  }
  
  .employees-timesheet p.section-des {
    color: #525966;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
  }
  
  .profitable-wrap.enabling-growth-in-industry {
    position: relative;
  }
  .why-people-use-thareja.component-wrap {
    margin-top: 100px;
    position: relative;
    z-index: 10;
    width: 100%;
  }
  
  .why-people-use-thareja.component-wrap .common-wrap {
    padding-top: 155px;
    padding-bottom: 96px;
  }
  .why-people-use-thareja.component-wrap .component-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 50px;
    border-radius: 16px;
    background: linear-gradient(
      to right,
      rgb(245, 230, 230),
      rgb(229, 227, 250),
      rgb(245, 230, 230)
    );
    backdrop-filter: blur(12.5px);
    overflow: hidden;
    border-radius: 20px;
    /* border: 4px solid #FFF; */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12.5px);
  }
  .why-people-use-thareja.component-wrap .gradient-border-wrap {
    max-width: 1110px;
    border-radius: 20px;
    padding: 4px;
    margin: 0 auto;
    z-index: 20;
    backdrop-filter: blur(12.5px);
    background: linear-gradient(to right, rgb(245, 233, 236), rgb(176, 213, 255));
  }
  .why-people-use-thareja.component-wrap .content-box {
    display: flex;
    padding: 0px 20px 0px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    align-self: stretch;
    width: 100%;
    max-width: 560px;
  }
  .why-people-use-thareja.component-wrap h3 {
    color: #30353e;
    text-align: center;
    font-size: 34px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.02px;
  }
  .why-people-use-thareja.component-wrap .btn {
    box-shadow: -6px 6px 30px 0px rgba(0, 0, 0, 0.15);
  }
  .why-people-use-thareja.component-wrap .thumnail-box {
    width: 50%;
    max-width: 500px;
  }
  .why-people-use-thareja.component-wrap .background-img-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
  }
  .why-people-use-thareja.component-wrap img {
    width: 100%;
    height: 100%;
  }
  .why-people-use-thareja.cloud-based-integration .gradient-border-wrap {
    max-width: 680px;
    z-index: 20;
  }
  .why-people-use-thareja.cloud-based-integration .component-inner {
    padding: 60px;
    max-width: 100%;
  }
  .why-people-use-thareja.cloud-based-integration p {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 25px;
  }
  .why-people-use-thareja.component-wrap .project-management-softwares {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    padding: 70px 50px 50px 50px;
    width: 100%;
    height: 100%;
  }
  .why-people-use-thareja.component-wrap img {
    width: 100%;
    height: 100%;
  }
  
  .employees-timesheet .profitable-content {
    width: 40%;
  }
  .employees-timesheet .profitable-content {
    width: 40%;
  }
  .employees-timesheet .profitable-thumb {
    width: 55%;
  }
  .employees-timesheet .list-box-item {
    display: block;
  }
  .employees-timesheet .left-icon h4 {
    margin: 0;
  }
  .employees-timesheet .left-icon {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 14px;
    width: 100%;
  }
  .employees-timesheet ul {
    margin-left: 56px;
  }
  .employees-timesheet ul li {
    color: #525966;
    font-size: 18px;
    font-weight: 400;
    line-height: 38px;
    margin-top: 5px;
  }
  .employees-timesheet .list-box-item {
    margin-top: 20px;
  }
  
  /* time tracking app page design starts */
  .time-tracking-app .img-text img {
    width: auto;
    max-width: 48px;
  }
  .time-tracking-app .invoice-details h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
  }
  .time-tracking-app .bottom-thumb {
    width: 100%;
    max-width: 900px;
  }
  .time-tracking-app .bottom-thumb img {
    width: 100%;
  }
  
  .time-tracking-app {
    overflow: hidden;
  }
  
  /* ======== online time reporting page starts ========== */
  
  .online-time-reporting .common-wrap {
    max-width: 1300px;
  }
  .online-time-reporting-widgets .img-text {
    flex-wrap: nowrap;
    align-items: center !important;
  }
  
  .how-thareja-timeclock-work .content-box .box-title {
    color: #30353e;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  /* GPS time tracking page starts */
  
  .how-gps-works .section_title {
    width: 100%;
    max-width: 1150px;
  }
  .how-gps-works .contents {
    width: 51.59%;
  }
  .how-gps-works .section-thum {
    width: 36.81%;
  }
  .how-gps-works .content-box .box-left-space {
    margin-left: 42px;
  }
  .use-gps-software .contents {
    width: 55.07%;
  }
  .use-gps-software .section-thum {
    width: 38.11%;
  }
  .timetracking-with-geofence .content-box .box-left-space {
    margin-left: 42px;
  }
  .save-gps-timesheet .contents {
    width: 46.52%;
  }
  .save-gps-timesheet .content-box.flex-align-center {
    gap: 20px;
  }
  .save-gps-timesheet .section-thum {
    width: 47.68%;
  }
  .about-geofences-wrap {
    width: 100%;
    padding: 50px 0;
    background: #f6faff;
    float: left;
    margin-top: 100px;
  }
  .about-geofences-wrap .about-geofences-inner {
    width: 100%;
    text-align: center;
  }
  .about-geofences-wrap h3 {
    color: #30353e;
    margin-bottom: 30px;
    text-align: center;
  }
  .build-for-all-types .contents {
    width: 49.63%;
  }
  
  .build-for-all-types .contents-inner {
    max-width: 380px;
  }
  
  .build-for-all-types .section-thum {
    width: 43.91%;
  }
  .build-for-all-types .section-details .box-subtitle {
    text-transform: none;
  }
  
  .build-for-all-types .icon-box .box-subtitle {
    font-weight: 700px;
  }
  .build-for-all-types .icon-box .box-subtitle {
    font-weight: 700px;
  }
  
  .build-for-all-types .right-arrow {
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    background: url("../img/gps-time-tracking/right-arrow.svg");
  }
  
  /*  project cost management page starts */
  .how-tharejaai-project-cost .contents {
    width: 57.39%;
  }
  .how-tharejaai-project-cost .section-thum {
    width: 36.81%;
  }
  
  .budget-management .contents {
    width: 44.13%;
  }
  .budget-management .section-thum {
    width: 45.86%;
  }
  
  /* product insidght page starts */
  .product-insights-widget .img-text {
    align-items: start;
    flex-wrap: nowrap;
  }
  
  .realtime-workplace .contents {
    width: 46.81%;
  }
  .realtime-workplace .section-thum {
    width: 45.86%;
  }
  
  .catch-the-highlight .contents p,
  .cutdown-on-mettings .contents p,
  .classify-work-hours .contents p,
  .stay-focused .contents p {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .catch-the-highlight .section-thum {
    width: 44.2%;
  }
  .cutdown-on-mettings .section-thum {
    width: 48.17%;
  }
  
  .classify-work-hours .section-thum {
    width: 44.2%;
  }
  .stay-focused .section-thum {
    width: 32.17%;
  }
  .enterprise-ready {
    background-color: #000000;
    padding: 50px 0;
    margin-top: 100px;
  }
  .enterprise-ready .contents {
    width: 100%;
    text-align: center;
  }
  .enterprise-ready .enterprise-ready-steps {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 50px;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  .enterprise-ready .section-des {
    text-align: center;
    color: white;
  }
  .enterprise-ready .gradient-card {
    background: linear-gradient(to right, #01d18f, #005aff);
    border-radius: 16px;
    padding: 1px;
  }
  .enterprise-ready .gradient-card-inner {
    border-radius: 17px;
    padding: 26px;
    background: #1f1f1f;
    display: flex;
    width: 100%;
    width: calc(100%-2px);
    height: 100%;
    height: calc(100%-2px);
    flex-direction: column;
    gap: 14px;
    text-align: left;
  }
  .enterprise-ready .gradient-card-inner p {
    position: relative;
    padding-left: 38px;
    color: white;
  }
  .enterprise-ready .gradient-card-inner p::after {
    content: "";
    position: absolute;
    background-image: url(../img/product-insights/checkbox-icon-blue-bg.svg);
    width: 24px;
    height: 24px;
    background-position: center center; /* background-repeat: no-repeat; */
    background-size: cover;
    left: 0;
    top: 50%;
    transform: translateY(-45%);
  }
  
  /* workforce analytics page starts */
  .workfoce-analytics-works .section-thum {
    width: 41.6%;
  }
  .workfoce-analytics-works .contents {
    width: 52.6%;
  }
  .workforce-analytics-software-solution .section-thum {
    width: 41.73%;
  }
  .workforce-analytics-software-solution .contents {
    width: 52.46%;
  }
  .where-metrics-meet-morals .section-thum {
    width: 50.72%;
  }
  .where-metrics-meet-morals .contents {
    width: 43.47%;
  }
  .where-metrics-meet-morals .contents ul {
    color: #30353e;
    margin-top: 10px;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 181.818% */
    list-style-position: inside;
    list-style: disc;
    padding-left: 30px;
  }
  .where-metrics-meet-morals .contents p {
    color: #30353e;
    font-size: 22px;
  }
  .use-workforce-analytics .section-thum {
    width: 55.43%;
  }
  .use-workforce-analytics .contents {
    width: 45.28%;
  }
  .mental-helth-matters .section-thum {
    width: 53.62%;
  }
  .mental-helth-matters .contents {
    width: 40.57%;
  }
  .workforce-analytics-software-solution .contents p,
  .mental-helth-matters .contents p {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .why-people-use-thareja .des {
    margin-top: -10px;
    color: #30353e;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
  }
  
  /* employee productivity tracking page starts */
  
  .employee-productivity-tracking .hero-content {
    max-width: 80%;
  }
  .employee-productivity-tracking .hero-des {
    max-width: 65%;
    margin-inline: auto;
  }
  .measure-employee-performance .component-item img {
    max-width: 48px;
    max-height: 48px;
  }
  .benefits-of-thareja-tracker .section_title {
    max-width: 1000px;
  }
  .benefits-of-thareja-tracker .contents {
    width: 56.52%;
  }
  .benefits-of-thareja-tracker .hero-thumb {
    width: 37.68%;
  }
  .what-is-productivity .contents {
    width: 43.18%;
  }
  .what-is-productivity .hero-thumb {
    width: 51%;
  }
  .how-to-track-employee-productivity .section_des {
    text-align: center;
    color: #525966;
  }
  .how-to-track-employee-productivity .contents {
    width: 57.39%;
  }
  .how-to-track-employee-productivity .section-thum {
    width: 36.81%;
  }
  /* .employee-productivity-tracking{ margin-top: 100px; } */
  .leverage-your-tech .contents {
    width: 43.47%;
  }
  .leverage-your-tech .section-thum {
    width: 50.72%;
  }
  .leverage-your-tech .contents p,
  .leverage-your-tech .contents li {
    color: #30353e;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
  }
  .leverage-your-tech ul {
    margin: 10px 0;
  }
  .leverage-your-tech .btn-wrap {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 40px;
  }
  .leverage-your-tech .btn {
    font-weight: 400;
  }
  
  /* time tracking with screenshot page starts */
  .screenshot-based-tracking .contents {
    width: 52.46%;
  }
  .screenshot-based-tracking .section-thum {
    width: 41.71%;
  }
  
  /* employee scheduling page starts */
  
  .how-employee-scheduling-works .contents {
    width: 47.82%;
  }
  .how-employee-scheduling-works .btn-wrap {
    margin-top: 40px;
  }
  .how-employee-scheduling-works .section-thum {
    width: 46.37%;
  }
  .user-friendly-employee-scheduling .contents,
  .reach-peak-profitability .contents {
    width: 57.75%;
  }
  .user-friendly-employee-scheduling .section-thum,
  .reach-peak-profitability .section-thum {
    width: 36.66%;
  }
  
  /* online payroll and payments page starts */
  .how-payroll-and-time-works .contents {
    width: 51.95%;
  }
  .how-payroll-and-time-works .section-thum {
    width: 42.24%;
  }
  .set-and-track-remote-employee .gradient-text {
    max-width: 1200px;
    margin-inline: auto;
  }
  
  .cut-down-admin-hours .contents {
    width: 48.18%;
  }
  .cut-down-admin-hours .section-thum {
    width: 46.01%;
  }
  
  .online-payroll-and-payments .img-text,
  .set-and-track-remote-employee .img-text {
    flex-wrap: nowrap;
  }
  
  /* attendance tracking page starts*/
  .why-choose-thareja .section_des {
    color: #525966;
  }
  
  .how-thareja-tracking-works .contents {
    width: 51.95%;
  }
  .how-thareja-tracking-works .section-thum {
    width: 42.24%;
  }
  .how-thareja-tracking-works ul {
    list-style-position: inside;
    list-style: disc;
    padding-left: 30px;
  }
  .how-thareja-tracking-works li {
    color: #525966;
    font-size: 18px;
    font-weight: 400;
    line-height: 38px;
  }
  .set-attendance-tracking-software .contents {
    width: 42.26%;
  }
  .set-attendance-tracking-software .box-title {
    color: #30353e;
    font-size: 27px;
    font-weight: 400;
    line-height: normal;
  }
  .industries-that-uses-tracking .bottom-spaching {
    margin-bottom: 16px;
  }
  .useful-integration .section-thum {
    width: 38.47%;
  }
  .useful-integration .contents {
    width: 55.72%;
  }
  .useful-integration .contents h4 {
    color: #30353e;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
  }
  .useful-integration .cta-wrapper {
    margin-top: 40px;
  }
  .industries-that-uses-tracking .contents {
    width: 55.72%;
  }
  /* overtime-tracker page starts */
  .track-overtime-hours .contents {
    width: 51.95%;
  }
  .track-overtime-hours .section-thum {
    width: 42.24%;
  }
  
  /* ========== chatbot section styles======= */
  .chatbot-activator-wrap {
    width: auto;
    height: auto;
    position: fixed;
    z-index: 99999;
    right: 24px;
    bottom: 5.87%;
  }
  .chatbot-activator-wrap .conversations-toggler {
    width: 60px;
    border-radius: 100%;
    background-color: #005aff;
    height: 60px;
    border: none;
    margin: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .consulting-hero .hero-content-btn {
    display: flex;
  }
  .hero-icon {
    display: flex;
    width: 100%;
    gap: 40px;
    margin-top: 30px;
    float: left;
  }
  .hero-icon dfn {
    width: 1px;
    height: auto;
    background-color: #fff;
  }
  .hero-icon img {
    width: 120px;
    object-fit: contain;
  }
  .consulting-component .component-item {
    width: 23.40625%;
    align-items: flex-start;
  }
  .streamline .profitable-item {
    flex-direction: row-reverse;
  }
  .streamline .profitable-item span {
    font-size: 22px;
    font-weight: 400;
    padding-top: 10px;
  }
  .streamline .profitable-content p {
    margin-top: 5px;
  }
  .development-page .consulting-firms {
    padding-bottom: 0;
    height: auto;
  }
  .hero-bg img {
    width: 100%;
    object-fit: cover;
  }
  
  /* Mega-menu */
  .mega_menu.sub_menu {
    position: absolute;
    width: 100%;
    background-color: #fff;
    left: 0;
    top: 50px;
    padding: 50px 0 20px;
    z-index: -1;
    display: none;
  }
  .menu-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    overflow-x: hidden;
  }
  .tab-nav {
    float: left;
    width: 30%;
  }
  .main-nav .tab-nav a {
    font-size: 20px;
    line-height: 23px;
    color: #30353e;
    font-weight: 400;
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 16px 14px;
    position: relative;
  }
  .mega-menu-wrap {
    float: left;
    width: 51%;
    padding: 20px 30px 30px 30px;
    border: 1px solid #dde3e7;
    border-top: 0;
    border-bottom: 0;
  }
  .tab-nav {
    float: left;
    width: 19%;
  }
  .mega_menu_item {
    float: left;
    width: 25%;
    background-color: #fafcff;
    padding: 20px;
    border-radius: 14px;
  }
  .tab-menu_item {
    float: left;
    width: 100%;
    display: none;
  }
  .details-title {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #dde3e7;
  }
  .mega-menu-wrap .cta-btn {
    width: auto;
    margin-top: 0;
  }
  .menu-top-heading {
    width: 70%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .menu-top-heading img {
    width: 40px;
  }
  .list-icon-nav h4 {
    font-size: 20px;
    line-height: 25px;
    color: #30353e;
  }
  .list-icon-nav p {
    font-size: 14px;
    line-height: 20px;
    color: #525966;
  }
  .menu-box {
    background-color: #fff;
    border: 1px solid rgba(48, 53, 62, 0.06);
    border-radius: 10px;
    width: 48%;
    padding: 16px 18px;
  }
  .menu-box:hover {
    background-color: #f0f5ff;
  }
  .mega-menu-details {
    float: left;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 130px; /*border-bottom: 1px solid #DDE3E7;*/
  }
  .app-logo-icon {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    gap: 10px;
    margin-top: 20px;
  }
  .logo-text {
    float: left;
    width: 30%;
  }
  .logo-text img {
    width: 60px;
    margin: 0 auto;
    display: flex;
  }
  .logo-text:hover img {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
  }
  .logo-text span {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #525966;
    text-align: center;
  }
  .logo-text:hover span {
    color: #005aff;
  }
  .mega_menu_item p {
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dde3e7;
  }
  .tab-menu_item:first-child {
    display: block;
  }
  .tab-link.active {
    color: #005aff;
  }
  .widget-item {
    position: relative;
    padding-top: 20px;
  }
  .cta-btn-dropdown {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
  }
  .line {
    width: 90%;
    height: 1px;
    background-color: #dde3e7;
    position: absolute;
    bottom: 70px;
  }
  .main-nav .cta-btn-dropdown a {
    font-size: 14px !important;
    color: #005aff !important;
    display: flex;
    gap: 10px;
    justify-self: center;
  }
  .tab-nav .cta-btn-dropdown {
    bottom: 0px;
  }
  .tab-nav a::after {
    content: "";
    position: absolute;
    background-image: url(https://web.thareja.ai/svgs/arrow-black.svg);
    right: 14px;
    top: 22px;
    width: 17px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  a.tab-link.active {
    background-color: rgba(0, 90, 255, 0.04);
    color: #005aff;
    border-radius: 10px;
  }
  a.tab-link.active:after {
    background-image: url(https://web.thareja.ai/svgs/arrow-blue-bold.svg);
  }
  .main-nav .menu-box h4 {
    font-size: 18px;
    color: #30353e;
    font-weight: 400;
    padding-bottom: 10px;
  }
  .main-nav .menu-box p {
    font-size: 14px;
    color: #30353e;
    font-weight: 400;
  }
  .cta-btn-dropdown a::after {
    display: none;
  }
  
  .menu-widget-item.menu-item-inner {
    float: left;
    width: calc(100% - 396px);
    border-right: 1px solid #dde3e7;
    padding: 0 30px;
    display: flex;
    gap: 20px;
    row-gap: 20px;
    position: relative;
    padding-bottom: 30px;
  }
  .customer-stories {
    float: left;
    width: 396px;
    padding: 0 30px;
    position: relative;
  }
  .menu-widget {
    float: left;
    width: 32%;
    padding-bottom: 50px;
  }
  .menu-widget h5 {
    color: #005aff;
    font-size: 20px;
    padding-bottom: 20px;
    font-weight: 400;
  }
  .menu-widget .menu-box {
    width: 100%;
    margin-bottom: 20px;
  }
  .menu-widget-inner {
    float: left;
    width: 100%;
    padding-bottom: 40px; /*border-bottom: 1px solid #DDE3E7;*/
    gap: 18px;
    flex-flow: row wrap;
    display: flex;
  }
  .menu-item-inner {
    float: left;
    width: 100%;
    height: 84%;
  }
  .customer-stories h5 {
    color: #005aff;
    font-size: 20px;
    padding-bottom: 20px;
    font-weight: 400;
  }
  .customer-stories p {
    color: #525966;
    font-size: 16px;
    padding-bottom: 20px;
    font-weight: 400;
    padding-top: 20px;
  }
  .border-null {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .large-pb {
    padding-bottom: 150px;
  }
  .employee-scheduling .faq-wrap {
    background-color: transparent;
  }
  
  /* Mega-menu */
  
  .component-wrap.client-billing.streamline {
    background-image: unset;
    height: auto;
  }
  .stage-items {
    display: none;
    float: left;
    width: 100%;
  }
  
  .home-page .tab-wrap .stage-items {
    float: none;
  }
  
  .without-icon {
    padding: 16px 27px 16px 27px;
  }
  .without-icon:after {
    display: none;
    padding: 14px 27px 14px 27px;
  }
  .future-work {
    padding-top: 0;
  }
  .future-work .profitable-item {
    margin-top: 0;
  }
  .app-noted {
    padding: 60px 0;
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    flex-direction: column;
    align-items: center;
  }
  .app-noted h3 {
    font-size: 40px;
    padding-bottom: 10px;
  }
  .app-noted p {
    font-size: 22px;
    padding-bottom: 40px;
  }
  .app-btn img {
    width: 158px;
  }
  .app-item .img-card {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .app-item .btn {
    display: block;
    padding: 14px 22px 14px 40px;
    margin-top: 30px;
    width: 288px;
    box-shadow: -6px 6px 30px rgba(0, 0, 0, 0.15);
  }
  span.top-text {
    text-align: center;
    display: block;
    color: #005aff;
    font-size: 27px;
    padding-bottom: 20px;
  }
  .app-btn img:last-child {
    width: 174px;
  }
  .component-wrap.client-billing.fully-remote-page {
    height: auto;
    background-color: #f4f7ff;
    background-size: contain;
    margin-top: 100px;
  }
  .top-text .lead-text {
    font-size: 22px;
  }
  .cta-wrap {
    height: auto;
  }
  .deeper-dive-into-business h2 {
    padding-bottom: 20px;
  }
  .profitable-thumb img {
    width: 100%;
  }
  .app-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 13px;
  }
  
  .back-btn {
    display: none;
    font-size: 16px;
    background: none;
    border: none;
    color: #005aff;
    padding: 10px;
  }
  
  /* employee timesheet page  */
  .employees-timesheet-page .faq-wrap {
    background-color: transparent;
  }
  
  .employees-timesheet-page
    #why-people-use-thareja.component-wrap
    .gradient-border-wrap {
    background: linear-gradient(
      to right,
      rgb(245, 233, 236),
      rgb(176, 213, 255)
    ) !important;
  }
  .employees-timesheet-page
    #why-people-use-thareja.component-wrap
    .component-inner {
    background: linear-gradient(
      to right,
      rgb(245, 230, 230),
      rgb(229, 227, 250),
      rgb(245, 230, 230)
    ) !important;
    backdrop-filter: blur(12.5px) !important;
    justify-content: space-between !important;
  }
  
  .employees-timesheet-page #why-people-use-thareja.component-wrap .content-box {
    background: none !important;
    background: unset !important;
    backdrop-filter: unset !important;
    border-bottom-right-radius: unset !important;
    border-top-right-radius: unset !important;
    padding-left: unset !important;
    max-width: 610px !important;
    width: 54.95% !important;
  }
  
  /* employees-timesheet */
  .cloud-based-integration.component-wrap .gradient-border-wrap {
    max-width: 680px !important;
    padding: 0 !important;
  }
  
  .cloud-based-integration.component-wrap .component-inner {
    padding: 0;
  }
  
  /* enterprice workforce page */
  .enterprice-workforce-widgets .img-text {
    align-items: center !important;
  }
  
  /* over time tracker page */
  .workforce-analytics-software-widget .img-text {
    flex-wrap: nowrap;
  }
  
  .home-page .home-section-title {
    text-align: center;
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: 123%;
    letter-spacing: -3px;
  }
  .home-page .home-section-subtitle {
    color: var(--Black, #000);
    text-align: center;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.8px;
  }
  
  /* Mobile specific styling */
  @media (max-width: 1280px) {
    .home-page .tab-wrap .rounded-bg {
      clip-path: ellipse(100% 62% at 50% 38%);
    }
  
    .mega_menu.sub_menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      overflow-y: auto;
      z-index: 2000;
      display: none; /* Hidden by default */
    }
  
    .back-btn {
      display: block;
      margin: 10px;
      margin-top: 30px;
    }
  }
  
  .download-app .hero-wrap {
    padding-top: 100px;
  }
  
  .agency-page .form-inner {
    justify-content: flex-start;
  }
  .fully-remote-page {
    padding-top: 150px;
  }
  .hero-bg img {
    height: 100%;
  }
  .price-page .hero-content dfn {
    color: #005aff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 400;
  }
  .smarter-tracking .profitable-thumb {
    float: left;
    width: 48.605634%;
  }
  .remote-page .fully-remote-page {
    padding-top: 0;
  }
  .customize-experience.profitable-wrap {
    padding-bottom: 100px;
    margin-top: 80px;
  }
  .remote-page {
    background-color: #fff;
  }
  .remote-page .fully-remote-page.easier-invoice-wrap {
    padding: 50px;
    margin-top: 0;
  }
  .complete-workforce-management .profitable-content {
    width: 44.450704%;
  }
  .online-time-reporting {
    background-color: #fff;
  }
  .online-time-reporting .online-customer.customer-wrap {
    background-color: #fff;
  }
  .online-time-reporting .profitable-wrap {
    background-color: #fff;
  }
  .save-big .list-box ul li {
    font-size: 18px;
    padding-bottom: 10px;
  }
  .save-big .img-card p {
    font-size: 18px;
    padding-bottom: 5px;
  }
  .save-big .img-card span {
    font-size: 14px;
  }
  .save-big .img-card {
    position: relative;
  }
  .save-big .card-box {
    align-items: center;
    padding-right: 20px;
    padding-bottom: 50px;
    gap: 10px;
    row-gap: 20px;
    justify-content: unset;
  }
  .plus-icon {
    width: 24px;
    float: left;
  }
  .cloud-based-integration {
    position: relative;
  }
  .cloud-based-integration:after {
    content: "";
    position: absolute;
    background-image: url(../img/circle.png);
    background-position: center center;
    background-repeat: repeat;
    width: 100%;
    height: 100%;
  }
  
  .tab-image-thumb img {
    display: none; /* Hide all images by default */
  }
  .tab-image-thumb img.active {
    display: block; /* Display only the active image */
  }
  .component-box-item {
    cursor: pointer;
  }
  .tab-items {
    display: none;
  }
  .tab-items.active {
    display: block;
  }
  .component-box-item.active {
    background-color: #005aff;
    color: #ffffff;
    border-radius: 10px;
  }
  .top-line {
    padding: 26px 0;
    border-top: 1px solid #dde3e7;
  }
  .home-page .faq-wrap .gradient-text.text-anim .current-word {
    background: linear-gradient(
      90deg,
      rgba(1, 209, 143, 1) 30%,
      rgba(0, 90, 255, 1) 58%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .text-white {
    color: #fff;
  }
  a.btn.transparent_btn.about-thareja {
    border: 0;
    background: linear-gradient(
      90deg,
      rgba(1, 209, 143, 1) 30%,
      rgba(0, 90, 255, 1) 58%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  a.btn.transparent_btn.about-thareja:after {
    background-image: url(../img/green-arrow.svg);
  }
  #about .cta-btn {
    justify-content: end;
  }
  section.main-content-wrap.payroll-page.agency-page {
    background-color: #fff;
  }
  .agency-page .app-benifit span {
    font-size: 18px;
    padding-right: 10px;
  }
  .agency-page .app-benifit span:nth-child(4) {
    padding-right: 0;
    padding-left: 10px;
  }
  .agency-page .solution-hero .app-benifit {
    gap: 8px;
    align-items: center;
  }
  .agency-page .solution-hero .app-benifit dfn {
    height: 20px;
  }
  .agency-page .component-box-item {
    margin-top: 0;
    background-color: transparent;
    padding-top: 60px;
  }
  .agency-page .component-wrap {
    padding: 100px 0;
    margin-top: 0;
  }
  .main-content-wrap.contractor-page {
    padding-top: 100px;
  }
  .main-content-wrap {
    padding-top: 65px;
    background-color: #fff;
  }
  .main-content-wrap.agency-page {
    padding-top: 0px;
  }
  .circle-box {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Ensures the element is circular */
    background: white; /* Inner background color */
    position: relative;
    min-width: 40px;
  }
  .circle-box::before {
    content: "";
    position: absolute;
    inset: 0; /* Covers the entire box */
    border-radius: inherit; /* Matches the circle-box radius */
    padding: 1px; /* Space for the border effect */
    background: linear-gradient(
      90deg,
      rgba(1, 209, 143, 1) 22%,
      rgba(0, 90, 255, 1) 58%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude; /* Creates a cutout effect for the inner area */
  }
  
  .agency-page .profitable-thumb {
    width: 48.605634%;
  }
  .agency-page .profitable-content {
    width: 47.450704%;
  }
  .creative-and-client-faching-teams .list-box-item:first-child {
    margin-top: 0 !important;
  }
  .creative-and-client-faching-teams
    .list-box-item:first-child
    .right-text-box
    span {
    margin-top: 0;
  }
  
  .agency-page .dot-icon {
    max-width: 827px;
    margin: 0 auto;
  }
  .agency-page .bottom-thumb {
    max-width: 100%;
  }
  .agency-page .component-wrap.client-billing {
    padding-bottom: 0;
  }
  .agency-page .dot-icon:after {
    right: -29px;
    top: -12px;
  }
  .agency-page .odd-item.required-wrap {
    background-color: #fff;
    padding-bottom: 0;
    padding-top: 70px;
  }
  .agency-page .thareja-tracking-wrap .profitable-thumb {
    width: 55.605634%;
  }
  
  .agency-page .thareja-tracking-wrap .profitable-content {
    width: 43.450704%;
  }
  .agency-page .component-wrap .img-text {
    align-items: center;
  }
  .client-billing .component-item:hover {
    border: 3px solid #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  }
  .easier-invoice-wrap .img-card:hover {
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  }
  .agency-page .faq-wrap {
    background-color: #fff;
  }
  .agency-page .cta-wrap {
    padding-bottom: 60px;
  }
  .price-page .hero-content span {
    color: #30353e;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
  }
  
  .icon-with-text {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
  }
  .price-page .icon-with-text dfn {
    font-size: 16px;
    color: #000000;
    margin: 0;
  }
  .price-page .img-card-item {
    float: left;
    width: 100%; /*background-image: linear-gradient(#F8F9FA, #F8F9FA), 
        radial-gradient(circle at top left, #ffffff, #ffffff);*/
  }
  .price-page .grid-layout {
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
    row-gap: 20px;
    column-gap: 20px;
    padding-bottom: 30px;
    align-items: stretch;
  }
  
  .price-page .grid-layout .card-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .price-page .grid-layout .card-container .img-card {
    flex-grow: 1;
    height: 100%;
  }
  
  .price-page .grid-layout .card-container .plus-icon {
    min-width: 24px;
  }
  
  .plan-price .component-item {
    width: 100%;
  }
  .plan-price .component-box-item {
    cursor: pointer;
    width: 32%;
    background-color: #fff;
    gap: 0;
    display: block;
    border-radius: 20px;
  }
  .plan-price .component-item {
    width: 100%;
    padding-bottom: 19px;
    padding-top: 0;
    background-color: transparent;
  }
  .plan-price.personal-inner {
    float: left;
    width: 100%;
    gap: 19px;
  }
  .personal-wrap.round-gradiant.plan-price {
    background-size: contain;
    background-position: center center;
  }
  .top-plan-heading {
    float: left;
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-bottom: 34px;
  }
  a.btn.without-icon.blk-btn {
    width: 100%;
    border: 2px solid #000;
    color: #000;
    float: left;
    border-radius: 6px;
    font-size: 20px;
    margin-top: 24px;
    text-transform: uppercase;
  }
  
  .top-plan-heading h3 {
    font-size: 38px;
    line-height: normal;
    font-weight: 300;
    padding-bottom: 24px;
    color: #000;
  }
  .top-plan-heading span {
    font-size: 60px;
    line-height: normal;
    font-weight: 400;
    display: inline;
    text-align: center;
    color: #000;
  }
  .top-plan-heading dfn {
    font-size: 40px;
    line-height: normal;
    font-weight: 400;
    padding-left: 10px;
  }
  .top-plan-heading sup {
    font-size: 40px;
    line-height: normal;
    font-weight: 400;
    position: relative;
    top: 6px;
    padding-right: 10px;
  }
  .component-box-item.powers {
    background-color: #e8f6f2;
    margin-top: 20px;
    position: relative;
    padding-top: 20px;
  }
  
  .powers a.btn.without-icon.blk-btn {
    border: 0;
    color: #fff;
  }
  .component-box-item.powers:after {
    content: "";
    position: absolute;
    top: 0;
    background: rgb(1, 209, 143);
    background: linear-gradient(
      90deg,
      rgba(1, 209, 143, 1) 22%,
      rgba(0, 90, 255, 1) 58%
    );
    width: 100%;
    height: 20px;
    left: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .powers .top-plan-heading dfn {
    font-size: 22px;
  }
  .startup .top-plan-heading dfn {
    font-size: 22px;
  }
  .component-item span {
    font-size: 22px;
    color: #000;
  }
  .save-big {
    margin-top: 0;
  }
  .price-page .save-big {
    margin-top: 100px;
  }
  
  /* Start career Style */
  .career-wrap {
    float: left;
    width: 100%;
    margin-top: 0px;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
  }
  .video-thumb {
    position: absolute;
    float: left;
    width: 100%;
    transition: 0.45s ease-in-out;
    z-index: 2;
    height: 100%;
    overflow: hidden;
  }
  .career-wrap .common-wrap {
    max-width: 1274px;
  }
  .career-inner {
    width: 100%;
    position: relative;
    z-index: 11;
    text-align: center;
  }
  .career-thumb-and-content {
    width: 100%;
    column-gap: 2.52951096121417%;
    row-gap: 30px;
    margin-top: 50px;
  }
  .career-thumb {
    width: 37.77403035413153%;
  }
  .career-thumb figure {
    width: 100%;
    height: 100%;
  }
  .career-thumb figure img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
  }
  .commmon-title.career-title h2 {
    background: linear-gradient(99.39deg, #01d18f 0.47%, #005aff 99.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .career-content-wrap {
    width: 59.6964586846543%;
    background-color: var(--light-green);
    padding: 20px 20px 20px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
  }
  .career-content {
    max-width: 530px;
    width: 100%;
  }
  .career-content-list-wrap {
    width: 100%;
    margin-top: 46px;
    row-gap: 35px;
  }
  .career-content-list {
    width: 100%;
  }
  .career-content-list-logo {
    width: 60px;
  }
  .career-content-list-text {
    width: calc(100% - 60px);
    padding-left: 23px;
  }
  .career-content-list-text h6 {
    text-transform: unset;
    margin-bottom: 10px;
  }
  .career-content-list-text p {
    letter-spacing: -0.01em;
  }
  .career-content-btn {
    width: 100%;
    margin-top: 40px;
  }
  .career-content-btn a.btn.btn.gradient_btn {
    box-shadow: -6px 6px 30px rgba(0, 0, 0, 0.15);
  }
  .commmon-title.career-title {
    float: left;
    width: 100%;
  }
  .career-inner dfn {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    font-size: 13px;
  }
  .career-inner p {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
  .future-work .profitable-inner {
    background-color: #ecf2f0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .future-work .profitable-content {
    padding: 0 0 0 80px;
  }
  .future-work .profitable-content .small-text {
    font-size: 13px;
  }
  .future-work .profitable-content p {
    font-size: 27px;
  }
  
  /* End career Style */
  
  /* Modal */
  .modal-wrap {
    float: left;
    width: 100%;
  }
  .modal-wrap .profitable-content {
    float: left;
    width: 100%;
  }
  .modal-wrap .profitable-thumb {
    float: left;
    width: 45.605634%;
  }
  .modal-wrap .profitable-item {
    float: left;
    width: 43%;
  }
  .modal-wrap .profitable-inner {
    float: left;
    width: 100%;
    display: flex;
    gap: 6%;
    flex-flow: row wrap;
    background-color: #fafcff;
  }
  .modal-wrap .profitable-content .small-text {
    font-size: 13px;
  }
  
  .modal-inner {
    position: absolute;
    max-width: 1200px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 0px;
    width: 80px;
    cursor: pointer;
    z-index: 11;
  }
  .modalshow #modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    display: flex;
  }
  .modal-inner {
    position: absolute;
    max-width: 1200px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .modal-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1111;
    display: none;
  }
  .modal-info {
    float: left;
    width: 100%;
  }
  
  .main-content-wrap.online-time-reporting {
    padding-top: 64px;
  }
  .online-time-reporting .hero-wrap {
    margin-top: 0;
    position: relative;
  }
  .hero-circle-bg {
    position: absolute;
    top: 0;
    height: 100%;
  }
  .online-time-reporting .hero-content h1 {
    margin-bottom: 30px;
  }
  .online-time-reporting .hero-content-btn {
    margin-top: 0;
    padding-top: 0;
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .online-time-reporting .bottom-thumb {
    margin-top: 0px;
  }
  .online-time-reporting .app-benifit dfn {
    height: 24px;
    width: 1px;
    background-color: #30353e;
  }
  .online-time-reporting .component-item {
    width: 31.30625%;
  }
  .online-time-reporting .component-box-item {
    gap: 3%;
  }
  .online-time-reporting .list-box-item {
    justify-content: unset;
    gap: 10px;
  }
  .online-time-reporting .required-wrap .right-text-box h4 {
    margin-top: 8px;
  }
  .online-time-reporting .component-wrap {
    margin-top: 0;
  }
  .online-time-reporting .client-billing {
    background-image: url(../img/online-time-reporting/rgba-curve.png);
    background-color: #f4f7ff;
    background-size: contain;
    margin-top: 100px;
  }
  .online-time-reporting .time-tracking-app .bottom-thumb {
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .home-page .hero-wrap {
    margin-top: 0;
    padding-top: 65px;
  }
  .home-page .brand-title {
    padding-top: 0;
  }
  h4.top-line {
    padding-bottom: -0;
  }
  .agency-page .profitable-wrap {
    background-color: transparent;
    padding-top: 0;
  }
  .agency-page .ct-pt {
    padding-top: 0;
  }
  .agency-page .component-wrap.client-billing {
    margin-top: 100px;
    padding: 50px 0;
  }
  .small-line .circle-box::after {
    height: 90px;
  }
  
  .agency-page .team-member .profitable-content h4 {
    margin-top: 0;
  }
  .agency-page .component-wrap.client-billing {
    background-size: contain;
    background-color: #f4f7ff;
    padding-bottom: 0;
  }
  .agency-page .component-wrap.client-billing .bottom-thumb {
    border: 0;
    box-shadow: none;
    background-color: transparent;
  }
  .agency-page .hero-wrap {
    padding-top: 180px;
  }
  .pay-roll .component-wrap {
    margin-top: 0;
  }
  
  .pay-roll .component-wrap .img-text,
  .overtime-tracker .component-wrap .img-text {
    align-items: center;
  }
  .client-billing.pay-roll {
    margin-top: 100px;
  }
  .three-item.component-wrap .component-item {
    float: left;
    width: 32.60625%;
  }
  .three-item.component-wrap .component-box-item {
    gap: 1%;
  }
  .fully-remote-page .component-box-item {
    gap: 2.8%;
  }
  
  .projrct-cost .invoice-hero dfn {
    background-color: #000;
  }
  .bottom-thumb {
    position: relative;
  }
  .bottom-thumb:after {
    content: "";
    position: absolute;
    width: 91.4%;
    height: 80%;
    background-color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  .bg-gray {
    background-color: #f8f9fa;
  }
  
  /* .round-gradiant { float: left; width: 100%; background-image: url(../img/ellips-bg.png); background-repeat: no-repeat; background-size: cover; top: 0; left: 0; background-position: top center; width: 100%; } */
  .round-gradiant .brand-wrap {
    background-color: transparent;
    padding-bottom: 0;
  }
  .rgba-color {
    position: relative;
    float: left;
    width: 100%;
  }
  .rgba-color::after {
    content: "";
    position: absolute;
    height: 70%;
    width: 100%;
    background-image: url(../img/ellips-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 29%;
    right: 0px;
    background-position: right center;
  }
  .component-page .hero-wrap {
    background-image: none;
  }
  .curve-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .component-page .employee-productivity-tracking .hero-des {
    max-width: 100%;
  }
  .component-page .why-choose-thareja {
    padding-top: 50px;
  }
  .component-page .common_section-wrap .section-details h3 {
    font-size: 27px;
    font-weight: 400;
    line-height: 40px;
    color: #30353e;
    letter-spacing: 0.2;
  }
  .component-page .why-people-use-thareja.component-wrap .content-box {
    padding-left: 30px;
    max-width: 590px;
  }
  
  .component-page .why-people-use-thareja.component-wrap .component-inner {
    display: flex;
    align-items: center;
    justify-content: unset;
    width: 100%;
    gap: 0;
    border-radius: 16px;
    /* background: none; */
    justify-content: space-between;
  }
  .component-page .why-people-use-thareja.component-wrap .gradient-border-wrap {
    /* background: unset; */
  }
  .component-page .fully-remote-page {
    padding-top: 50px;
  }
  span.current-word.animate {
    padding-right: 13px;
  }
  .smb-page .app-benifit span {
    padding-right: 0;
  }
  .smb-page .solution-hero .app-benifit {
    gap: 15px;
  }
  .smb-page .component-wrap .img-text {
    align-items: flex-start;
  }
  .smb-page .hybrid-team-page .component-item {
    padding: 18px;
  }
  .hybrid-team-page .component-item img {
    width: 45px;
    height: 45px;
  }
  .hybrid-team-page .component-item span {
    letter-spacing: 0;
  }
  .birds-eye-view.profitable-wrap.odd-item {
    padding-top: 100px;
  }
  .birds-eye-view .fully-remote-page {
    padding-top: 0;
  }
  .smb-page .profitable-wrap {
    padding-top: 100px;
  }
  .smb-page .fully-remote-page {
    padding-top: 0;
  }
  .smb-page .fully-remote-page.easier-invoice-wrap {
    margin: 50px 0;
    background: #f6faff;
    padding: 50px 0;
  }
  .profitable-wrap.odd-item.team-member.transparent-remote-team {
    background-color: #f6faff;
    padding: 50px 0;
  }
  .consulting-page .hero-icon dfn {
    background-color: #525966;
  }
  .component-wrap .img-text {
    align-items: flex-start;
  }
  .component-wrap .img-text img {
    width: 50px;
  }
  .consulting-page .component-item {
    padding: 18px;
  }
  .consulting-page .profitable-content {
    width: 42.450704%;
  }
  .consulting-page .profitable-wrap {
    background-color: #fff;
  }
  .consulting-page .faq-wrap {
    background-color: #fff;
  }
  .consulting-page .consulting-firms {
    background-color: #f4f7ff;
  }
  .consulting-page .client-billing {
    padding: 50px 0 0;
    margin-top: 64px;
  }
  .consulting-page .consulting-component {
    margin-top: 100px;
  }
  .consulting-page .right-text-box {
    width: 100%;
  }
  .consulting-page .profitable-content {
    width: 44.450704%;
  }
  .contractor-page .pt-100 {
    padding-top: 100px;
  }
  .contractor-page .invoice-wrap .box-inner-content h4 {
    font-size: 27px;
  }
  .invoice-wrap .large-icon {
    max-width: 420px;
  }
  .invoice-wrap .small-img {
    max-width: 330px;
  }
  .contractor-page .invoice-wrap .list-box {
    position: relative;
  }
  .contractor-page .position-img {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
  .contractor-page .faq-wrap .gradient-text.text-anim .current-word {
    background: linear-gradient(
      90deg,
      rgba(1, 209, 143, 1) 30%,
      rgba(0, 90, 255, 1) 58%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .contractor-page .profitable-content h4 {
    font-size: 22px;
  }
  .contractor-page .box-wrap .box-inner-content {
    background-color: #fafcff;
    border-radius: 20px;
  }
  
  .contractor-page .contractors-management .box-inner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .contractor-page .contractors-management .box-inner-content .group-img {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  
  .contractor-page .box-wrap h4 {
    font-size: 27px;
  }
  .contractor-page .invoice-wrap .enterprise-inner {
    margin-top: 0;
  }
  .contractor-page .profitable-item {
    margin-top: 0;
  }
  
  .development-page .component-wrap .img-text img {
    width: 45px;
  }
  .development-page .list-box-item:last-child .circle-box::after {
    height: 36px;
  }
  .development-page .profitable-thumb {
    width: 43.605634%;
  }
  .development-page .profitable-content {
    width: 52.450704%;
  }
  .development-page .profitable-wrap {
    background-color: #fff;
  }
  .development-page .client-billing {
    background-color: #f4f7ff;
  }
  .development-page .software-developers .profitable-content h4 {
    color: #30353e;
    font-size: 27px;
  }
  .development-page .right-text-box {
    width: 100%;
  }
  .development-page .required-wrap .profitable-thumb {
    width: 53.605634%;
  }
  .development-page .required-wrap .profitable-content {
    width: 41.450704%;
  }
  .development-page .free-trail .profitable-content {
    width: 57.2704%;
  }
  .development-page .free-trail .profitable-thumb {
    width: 42.605634%;
  }
  
  .free-trail .common-wrap {
    max-width: 1150px;
  }
  .common-page .faq-wrap {
    background-color: #fff;
  }
  .free-trail .profitable-thumb img {
    /* border-top-right-radius: 20px; */
    /* border-bottom-right-radius: 20px; */
  }
  .thareja-tracking-wrap.free-trail h3 {
    margin-top: 15px;
  }
  
  .common-page .left-icon img {
    width: 38px;
  }
  .development-page .teamworks .profitable-content {
    width: 44.450704%;
  }
  .development-page .teamworks .profitable-thumb {
    width: 49.605634%;
  }
  .component-page .enterprice-workforce .hero-content-btn {
    padding-bottom: 0px;
  }
  .component-page .center-icon.workforce-analytics-software {
    padding-top: 40px;
  }
  .center-icon.component-wrap .img-text {
    align-items: center;
  }
  .how-to-track-employee-productivity .content-box {
    width: 100%; /* padding-bottom: 40px; */
  }
  .how-to-track-employee-productivity .bottom-spaching {
    /* margin-bottom: 0; */
  }
  .employee-productivity-page
    .profitable-wrap.odd-item.transparent-remote-team.employee-productivity-tracking {
    margin-top: 99px;
  }
  
  .component-page .invoice-hero dfn {
    background-color: #30353e;
  }
  .component-page .how-employee-scheduling-works .section-details .blue-text {
    font-size: 18px;
    color: #005aff;
  }
  .component-page .reach-peak-profitability .section-details h3 {
    font-size: 22px;
    letter-spacing: 0.8;
    line-height: 22px;
    padding-bottom: 10px;
    letter-spacing: normal;
  }
  .component-page .common_section-wrap .section-details .box-subtitle {
    font-weight: 400;
  }
  .component-page .employees-timesheet .text-color {
    margin-top: 20px;
  }
  .profitable-wrap.odd-item.fully-remote-page.smarter-tracking {
    background-color: #fff;
  }
  .profitable-wrap.odd-item.required-wrap.employees-timesheet {
    background-color: #fff;
    margin-top: 0;
    padding-top: 50px;
  }
  .employees-timesheet .left-icon h4 {
    font-size: 18px;
    color: #005aff;
    text-transform: uppercase;
    font-weight: normal;
  }
  .employees-timesheet-page .component-wrap .img-text img {
    width: 48px;
    height: 48px;
  }
  .employees-timesheet-page .component-wrap .img-text {
    align-items: center;
  }
  
  .invoice-details dfn {
    font-size: 20px;
  }
  
  .timesheet-software {
    background-color: #f4f8ff;
    margin-top: 100px;
  }
  .profitable-wrap.enabling-growth-in-industry {
    background-color: #fff;
  }
  .easier-invoice-wrap .img-card {
    background-color: #f8fbff;
  }
  .easier-invoice-wrap.easier-invoice-widgets .img-card {
    background-color: #ffffff;
  }
  
  .component-page .easier-invoice-wrap {
    background-color: #fff;
  }
  .employee-time .img-card {
    background-color: #f8fbff;
    height: auto;
  }
  .timesheet-software .img-card {
    background-color: #fff;
    height: auto;
  }
  .component-page .timesheet-software {
    background-color: #f6faff;
  }
  .component-wrap.why-people-use-thareja.cloud-based-integration .content-box {
    max-width: 680px;
    border-radius: 20px;
    border: 5px solid #ffffff36;
    padding: 60px;
    margin: 0 auto;
  }
  .why-people-use-thareja.cloud-based-integration .gradient-border-wrap {
    max-width: 823px;
  }
  .component-wrap.client-billing.enterprice-workforce-management {
    margin-top: 100px;
    background-color: #f4f7ff;
  }
  .component-page .global-wrap {
    background-color: #f6faff;
  }
  .global-wrap .img-card {
    background-color: #fff;
  }
  .component-page .hero-wrap {
    position: relative;
  }
  .hover-active {
    display: none;
  }
  .tab_box.active .default-icon {
    display: none;
  }
  .tab_box.active .hover-active {
    display: block;
  }
  
  .profitable-wrap.odd-item.location-based-tracking.field-service-page {
    padding-top: 100px;
  }
  .component-wrap.field-service-page.widget-container {
    padding-top: 100px;
  }
  
  .field-service-page-widgets.widget-container .component-inner {
    width: 100%;
    max-width: 1295px;
    margin: 0 auto;
    /* justify-content: center; */
    border-radius: 10px;
  }
  
  .more-profitable-field-service.profitable-wrap {
    padding-top: 0px;
  }
  
  .field-service-page#phone-location .profitable-thumb {
    width: 48.94%;
  }
  .fully-remote-page {
    padding-top: 100px;
    background-color: #fff;
  }
  .component-wrap.client-billing.fully-remote-page {
    background-size: cover;
    padding: 50px 0 0;
  }
  
  .remote-fully-page.profitable-content .fully-remote-page {
    margin-top: 0;
  }
  .remote-fully-page.profitable-content .list-box-item {
    margin-top: 0;
  }
  .thareja-tracking-wrap.agile-project-management .profitable-item {
    align-items: center;
    padding: 100px 0 50px;
    margin: 0;
  }
  .manage-teams-in-field.thareja-tracking-wrap .profitable-thumb {
    width: 57.13%;
  }
  .manage-teams-in-field.thareja-tracking-wrap .profitable-content {
    width: 40%;
  }
  .remote-fully-page .fully-remote-page.easier-invoice-wrap {
    margin-top: 100px;
  }
  .gps-time .icon-box img {
    width: 32px;
    height: 32px;
  }
  
  .gps-time-tracking-widgets .img-text,
  .payroll-page-widgets .img-text {
    flex-wrap: nowrap;
    align-items: center;
  }
  
  .project-cost-managements .img-text,
  .time-tracking-widgets .img-text {
    flex-wrap: nowrap;
    align-items: center;
  }
  
  .component-page .bg-light {
    background-color: #f6faff;
  }
  .bg-light .img-card {
    background-color: #ffffff;
  }
  .gps-time .flex-align-center.flex-between-content {
    justify-content: space-between;
  }
  .gps-time .why-people-use-thareja.component-wrap .content-box {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    padding: 30px;
  }
  .gps-time .thumnail-box img {
    /* border-bottom-right-radius: 20px; */
    /* border-top-right-radius: 20px; */
  }
  
  .hybrid-team-page .app-benifit dfn {
    height: 25px;
    background-color: #30353e;
  }
  .hybrid-team-page .component-item {
    padding: 24px 18px;
  }
  .hybrid-team-page.component-wrap .common-wrap {
    max-width: 1520px;
  }
  .hybrid-page .customize-experience.profitable-wrap {
    margin-top: 0;
  }
  .hybrid-page .profitable-content .fully-remote-page {
    padding-top: 0;
  }
  .component-wrap.hybrid-team-page {
    padding-top: 40px;
  }
  .invoice-page .list-box-item:last-child .circle-box::after {
    height: 93px;
  }
  .invoice-page .client-billing {
    background-color: #f4f7ff;
    margin-top: 100px;
  }
  .invoice-page .easier-invoice-wrap {
    background-color: #f6faff;
  }
  .invoice-page .easier-invoice-wrap .img-card {
    background-color: #fff;
  }
  .invoice-page .required-wrap .profitable-content {
    width: 43.450704%;
  }
  .invoice-page .profitable-thumb {
    width: 46.605634%;
  }
  .online-time-reporting .common-wrap {
    max-width: 1420px;
  }
  .online-time-reporting .component-box-item {
    gap: 1%;
  }
  .online-time-reporting .time-tracking-app .bottom-thumb {
    margin-top: 60px;
  }
  .bg-light .easier-invoice-wrap {
    background-color: #f6faff;
  }
  .projrct-cost .easier-invoice-wrap .img-card img {
    border-radius: 10px;
    background: linear-gradient(180deg, #e5f1ff 0%, #fff 100%);
    width: 66px;
    height: 66px;
    padding: 3.3px 6.6px;
  }
  .bg-light .hero-wrap .bottom-thumb {
    margin-top: 40px;
  }
  .bg-light .component-wrap.client-billing {
    background-color: #f4f7ff;
    margin-top: 100px;
  }
  .bg-light .component-wrap .component-item {
    padding: 24px 18px;
  }
  .component-page .budget-management .section-details h3 {
    font-size: 22px;
    color: #30353e;
  }
  .how-tharejaai-project-cost .section-details .box-title {
    font-size: 27px;
    color: #30353e;
  }
  .workforce-page .easier-invoice-wrap .img-card {
    height: auto;
  }
  .product-invoice .customer-wrap {
    padding-bottom: 0;
  }
  .contractor-page .profitable-wrap {
    background-color: transparent;
  }
  .component-wrap.client-billing.teamworks {
    padding-bottom: 50px;
  }
  .employee-scheduling .easier-invoice-wrap .img-card {
    height: auto;
  }
  .bg-light .easier-invoice-wrap.employee-time {
    background-color: transparent;
  }
  .bg-light .easier-invoice-wrap.employee-time .img-card {
    background: rgb(255, 255, 255);
    background: linear-gradient(
      0deg,
      rgb(255 255 255 / 49%) 0%,
      rgb(229 241 255 / 49%) 100%
    );
  }
  .enterprice-workforce-page .cta-wrap {
    margin-top: 100px;
  }
  .common-item .form-inner {
    justify-content: flex-start;
  }
  .common-item .app-benifit dfn {
    height: 25px;
  }
  .common-item .cta-wrap {
    margin-top: 100px;
  }
  .component-wrap.client-billing {
    position: relative;
  }
  .bg-light .component-wrap.client-billing {
    background-color: #f4f7ff;
    margin-top: 100px;
    /* height: 100%; */
    width: 100%;
    /* background-color: white; */
    clip-path: ellipse(100% 58% at 43% 43%);
  }
  .consulting-your-business.component-wrap.client-billing {
    background-color: transparent;
    clip-path: none;
  }
  .consulting-your-business .list-box-item {
    align-items: start !important;
  }
  .consulting-your-business .list-box-item .link-text {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
  }
  
  .home-page .top-text h2 {
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: -3px;
  }
  .home-page .customer-wrap {
    padding-top: 0;
  }
  .price-page {
    background-color: #f8f9fa;
  }
  
  .consulting-page .consulting-firms .img-text {
    align-items: center;
  }
  .enterprice-workforce-page .enterprice-workforce-management .img-text {
    align-items: center;
  }
  .development-page .component-wrap .img-text {
    align-items: flex-start;
  }
  .development-page .right-text-box h4 {
    text-transform: unset;
  }
  .employees-timesheet-page .easier-invoice-wrap.employee-time .img-card {
    background: #f8fbff;
  }
  .component-page .client-billing .img-text {
    align-items: center;
  }
  
  .price-page .future-work .profitable-content p {
    font-size: 22px;
  }
  .price-page .future-work .profitable-inner {
    background-color: transparent;
  }
  .price-page .profitable-wrap {
    background-color: transparent;
  }
  .price-page .round-gradiant {
    float: left;
    width: 100%;
    background-image: url(../img/ellips-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    background-position: top center;
    width: 100%;
  }
  
  .remote-fully-page .easier-invoice-wrap .img-card {
    background-color: #fff;
  }
  .remote-fully-page .component-wrap.client-billing.fully-remote-page {
    background-size: contain;
    background-position: top;
  }
  
  .attendace-tracking-page-faq {
    background-color: transparent;
  }
  
  .plan-price .component-item {
    gap: 5px;
  }
  
  .plan-price .component-item .img-text {
    flex-wrap: nowrap;
  }
  


  .chalenge{position: relative; padding-left: 26px; padding: 16px 0 16px 30px; border-top: 2px solid #E6ECF1;}
  .chalenge::after {
    content: '';
    position: absolute;
    background-image: url(../img/Check.png);
    left: 0;
    background-size: cover;
    background-position: center center;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    top: 20px;
}

  .chalenge:last-child{border-bottom: 2px solid #E6ECF1;;}


  .thareja-helps li{position: relative; padding-left: 26px; padding: 16px 0 16px 30px; border-top: 2px solid #E6ECF1;}
  .thareja-helps li::after {
    content: '';
    position: absolute;
    background-image: url(../img/Check-green.png);
    left: 0;
    background-size: cover;
    background-position: center center;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    top: 20px;
}

.thareja-helps li:last-child {border-bottom: 2px solid #E6ECF1;;}





/* terms & conditions */
.terms-wrap{float: left; width: 100%; padding: 200px 0 100px; }
.terms-wrap .common-wrap{max-width: 1528px;}
.terms-inner{float: left; width: 100%; display: flex; gap: 4%; flex-flow: row wrap;}
.left-list{width:18.74869109947644%; float: left;}
.left-list ul {width: 100%; position: sticky; position: -webkit-sticky; top: 200px;}
.left-list ul li a{ color:#000;font-size: 22px; font-style: normal; font-weight: 400; line-height: 40px; padding-bottom: 15px;}
.left-list ul li a:hover{color: #01D18F;}
.right-contet { float: left; width: 74.007853%; }
.top-heading{float: left; width: 100%; padding-bottom: 50px; border-bottom: 10px solid #000;}
.top-heading dfn{ color: #A8B7C1; display: block; padding-top: 18px;}
.top-heading p{ font-size: 22px; font-style: normal; font-weight: 400; line-height: 32px; padding-top: 40px;}
.terms-page{overflow: unset;}
.terms-page .faq-item-wrap{float:left;width:100%;}
.terms-page .accordion{width:100%;float:left}
.terms-page .accordion-item { float: left; width: 100%; margin-bottom: 5px; padding: 0; border-bottom: 1px solid #000; }
.terms-page .accordion-item h5{float:left;width:100%;font-size: 40px; font-style: normal; font-weight: 400; line-height: normal; letter-spacing: -1.2px; cursor: pointer;  position: relative; padding: 50px 50px;}
.terms-page .accordion-content{float:left;width:100%;display:none; padding: 20px 50px 50px}
.terms-page .accordion-content p{float:left;width:100%;font-size:16px;line-height:20px}
.icon{font-size:20px;transition:transform .2s}
.terms-page .accordion-open .icon{transform:rotate(45deg)}
.terms-page .accordion-item h5:after { position: absolute; top: 50%; left: 10px; content: ''; width: 24px; height: 24px; transform: translateY(-50%); background-repeat: no-repeat; background-size: 100% auto; background-position: center bottom; background-image: url(../svgs/plus.svg); transition: .35s ease-in-out; }
.terms-page .accordion-item.active h5:after { transform:rotate(45deg) ; -webkit-transform:rotate(45deg) ; -moz-transform:rotate(45deg) ; -ms-transform:rotate(45deg) ; -o-transform:rotate(45deg) ; top:65%;}
.terms-page .accordion-item.active h5{padding-bottom: 0;}
.myterms .main-wrap{overflow: unset;}

.content-text p {
  line-height: 32px;
  padding-bottom: 20px;
  font-size: 22px;
  font-style: normal;
  font-weight: 400; padding: 30px 0; float: left;
}

.content-text ul {
  padding-left: 20px;
  list-style: disc;
  padding-bottom: 30px;
  float: left;
  width: 100%;
}

.content-text ul li {
  line-height: 32px;
  padding-bottom: 5px;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
}


.standard-page h4{padding-bottom: 10px; text-decoration: underline;  width: auto; font-size: 30px;}


.msa-page p{text-align: left;}
.msa-page .toc h2{padding: 30px 0; font-size: 40px; line-height: normal; text-align: left;}

.msa-page .top-heading{margin-bottom: 50px;}
.content-text {
  float: left;
  width: 100%;
}

.toc ul li{padding-bottom: 15px;}
/* terms & conditions */



table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

table th,
table td {
  padding: .625em;
  text-align: center;   border-right: 1px solid #ddd;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-right: 1px solid #ddd;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}








/* profile */

.profile-page{background-color: #F8F9FA;}
.profile-page h3{font-size: 24px; font-weight: 700; letter-spacing: 0;}
.profile-wrap {
  float: left;
  width: 100%;
  margin-top: 150px; margin-bottom: 100px;
}

.profile-wrap .common-wrap{max-width: 1370px;}

.card {
  background-color: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.profile-img {
  width: 222px; position: relative;
}

.profile-img::after{content: ''; position: absolute; bottom: 0; left: 0; background-image: url(../img/profile/verify.png);background-repeat: no-repeat;
background-size: cover; background-position: center center; width: 76px; height: 76px;}
.review-star p {
  display: flex;
  align-items: center;
  gap: 8px; font-weight: 700; font-size: 18px;
}
.review-star dfn{font-weight: 400; font-size: 14px; color: #525966;}



.profile-header {
  display: flex;
width: 100%;
}

.profile-details {
  width: calc(100% - 240px);
  display: flex;     align-items: center;

  gap: 30px;
}

.info-text h3{font-weight: 700; font-size: 30px; letter-spacing: 0;}
.info-text h5{font-size: 16px; line-height: normal; font-weight: normal;margin-top: 10px;}
.bullet-list span {
  width: auto;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center; background-color: #fff; border: 1px solid #DDE3E7;
}
.bullet-list .vetted{    
  background: linear-gradient(99.39deg, #01d18f29 0.47%, #005aff1a 84.05%);
   font-weight: 700; padding-right: 15px;}
  .bullet-list img{padding-right: 10px;}

  .bullet-list{width: 100%; display: flex ;align-items: center; gap: 10px;margin-top: 20px; flex-flow: row wrap;}
  span.star {
      background-color: FFB10B; font-weight: 700;
}

.united img{width: 24px;}

.review-star{margin-top: 15px;}

.right-btns .btn{width: 100%; margin-bottom: 10px;}
.tab-btn {
  float: left;
  width: 100%;
  border: 2px solid #dde3e7;
  border-radius: 20px;
  padding: 10px;
  margin-top: 40px;
}

.tab-btn ul{    display: flex
  ;
      gap: 20px;}
 .tab-btn ul li{width: auto;
  padding: 13px 31px;

  border-radius: 10px ;}     
  .tab-btn ul .active-btn{  background-color: #fff;}
  .left-profile {
    float: left;
    width: 58.734307%;
}


.profile-inner-info {
  float: left;
  width: 100%;
  margin-top: 50px;
  display: flex
;
  justify-content: space-between;
}

  .about-alves{float: left; width: 100%; background-color: #fff; padding: 40px; border-radius: 10px;}
  .about-alves p{padding-top: 20px;}

  .about-alves .checked{    background-color: #01d18f40; border:1px solid #01d18f40; font-weight: 700;margin-top: 20px;}

  .interview-info{float: left; width: 100%; background-color: #fff; padding: 40px; border-radius: 10px; margin-top: 20px;}
  .interview-info h3{margin-bottom: 20px;}
  .box-video {
    width: 100%;
    float: left;
    position: relative;
}
  .interview-info .play-btn{    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.bottom-arrow-text {
  float: left;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DDE3E7;
}
.bottom-arrow-text span{text-align: right;
  display: block; font-weight: 700;
  padding-right: 40px; position: relative;}

  .bottom-arrow-text span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 6px;
    background-image: url(../img/profile/arrow.png);
    width: 14px;
    height: 21px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.result-summry {
  float: left;
  width: 100%;
  margin-top: 20px;
}

.item-result {
  width: 49%;
  float: left;
  border: 1px solid #DDE3E7;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.result-box {
  width: 100%;
  display: flex
;
  justify-content: space-between;
  float: left;
  flex-flow: row wrap;
  row-gap: 10px;
}
.result-box-text span{font-size: 22px; line-height: normal; font-weight: 700;}
.bullet-icon-btn {
  background-color: #A8B7C1;
  height: 30px;
  padding: 6px 10px;
  border-radius: 5px;
  display: flex
;
  align-items: center;
}
.blue {
  background-color: #005aff3d;
 
}

.bullet-icon-btn span{line-height: normal;
  font-size: 16px;
  display: flex
;font-weight: 700;
  align-items: center;
  gap: 8px; color: #525966;}

  .bullet-icon-btn.blue span{color: #005AFF;}

  .dark-green {
    background-color: #01d18f57;
}

.dark-green span{color:#00875A}

.green{background-color: #00c80a36;}
.green span{color: #00AE09;}



.education{ float: left; width: 100%; background-color: #fff; padding: 40px; border-radius: 10px; margin-top: 20px;}
.education-item{float: left; width: 100%; margin-top: 20px; position: relative; padding-left: 70px;}
.education-item span{font-size: 22px; font-weight: 700; padding: 10px 0;}

.education-item::after{content: ''; position: absolute; left: 0; top: 0; background-repeat: no-repeat;background-size: cover; background-position: center; 
  width: 14px; height: 100%; background-image: url(../img//profile/Timeline.png);}
  .grid-bullet {
    display: flex
; margin-top: 20px;
    flex-flow: row wrap;
    gap: 10px;
    row-gap: 10px;
}
  .grid-btn {
    width: auto;
    padding: 8px 20px;
    border: 1px solid #DDE3E7;
    border-radius: 100px;
}
.education-info{ float: left; width: 100%; background-color: #fff;  border-radius: 10px; margin-top: 20px;}
.grid-btn span{font-weight: normal; font-size: 18px; padding: 0;}

.experience .education-item::after{background-image: url(../img/profile/large-time.png); width: 14px;}

.responsibilty{float: left; width: 100%; margin-top: 20px;}
.responsibilty p{font-weight: 700; color: #525966;}
.col-list{margin-top: 20px; float: left; width: 100%;}
.col-list ul li {
  padding-bottom:0px;
  display: flex
;
  gap: 15px;
  align-items: baseline;
  font-size: 14px;
}

.profile-page .color-text{color: #005AFF; text-decoration: underline; display: block;}
.experience .education-item::after{background-image: url(../img/profile/large-time.png); width: 12px;}
.experience.company .education-item::after{width: 8px;}

/* .service-slider-info{float: left; width: 100%; background-color: #fff;  border-radius: 10px; margin-top: 20px; padding: 40px;}
.top-slider-container{float: left; width: 100%; margin-top: 20px;} */

.top-slider .slick-prev, .top-slider .slick-next{width: 60px; height: 60px; z-index: 1;}
.top-slider .slick-prev:before, .top-slider .slick-next:before {
  content: '';
  background-image: url(../img/profile/arrow-circle.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  /* z-index: 1111111; */
  left: 100px;
  transform: rotate(180deg);
  opacity: 1;
}
.top-slider .slick-next:before{left: auto; right: 0; transform: rotate(0deg);}.top-slider-container .slick-next:before {
  left: auto;
  right: 100px;
  transform: rotate(0deg);
}




.service-slider-info{float: left; width: 100%; background-color: #fff;  border-radius: 10px; margin-top: 20px; padding: 40px;}
.top-slider-container{float: left; width: 100%; margin-top: 20px;}

.top-slider img{height: 465px;}
.item-slider img{height: 80px; width: 100%; object-fit: cover;}


  .tab-btn ul li a{color:#000}
 .active-btn a{font-weight: 700;}

 .bottom-slider{
  padding: 0 50px;
}
.bottom-slider .slick-prev, .bottom-slider .slick-next{width: 11px; height: 23px; top: 0;}

.bottom-slider .slick-prev:before, .bottom-slider .slick-next:before {
  content: '';
  background-image: url(../img/profile/arrow-slider.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 43px;
  
  opacity: 1;
  top: 40px;
}

.bottom-slider .slick-next:before{transform: rotate(180deg); left:auto; right: 43px;}

.item-slider.slick-slide{height: 80px;}
.vetted-item{float: left; width: 100%; margin-top: 40px; }
.vetted-item span{font-weight: 700;}
.vetted-list {
  display: flex;
  justify-content: space-between;
  float: left;
  width: 100%;
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #DDE3E7;
}
.vetted-list ul li{display: flex; align-items: baseline; gap: 10px; padding-bottom: 10px;}

.addres-item {
  float: left;
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between; padding-bottom: 40px;
  border-bottom: 1px solid #DDE3E7;
}
.address-col {
  width: 40%;
  float: left;
}


.address-col dfn{display: block; color: #525966; font-size: 14px;}
.address-col{margin-bottom: 20px;}
.address-col span{font-weight: 700; }
.address-col img{margin-right: 10px;}

.other-skill dfn{color: #000; font-size: 20px; font-weight: 700; display: block; margin-bottom: 20px;}

.other-skill{margin-top: 40px; float: left; width: 100%;}







.container-right {
  float: left;
  width: 100%;
  border: 0;
  margin-left: 4%;
  margin-top: 70px;

}

  ul.tabs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  
  
ul.tabs li {
  color: #000;
  display: inline-block!important;
  padding: 16px;
  cursor: pointer;
  background-color: #f5f5f5;
  min-width: 31.39%;
  font-size: 16px;
  font-weight: 700;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
ul.tabs li:last-child{border: 0;}

ul.tabs li.current {
  background: #fff;
  color: #222;
  border-bottom: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.tab-content {
  width: 100%;
  float: left;
  padding: 30px;
  display: none;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.tab-content.current{
	display: block;
}

.price-top-text{    width: 100%; float: left; margin-top: 56px; padding-bottom: 20px; display: flex; justify-content: space-between; flex-direction: column;}
.service-icon {
  float: left;
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  position: relative;
  left: -8px; padding-top: 10px;
}

.img-text dfn{font-weight: 700;}
.check-list{margin-top: 10px; width: 100%; float: left;}
.check-list li{display: flex; align-items: center; gap: 10px; width: 100%; padding-bottom: 10px; font-weight: 400;}
.continue-btn {
  float: left;
  width: 100%; margin-top: 20px;
}
.continue-btn .btn.transparent_btn{background-color: #000; color: #fff; width: 100%;}
.continue-btn .btn.transparent_btn:after {
  background-image: url(../svgs/arrow-white.svg);
}
.continue-btn span{text-align: center; width: 100%; padding-top: 10px;}


.item-widget{float: left; width: 100%;}

.continue-btn a{width: 100%;}


.profile-page .price-top-text {margin-top: 0;}
.price-top-text span{display: block;padding: 20px 0;}



.right-box-item {
  float: left;
  width: 40%;
}


CSS

/*
 * Selectric 1.13.0
 * http://lcdsantos.github.io/jQuery-Selectric/
 *
 * Copyright (c) 2013 Leonardo Santos
 * Dual licensed under the MIT (http://www.opensource.org/licenses/MIT) and GPL (http://www.gnu.org/licenses/gpl.html) licenses.
 */

/* Core styles */
.selectric-wrapper {
  position: relative;
  vertical-align: middle; /* Prevents inline-block spacing issues */
}

.selectric {
  border: 1px solid #000;
  background: #fff;
  position: relative;
  overflow: hidden;
  zoom: 1; /* Trigger layout */
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  padding: 0; color: #A8B7C1;
 
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2em; /* Adjust width for arrow */
  background: #f0f0f0;
  text-align: center;
  font: bold 0.8em 'Arial', sans-serif; /* Style the arrow if no image */
  color: #888;
}

.selectric .button:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -0.3em 0 0 -0.3em;
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
  border-top: 0.4em solid #888;
}

.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  min-width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.selectric-items-open {
  display: block;
}

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

.selectric-items li {
  display: block;
  padding: 0.6em 0.8em;
  cursor: pointer;
  line-height: 1.4;
}

.selectric-items li.selected {
  background: #e0e0e0;
  color: #333;
}

.selectric-items li.highlighted {
  background: #f0f0f0;
}

.selectric-items li.disabled {
  color: #999;
  cursor: default;
}

.selectric-items li.disabled:hover {
  background: none;
}

.selectric-items .selectric-group {
  font-weight: bold;
  padding: 0.8em;
  background: #f9f9f9;
  color: #555;
  cursor: default;
}

.selectric-items .selectric-group:hover {
  background: #f9f9f9;
}

/* Customizations (Optional - Adjust to your needs) */
.selectric {
  /* Example: Rounded corners */
  border-radius: 4px;
}

.selectric .button {
  /* Example: Different background color */
  background: #ddd;
}

.selectric .button:after {
  /* Example: Different arrow color */
  border-top-color: #555;
}

.selectric-items {
  /* Example: Different border color */
  border-color: #bbb;
}

.selectric-items li:hover {
  /* Example: Different hover background */
  background: #d0d0d0;
}


.selectric .label::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateY(-50%);
  background-image: url(../img/profile/select.png);
  background-size: cover;
  width: 9px;
  height: 6px;
}

.selectric .button {
  width: 0;
  height: 0;
}

.wrapper{margin-top: 30px;}






.hourly-box {
  float: left;
  width: 100%;
  background-color: #ffff;
  border-radius: 20px;
  margin-top: 20px;
  padding: 40px;
}


.time-info dfn{font-weight: 700;}

.time-item {
  display: flex;
  width: 100%;
  margin-top: 20px;
  flex-flow: row wrap;
  gap: 8px;
}
.time-box {
  width: auto;
  padding: 8px 16px;
  border: 1px solid #DDE3E7;
  border-radius: 6px;
}


.time-info {
  float: left;
  width: 100%;
  margin-top: 20px;
}

.session-text span{padding-bottom: 0;}
.see-btn {color: #000; text-decoration: underline; text-align: center; margin-top: 20px;}










/* Ai price page */
.ai-price{background-color: #fff;}
.home-page .ai-price-hero{padding-top: 130px;}

.price-content span{text-transform: uppercase;font-size: 20px; line-height: normal; font-weight: 700;}
.price-content h1{font-size: 85px; line-height: normal; font-weight: normal;}
.price-content p{font-size: 26px; line-height: normal;padding-top: 30px;}

.price-box-wrap{float: left; width: 100%; margin-top: 100px;}
.price-box-wrap .common-wrap{max-width: 1570px;}
.price-box-inner {
  float: left;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.box-item {
  width: 49%;
  float: left;
  background: #5DFFCC;
  padding: 80px;
  text-align: center; border-radius: 20px;
}

.box-text{max-width: 425px; margin: 0 auto; text-align: center;}
.box-text span{text-transform: uppercase;font-size: 20px; line-height: normal; font-weight: 700;}
.box-text h3{font-size: 45px; line-height: normal; font-weight: normal;padding: 30px 0;}
.box-text p{font-size: 20px; line-height: normal;}

.box-blue{background: #002F93;}

.box-blue .box-text span{color: #fff;}
.box-blue .box-text h3{color: #fff;}
.box-blue .box-text p{color: #fff;}
.box-blue .box-text dfn{color: #fff; font-size: 14px; padding-top: 30px; display: block;}

.include-wrap{float: left; width: 100%; padding-top: 60px;}
.include-wrap .common-wrap{max-width: 1410px;}
.include-inner{float: left; width: 100%; display: flex; justify-content: space-between; flex-flow: row wrap;}
.include-item{float: left; width: 23.19148936170213%; padding: 20px; border-left: 2px solid #F8F9FA;}
.include-list{float: left; width: 100%; padding-top: 25px;}
.include-list li{position: relative; padding-left: 20px; padding-bottom: 10px; font-size: 14px; line-height: normal;}
.include-list li::before{content: '';position: absolute; top:4px; left: 0; background-repeat: no-repeat; background-size: cover; background-position:  center center; background-image: url(../svgs/Check.svg);width: 13px; height: 9px; }
.include-item h4{font-size: 20px; line-height: normal;}
.include-wrap{float: left; width: 100%; padding-top: 60px; padding-bottom: 80px;}
.include-wrap h3{font-size: 45px; line-height: normal;padding-bottom: 50px;}



.ai-price .top-text h2{max-width: 1250px;}
.ai-price .lead-text{max-width: 1250px; font-size: 27px; line-height: normal;}

.ai-price .faq-wrap{background: #F8F9FA;
}
.ai-price .save-big .enterprise-inner {
  flex-direction: row-reverse; gap: 0;
}
.ai-price.price-page .save-big {
  margin-top: 0;
}

.ai-price .img-card-item{background-image: unset; background-color: #fff; border-radius: 0; border-top-left-radius: 20px; border-bottom-left-radius: 20px;}

.ai-price .save-big .img-card{width: 20.9438%;}

.ai-price .img-card img {width: 110px;}
.ai-price .save-big .img-card p{font-weight: 700;color: #000; padding-top: 15px;}
.ai-price.save-big .img-card span{color: #000;}
.ai-price .resize-box:after{background-image: url(../svgs/equal.svg);}

.ai-price .save-big .list-box {
  background: #E8F6F2;
  border: 0;
  border-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}


.ai-price .save-big .list-box ul {
  background: transparent;
  padding-bottom: 86px;
}
.ai-price .app-logo img{width: 110px;}
.ai-price .app-text p{font-weight: 700; font-size: 26px; line-height: normal;}
.ai-price .app-text span {font-size: 18px;}

.app-top{float: left; width: 100%;border-bottom: 2px solid #fff; padding-bottom: 20px;   
  width: 100%;
  display: flex; gap: 10px;
  align-items: center;}

  .ai-price .app-logo {
    padding-bottom: 0;
    padding-top: 50px;
}

  .ai-price .save-big .list-box ul li{align-items: baseline; font-size: 14px; line-height: normal;}
   .ai-price .list-box .checked-box ul li img {width: 13px;}
   .ai-price .save-big .card-box {row-gap: 0;}

   .ai-price .accordion p{max-width: 1250px; margin: 0 auto; padding-top: 20px; text-align: center; font-size: 27px; line-height: normal; padding-bottom: 50px;}

   .ai-price .accordion h2{margin-bottom: 0;}

   .ai-price .accordion-content p{text-align: left;}
   .ai-price .cta-wrap{background-image: unset; background-color: #fff;}
   .ai-price .cta-wrap .common-wrap{max-width: 720px;}
   .ai-price .cta-inner h3{font-size: 45px; line-height: normal;}
   .ai-price .bottom-price p{font-size: 26px; font-weight: 700; line-height: normal;}
   .ai-price .bottom-price dfn{font-size: 18px;}





/* home new top section */


.video-thumb {
  position: absolute;
  top: 0;
  float: left;
  width: 100%;
  transition: .45s ease-in-out;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}

.home-page-2 .hero-wrap::after{content: ''; background: #000000;
  background: #000; width: 100%; height: 100%; left: 0; top: 0; position: absolute; z-index: 11;}

.hero-inner {
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 111;
}

.home-page-2 .hero-content h1{font-size: 85px; line-height:normal;}
.home-page-2 .hero-content{max-width: 100%; }
.home-page-2 .hero-content .lead-text{font-size: 26px; line-height:normal;}
.home-page-2 .hero-content-btn span {
  font-size: 24px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.home-page-2 .hero-content-btn dfn{font-size: 18px; line-height:normal; color:  #01D18F;}
.home-page-2 .hero-content-btn a{display: flex; align-items: center; gap: 10px;}
.home-page-2 .hero-content-btn img{width: 17px;}

.home-page-2 .brand-wrap{background-color: #000; padding: 0; position: relative; z-index: 111; padding-top: 120px;}

/* .home-page-2 .brand-inner {align-items: center; gap: 20px;}
.home-page-2 .brand-title{width: auto; }

.home-page-2 .brand-item-wrap{width: auto; padding-top: 0;} */
.home-page-2 .brand-title h5{font-size: 18px;line-height:normal;}

.profile-banner{float: left; width: 100%; padding-top: 50px; padding-bottom: 20px;}
.profile-banner .common-wrap{max-width: 1320px;}
.tab-inner p{color: #fff; font-size: 27px; padding-bottom: 50px; text-align: center; line-height:normal;}


.profile-inner-bg {
  width: 100%;
  float: left;
  padding: 40px;
  background-color: #F8F9FA;
  border-radius: 40px;
}

.profile-details-info {
  float: left;
  width: 100%;
}

.search-bar {
  float: left;
  width: 100%;
  border: 10px solid #CCF6E9;
  border-radius: 10px;
}

form.search-box {
  float: left;
  width: 100%;
  display: flex
;
  gap: 20px;
}

form.search-box button {
  border: 0;
  width: 50px;
}
form.search-box input{width:calc(100% - 70px); border: 0; font-size: 18px; line-height: normal;}

form.search-box input::placeholder{color: #A8B7C1;}

.filter-btn-wrap {
  float: left;
  width: 100%;
  display: flex;
  gap: 10px;
  margin-top: 25px;
  padding-left: 10px;
  margin-bottom: 40px; flex-flow: row wrap;
}


.filter-btn-wrap a.btn {
  min-width: 129px;
  padding: 8px 15px;
  border: 1px solid #000;
  font-size: 18px;
  color: #000;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  border-radius: 6px;
  gap: 10px;
}


.proflie-list {
  float: left;
  width: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.proflie-list .profile-img {
  width: 69px;
}

.proflie-list .profile-img::after {
  width: 24px;
  height: 24px;
}

.proflie-list .info-text h3{font-size: 20px;}
.proflie-list .info-text span{color: #DDE3E7;}
.proflie-list .info-text dfn{font-weight: normal;}
.proflie-list .profile-details{ align-items:flex-start;}
.proflie-list .bullet-list span{color: #000;}
.proflie-list .review-star p {
  font-weight: 400;
  font-size: 18px;
  color: #525966;
}

.tag-btn {width: 100%; margin-top: 30px; display: flex; gap: 5px; flex-flow: row wrap;}
.tag-btn button{
  border: 1px solid #000;
  padding: 7px 15px;
  font-size: 14px;
  background: transparent;
  border-radius: 100px;
  font-weight: normal;}


  button.green-bg {
 
    border: 0;
    background: #CCF6E9;}
  

    .proflie-list .right-btns {
      width:25%;
  }

  .right-btns .tag-btn{margin-top: 10px; margin-bottom: 48px; justify-content: end;}

  .top-hour-rate p{font-weight: 700; font-size: 20px; line-height: normal; text-align: end;}
  .top-hour-rate span{font-weight: 400; font-size: 14px;}
  .top-hour-rate dfn {
    color: #DDE3E7;
    font-weight: 400;
}

.see-more-btn a {
  width: 100%;
  display: flex
;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #DDE3E7;
  padding: 30px;
  border-radius: 10px;
  color: #000;
  font-size: 18px;
}
.see-more-btn {
    width: 100%;
    float: left;
    margin-top: 10px;
}

.see-more-btn img{width: 17px; height: 11px;}



.scroll-bar-item {float: left; width: 100%;
  max-height: 1050px;
  overflow-y: auto;
  padding-right: 10px; 
}

/* Optional: style scrollbar (for modern browsers) */
.scroll-bar-item::-webkit-scrollbar {
  width: 8px;
}

.scroll-bar-item::-webkit-scrollbar-track {
  background: #DDE3E7; border-radius: 100px;
}

.scroll-bar-item::-webkit-scrollbar-thumb {
  background: #A8B7C1;
  border-radius: 100px;
}

.scroll-bar-item::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.home-page-2 .brand-wrap.bg-black{background-color: #000;}





/* ai-profile */


.ai-profile .interview-info {
  background-color: transparent;
  padding: 0;
  border-radius:0; margin-bottom: 20px;

}

.ai-profile .box-video img{width:100%}
.ai-profile .left-profile {
  width: 45.734307%;
}

.ai-profile .right-box-item {
  width: 52%;
}

.ai-profile .profile-details{width: 100%;}

.ai-profile .profile-img{width: 138px;}
.ai-profile .profile-img::after{width: 48px; height: 48px;}
.ai-profile .info-text h3{font-size: 26px;}
.ai-profile  .info-text h5 {font-size: 20px;}
.ai-profile .bullet-list{margin-top: 10px;}
.ai-profile .review-star p{padding-top: 0;}
.ai-profile .profile-details{margin-bottom: 40px;}
.ai-profile .about-text h3{font-size: 18px;}
.ai-profile .grid-btn span{font-size:14px ;}

.ai-profile .interview-info{margin-top: 0;}



.scheduler {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.scheduler h2 {
  text-align: center;
  margin-bottom: 20px;
}

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

.calendar-controls button {
  background: none;
  border: 1px solid #000;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 6px;
  width: 50px; height: 50px;
}

#monthYear {
  font-weight: bold;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.calendar div {
  text-align: center;
  
  border-radius: 8px;
  cursor: pointer;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
}



.calendar .available {
  background: #CCF6E9; border: 1px solid #000;
}

.time-slots {
  width: 170px;
  padding-left: 40px;
  border-left: 1px solid #DDE3E7;
}

#times button {
  display: block;
  width: 100%;
  padding: 13px;
  margin-bottom: 5px;
  background: #CCF6E9;
  border: 1px solid #000;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}
#times .selected {
  background: black;
  color: white;
}

.timezone, .referral {
  margin-top: 30px;
}

input, select, button#applyCode {
  
  border-radius: 6px;
border: 0;
line-height: 40px;
}

#times {
  display: flex;
  flex-direction: column;
}


.calende-item {
  width: calc(100% - 190px);
  padding-right: 20px;
}

.date-time-info {
  float: left;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
}

.shedule-info h2{font-size: 26px; line-height: normal; font-weight: 700; letter-spacing: 0;padding-bottom: 30px;} 
.time-slots h3{font-size: 18px; line-height: normal; letter-spacing: 0; text-align: center;margin-bottom: 30px;}

.calendar .active {
  background: black;
  color: white;
}



.calender-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 10px;
  gap: 5px;
}

.weekday {
  text-align: center;
  font-weight: bold;
  color: #777;
  padding: 5px 0;
}


.calender-week div {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 6px;
  cursor: pointer;
}

.timezone label {font-size: 18px; line-height: normal; font-weight: 700;margin-bottom: 15px;display: block;}
.referral label{font-size: 18px; line-height: normal; font-weight: 700;margin-bottom: 15px;display: block;}
.input-btn{height: 50px; width: 100%; border: 1px solid #000; padding: 4px 4px 4px 15px; border-radius: 8px; display: flex; justify-content: space-between;}
#applyCode{background-color: #DDE3E7; width: 120px; font-size: 18px;}
.input-btn input::placeholder{color: #A8B7C1;}
.input-btn input{font-size: 18px;}
.referral{padding-bottom: 30px; border-bottom: 1px solid #DDE3E7;}

.hour-inner {
  float: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 20px; margin-bottom: 30px;
}

.left-heading span {
  font-size: 14px;
  line-height: normal;
  padding-bottom: 5px;
}

.left-heading h4 {
  font-size: 20px; line-height: normal; font-weight: 700;
}
.view-more{margin-top: 5px;}
.view-more .btn{background: #fff; color: #000; text-align: left; box-shadow: none; font-weight: 700; font-size: 20px;}

.view-more .btn.gradient_btn:after {
  background-image: url(../img/profile/arrow-right.png);
}

.top-header {
  width: 100%;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 5px;
}
.top-header h3 {
  font-size: 26px;
  line-height: normal;
  margin-bottom: 30px;
}

.tab-header h4{font-size: 18px; line-height: normal; margin-bottom: 15px;}
ul.hire-tab-btn {
  display: flex
;
  justify-content: space-between;
}

.hire-tab-btn li {
  width: 49%;
  border: 1px solid #DDE3E7;
  color: #000;
  font-size: 18px;
  height: 50px;
  /* line-height: 50px; */
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hire-tab-btn li.active{background-color: #000; color: #fff;}


.full-time {
  float: left;
  width: 100%;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.inner-tab-details {
  width: 100%; margin-bottom: 30px;
  background-color: #DDE3E7;
  padding: 20px;
  border-radius: 20px;
  float: left;
  margin-top: 30px;
}


.inner-tab-details ul.tabs li {min-width: 32.39%;}
.inner-tab-details .price-top-text p{padding-top: 20px;}

.part-time-text {
  display: flex;
  justify-content: space-between;
  width: 100%; align-items: center;
}

.part-time-text h3{font-size: 26px; line-height: normal; letter-spacing: 0;}

.part-time-text h5{font-size: 18px; line-height: normal; font-weight: normal;}

.ai-profile .profile-wrap{margin-top: 100px;}


/* profile change */

.profile-wrap .common-wrap {
  max-width: 1470px;
}
.video-interview {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.video-interview img{width: 100%;}
.video-interview .play-btn
 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
.box-video:after {
  content: '';
  position: absolute;
  background-color: #000;
  opacity: 0.7;
  z-index: 111;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.left-profile {
  float: left;
  width: 66.377431%;
}

.right-box-item {
  float: left;
  width: 31.4679236%;
}

.grid-bullet {
  display: flex;
  margin-top: 20px;
  flex-flow: row wrap;
  gap: 10px;
  row-gap: 10px;
  float: left;
  width: 100%;
}

.education.experience.company {
  padding: 0;
}

.address-col {
  width: auto;
  float: left;
}

.addres-item {
  float: left;
  width: 100%;
  margin-top: 40px;
  display: flex
;
  flex-flow: row wrap;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 0;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.profile-page .faq-wrap {
  background-color: #fff;
  border-radius: 10px; margin-top: 40px; padding: 40px;
}
.profile-page .faq-wrap h2{font-size: 26px; text-align: left; font-weight: 700; letter-spacing: normal;}

.profile-page .accordion-item {
  float: left;
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid #DDE3E7;
  border-radius: 10px;
}

.profile-page .accordion-item h5{background: transparent; border-bottom: 0;}
.right-profile-box {
  float: left;
  width: 100%;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}

.profile-icon {
  width: 100%;
}

.profile-icon img{width: 150px; display: block; margin: 0 auto; text-align: center;}
.author-details h4{font-size: 26px; font-weight: 700; margin-top: 20px; text-align: center; line-height: normal;}
.author-details p{color: #525966; text-align: center; margin-top: 10px;}
.location-text{float: left; width: 100%; margin-top: 10px;}
.location-text span{font-weight: normal;}
.location-text img{height: 14px; width: 10px; margin: 0;}
.location-text p {
  display: flex;
  font-weight: 700;
  text-align: left;
  align-items: center;
  font-size: 14px;
  gap: 10px;
}

.review-box {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 20px;
}
.profile-page .review-star {margin-top: 0;}

.exp dfn{font-size: 18px; font-weight: 700;}
.exp{font-size: 14px;}

.badge-btn {
  float: left;
  width: 100%;
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #DDE3E7;
}

.badge-btn button {
  border: 1px solid #DDE3E7;
  background-color: transparent;
  border-radius: 5px; font-size: 14px;
  padding: 6px 10px;
}


.cta-btns {
  float: left;
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.cta-btns a.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #000;
  border-radius: 8px; font-weight: 700;
  color: #000;
}
.cta-btns a.gradient_btn{border: 0; color: #fff;}

.book-cta .btn {
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 8px;
  margin-top: 20px;
}
.work-hour {
  float: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; margin-top: 20px; border-bottom: 1px solid #DDE3E7; padding-bottom: 20px;
}

.work-hour dfn{color: #525966; font-size: 14px; line-height: normal;}
.work-hour p{font-size: 26px; line-height: normal; padding-top: 5px;}

.full-time-rate{padding-left: 20px; border-left: 1px solid #DDE3E7;}
.time-text{margin-top: 20px; text-align: center; display: block; font-size: 14px; line-height: normal;     float: left;
  width: 100%;}

  .accenture-box {
    float: left;
    width: 100%;
    background-color: #fff;
    padding: 40px;
    margin-top: 10px;
    border-radius: 10px;
    display: flex;
    gap: 30px;
    flex-flow: row wrap;
    align-items: center;
}

.logo-text-right span{font-size: 14px; color: #525966; line-height: normal;}
.logo-text-right h4{font-size: 24px; line-height: normal; font-weight: 700;margin: 5px 0;}

a.link-file {
  color: #000;
  text-decoration: underline;
  font-size: 14px;
  line-height: normal;
  margin-top: 10px;
}

.profile-wrap{margin-top: 0;}
.profile-inner-info{margin-top: 20px;}
header.main-header-section.profile-header-wrap
 {
    background-color: #f8f9fa;
    box-shadow: none;
    z-index: 999999;
}
.profile-header-wrap .common-wrap{max-width: 1470px;}
.header-cta {
  width: 100%;
  display: flex
;
  justify-content: end;
  gap: 20px;
  align-items: center;
}


a.share-btn {
  font-size: 14px;
  color: #000;
  display: flex
;
  align-items: center;
  gap: 10px;
  line-height: normal;
}

a.power-by {
  background-color: #CCF6E9;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}



.modalshow .modal-wrap{display: block; opacity: 1; visibility: visible;}
.modal-profile-inner {
  max-width: 770px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 60px; position: relative;
  margin-top: 50px;
}

.social-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; flex-flow: row wrap; gap:15px; margin-top: 50px;
}

.social-cta a{width: 90px; float: left;}

.social-cta span{color: #000; font-size: 18px; line-height: normal; display: block; text-align: center; margin-top: 5px;} 

.colse-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 34px; cursor: pointer;
}


.view-full-profile {
  display: none;
  transition: height 0.5s ease;
}

.view-full-profile.active {
  display: block;
}


#hide-profile:after {
  transform: rotate(270deg);
  top: 20px;
}

.view-more{margin-top: 20px;}
.view-more .btn {
  background: transparent;
  border: 2px solid #DDE3E7;
  border-radius: 10px;
}


.profile-footer{float: left; width: 100%; margin-top: 40px; padding-bottom: 40px;}
.profile-footer .common-wrap{max-width: 1470px;}

.footer-item {
  float: left;
  width: 100%; padding-bottom: 40px; border-bottom: 1px solid #DDE3E7;
}

.footer-item span{
    display: block;
    width: 100%;
    font-size: 9px;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 10px;
}

.footer-item img{width: 160px;}

.footer-item p{    font-size: 18px;
  line-height: normal;
  margin-top: 20px;}

  .learn-cta{display: flex;
        gap: 10px;
        color: #000;
        align-items: center;
        margin-top: 20px;
  }

  .learn-cta img{width: 17px; height: 11px;}

  .footer-list-item{float: left; width: 100%; padding-top: 40px;padding-bottom: 40px;border-bottom: 1px solid #DDE3E7; display: flex; flex-flow: row wrap;
  gap:40px} 
  .footer-col {width: auto;}

  .footer-col ul li a{color: #525966; font-size: 16px; line-height: normal; text-decoration: underline; margin-bottom: 5px;}

  .copy-text{padding-top: 40px; font-size: 16px; line-height: normal; float: left; width: 100%;}


  .profile .main-wrap{overflow: unset;}
  .right-sticky {
    width: 100%;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    right: 0;
    float: left;
}

/* Agency profile */

.ai-profile-wrap .main-nav ul {column-gap: 40px; row-gap: 18px;}
.ai-profile-wrap .nav-wrap.flex {justify-content: end; gap: 55px;}
.main-nav ul li a{font-size: 18px; line-height: normal;}


.three-cta .bg-blk{background-color: #000; border: 2px solid #000; color: #fff;}
.three-cta .btn.arrow_btn-rgba.without-icon {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #000;
  border: 2px solid #000;
  justify-content: center;
}
.three-cta img{width: 24px;}

.ai-profile-wrap .left-profile{width: 100%;}
.ai-profile-wrap .profile-wrap .common-wrap{max-width: 1180px;}

.banner-wrap{float: left; width: 100%; position: relative; height: 595px;}
.banner-thumb{position: absolute; float: left; width: 100%; height: 100%;}
.banner-thumb img{float: left; width: 100%; height: 100%;}

.ai-profile-wrap .profile-wrap {margin-top: 180px;}

.bottom-logo-icon {
  position: absolute;
  width: 200px;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.ai-profile-wra .header-cta {
  position: absolute;
  right: 32px;
  top: 46px;
}

.ai-profile-wrap .modal-wrap{padding-top: 80px;}
.ai-profile-wrap .header-cta {
  position: absolute;
  right: 32px;
  top: 46px;
  flex-direction: column; width: auto; gap: 8px;}
  
  a.share-btn {
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: normal;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 8px 20px;
    border-radius: 5px;
}

.ai-profile-wrap .badge-btn {
  border: 0;
  width: auto;
}
.twin-wrap {
  float: left;
  width: 100%;
  text-align: center;
}
.twin-wrap h3{font-size: 45px; line-height: normal; padding-bottom: 10px;}
.rating-wrap {
  float: left;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.twin-text {
  max-width: 1052px;
  margin: 0 auto;
}
.twin-text p{ font-size: 26px;
  line-height: normal; padding-bottom: 40px;}


  .ai-profile-wrap .view-full-profile {display: block;}

  .logo-card-items {
    margin-top: 20px;
    float: left;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    gap: 4%;
    row-gap: 40px;
}

.card-item-logo {
  float: left;
  width: 48%;
}

.card-item-logo span {
  display: block;
  margin-top: 5px;
  text-align: center;
  text-decoration: underline;
}

.ai-profile-wrap .profile-page .faq-wrap{margin-top: 20px;}
.ai-profile-wrap .faq-wrap h2 {margin-bottom: 20px;}
.ai-profile-wrap .accordion-item.active h5 {padding-bottom: 0;}
.ai-profile-wrap .accordion-content{padding: 20px 32px;}

.pricing-box-wrap {
  float: left;
  width: 100%;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
}

.pricing-box-wrap h3{font-size: 26px; line-height: normal;}

.hourly-price {
  float: left;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DDE3E7;
}
.hourly-price span{ color: #525966; font-size: 14px; line-height: normal;}
.hourly-price p{font-size: 20px; line-height: normal; margin-top: 4px;}

.information-wrap {
  float: left;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DDE3E7;
}

.information-item {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;

}

.information-item .bullet-list{gap: 0;}
.information-item .bullet-list span {
  display: flex; font-size: 18px; font-weight: 700;
  border: 0;
  padding: 0;
}
.information-item .bullet-list p{width: 100%; font-size: 14px; line-height: normal; color: #525966;}
.information-wrap.company {
  border: 0;
}
.information-wrap.company span{font-size: 14px; line-height: normal; color: #525966;}

.information-wrap.company p{font-size: 26px; line-height: normal; color: #000;}
.information-wrap.company dfn{display: block; width: 100%;}

.member-wrap{  float: left;
  width: 100%;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;}

  .member-wrap .profile-img::after{display: none;}
  .member-wrap .profile-img{width: 90px;}
  .member-wrap .profile-details{gap: 20px;}
  .right-tag {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
}

.right-tag .review-box {
    width: auto;
    justify-content: center;
    gap: 22px;
    margin-top: 0;
}
.member-wrap .info-text h3{font-size: 18px; text-decoration: underline;}
.right-tag dfn{font-size: 14px; color: #000;}
.exp{color: #000;}
.right-tag .review-star p{font-size: 14px; color: #000;}
.text-member p{color: #525966; font-size: 14px; line-height: normal;margin-top: 5px;}

.ai-profile-wrap .text-member .badge-btn{margin-top: 10px;}
.member-col {
  float: left;
  width: 100%;
  border: 1px solid #DDE3E7;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.managers .member-col {
  background-color: #DDE3E7;
  padding: 20px;
  border-radius: 10px;
}
.member-item{float: left; width: 100%;}
.member-item h3{font-size: 26px; line-height: normal; margin-bottom: 20px;}
.agency-member {margin-top: 40px;}

.ai-profile-wrap .profile-footer .common-wrap {max-width: 1180px;}
.right-tag h3{margin-bottom: 0;}
.managers .badge-btn button{background-color: #fff;}


.static-button {display: none;}


.new-top{background: #011024; height:auto; padding-bottom: 0;}

.home-page-2 .new-top::after {
  background: transparent;
  background-image: url(../img/home/hero-illustration.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 80%;
  top: auto;
  bottom: 0; display: none;
}


.hero-new-img {float: left; width: 100%; margin-top: 60px;}

 .wavy-bg-wrapper.page-curbe {
  position: relative;
  bottom: 72px;
  z-index: 111;

}
.new-top::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  height: 110px;
  z-index: 111;
}

.home-page .black-hire-wrap {
  background-color: #000000; padding: 65px 0;
}
.black-hire-wrap .top-text h2{color: #fff;text-align: left; font-size: 160px; line-height: normal; font-weight: 700;}
 .black-hire-wrap .top-text h3{color: #fff; font-size: 26px; line-height: normal; padding-top: 20px; text-align: left!important; font-weight: normal!important; display: block!important;}
.black-hire-wrap .top-text p{color: #fff; padding-top: 20px; text-align: left;}

.wavy-bg-wrapper.curbe-top{background-color: #000;}

.new-top h1{color: #fff!important;     background: transparent;
  -webkit-background-clip: unset; 
   -webkit-text-fill-color: unset; 
   background-clip: text}


/* Freelancer */


.freelancer-hero {
  float: left;
  width: 100%;
  background-color: #E8F6F2;
  padding: 100px 0;
}

.freelancer-hero .common-wrap{max-width: 1370px;}
.top-hero-inner {
  width: 100%;
  display: flex;
  gap: 4%;
  flex-flow: row wrap;
}
.left-hero-text{float: left; width: 48%;}
.left-hero-text h4 {font-size: 20px; line-height: normal; font-weight: 700; padding-bottom: 30px;}
.left-hero-text p{font-size: 26px ; line-height: normal; padding-top: 30px;}

.freelancer .left-hero-text p{
  max-width: 600px ;
}



.interview-thumb {
  float: left;
  width: 48%; position: relative;
}
.top-left-hire{position: absolute; left: 0;  top: 0; width: 270px;}

.freelancer-hero .hero-content-btn{display: flex; flex-wrap: wrap; align-items: start;}

a.btn.gradient_btn.transparent{background: transparent; border: 2px solid #000; color: #000;}
.btn.gradient_btn.transparent:after{background-image: url(../img/arrow.png);}
.text-link{
  font-size: 18px;
  line-height: normal;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px; margin-top: 30px;
}
.text-link a{display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; line-height: normal; color: #000;}
.text-link img{width: 17px; height: 11px;}
.inner-gif{    width: 460px;
  height: 500px;
  border-radius: 30px;
  right: 0;
  object-fit: cover; margin-top: 120px;
  float: right;
}
.right-top-img {
  position: absolute;
  right: 50px;
  top: 20px;
  width: 180px;
}
.green-mad{background: transparent!important;}
.green-mad svg {background: #E8F6F2!important;}

.why-use-wrap{ float: left; width: 100%; padding: 80px 0;}
.why-use-wrap .common-wrap{max-width: 1370px;}
.top-why-text {
  float: left;
  width: 100%;
  text-align: center;
}
.top-why-text p{font-size: 27px; line-height: normal; margin-top: 30px;}


.item-service {
  float: left;
  width: 19.3%;
}

.why-use-inner {
  display: flex;
  width: 100%;
  float: left;
  flex-flow: row wrap;
  gap: 10px; margin-top: 50px;
}


.item-service {
  float: left;
  width: 19.3%; background: #fff; padding: 30px; border-radius: 30px;
}

.item-service img{width: 60px;}
.item-service h5{font-size: 26px; font-weight: 700; line-height: normal; padding-bottom: 10px; padding-top: 30px;}
.action-btn {float: left; width: 100%; margin-top: 40px; display: flex; justify-content: center;}


.ready-grow{float: left; width: 100%; padding: 80px 0;}

.ready-grow .common-wrap{max-width: 1370px;}
.grow-inner{float: left; width: 100%;}
.grow-text {
  width: 100%;
  float: left;
  border-radius: 30px;
  padding: 80px;
  background-color: #E8F6F2;
}
.grow-text h3{font-size: 45px; line-height: normal; font-weight: 400;}

.grow-text  span {font-size: 27px; line-height: normal; padding-top: 20px;}
.grow-text h4{font-size: 26px; line-height: normal;padding-top: 20px;}
.grow-text p{padding-top: 20px;}
.work-list p{font-weight: 700;}
.work-list ul{float: left; width: 100%; margin-top: 30px;}
.work-list ul li {display: flex; gap: 10px; align-items: center; font-size: 18px; line-height: normal; padding-bottom: 10px;}
.work-list ul li img{width: 20px;}
.journey-btn{float: left; width: 100%; margin-top: 20px;}

.freelancer .profitable-content {
  width: 45.4%;
}

.freelancer .profitable-thumb {
  width: 45.4%;
  background-color: #F8F9FA;
  padding: 30px;
  border-radius: 40px;
  box-shadow: rgba(168, 183, 193, 0.3);
  box-shadow: 4px 6px 50px 0px rgba(168, 183, 193, 0.3);
  -webkit-box-shadow: 4px 6px 50px 0px rgba(168, 183, 193, 0.3);
  -moz-box-shadow: 4px 6px 50px 0px rgba(168,183,193,0.3);
}
.freelancer .header-cta img{width: auto;}
.freelancer .header-cta{justify-content: start; margin-bottom: 20px;}

.freelancer a.share-btn {background-color: transparent;}
.interview-2{border-radius: 10px; margin-bottom: 10px;}
.freelancer .about-alves{padding: 10px; border-radius: 10px;}

.freelancer .skill {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  float: left;
  width: 100%;
  margin-top: 10px;
}

.freelancer .about-text h3{font-size: 12px; letter-spacing: normal; line-height: normal;}

.freelancer .about-text p{font-size: 9px; line-height: normal;}

.freelancer .skill strong{font-size: 12px;}

.freelancer .grid-btn span{font-size: 12px;}

.freelancer .grid-btn {

  padding: 5px 11px;
}

.freelancer .grid-bullet {
 
  gap: 3px;
 
}

.freelancer .education-item{padding-left: 20px;}

.freelancer .col-list img{width: auto;}
.freelancer .education-item::after {
  height: 100%;
  background-image: url(../img//freelancer/Timeline.png);
}

.freelancer .education-item p{font-size: 7px; line-height: normal; color: #525966;}
.freelancer .education h3{font-size: 12px; line-height: normal;}
.freelancer .education-item span {font-size: 9px; line-height: normal; }
.freelancer .education-item li{font-size: 9px; line-height: normal;gap: 5px;}
.freelancer .education{padding: 10px;margin-top: 10px;}
.freelancer .col-list{margin-top: 10px;}
.freelancer .profitable-content p{font-size: 27px; line-height: normal; padding: 20px 0;}

.freelancer .profitable-content dfn{padding: 5px 0; display: block;} 

.freelancer .profitable-thumb{position: relative;}
.profitable-thumb .right-top-img {
  right: 116px;
  top: -62px;
}

.profitable-thumb .top-left-hire {
  left: auto;
  top: -80px;
  right: -100px;
}

.collaborate-wrap {
  float: left;
  width: 100%;
  padding: 80px 0;
}

.collaborate-wrap .common-wrap{max-width: 1370px;}

.collaborate-inner {
  float: left;
  width: 100%;
  background-color: #E8F6F2;
  padding: 80px;
  border-radius: 30px;
}
.collaborate-inner h3{font-size: 45px; line-height: normal;}
.collaborate-inner p{font-size: 27px; line-height: normal;padding-top: 30px; padding-bottom: 30px;}
.freelancer .top-text h2{max-width: 100%;}
.freelancer-page .slider-thumb {
    position: relative;
  }

  .freelancer-page .slider-thumb img.play-icon {
    border-radius: 50%;
    max-width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
  }

/* about-us */


.about-hero img {
  width: 100%; height: auto; margin-top: 0;
}

.stroy-wrap {
  float: left;
  width: 100%;
  padding: 80px 0;
}


.stroy-wrap .common-wrap{max-width: 1370px;}
.story-inner {
  float: left;
  width: 100%;
  display: flex;
  flex-flow: row wrap; align-items: center;
  gap: 6%;
}

.story-img {
  float: left;
  width: 30%;
}

.story-content {
  float: left;
  width: 60%;
}


.story-content h4{font-size: 20px; line-height: normal; text-transform: uppercase; font-weight: 700;}

.story-content h3{font-size: 45px; line-height: normal; padding: 10px 0;}
.story-content p{padding-top: 10px;}

.our-mission {
  float: left;
  width: 100%; padding: 80px 0;
}

.our-mission .common-wrap {max-width: 1370px;}

.mission-inner{float: left; width: 100%;}
.mission-text {
  float: left;
  width: 100%;
  text-align: center;
}

.mission-text h4{font-size: 20px; line-height: normal; text-transform: uppercase; font-weight: 700;}
.mission-text h3{padding-top: 10px;}
.mission-text p{font-size: 27px; line-height: normal; padding-top: 40px;}
.mission-text dfn{font-size: 18px; line-height: normal; padding-top: 20px;}
.mission-list{float: left; width: 100%;}
.mission-box{max-width: 930px; margin: 0 auto; padding-top: 40px;}

.img-text {
  float: left;
  width: 100%;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 16px;
}

.text-list-left span{font-size: 18px; line-height: normal; font-weight: 700;}
.text-list-left p{font-size: 14px; line-height: normal; padding-top: 5px;}

.vission .mission-box{display:flex; flex-flow: row wrap; gap: 2%;}

.card-box-vission {
  float: left;
  width: 48%;
  background: #fff;
  padding: 40px;
  border-radius: 30px;
}

.card-box-vission p{text-align: center; padding-top: 20px;}

.bottom-welcome-text {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.bottom-welcome-text p{font-size: 27px; line-height: normal;padding-bottom: 20px;}

.future-work .mission-text p{font-size: 40px; line-height: normal;}
.future-work .bottom-welcome-text p{font-size: 18px; line-height: normal; text-align: center;}
.future-work .text-list-left span{font-weight: 400;}
.press-wrap {
  float: left;
  width: 100%;
  padding: 100px 0; background-color: #fff;
}

.press-wrap h4{font-size: 20px; line-height: normal; color: #01D18F;}

.press-inner {
  float: left;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between; margin-top: 60px;
}

.press-text{float: left; width: 54%;}
.press-wrap .common-wrap  {max-width: 1370px;}
.press-text {
  float: left;
  width: 60%;
}

.press-text {
  float: left;
  width: 60%;
}

.press-download {
  float: left;
  width: 33%;
}

.press-text p:not(:first-child){padding-top: 20px;}
.press-wrap .img-text {
  background-color: #F8F9FA; margin-bottom: 10px;

}

.about-dhiraj{background-color: #000; padding: 100px 0 200px;}
.about-dhiraj .story-content h3{color: #fff;}
.about-dhiraj .story-content h4{color: #fff;}
.about-dhiraj .story-content h5{font-size: 26px; line-height: normal; color: #fff; padding-top: 30px; padding-bottom: 30px; font-weight: normal;}
.about-dhiraj .story-content p{color: #fff;}
.contact-me {
  float: left;
  width: 100%;
  display: flex;
  align-items: end;
  gap: 20px; margin-top: 30px;
}


.about-dhiraj .story-img {
  width: 46%;
}
.about-dhiraj .story-content {
  float: left;
  width: 46%;
}

.about-dhiraj .btn.gradient_btn{background: transparent; border: 2px solid #fff;}

.green-chat-icon{
  background: #01D18F !important;
}


/* omini page */


.omini-channel .profitable-thumb {
  box-shadow: unset;
}
.omini-channel .inner-gif {
  width: 100%;
  height: auto;
  border-radius: 0;
  right: 0;
  object-fit: cover;
  margin-top: 0;
  float: right;
}

.omini-channel .work-list ul {
  margin-top: 20px;
  padding-left: 0;
}
.omini-channel .work-list ul li{margin-top: 0;}



.omini-channel #boost-productivity-wrap{padding-top: 0;padding-bottom: 80px;}

.bg-mint{background-color:  #E8F6F2;}
.bg-mint h4{font-size: 20px; line-height: normal; font-weight: 400;} 
.bg-mint p{font-size: 14px; line-height: normal; color: #525966;padding-top: 10px;}
.omni-thumb {
  width: 100%;
  float: left;
  margin-top: 22px;
}




.agency-page .inner-gif {
  height: 100%;
  width: 100%;
  max-width: 510px;
  max-height: 442px;
  margin-right: 42px;
  margin-bottom: 55px;
}

.agency-page .top-left-hire {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}


.build-agency-methods {
  float: left;
  margin-top: 40px;
  flex-wrap: nowrap;
  gap: 20px;
}

.build-agency-methods .method-card {
  padding: 40px;
  background: black;
  color: white;
  border-radius: 30px;
  width: 40%;
  justify-content: space-between;
}

.build-agency-methods .thum {
  width: 100%;
  max-height: 250px;
  height: auto;
  overflow: hidden;
  border-radius: 18px;
}

.build-agency-methods .thum img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.build-agency-methods .top-content h1 {
  color: white;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}
.build-agency-methods .top-content h4 {
  color: white;
  font-size: 26px;
  line-height: normal;
}

.build-agency-methods .bottom-cta {
  padding-top: 40px;
}

.build-agency-methods .bottom-cta a {
  text-align: left;
}

.dot-icon {
  position: relative;
}
/* .dot-icon:after { content: ''; position: absolute; right: 75px; top: -10px; background-image: url(../img/agency/dot.png); width: 74px; height: 76px; background-repeat: no-repeat; background-position: center center; background-size: cover; } */

.thareja-tracking-wrap {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 60px;
  height: auto;
  margin-top: 50px;
}

.thareja-tracking-wrap .common-wrap {
  max-width: 1420px;
}
.top-curve {
  float: left;
  width: 100%;
  position: absolute;
  top: 0;
}
.color-bg {
  float: left;
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
}

.color-bg img {
  float: left;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thareja-inner {
  float: left;
  width: 100%;
  position: relative;
  z-index: 11;
}
.agency-page .odd-item.required-wrap {
  padding-bottom: 100px;
}


.agency-page .component-wrap .img-text {
  align-items: flex-start;
}

/* agency page */
.agency-page.page-section {
  margin: 0;
  padding: 80px 0;
  float: left;
}

.agency-page .top-why-text p {
  margin-top: 20px;
}

.agency-page .common-wrap {
  max-width: 1370px;
}

.agency-page .page-section-inner {
  flex-wrap: nowrap;
  gap: 100px;
}

.agency-page .page-section-inner .section-thum {
  width: 100%;
  max-width: 615px;
}
.agency-page .page-section-inner .section-content {
  width: 100%;
  max-width: 615px;
  gap: 40px;
  align-items: start;
}
.agency-page .contracts-NDA-inner .section-content {
  justify-content: center;
  gap: 0;
  padding-right: 80px;
}

.agency-page .section-content .flex {
  gap: 20px;
}

.agency-page .section-content .box-subtitle {
  font-size: 26px;
  line-height: normal;
  margin-bottom: 5px;
  font-weight: 700;
}
.agency-page .section-content .box p {
  line-height: 133.333%;
  letter-spacing: 0.18px;
}

.agency-page.page-section h2 {
  font-size: 60px;
  letter-spacing: -1.8px;
}
.agency-page.page-section p.des {
  font-size: 27px;
  line-height: 148.148%;
  letter-spacing: -0.54px;
}

.build-agency-methods .top-content {
  gap: 20px;
}

.check-mark-checkbox-list {
  gap: 10px;
}

.check-mark-checkbox-list li {
  position: relative;
  margin-left: 30px;
  font-weight: 700;
}

.check-mark-checkbox-list.instant-onboarding li {
  font-weight: 400;
}

.check-mark-checkbox-list li::before {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translatey(-50%);
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../svgs/agency/check-mark.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.build-agency-methods {
  float: left;
  margin-top: 40px;
  flex-wrap: nowrap;
  gap: 20px;
}

.build-agency-methods .method-card {
  padding: 40px;
  background: black;
  color: white;
  border-radius: 30px;
  width: 40%;
  justify-content: space-between;
}

.build-agency-methods .thum {
  width: 100%;
  max-height: 250px;
  height: auto;
  overflow: hidden;
  border-radius: 18px;
}

.build-agency-methods .thum img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.build-agency-methods .top-content h1 {
  color: white;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -2.4px;
}
.build-agency-methods .top-content h4 {
  color: white;
  font-size: 26px;
  line-height: normal;
}

.build-agency-methods .bottom-cta {
  padding-top: 40px;
}

.build-agency-methods .bottom-cta a {
  text-align: left;
}

.dot-icon {
  position: relative;
}

.check-mark-checkbox-list li::before {
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translatey(-50%);
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../svgs/agency/check-mark.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.contracts-NDA-inner {
  float: left;
  width: 100%;
  background-color: #e8f6f2;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

.contracts-NDA-inner h3 {
  font-size: 40px;
  letter-spacing: -1.2px;
}

.contracts-NDA-inner .content {
  width: 100%;
  max-width: 695px;
  padding: 80px;
}
.contracts-NDA-inner p {
  margin: 40px 0;
}

.contracts-NDA-inner a {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: black;
  gap: 15px;
}

.contracts-NDA-inner a span {
  text-decoration: underline;
}

.contracts-NDA-inner .thumnail {
  width: 100%;
  max-width: 615px;
}

.contracts-NDA-inner .thumnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collaborate-inner h3 {
  font-size: 45px;
  line-height: normal;
}
/* .contracts-NDA-inner h3{font-size: 40px;line-height: normal;letter-spacing: -1.2px;} */
.collaborate-inner p {
  font-size: 27px;
  line-height: normal;
  padding-top: 30px;
  padding-bottom: 30px;
}

.agency-page .contracts-NDA-inner .section-thum img{width: 100%;}



/* home page omni */


.omni-sourche-wrap {
  float: left;
  width: 100%;
  padding: 100px 0;
  background-color: #000;
}

.omni-sourche-wrap .common-wrap{max-width: 1370px;}

.omni-sourche-wrap .top-hero-inner {
  background-color: #E8F6F2;
  border-radius: 30px;
  padding: 80px;
}

.home-page-2 .omni-sourche-wrap .hero-content-btn a {
  display: unset;
}


.omni-sourche-wrap .inner-gif {
  width: 100%;
  height:auto; object-fit: contain;
  margin-top: 0;
}

.omini-channel .inner-gif{object-fit: contain; height: auto; width: 100%;}



/* Testimonial */

.testimonial-hero .common-wrap{max-width: 1370px;}
.testimonial .omni-sourche-wrap{ background-color: transparent;}
.testimonial .hero-wrap::after{background: transparent;}

.testimonial  .hero-content h1 {
  font-size: 85px; font-weight: normal;
  line-height: normal;
  background: unset;-webkit-text-fill-color: unset;
}

.testimonial  .hero-content span{font-weight: 700;}

.testimonial .hero-content p{color: #000!important;}
.testimonial-wrap {
  float: left;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 20px; margin-top: 150px;
}

.testimonial-item {
  float: left;
  width: 31.38686131386861%;
}

.testimonial-box{float: left;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 30px; margin-bottom: 20px; }

  .testimonial-box h4{font-size: 20px; line-height: normal; padding-top: 14px;}
  .testimonial-box p{font-size: 18px; line-height: normal; padding-top: 14px;}
  .top-testimonial-text{float: left; width: 100%;padding-bottom: 14px; border-bottom: 1px solid #DDE3E7;}
  .testimonial-box .profile-img:after{display: none;}

  .testimonial-box .profile-img {width: 50px; }
  .testimonial-box .profile-img img{width: 100%;}
  .testimonial-box .profile-details{width: 100%; gap: 10px; padding-top: 14px;}
  .testimonial-box .info-text h3{font-size: 20px; line-height: normal;}
  .testimonial-box .info-text h5{font-size: 14px; line-height: normal; color: #525966;margin-top: 4px;}
  .testimonial .lh-full{font-size: 60px; line-height: normal;}
  .wavy-bg-wrapper.home-curbe{bottom: 0;}
  .new-top::before{display: none;}
  .new-top h1 {font-weight: 400!important;}


  .new-top{background: #000;}

  .lion-icon img {
    width: 200px;
    opacity: 1;
    transform: unset;
}

.omni-thumb {
    width: 100%;
    float: left;
    margin-top: 22px;
    position: relative;
    z-index: 1;
}


  /* =================== extra style to customize existing style ends======== */

.category-wrap {
    float: left;
    width: 100%;
    border-top: 1px solid #d9d9d9;
    margin-top: 14px;
}
nav.category-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1720px;
    margin: 0 auto;
}
nav.category-nav ul{width: auto; display: flex; gap: 20px;}



.archive .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 1080px;}

.archive .has-global-padding{padding-top: 150px!important;}











.category-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #eee;
   
}

.category-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li a {
    text-decoration: none;
    font-weight: 700;
    color: #000;  font-family: "Thareja Sans", sans-serif;
}

.search-toggle .search-icon {
    width: 28px;
    cursor: pointer;
}

.search-form-wrapper {
    display: none;
    position: relative;
    margin-top: 10px;
}

.search-form-wrapper.active {
    display: flex;
    align-items: center;
    gap: 10px;

}

.search-form-wrapper input[type="search"] {
    padding: 8px;
    border: 0;
    width: 100%;
    font-size: 18px;
    color: #A8B7C1;
} 


.search-close {
    font-size: 24px;
    cursor: pointer;
    color: #000;
}





form.search-form {
    width: 100%;
    float: left;
}

.search-form-wrapper.active
 {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    background: #fff;
    padding: 0 9%;
    top: 83px; z-index: 1;
}



form.search-form {
    width: 100%;
    float: left;
}


.search-form-wrapper input[type="search"] {
    max-width: 100%;
}

input.search-submit {
    display: none;}
    



.search-form label{position: relative;}
.search-form label:after {
    content: '';
    position: absolute;
    background-image: url(https://web.thareja.ai/blog/wp-content/uploads/2025/08/search-normal.png);
    left: -40px;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center cen;
    top: 60px;
}



.blog .wp-site-blocks{margin-top: 150px!important;}

 .single-post h1.wp-block-post-title{
    padding-top: 150px;
}


  

.mega_menu.sub_menu
 {
    position: absolute;
    width: 100%;
    background-color: #fff;
    left: 0;
    top: 80px;
    padding: 50px 0 20px;
    z-index: 1;
    display: none;
}

.category-list br{display: none;}



.logo-wrap {
    width: 190px;

}


.nav-wrap {
    width: calc(100% - 190px);
}


.main-logo a {
    width: 100%;
    display: flex
;
    gap: 5px;
    align-items: center;
}

.main-logo {
    width: 100%;
    display: flex;
    gap: 5px;
}



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

.category-wrap{display: none;}

    .main-header-section{
      float: left;
      width: 100%;
      padding: 0px;
    }

    .main-header-section .common-wrap{
      padding: 0px;
    }

    .logo-wrap {
      width: 100%;
      position: relative;
      z-index: 9;
      padding: 14px 20px;
      background: #fff;
      border-bottom: 1px solid #dde3e7;
    }
    .main-logo {
      width: 160px;
    }
    .hamburger {
      display: flex;
    }
    .main-nav ul li a {
      font-size: 20px;
      line-height: 22px;
    }
    .nav-wrap {
      padding: 120px 20px;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      overflow-y: scroll;
      background-color: #fff;
      display: none;
    }
    .nav-wrap::-webkit-scrollbar {
      display: none;
    }
    .main-nav {
      width: 100%;
    }
    .main-nav ul {
      width: 100%;
    }
    .main-nav ul li {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
    .header-btn {
      width: 100%;
      justify-content: center;
      margin-top: 40px;
    }
    .brand-item-wrap .js-marquee-wrapper {
      display: flex;
    }
    .brand-item-wrap .js-marquee {
      display: flex;
      margin-right: 30px !important;
      column-gap: 35px;
    }
    .brand-item {
      max-width: inherit !important;
      width: 120px;
      justify-content: center;
    }
    .button-nav {
      flex-flow: row wrap;
      justify-content: center;
    }
    /* .button-nav li { width: 100%; margin-top: 20px; } */
    .button-nav li {
      margin-top: 20px;
    }
  
    .home-page .tab-wrap .button-nav li {
      width: auto;
      height: auto;
      max-width: 95px;
      margin-top: 0;
    }
  
    .home-page .tab-wrap .button-nav li:hover,
    .home-page .tab-wrap .button-nav li.tab-active {
      margin-top: -10px;
    }
  
    .home-page .tab-wrap .button-nav li .home-tab-icon.active {
      width: 95px;
      height: 95px;
    }
  
    .home-page .tab-wrap .button-nav li .home-tab-icon.inactive {
      width: 85px;
      height: 85px;
    }
  
    .home-page .tab-wrap .button-nav li .home-tab-icon.active {
      width: 95px;
      height: 95px;
    }
  
    .tab-nav {
      width: 100%;
    }
    .mega-menu-wrap {
      width: 100%;
      margin-top: 70px;
    }
    .mega_menu_item {
      width: 100%;
      margin-top: 40px;
    }
    .menu-box {
      width: 100%;
    }
    .cta-btn-dropdown {
      bottom: 0;
    }
    .menu-top-heading {
      width: 100%;
      text-align: left;
      padding-bottom: 20px;
    }
    .menu-item-inner {
      height: auto;
      padding-bottom: 52px;
    }
    .main-nav .cta-btn-dropdown a {
      justify-content: center;
    }
    .tab-menu_item .header-btn {
      margin-top: 20px;
    }
    .menu-widget-item.menu-item-inner {
      width: 100%;
    }
    .customer-stories {
      width: 100%;
      margin-top: 50px;
    }
    .menu-widget {
      width: 100%;
    }
    .customer-stories .cta-btn-dropdown {
      bottom: 15px;
    }
    .customer-stories .menu-item-inner {
      padding-bottom: 0;
    }
  
    .stage-items {
      width: 100%;
      margin-top: 30px;
    }
    .customer-slider .slick-prev::before,
    .customer-slider .slick-next::before {
      top: 10px;
    }
    .profitable-content {
      width: 100%;
    }
    .profitable-thumb {
      width: 100%;
      margin-top: 30px;
    }
    .profitable-item {
      margin-top: 0;
    }
    .list-box {
      width: 100%;
      margin-bottom: 30px;
    }
    .box-content-item {
      width: 100%;
    }
    .invoice-wrap .list-box {
      width: 100%;
    }
    .contractor-page .profitable-content {
      width: 100%;
    }
    .contractor-page .profitable-thumb {
      width: 100%;
    }
    .tab-wrap {
      margin-top: 0;
    }
    .product-invoice .customer-wrap {
      padding-bottom: 0;
    }
    .profitable-wrap {
      padding-top: 50px;
    }
    .faq-wrap {
      padding: 50px 0;
    }
    .accordion h2 {
      margin-bottom: 40px;
    }
  
    .contractor-page .hero-content h4 {
      padding-bottom: 15px;
    }
    .hero-bottom-wrap {
      margin-top: 40px;
    }
    .box-wrap {
      margin-top: 50px;
    }
    .component-item {
      width: 49%;
    }
    .img-text {
      flex-flow: row wrap;
    }
    .save-big .left-box {
      width: 100%;
    }
    .img-card-items {
      width: 100%;
    }
    .card-box {
      padding-right: 20px;
    }
    .img-card {
      width: 100%;
    }
    .about-thareja-org-heading-text h2 {
      font-size: 40px;
    }
    .price-page .faq-wrap {
      padding-bottom: 0;
    }
    .app-box {
      width: 100%;
    }
    .app-item .btn {
      width: 100%;
    }
    .app-item .btn {
      padding: 12px 12px 12px 12px;
    }
    .app-item .btn:after {
      left: 15px;
      right: auto;
    }
    .app-item {
      margin-top: 0;
    }
    .invoice-hero a.btn.transparent_btn {
      margin-top: 20px;
    }
    .app-benifit {
      flex-flow: row wrap;
    }
    .app-icon {
      display: flex;
      width: 100%;
      justify-content: center;
    }
    .app-benifit span {
      font-size: 16px;
    }
    .component-wrap .component-item {
      width: 100%;
      margin-bottom: 20px;
    }
    .component-wrap {
      margin-top: 50px;
    }
    .required-wrap .profitable-content {
      width: 100%;
      margin-top: 40px;
    }
    .required-wrap .profitable-thumb {
      width: 100%;
    }
    .easier-invoice-wrap .img-card {
      width: 100%;
      height: auto;
    }
    .easier-invoice-wrap .card-box {
      padding-left: 0;
      padding-right: 0;
    }
    .payroll-page .profitable-thumb {
      width: 100%;
    }
    .payroll-page .profitable-content {
      width: 100%;
    }
  
    .solution-hero .hero-content {
      max-width: 100%;
      padding-bottom: 80px;
    }
    .solution-hero {
      position: relative;
      height: auto;
    }
    .hero-bg img {
      height: 100%;
    }
    .row-input input[type="email"] {
      padding: 0 12px;
      font-size: 14px;
      width: 100%;
    }
    .row-input input[type="submit"] {
      font-size: 14px;
      width: 100%;
    }
    .solution-hero .app-benifit {
      margin-top: 25px;
      gap: 12px;
      justify-content: center;
    }
    .solution-hero .app-benifit dfn {
      display: none;
    }
    .form-inner {
      justify-content: center;
    }
    .right-text-box {
      width: 100%;
    }
    .agency-page .odd-item.required-wrap {
      padding-bottom: 0;
      padding-top: 40px;
    }
    .social-icon {
      flex-flow: row wrap;
      justify-content: center;
    }
    .development-page .free-trail .profitable-content {
      width: 100%;
    }
    .development-page .free-trail .profitable-thumb {
      width: 100%;
    }
    .easier-invoice-wrap h2 {
      line-height: normal;
    }
    .easier-invoice-wrap {
      margin-top: 58px;
    }
    .accordion-item h5 {
      font-size: 18px;
    }
    .thareja-tracking-wrap.agile-project-management .profitable-item {
      padding: 100px 0;
    }
    .component-wrap.client-billing.fully-remote-page {
      padding-bottom: 60px;
      height: auto;
    }
  
    .common_section-wrap .section-details {
      flex-flow: row wrap;
    }
    .how-workforce-management-works .contents {
      width: 100%;
    }
    .how-workforce-management-works .section-thum {
      width: 100%;
    }
    .field-service-page#phone-address .profitable-content {
      width: 100%;
    }
    .field-service-page#phone-address .profitable-thumb {
      width: 100%;
    }
    .field-service-page.profitable-wrap .profitable-content {
      width: 100%;
    }
    .field-service-page .profitable-thumb {
      width: 100%;
    }
  
    .enterprice-workforce .hero-content-btn {
      flex-direction: column;
      gap: 0;
    }
    .workfoce-analytics-works .section-thum {
      width: 100%;
    }
    .workfoce-analytics-works .contents {
      width: 100%;
    }
    .use-gps-software .contents {
      width: 100%;
    }
    .workforce-analytics-software-solution .contents {
      width: 100%;
    }
    .workforce-analytics-software-solution .section-thum {
      width: 100%;
    }
    .use-gps-software .section-thum {
      width: 100%;
    }
  
    .enterprice-productivity-software .section-thum {
      width: 100%;
    }
    .enterprice-productivity-software .contents {
      width: 100%;
    }
    .enabling-growth-in-industry .profitable-content {
      width: 100%;
      margin-top: 40px;
    }
    .product-invoice .top-text {
      padding-bottom: 20px;
    }
    .why-people-use-thareja.component-wrap .component-inner {
      flex-flow: row wrap;
      /* padding: 30px; */
    }
    .why-people-use-thareja.component-wrap .content-box {
      padding: 0;
      max-width: 100%;
    }
    .why-people-use-thareja.component-wrap .thumnail-box {
      width: 100%;
      max-width: 100%;
      max-height: 400px;
      overflow: hidden;
    }
    .accordion-item h5:after {
      right: 20;
    }
    .accordion-item h5 {
      border-radius: 8px;
      padding: 15px 20px;
      padding-right: 50px;
    }
    .accordion-content {
      padding: 20px;
    }
    .how-gps-works .contents {
      width: 100%;
    }
    .common_section-wrap .section-thum img {
      width: 100%;
    }
    .build-for-all-types .contents {
      width: 100%;
    }
    .build-for-all-types .contents {
      width: 100%;
    }
    .build-for-all-types .section-thum {
      width: 100%;
    }
    .build-for-all-types .contents-inner {
      max-width: 100%;
    }
    .save-gps-timesheet .section-thum {
      width: 100%;
    }
    .save-gps-timesheet .contents {
      width: 100%;
    }
    .why-people-use-thareja.component-wrap {
      margin-top: 50px;
    }
    .common_section-wrap {
      padding-top: 50px;
    }
    .how-gps-works .section-thum {
      width: 100%;
    }
  
    .how-tharejaai-project-cost .section-thum {
      width: 100%;
    }
    .how-tharejaai-project-cost .contents {
      width: 100%;
    }
    .budget-management .section-thum {
      width: 100%;
    }
    .budget-management .contents {
      width: 100%;
    }
    .realtime-workplace .contents {
      width: 100%;
    }
    .realtime-workplace .section-thum {
      width: 100%;
    }
    .common_section-wrap .contents {
      width: 100%;
    }
    .catch-the-highlight .section-thum {
      width: 100%;
    }
    .cutdown-on-mettings .section-thum {
      width: 100%;
    }
    .use-workforce-analytics .section-thum {
      width: 100%;
    }
    .where-metrics-meet-morals .section-thum {
      width: 100%;
    }
    .mental-helth-matters .section-thum {
      width: 100%;
    }
    .employee-productivity-tracking .hero-des {
      max-width: 100%;
    }
    .employee-productivity-tracking .hero-content {
      max-width: 100%;
    }
  
    .common_section-wrap .section-thum {
      width: 100%;
    }
    .how-to-track-employee-productivity .section-thum {
      width: 100%;
    }
    .why-people-use-thareja.component-wrap h3 {
      font-size: 24px;
    }
    .consulting-page .app-benifit {
      justify-content: flex-start;
    }
    .consulting-page .app-icon {
      justify-content: flex-start;
    }
    .development-page .app-benifit {
      justify-content: flex-start;
    }
    .fully-remote-page {
      margin-top: 50px;
    }
    .smarter-tracking .profitable-thumb {
      width: 100%;
    }
    .save-big .card-box {
      justify-content: center;
    }
    .brand-title {
      padding-top: 50px;
    }
    .plan-price .component-box-item {
      width: 100%;
    }
    .future-work .profitable-content {
      padding: 20px;
    }
    .modal-wrap .profitable-item {
      float: left;
      width: 100%;
    }
    .modal-wrap .profitable-content {
      padding: 20px;
    }
    .modal-inner {
      max-width: 100%;
      width: 100%;
      padding: 0 20px;
    }
    .modal-wrap .profitable-thumb {
      width: 100%;
    }
    .close-btn {
      top: 5px;
    }
    .agency-page .thareja-tracking-wrap .profitable-content {
      width: 100%;
    }
    .agency-page .thareja-tracking-wrap .profitable-thumb {
      width: 100%;
    }
    .online-time-reporting .hero-content-btn a.btn {
      margin-top: 20px;
    }
    .thareja-tracking-wrap {
      padding-top: 80px;
    }
    .download-app .hero-wrap {
      padding-top: 50px;
    }
    .agency-page .component-wrap {
      padding: 50px 0;
      margin-top: 0;
    }
    .smb-page .profitable-wrap {
      padding-top: 50px;
    }
    .contractor-page .position-img {
      position: relative;
      left: 0;
      bottom: 0;
      transform: unset;
      margin-top: 40px;
    }
    .development-page .required-wrap .profitable-thumb {
      width: 100%;
    }
    .development-page .required-wrap .profitable-content {
      width: 100%;
    }
    .development-page .teamworks .profitable-content {
      width: 100%;
    }
    .development-page .teamworks .profitable-thumb {
      width: 100%;
    }
    .component-wrap.why-people-use-thareja.cloud-based-integration .content-box {
      padding: 20px;
    }
    .component-page .why-people-use-thareja.component-wrap .gradient-border-wrap {
      /* backdrop-filter: unset; */
      max-width: 590px;
    }
    .component-page .why-people-use-thareja.component-wrap .component-inner {
      /* backdrop-filter: unset; */
      max-width: 590px;
    }
  
    .curve-thumb img {
      height: 100%;
      object-fit: cover;
    }
    .field-service-page#phone-location .profitable-thumb {
      width: 100%;
    }
    .field-service-page h3 {
      font-size: 40px;
      line-height: 110%;
    }
  
    .component-wrap.field-service-page.widget-container {
      padding-top: 50px;
    }
    .remote-fully-page .fully-remote-page.easier-invoice-wrap {
      margin-top: 50px;
    }
    .gps-time .why-people-use-thareja.component-wrap .content-box {
      padding: 20px;
      border-radius: 0;
    }
    .gps-time .thumnail-box img {
      /* border-bottom-right-radius: 20px; */
      /* border-bottom-left-radius: 20px; */
      border-top-right-radius: 0;
    }
    .component-wrap.hybrid-team-page {
      padding-top: 0;
    }
    .fully-remote-page.easier-invoice-wrap {
      margin: 50px 0;
    }
    .invoice-page .required-wrap .profitable-content {
      width: 100%;
    }
    .invoice-page .circle-box {
      width: 50px;
      height: 42px;
    }
    .invoice-page .profitable-thumb {
      width: 100%;
    }
    .enterprise-ready .enterprise-ready-steps {
      display: flex;
      flex-flow: row wrap;
      gap: 15px;
    }
    .enterprise-ready .gradient-card {
      width: 100%;
    }
    
    .component-page .why-people-use-thareja.component-wrap .content-box {
      border-radius: 0;
      padding: 20px;
    }
  
    .rgba-color::after {
      height: 100%;
      width: 100%;
      background-size: cover;
      top: 0;
      right: 0px;
      background-position: center;
    }
  
    .home-page .top-text h2 {
      padding: 20px 0;
    }
  
    /* agency page */
    .agency-page .component-wrap .img-text {
      flex-flow: nowrap;
    }
  
    .agency-page .creative-and-client-faching-teams .spliting {
      opacity: 1;
    }
  
    .agency-page .creative-and-client-faching-teams {
      margin-top: 80px;
    }
  
    .agency-page .creative-and-client-faching-teams .profitable-content {
      margin-top: 0;
    }
  
    /* app download page */
    .download-app .card-box {
      padding-inline: 0;
    }
  
    .download-app .card-box .img-card {
      padding: 20px;
    }
  
    .download-app .img-card p {
      line-height: normal;
    }
  
    .download-app .app-item {
      margin-top: 40px;
    }
  
    .download-app .img-card .app-btn {
      flex-wrap: wrap;
    }
    .download-app .card-box .btn.gradient_btn {
      padding: 12px 20px;
      padding-left: 43px;
      width: auto;
    }
  
    /* customer stories page */
  
    .customer-stories-page .page-hero-video-thum-inner .video-container {
      height: 100%;
    }
  
    .customer-stories-page .case-study-thum {
      max-height: 300px;
      min-height: 300px;
    }
  
    /* employee productivity page */
    .employee-productivity-page .img-text {
      flex-wrap: nowrap;
    }
  
    .employee-productivity-page .component-box-item {
      margin-top: 0px;
    }
    .employee-productivity-page .component-item {
      width: 48%;
    }
  
    /* common class to disable clip path */
    .responsive-cliping-path {
      clip-path: none !important;
    }
  
    /* employee productivity tracking page */
    .employee-productivity-page
      .responsive-cliping-path.measure-employee-performance {
      width: 100%;
    }
  
    .employee-productivity-page
      .measure-employee-performance
      .component-box-item {
      justify-content: space-between;
    }
  
    /* employee scheduling page */
    .employee-scheduling .client-billing {
      width: 100% !important;
    }
    .employee-scheduling .client-billing .component-item {
      width: 48%;
    }
    .employee-scheduling .client-billing .component-box-item {
      justify-content: space-between;
    }
  
    .employee-scheduling .make-shift-scheduling .img-card {
      width: 48%;
    }
    .employee-scheduling .workforce-analytics-software-widget .component-item {
      width: 49%;
    }
    .employee-scheduling .workforce-analytics-software-widget .img-text {
      align-items: center;
      flex-wrap: nowrap;
    }
  
    /* employee timesheet page */
    .employees-timesheet-page
      #why-people-use-thareja.component-wrap
      .component-inner {
      flex-direction: column-reverse;
    }
  
    .employees-timesheet-page .component-wrap.timesheet-software .component-item {
      width: 49%;
      border: none;
    }
  
    .employees-timesheet-page
      .component-wrap.timesheet-software
      .component-box-item {
      justify-content: space-between;
    }
  
    .employees-timesheet-page
      .why-people-use-thareja.component-wrap
      .content-box {
      border-radius: 20px;
    }
  
    /* boost smb page */
    .thareja-ai-helps-smb-thrive .component-item {
      margin-bottom: 0;
    }
  
    /*  development page */
    .development-page .free-trail .profitable-item {
      flex-direction: column-reverse;
      overflow: hidden;
      justify-content: space-between;
      margin-top: 40px;
    }
  
    .development-page .free-trail .profitable-thumb {
      margin-top: 0;
    }
  
    .component-page
      .why-people-use-thareja.cloud-based-integration
      .component-inner {
      max-width: 900px;
    }
  
    /* gps time tracking */
    .gps-time .why-people-use-thareja .component-inner {
      flex-direction: column-reverse;
    }
  
    .home-page-2 .how-thareja-ai-works .contents {
      width: 100%;
    }
    .home-page-2 .how-thareja-ai-works .section-thum {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }
  
    .home-page-2 .how-thareja-ai-works .vertical-line {
      border-left: 2px solid #000000;
      min-height: 6px;
    }


    .mobi-btn.mobi {
      display: flex ;
      justify-content: flex-end;
      width: 40%;
  }
  .mobi-btn.mobi .btn{padding: 12px;}


  .terms-wrap {
    padding: 50px 0;
}
.left-list{width: 100%;}
.right-contet{width: 100%;}

.right-contet h1{font-size: 30px; line-height: normal;}






.profile-header{flex-flow: row wrap;}
.profile-details {
  width: 100%;
  flex-flow: row wrap;
}


.bullet-list {
  flex-flow: row wrap;
}
.right-btns {
  width: 100%; margin-top: 20px;
}

.tab-btn ul{flex-flow: row wrap;}

.left-profile {
  width: 100%;
}
.right-box-item {
  width: 100%;
}
.item-result {width: 100%;}
.education-item {
  padding-left: 43px;
}

.education-item span {
  font-size: 16px;
}

.education.experience.company {
  padding: 0;
}

.education {padding: 20px;}

.top-slider .slick-prev, .top-slider .slick-next {
  width: 30px;
  height: 30px;
}

.top-slider .slick-prev:before, .top-slider .slick-next:before{left: 36px;}
.top-slider .slick-next:before{right: 36px; left: auto;}

.address-col {
  width: 100%;
}

.profile-inner-info{flex-flow: row wrap;}
.container-right{margin-right: 0; margin-left: 0;}
ul.tabs li {

  display: inline-block !important;}



  .price-content h1 {
    font-size: 58px;
}
.box-item{width: 100%; margin-bottom: 30px;}

.include-item{width: 100%;}


.ai-price .save-big .img-card {width: 100%;}


.ai-price .img-card-item.resize-box{margin-top: 50px;}

.home-page-2 .brand-wrap{padding-top: 40px;}
.home-page-2 #hero-wrapper .lead-text{padding-top: 20px;}

.home-page-2 .hero-content-wrap{padding-bottom: 0;}

.home-page-2 .hero-content-btn span {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.profile-inner-bg{padding: 20px;}

.info-text {
  float: left;
  width: 100%;
}

.proflie-list .right-btns {
  width: 100%;
}

.right-btns .tag-btn{justify-content: center;}


.ai-profile .left-profile {
  width: 100%;}

.ai-profile .right-box-item {
  width: 100%;
}

.top-header {margin-top: 20px;}

ul.hire-tab-btn {flex-flow: row wrap; gap: 10px;}
.hire-tab-btn li{width: 100%;}
.ai-profile .profile-details{flex-flow: unset;align-items: flex-start;}
.ai-profile .about-alves{padding: 20px;}



.cta-btns {
  flex-direction: column;
  gap: 20px;
}
.right-box-item{margin-top: 40px;}
.right-profile-box{padding: 20px;}
.cta-btns a.btn{justify-content: center;}



.modalshow .modal-wrap{overflow-y: scroll;}

.right-sticky{position: relative;}



.static-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 20px;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #000;
  z-index: 9999;
}

.static-button .cta-btns {
  display: flex;
  gap: 10px;
  width: auto;
  margin-top: 0;
  flex-direction: unset;
}

.static-button .cta-btns a.btn {
  justify-content: center;
  font-size: 12px;
  padding: 10px 12px;
  line-height: normal;
  height: 40px;
  display: flex;
  align-items: center;
}

.static-button .view-more {
  margin-top: 0;
  width: auto;
}

.static-button .btn.gradient_btn {
  padding: 10px 12px;
  font-size: 12px;
  height: 40px;
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.static-button .view-more .btn.gradient_btn:after {
  display: none;
}

.profile-inner-info {
  flex-flow: row wrap;
  flex-direction: column-reverse;
}




.wavy-bg-wrapper.page-curbe {
  bottom: 20px;}
  .black-hire-wrap .top-text h2{font-size: 100px;}




  .about-dhiraj .story-img {width: 100%;}
.about-dhiraj .story-content{width: 100%; margin-top: 40px;}
.contact-me {
  flex-direction: column;
  align-items: flex-start;
}
.press-download {
  width: 100%; margin-top: 40px;
}

.press-text {
  width: 100%;
}

.press-wrap{padding: 40px 0;}
.left-hero-text {
  width: 100%;
}

.interview-thumb {
  width: 100%; margin-top: 40px;
}
.stroy-wrap{padding: 40px 0;}
.story-img{width: 100%;}
.story-content {
  width: 100%; margin-top: 40px;
}

.our-mission{padding: 40px 0;}
.card-box-vission{width: 100%; margin-top: 40px;}

.future-work .mission-text p {
  font-size: 22px;
 padding-top: 20px;
}

.press-inner{margin-top: 30px;}

.future-work .img-text {flex-flow: unset;}

.freelancer-hero .hero-content-btn {
  flex-direction: column;
}

.top-left-hire {
  top: auto;
  width: 270px;
  bottom: -163px;
}

.item-service{width: 100%;}
.grow-text{padding: 20px;}
.grow-text h3{font-size: 30px;}
.why-use-wrap{padding: 40px;}

.freelancer .profitable-thumb {
  width: 100%;
}
.freelancer .profitable-content {
  width: 100%;
}

.collaborate-inner{padding: 20px;}

.collaborate-inner h3 {
  font-size: 26px;
}
.collaborate-inner p{font-size: 20px;}
.profitable-thumb .top-left-hire {
  left: auto;
  top: 25px;
  right: -38px; width: 120px;
}

.profitable-thumb .right-top-img {
  right: auto;
  top: 59px;
  left: 0;
  width: 120px;
}

.freelancer .header-cta {
  justify-content: start;
  margin-bottom: 20px;
  flex-direction: column;
}

.inner-gif {width: 100%;}




.omini-channel .why-use-wrap{padding: 0;}
.omini-channel .top-why-text p{font-size: 18px;}

.omini-channel #boost-productivity-wrap{padding-top: 50px; padding-bottom: 0;}

.omini-channel .inner-gif {
  width: 100%;
  height:auto;
  object-fit: contain;
  float: right;
  position: relative;
}



/* agency page */

.agency-page.page-section h2 {
  font-size: 40px;
}
.agency-page .page-section-inner .section-content {
  gap: 30px;
}

.agency-page .contracts-NDA-inner .section-content {
  justify-content: center;
  gap: 0;
}

.agency-page .page-section-inner {
  gap: 50px;
}

.agency-page .section-content .box-subtitle {
  font-size: 24px;
  font-weight: 600;
}
.agency-page .section-content .flex {
  gap: 10px;
}

.agency-page .top-left-hire {
  max-width: 600px;
  height: auto;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -39%);
  position: absolute;
}

.agency-page .top-left-hire img {
  width: 110%;
}

.interview-thumb {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 150px;
}

.agency-page .inner-gif {
  height: 100%;
  width: 100%;
  max-width: 600px;
  max-height: 742px;
  margin: 0 auto;
}

.build-agency-methods .method-card {
  width: 48%;
}

.contracts-NDA-inner h3 {
  font-size: 32px;
}

.agency-page .contracts-NDA-inner .section-content {
  padding: 20px;
  
}

.agency-page .contracts-NDA-inner .section-thum {
  width: 100%;
  height: auto; max-width: 100%;
}
.agency-page .contracts-NDA-inner .section-thum img{
width: 100%;
height: 100%;
object-fit: cover;
}

.agency-page .contracts-NDA-inner {
  align-items: stretch;
}
.build-agency-methods {
  flex-wrap: wrap;
  justify-content: space-between;
}

.build-agency-methods .method-card {
  width: 100%;
}
.why-use-wrap.agency-page {
  padding: 40px 0;
}


.agency-page .page-section-inner {
  gap: 50px;
  flex-flow: row wrap;
}


.omni-sourche-wrap .top-hero-inner {
  padding: 20px;
}

.bg-mint .cta-btn-dropdown {
  bottom: 18px;
}

.bg-mint .line {
  bottom: 55px;
}


.omini-channel .interview-thumb {max-width: 100%;}


.testimonial-item{width: 100%;}
.testimonial .lh-full{font-size: 38px;}



.new-top{padding-bottom: 0;}
.wavy-bg-wrapper.page-curbe{height: auto; position: relative; bottom: 0;}

.main-logo a img {
    width: 66%;
}

  }







  
  /* End Home Style */
  @media only screen and (min-width: 1440px) {
    .header-inner {
      padding-right: 10px;
    }
    .services-inner {
      padding-left: 175px;
    }
    .how-it-works-inner {
      padding-left: 0;
    }
    .career-inner {
      padding-left: 48px;
    }
    .footer-inner {
      padding-left: 0;
    }
    .footer-widget-wrap {
      padding-left: 48px;
    }
    .build-for-all-types .contents-inner {
      max-width: 100%;
    }
  
    /* app download page */
    .download-app .card-box {
      padding-right: 20px;
    }
    

  }
  
  /* =======================================================================================================
      ============================================ Responsive style ========================================== */
  
  /*		Mobile Layout: 320px and 480px and more but less than or equal to 767px.
      ----------------------------------------------------------------------------------
      */
  
  @media only screen and (min-width: 320px) and (max-width: 767px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    input[type="number"],
    input[type="submit"],
    input[type="password"],
    select,
    textarea {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }
  
    .desk {
      display: none;
    }
    .mobi {
      display: block;
    }
  
    body {
      font-size: 16px;
      line-height: 22px;
    }
    h1 {
      font-size: 46px;
      line-height: 53px;
    }
    h2 {
      font-size: 40px;
      line-height: normal;
    }
    h3 {
      font-size: 32px;
      line-height: normal;
    }
    h6 {
      font-size: 16px;
      line-height: 20px;
    }
    p {
      font-size: 18px;
      line-height: 126%;
    }
    .btn {
      font-size: 16px;
      line-height: 22px;
      padding: 12px 38px 12px 20px;
    }
    .btn.gradient_btn {
      padding: 12px 38px 12px 20px;
    }
    .btn.transparent_btn {
      padding: 10px 38px 10px 20px;
    }
    .btn:after {
      right: 15px;
    }
    .lead-text {
      font-size: 18px;
      line-height: 28px;
    }
  
    /* Start Home Style */
    .hero-wrap .common-wrap {
      padding: 0 20px;
    }
    .hero-content-wrap {
      width: 100%;
      justify-content: center;
      padding-right: 0;
      padding-bottom: 40px;
    }
    .hero-content h1 {
      margin-bottom: 25px;
    }
    .hero-content-btn {
      margin-top: 25px;
    }
    .hero-content-btn span a {
      font-size: 16px;
      line-height: 22px;
    }
    .hero-thumb {
      width: 100%;
    }
  
    .home-page .tab-wrap .rounded-bg {
      clip-path: ellipse(117% 62% at 50% 36%);
    }
  
    .why-people-use-thareja.component-wrap .thumnail-box {
      width: 100%;
      max-width: 100%;
      max-height: 300px;
      overflow: hidden;
    }
  
    .brand-item-wrap {
      margin-top: 50px;
    }
    .brand-btn {
      margin-top: 40px;
      padding-right: 0;
      justify-content: start;
    }
    .home-page .tab-wrap {
      padding-top: 10px;
    }
  
    .main-footer-section {
      padding-top: 60px;
    }
    .footer-widget.footer-logo {
      width: 100%;
    }
    .footer-widget-wrap {
      column-gap: 2%;
      row-gap: 20px;
    }
    .footer-widget {
      width: 49%;
    }
    .footer-widget:nth-child(1) {
      order: 1;
    }
    .footer-widget:nth-child(2) {
      order: 2;
    }
    .footer-widget:nth-child(3) {
      order: 4;
    }
    .footer-widget:nth-child(4) {
      order: 6;
    }
    .footer-widget:nth-child(5) {
      order: 3;
    }
    .footer-widget:nth-child(6) {
      order: 5;
    }
    .footer-widget-inner {
      margin-top: 20px;
    }
    .footer-widget.footer-widget-gradient {
      width: 80% !important;
      margin-bottom: 40px;
    }
    .footer-widget.footer-widget-gradient ul li a {
      font-size: 27px;
      line-height: 40px;
      letter-spacing: -0.54px;
    }
    .footer-widget.footer-widget-gradient ul {
      row-gap: 10px;
    }
    .footer-widget ul li a {
      font-size: 16px;
      line-height: 22px;
    }
    .footer-widget h6 {
      line-height: 22px;
    }
    .footer-widget.footer-logo a {
      max-width: 175px;
    }
    /* footer news latter input form */
    .footer-news-letter-form-widget {
      margin: 60px auto 100px auto;
    }
    .footer-news-letter-form-widget h5 {
      font-size: 27px;
      line-height: 40px;
      letter-spacing: -0.54px;
    }
    .footer-form .footer-form-input {
      /* width: 100%; */
      height: auto;
      padding: 12px 22px 12px 27px;
      /* border-radius: 6px; */
      width: auto;
      max-width: 65%;
    }
    .button-footer-submit {
      /* padding: 16px 22px 16px 27px; */
      /* width: 100%; */
      /* margin-top: 10px; */
      display: flex;
      justify-content: space-between;
      align-items: center;
      align-self: stretch;
      font-size: 16px;
      /* border-radius: 6px; */
      font-weight: 700;
      line-height: 26px;
    }
  
    /* .footer-bottom{margin-top: 50px;} */
    .footer-bottom-owned h6 {
      font-size: 10px;
      line-height: 12px;
    }
    .footer-bottom-owned p {
      font-size: 18px;
      line-height: normal;
    }
    .footer-bottom-owned-item {
      max-width: 60px;
    }
    .footer-bottom-owned-wrap {
      row-gap: 60px;
      justify-content: center;
    }
    .footer-bottom-owned-item-wrap {
      margin-top: 15px;
    }
    .footer-social-wrap {
      width: 100%;
      margin-top: 60px;
      justify-content: center;
    }
    .chat-btn {
      right: 20px;
      bottom: 20px;
      width: 55px;
      height: 55px;
      padding: 10px;
    }
  
    /* Org */
  
    .about-thareja-org-wrap {
      margin-bottom: -1px;
    }
    .about-thareja-org-inner {
      margin-bottom: 20px;
    }
    .about-thareja-org-heading-text p {
      font-size: 21px;
      line-height: 28px;
    }
    .about-thareja-org-content-wrap {
      padding: 0;
    }
    .about-thareja-org-content-left {
      width: 100%;
    }
    .about-thareja-org-content-right {
      float: left;
      width: 100%;
    }
    .about-thareja-org-content-right-item h2 {
      font-size: 46px;
      line-height: 46px;
    }
    .about-thareja-org-content-right-item h3 {
      font-size: 35px;
      line-height: 40px;
    }
    .about-thareja-org-content-right-item p {
      font-size: 15px;
      line-height: 19px;
    }
  
    /* Org */
  
    .slot-item {
      flex-direction: column;
      gap: 50px;
    }
    .btn.gradient_btn {
      padding: 12px 38px 12px 12px;
    }
    .app-item .btn {
      padding: 12px 12px 12px 12px;
    }
    .app-noted {
      text-align: center;
    }
  
    .consulting-hero .hero-content-btn {
      flex-direction: column;
    }
    .save-gps-timesheet .content-box.flex-align-center {
      flex-direction: column;
    }
    .component-wrap.hybrid-team-page {
      padding-top: 50px;
    }
  
    /* field service page */
    .manage-teams-in-field.thareja-tracking-wrap .profitable-thumb {
      width: 100%;
    }
    .manage-teams-in-field.thareja-tracking-wrap .profitable-content {
      width: 100%;
    }
    .button-nav li {
      width: 165px;
    }
    .three-item.component-wrap .component-item {
      width: 100%;
    }
  
    /* product invoice page  */
    .profitable-content p {
      font-size: 18px;
    }
    .profitable-content ul li {
      font-size: 18px;
      margin-top: 10px;
    }
    .top-text .lead-text {
      font-size: 18px;
    }
  
    .list-box ul li {
      font-size: 18px;
      align-items: center;
    }
  
    .list-box ul li img {
      width: 20px;
    }
  
    /* agency page  */
    .agency-page .hero-wrap {
      padding-top: 100px;
    }
  
    .agency-page .solution-hero {
      height: auto;
      margin-bottom: 50px;
    }
  
    .agency-page .hero-bg img {
      object-position: 46% center;
    }
  
    .solution-hero .hero-content h1 {
      line-height: 118%;
    }
  
    .solution-hero .hero-content p {
      font-size: 20px;
    }
  
    .agency-page .component-wrap .img-text {
      flex-wrap: nowrap;
    }
  
    .agency-page .profitable-item .circle-box {
      min-width: 35px;
      width: 35px;
      height: 35px;
    }
  
    .agency-page .text-anim {
      line-height: 115%;
    }
  
    .agency-page .spliting {
      opacity: 1;
    }
  
    .agency-page .profitable-content {
      margin-top: 0px;
    }
  
    /* common section style */
    .common_section-wrap .section_des {
      font-size: 18px;
    }
  
    .common_section-wrap .section-details .box-title {
      font-size: 20px;
    }
  
    .common_section-wrap .content-box {
      padding: 0;
    }
    .common_section-wrap .indexing-box .content-box.bottom-spaching {
      padding-bottom: 20px;
    }
  
    /* attendance tracking page */
    .employees-timesheet p.hero-des,
    .hero-wrap p.hero-des {
      font-size: 20px;
    }
    .how-thareja-tracking-works .content-box {
      padding: 0;
    }
  
    .how-thareja-tracking-works.common_section-wrap .box-left-space {
      margin-left: 38px;
    }
  
    .why-people-use-thareja.component-wrap img {
      object-fit: cover;
    }
  
    .why-people-use-thareja.component-wrap .component-inner {
      padding: 0;
    }
  
    /* attendace-tracking-page */
    .bg-light.attendace-tracking-page .client-billing.three-simple-improvements {
      clip-path: none;
    }
  
    .common_section-wrap .section-details .box-title {
      font-size: 20px;
      line-height: 140%;
    }
  
    .attendace-tracking-page .cta-inner p {
      font-size: 20px;
    }
  
    /* faq */
    .accordion-item h5:after {
      right: 8;
    }
    .accordion-item h5 {
      padding: 15px 10px;
      padding-right: 40px;
    }
    .accordion-content {
      padding: 10px;
    }
  
    #faq .text-anim {
      margin-bottom: 32px;
    }
  
    .accordion-item h5:after {
      width: 20px;
      height: 20px;
    }
  
    .contractor-page .pt-100 {
      padding-top: 60px;
    }
  
    /* common class to disable clip path */
    .responsive-cliping-path {
      clip-path: none !important;
    }
  
    /* customer stories page */
    .customer-stories-page .video-container {
      height: 250px;
    }
  
    .customer-stories-page .case-study-thum {
      max-height: 250px;
      min-height: 250px;
    }
  
    /* development page */
    .development-page .color-bg img {
      object-fit: cover;
    }
  
    /* employee productivity page */
    .employee-productivity-page {
    }
    .mental-helth-matters .contents p {
      font-size: 18px;
    }
    .workforce-analytics-software-solution .contents p,
    .mental-helth-matters .contents p {
      font-size: 18px;
    }
  
    .where-metrics-meet-morals .contents {
      opacity: 1;
      transform: translateY(0);
    }
  
    /* employee scheduling */
    .employee-scheduling .make-shift-scheduling .img-card {
      width: 100%;
    }
    .employee-scheduling .make-shift-scheduling .img-card {
      width: 100%;
    }
    .employee-scheduling .workforce-analytics-software-widget .component-item {
      width: 100%;
    }
    .employee-scheduling .workforce-analytics-software-widget .img-text {
      align-items: center;
      flex-wrap: nowrap;
    }
  
    .how-employee-scheduling-works.common_section-wrap .section-details h3 {
      line-height: normal;
    }
  
    .responsive-cliping-path.automate-scheduling .component-item {
      opacity: 1;
      transform: translateY(0);
      width: 100%;
    }
  
    .responsive-cliping-path.automate-scheduling .component-item .img-text {
      flex-wrap: nowrap;
    }
  
    .reach-peak-profitability .section-details h3 {
      margin-top: 5px;
    }
  
    /* employees timesheet page */
  
    .employees-timesheet-page
      #why-people-use-thareja.component-wrap
      .gradient-border-wrap {
      background: linear-gradient(
        to top,
        rgb(245, 233, 236),
        rgb(176, 213, 255)
      ) !important;
    }
  
    .employees-timesheet-page
      #why-people-use-thareja.component-wrap
      .component-inner {
      background: linear-gradient(
        to top,
        rgb(245, 230, 230),
        rgb(229, 227, 250),
        rgb(245, 230, 230)
      ) !important;
    }
  
    .employees-timesheet-page
      #why-people-use-thareja.component-wrap
      .component-inner {
      flex-direction: column-reverse;
      align-items: center;
      gap: 30px;
    }
  
    .employees-timesheet-page
      #why-people-use-thareja.component-wrap
      .thumnail-box {
      width: 100%;
      max-width: 100%;
      max-height: 350px;
      overflow: hidden;
    }
  
    .employees-timesheet-page
      #why-people-use-thareja.component-wrap
      .content-box {
      width: 100% !important;
      padding: 20px !important;
    }
  
    .employees-timesheet-page .component-wrap.timesheet-software .component-item {
      width: 100%;
    }
  
    .top-heading p {
      font-size: 18px;
    }
  
    #faq .text-anim {
      margin-bottom: 15px;
    }

    .social-cta a {
      width: auto;
      float: left;
    }

    .social-cta img {
      width: 50px;
      margin: 0 auto;
      text-align: center;
      display: block;
  }

  .banner-thumb img{object-fit: cover;}
  .bottom-logo-icon{width: 100px;     bottom: -50px;}
  .ai-profile-wrap .profile-wrap{margin-top: 100px;}
  .rating-wrap{flex-direction: column;}
  .ai-profile-wrap .profile-page .faq-wrap {padding: 20px;}
  .ai-profile-wrap .accordion-content {
    padding: 20px 20px;
}
.interview-info{padding: 20px;}
.pricing-box-wrap{padding: 20px;}
.information-item {
  flex-direction: column;
}

.right-tag {
  flex-direction: column;
  align-items: flex-start;
}

.right-tag .review-box {
  flex-flow: row wrap;
  gap: 10px;
  justify-content: left;
}
.ai-profile-wrap .text-member .badge-btn {

  flex-flow: row wrap;
}

  }
  
  /*		Wide Mobile Layout: 480px.
      ------------------------------------------------------------
      */
  
  @media only screen and (min-width: 320px) and (max-width: 374px) {
    h1 {
      font-size: 38px;
      line-height: 45px;
    }
    h2 {
      font-size: 32px;
      line-height: 37px;
    }
  
    /* Start Home Style */
    .btn.arrow_btn {
      font-size: 14px;
    }
    .services-component {
      font-size: 16px;
    }
    .career-content-list-logo {
      width: 50px;
    }
    .career-content-list-text {
      width: calc(100% - 50px);
      padding-left: 18px;
    }
    .footer-bottom-owned-item {
      max-width: 50px;
    }
  
    .catch-the-highlight .contents p,
    .cutdown-on-mettings .contents p,
    .classify-work-hours .contents p,
    .stay-focused .contents p {
      font-size: 18px;
    }
  
    
    .footer-bottom-owned-item {
      max-width: 50px;
    }
  
    /* End Home Style */
  }
  


@media only screen and (min-width:320px) and (max-width:568px){
  

  .calendar div {
    width: 40px;
    height: 40px;
}

.calende-item {
  width: 100%;
  padding-right: 0;
}


.time-slots {
  width: 100%;
  padding-left: 0;
  border-left: 0;
  margin-top: 40px;
}

.date-time-info{padding: 20px;}

.scheduler{flex-flow: row wrap;}
.top-header { 
  padding: 20px;
  margin-top: 30px;
}

#applyCode {font-size: 14px;}
.inner-tab-details ul.tabs li{font-size: 14px;}
ul.tabs{justify-content: unset;}
.full-time{padding: 20px;}
.inner-tab-details{padding: 10px;}
.part-time-text {
  flex-flow: row wrap;
  gap: 20px;
}




}



  /*		Tablet Layout: 768px.
      -----------------------------------------------------------------
      */
  
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    input[type="number"],
    input[type="submit"],
    input[type="password"],
    select,
    textarea {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }
  
    .desk {
      display: none;
    }
    .mobi {
      display: block;
    }
  
    body {
      font-size: 16px;
      line-height: 22px;
    }
    h1 {
      font-size: 48px;
      line-height: 57px;
    }
    h2 {
      font-size: 42px;
      line-height: 48px;
    }
    h6 {
      font-size: 18px;
    }
    .btn {
      font-size: 16px;
      line-height: 22px;
      padding: 12px 38px 12px 20px;
    }
    .btn.gradient_btn {
      padding: 12px 38px 12px 20px;
    }
    .btn.transparent_btn {
      padding: 10px 38px 10px 20px;
    }
    .btn:after {
      right: 15px;
    }
  
    .lead-text {
      font-size: 22px;
      line-height: 28px;
    }
    .common-wrap {
      padding: 0 20px;
    }
    /* Start Home Style */
    .hero-wrap {
      padding: 120px 0 25px;
    }
    .hero-wrap .common-wrap {
      padding: 0 20px;
    }
    .hero-content-wrap {
      width: 100%;
      justify-content: center;
      padding-right: 0;
      padding-bottom: 60px;
    }
    .hero-content h1 {
      margin-bottom: 25px;
    }
    .hero-content-btn {
      margin-top: 25px;
    }
    .hero-content-btn span a {
      font-size: 16px;
      line-height: 22px;
    }
    .hero-thumb {
      width: 100%;
      display: flex;
      flex-flow: row wrap;
      justify-content: center;
    }
    .hero-thumb figure {
      max-width: 540px;
      width: 100%;
    }
    .brand-item-wrap {
      margin-top: 50px;
    }
    .brand-btn {
      margin-top: 40px;
      padding-right: 0;
    }
  
    .main-footer-section {
      padding-top: 80px;
    }
    .footer-widget.footer-logo {
      width: 100%;
    }
    .footer-widget-wrap {
      column-gap: 2%;
      row-gap: 30px;
    }
    .footer-widget {
      width: 47%;
    }
    .footer-widget.footer-widget-gradient {
      width: 47% !important;
    }
    .footer-widget.footer-widget-gradient ul li a {
      font-size: 20px;
      line-height: 24px;
    }
    .footer-widget.footer-widget-gradient ul {
      row-gap: 10px;
    }
    .footer-widget ul li a {
      font-size: 18px;
      line-height: 22px;
    }
    .footer-widget h6 {
      line-height: 22px;
    }
    .footer-widget.footer-logo a {
      max-width: 175px;
    }
    /* footer news latter input form */
    .footer-news-letter-form-widget {
      margin: 50px auto;
    }
    .footer-form .footer-form-input {
      height: auto;
      padding: 12.5px 38px 12.5px 20px;
    }
    .button-footer-submit {
      padding: 15px 38px 15px 20px;
    }
    /* .footer-bottom{margin-top: 50px;} */
    .footer-bottom-owned-item {
      max-width: 65px;
    }
    .footer-bottom-owned-wrap {
      row-gap: 25px;
    }
    .footer-bottom-owned-item-wrap {
      margin-top: 15px;
    }
    .footer-social-wrap {
      width: 100%;
      margin-top: 40px;
    }
    .chat-btn {
      right: 20px;
      bottom: 20px;
      width: 60px;
      height: 60px;
      padding: 12px;
    }
    /* End Home Style */
  
    /* Org */
    .about-thareja-org-wrap {
      margin-bottom: -1px;
    }
    .about-thareja-org-inner {
      margin-bottom: 20px;
    }
    .about-thareja-org-heading-text p {
      font-size: 21px;
      line-height: 28px;
    }
    .about-thareja-org-content-wrap {
      padding: 0;
    }
    .about-thareja-org-content-left {
      width: 100%;
    }
    .about-thareja-org-content-right {
      float: left;
      width: 100%;
    }
    .about-thareja-org-content-right-item:first-child {
      margin: 0;
    }
    .about-thareja-org-content-right-item h2 {
      font-size: 46px;
      line-height: 46px;
    }
    .about-thareja-org-content-right-item h3 {
      font-size: 35px;
      line-height: 40px;
    }
    .about-thareja-org-content-right-item p {
      font-size: 15px;
      line-height: 19px;
    }
  
    /* Org */
    .accordion-item h5:after {
      right: 10px;
    }
    .component-wrap.hybrid-team-page {
      padding-top: 50px;
    }

    .mobi-btn.mobi {
      display: flex;
      justify-content: flex-end;
      width: 55%;
  }
  .right-btns .tag-btn{justify-content:end;}


  .modal-profile-inner{max-width: 93%;}

  .new-top{padding-bottom: 0;}






  }
  
  /*		Tablet Layout: 1024px.
      -----------------------------------------------------------------
      */
  
  @media only screen and (min-width: 769px) and (max-width: 991px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    input[type="number"],
    input[type="submit"],
    input[type="password"],
    select,
    textarea {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }
  
    body {
      font-size: 16px;
      line-height: 22px;
    }
    h1 {
      font-size: 48px;
      line-height: 56px;
    }
    h2 {
      font-size: 42px;
      line-height: 50px;
    }
    h6 {
      font-size: 18px;
    }
    .btn {
      font-size: 16px;
      line-height: 22px;
      padding: 12px 38px 12px 20px;
    }
    .btn.gradient_btn {
      padding: 12px 38px 12px 20px;
    }
    .btn.transparent_btn {
      padding: 10px 38px 10px 20px;
    }
    .btn:after {
      right: 15px;
    }
    .lead-text {
      font-size: 22px;
      line-height: 28px;
    }
    /* Start Home Style */
    .header-btn {
      column-gap: 12px;
    }
    .hero-content h1 {
      margin-bottom: 22px;
    }
    .hero-content-btn {
      margin-top: 28px;
    }
    .hero-content-wrap {
      padding: 0 20px 0 0;
    }
    .hero-content-btn span a {
      font-size: 18px;
      line-height: 22px;
    }
    .services-wrap {
      padding: 60px 0;
    }
  
    .footer-widget-wrap {
      column-gap: 1.333333333333333%;
      row-gap: 40px;
    }
    .footer-widget.footer-logo {
      width: 100%;
    }
    .footer-widget.footer-widget-gradient {
      width: 30%;
    }
    .footer-widget {
      width: 33%;
    }
    .footer-widget.footer-widget-gradient ul li a {
      font-size: 22px;
      line-height: 26px;
    }
    .footer-widget h6 {
      font-size: 14px;
    }
    .footer-widget ul li a {
      font-size: 16px;
      line-height: 22px;
    }
    .footer-widget.footer-widget-gradient ul {
      row-gap: 12px;
    }
    .footer-bottom-owned-item {
      max-width: 65px;
    }
    .footer-bottom-owned h6 {
      font-size: 10px;
    }
    .main-footer-section {
      padding-top: 120px;
    }
    .footer-bottom-owned-wrap {
      column-gap: 40px;
    }
    /* footer news lettare form  */
    .footer-news-letter-form-widget {
      margin: 60px auto;
    }
    .footer-form .footer-form-input {
      height: auto;
      padding: 12px 38px 12px 20px;
    }
    .button-footer-submit {
      padding: 14.5px 38px 14.5px 20px;
    }
  
    /* .footer-bottom{margin-top: 150px;}
           */
    .chat-btn {
      width: 60px;
      height: 60px;
      right: 20px;
      bottom: 20px;
    }
      /* End Home Style */
    .left-item {
      width: 100%;
    }
    .right-item-tag {
      width: 100%;
    }
    .strategy-content {
      width: 100%;
      padding-right: 0;
      position: relative;
    }
    .strategy-content h2 {
      line-height: normal;
    }
    .strategy-item {
      width: 100%;
    }
    .strategy-wrap .career-content-list-logo {
      width: 100px;
    }
    .strategy-wrap .career-content-list-text {
      width: 100%;
      padding-left: 0;
    }
  
    /* Org */
    .about-thareja-org-wrap {
      margin-bottom: -1px;
    }
    .about-thareja-org-inner {
      margin-bottom: 20px;
    }
    .about-thareja-org-heading-text p {
      font-size: 24px;
      line-height: 28px;
    }
    .about-thareja-org-content-wrap {
      padding: 0;
    }
    .about-thareja-org-content-left {
      width: 100%;
    }
    .about-thareja-org-content-right {
      float: left;
      width: 100%;
      display: flex;
      justify-content: space-between;
      flex-flow: row;
    }
    .about-thareja-org-content-right-item:first-child {
      margin: 0;
    }
    .about-thareja-org-content-right-item h2 {
      font-size: 56px;
      line-height: 58px;
    }
    .about-thareja-org-content-right-item h3 {
      font-size: 40px;
      line-height: 45px;
    }
    .about-thareja-org-content-right-item p {
      font-size: 17px;
      line-height: 20px;
    }
  
    /* Org */
    .app-box {
      width: 48%;
    }
    .card-box {
      justify-content: center;
      gap: 20px;
    }
    .component-wrap.hybrid-team-page {
      padding-top: 50px;
    }
  
    /* common style */
    .common_section-wrap .section_title {
      line-height: normal;
    }
  
    .birds-eye-view.profitable-wrap.odd-item .profitable-thumb {
      max-width: 100%;
    }
    .home-page-2 .why-choose-us-wrap {
      padding-top: 60px;
    }
    .mobi-btn.mobi {
      display: flex;
      justify-content: flex-end;
      width: 70%;
  }

  .right-btns .tag-btn{justify-content:end;}



  }
  
  @media only screen and (min-width: 992px) and (max-width: 1024px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    input[type="number"],
    input[type="submit"],
    input[type="password"],
    select,
    textarea {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }
  
    h1 {
      font-size: 60px;
      line-height: 72px;
    }
    h2 {
      font-size: 48px;
      line-height: 60px;
    }
    h6 {
      font-size: 18px;
    }
    .btn {
      font-size: 16px;
      line-height: 22px;
      padding: 12px 38px 12px 20px;
    }
    .btn.gradient_btn {
      padding: 12px 38px 12px 20px;
    }
    .btn.transparent_btn {
      padding: 12px 38px 12px 20px;
    }
    .btn:after {
      right: 15px;
      top: 55%;
    }
  
    .logo-wrap {
      width: 100%;
      position: relative;
      z-index: 9;
    }
    .main-logo {
      width: 160px;
    }
    .hamburger {
      display: flex;
      right: 0px;
      position: absolute;
    }
    .main-nav ul li a {
      font-size: 20px;
      line-height: 22px;
    }
    .nav-wrap {
      padding: 120px 20px;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      overflow-y: scroll;
      background-color: #fff;
      display: none;
    }
    .nav-wrap::-webkit-scrollbar {
      display: none;
    }
    .main-nav {
      width: 100%;
    }
    .main-nav ul {
      width: 100%;
    }
    .main-nav ul li {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
    .header-btn {
      width: 100%;
      justify-content: center;
      margin-top: 40px;
    }
    .brand-item-wrap .js-marquee-wrapper {
      display: flex;
    }
    .brand-item-wrap .js-marquee {
      display: flex;
      margin-right: 30px !important;
      column-gap: 35px;
    }
    .brand-item {
      max-width: inherit !important;
      width: 120px;
      justify-content: center;
    }
    .button-nav {
      flex-flow: row wrap;
      justify-content: center;
    }
    .button-nav li {
      width: 150px;
      margin-top: 20px;
    }
    .tab-nav {
      width: 100%;
    }
    .mega-menu-wrap {
      width: 100%;
      margin-top: 70px;
    }
    .mega_menu_item {
      width: 100%;
      margin-top: 40px;
    }
    .menu-box {
      width: 100%;
    }
    .cta-btn-dropdown {
      bottom: 0;
    }
    .menu-top-heading {
      width: 100%;
      text-align: left;
      padding-bottom: 20px;
    }
    .menu-item-inner {
      height: auto;
      padding-bottom: 52px;
    }
    .main-nav .cta-btn-dropdown a {
      justify-content: center;
    }
    .tab-menu_item .header-btn {
      margin-top: 20px;
    }
    .menu-widget-item.menu-item-inner {
      width: 100%;
    }
    .customer-stories {
      width: 100%;
      margin-top: 50px;
    }
    .menu-widget {
      width: 100%;
    }
    .customer-stories .cta-btn-dropdown {
      bottom: 15px;
    }
    .customer-stories .menu-item-inner {
      padding-bottom: 0;
    }
  
    .lead-text {
      font-size: 24px;
      line-height: 31px;
    }
  
    /* Start Home Style */
    .nav-wrap {
      padding-left: 20px;
      width: 100%;
    }
    .main-nav ul {
      column-gap: 15px;
    }
    .main-nav ul li a {
      font-size: 14px;
    }
    .header-btn {
      column-gap: 12px;
    }
    .hero-content h1 {
      margin-bottom: 22px;
    }
    .hero-content-btn {
      margin-top: 28px;
    }
    .hero-content-wrap {
      padding: 0 20px 0 0;
    }
    .brand-item {
      max-width: 100px;
    }
    .brand-item img {
      max-height: 35px;
    }
    .brand-item-wrap {
      column-gap: 2%;
      margin-top: 50px;
    }
    
    .footer-widget-wrap {
      column-gap: 2%;
    }
    .footer-widget.footer-logo {
      width: 30.496454%;
      padding-top: 0;
    }
    .footer-widget.footer-widget-gradient {
      width: 18.113475%;
    }
    .footer-widget {
      width: 22.404255%;
    }
    .footer-widget.footer-widget-gradient ul li a {
      font-size: 22px;
      line-height: 26px;
    }
    .footer-widget h6 {
      font-size: 14px;
    }
    .footer-widget ul li a {
      font-size: 16px;
      line-height: 22px;
    }
    .footer-widget.footer-widget-gradient ul {
      row-gap: 12px;
    }
    .footer-bottom-owned-item {
      max-width: 70px;
    }
    .main-footer-section {
      padding-top: 120px;
    }
    .footer-bottom {
      margin-top: 150px;
    }

    .button-footer-submit {
    padding-top: 20px;
    padding-bottom: 16px;
}

    .button-footer-submit:after {
    right: 15px;
    top: 55%;
}
  
    .chat-btn {
      width: 60px;
      height: 60px;
      right: 20px;
      bottom: 20px;
    }
    /* End Home Style */
  
    /* org */
  
    .about-thareja-org-inner {
      margin-bottom: 20px;
    }
    .about-thareja-org-content-wrap {
      padding: 0;
    }
    .about-thareja-org-content-left {
      width: 60%;
    }
    .about-thareja-org-content-right {
      width: 35%;
    }
    .about-thareja-org-content-right-item:first-child {
      margin: 20;
    }
    .about-thareja-org-content-right-item h2 {
      font-size: 56px;
      line-height: 58px;
    }
    .about-thareja-org-content-right-item h3 {
      font-size: 40px;
      line-height: 45px;
    }
    .about-thareja-org-content-right-item p {
      font-size: 17px;
      line-height: 20px;
    }
    .brand-wrap {
      padding: 50px 0;
    }
  
    /* org */
  
    .bg-black .brand-item-wrap {
      gap: 15px;
    }
    .invoice-wrap .list-box {
      width: 48.220333%;
    }
  
    .profitable-thumb {
      width: 46.605634%;
    }
    .box-inner {
      justify-content: center;
    }
    .box-content-item {
      width: 47%;
    }
    .app-item .btn {
      width: 100%;
    }
    .app-item .btn {
      padding: 12px 12px 12px 12px;
    }
    .app-item .btn:after {
      left: 15px;
      right: auto;
    }
    .app-item .img-card {
      width: 100%;
      padding: 20px;
    }
    .hero-bg img {
      height: 100%;
    }
    .solution-hero {
      height: 700px;
    }
    .profitable-item {
      align-items: center;
    }
    .accordion-item h5 {
      padding-right: 60px;
    }
    .consulting-component .component-item {
      width: 48.40625%;
      margin-bottom: 20px;
    }
    .consulting-page .profitable-content {
      width: 48.450704%;
    }
    .field-service-page.profitable-wrap .profitable-content {
      width: 100%;
    }
    .field-service-page#phone-location .profitable-content,
    .field-service-page#phone-location .list-box-item,
    .field-service-page#phone-location .right-text-box {
      max-width: 100%;
    }
    .field-service-page#phone-address .profitable-content {
      width: 100%;
    }
    .field-service-page#phone-location .profitable-item,
    .field-service-page#phone-address .profitable-item {
      justify-content: center;
    }
    .field-service-page#phone-address .profitable-thumb {
      margin-top: 40px;
    }
    .field-service-page .profitable-item {
      justify-content: center;
    }
    .field-service-cta-wrapper {
      background-color: gray;
    }
  
    .component-wrap.why-people-use-thareja.cloud-based-integration {
      margin-top: 0;
    }
  
    /* app download page */
    .download-app .card-box {
      padding-right: 20px;
    }
    .download-app .card-box .btn.gradient_btn {
      padding: 12px 20px;
      padding-left: 43px;
      width: auto;
    }
  
    /* consulting page */
    #streamline-consulting-your-business .profitable-item {
      flex-wrap: nowrap;
    }
  
    /* boost smb page  */
    .birds-eye-view .profitable-item {
      flex-wrap: nowrap;
    }
  
    /* boost smb page  */
    .boost-productivity-features .profitable-item {
      flex-wrap: nowrap;
    }
    .mobi-btn.mobi {
      display: flex;
      width: 18%;
  }
  .new-top::before {
 height: 126px; 
}

.item-service {
  width: 49.3%;

}

.freelancer .profitable-item {
  gap:20px;
}

.freelancer .profitable-thumb {
  position: relative;
  width: 100%;
}

.freelancer .profitable-content {
  width: 100%;
}
.profitable-thumb .right-top-img {
  right: 272px;
  top: -62px;
}

.profitable-thumb .top-left-hire {
  top: -80px;
  right: 0px;
}


.new-top{padding-bottom: 0;}




  }
  
  /*	Retina media query.
        Overrides styles for devices with a
        device-pixel-ratio of 2+, such as iPhone 4.
      -----------------------------------------------    */
  
  @media only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (min-device-pixel-ratio: 2) {
  }
  @media only screen and (min-width: 1025px) and (max-width: 1280px) {
    h1 {
      font-size: 60px;
      line-height: 72px;
    }
    h2 {
      font-size: 48px;
      line-height: 57px;
    }
    h6 {
      font-size: 18px;
    }
    .btn {
      font-size: 16px;
      line-height: 22px;
      padding: 12px 38px 12px 20px;
    }
    .btn.gradient_btn {
      padding: 12px 38px 12px 20px;
    }
    .btn.transparent_btn {
      padding: 10px 38px 10px 20px;
    }
    .btn:after {
      right: 15px;
    }
    .lead-text {
      font-size: 24px;
      line-height: 31px;
    }
  
    .logo-wrap {
      width: 100%;
      position: relative;
      z-index: 9;
    }
    .main-logo {
      width: 160px;
    }
    .hamburger {
      display: flex;
      right: 0px;
      position: absolute;
    }
  
    .nav-link:after {
      width: 20px;
      height: 20px;
      right: -27px !important;
      top: 1px !important;
    }
  
    .main-nav ul li a {
      font-size: 20px;
      line-height: 22px;
    }
    .nav-wrap {
      padding: 120px 20px;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      overflow-y: scroll;
      background-color: #fff;
      display: none;
    }
    .nav-wrap::-webkit-scrollbar {
      display: none;
    }
    .main-nav {
      width: 100%;
    }
    .main-nav ul {
      width: 100%;
    }
    .main-nav ul li {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
    .header-btn {
      width: 100%;
      justify-content: center;
      margin-top: 40px;
    }
    .brand-item-wrap .js-marquee-wrapper {
      display: flex;
    }
    .brand-item-wrap .js-marquee {
      display: flex;
      margin-right: 30px !important;
      column-gap: 35px;
    }
    .brand-item {
      max-width: inherit !important;
      width: 120px;
      justify-content: center;
    }
    .button-nav {
      flex-flow: row wrap;
      justify-content: center;
    }
    .button-nav li {
      /* width: 100%; */
      /* margin-top: 20px; */
    }
    .tab-nav {
      width: 100%;
    }
    .mega-menu-wrap {
      width: 100%;
      margin-top: 70px;
    }
    .mega_menu_item {
      width: 100%;
      margin-top: 40px;
    }
    .menu-box {
      width: 100%;
    }
    .cta-btn-dropdown {
      bottom: 0;
    }
    .menu-top-heading {
      width: 100%;
      text-align: left;
      padding-bottom: 20px;
    }
    .menu-item-inner {
      height: auto;
      padding-bottom: 52px;
    }
    .main-nav .cta-btn-dropdown a {
      justify-content: center;
    }
    .tab-menu_item .header-btn {
      margin-top: 20px;
    }
    .menu-widget-item.menu-item-inner {
      width: 100%;
    }
    .customer-stories {
      width: 100%;
      margin-top: 50px;
    }
    .menu-widget {
      width: 100%;
    }
    .customer-stories .cta-btn-dropdown {
      bottom: 15px;
    }
    .customer-stories .menu-item-inner {
      padding-bottom: 0;
    }
    /* Start Home Style */
  
    .nav-wrap {
      padding-left: 20px;
      width: 100%;
    }
    .main-nav ul {
      column-gap: 15px;
    }
    .header-btn {
      column-gap: 12px;
    }
    .hero-content h1 {
      margin-bottom: 22px;
    }
    .hero-content-btn {
      margin-top: 28px;
    }
    .hero-content-wrap {
      padding: 0 20px 0 0;
    }
    .brand-item {
      max-width: 100px;
    }
    .brand-item img {
      max-height: 40px;
    }
    .brand-item-wrap {
      column-gap: 2%;
      margin-top: 50px;
    }
  
    
    .footer-widget-wrap {
      column-gap: 3.2%;
    }
    .footer-widget.footer-widget-gradient {
      width: 18.113475%;
    }
    .footer-widget {
      width: 12.404255%;
    }
    .footer-widget.footer-widget-gradient ul li a {
      font-size: 22px;
      line-height: 26px;
    }
    .footer-widget h6 {
      font-size: 12px;
    }
    .footer-widget ul li a {
      font-size: 14px;
      line-height: 22px;
    }
    .footer-widget.footer-widget-gradient ul {
      row-gap: 12px;
    }
    .footer-bottom-owned-item {
      max-width: 70px;
    }
    .main-footer-section {
      padding-top: 120px;
    }
  
    /* footer news lettare form  */
    .footer-form .footer-form-input {
      height: auto;
      padding: 12px 38px 12px 20px;
    }
    .button-footer-submit {
      padding: 15px 38px 15px 20px;
    }
    /* .footer-bottom{margin-top: 150px;} */
    .chat-btn {
      width: 60px;
      height: 60px;
      right: 20px;
      bottom: 20px;
    }
    /* End Home Style */
    .about-thareja-org-content-right {
      float: left;
    }
    .bg-black .brand-item-wrap {
      gap: 15px;
    }
    .invoice-wrap .list-box {
      width: 48.220333%;
    }
    .profitable-item {
      align-items: center;
    }
    .solution-hero {
      position: relative;
      height: 800px;
    }
  
    .field-service-page.profitable-wrap .profitable-content {
      width: 100%;
    }
    .field-service-page#phone-location .profitable-content,
    .field-service-page#phone-location .list-box-item,
    .field-service-page#phone-location .right-text-box {
      max-width: 100%;
    }
    .field-service-page#phone-address .profitable-content {
      width: 100%;
    }
    .field-service-page#phone-location .profitable-item,
    .field-service-page#phone-address .profitable-item {
      justify-content: center;
    }
    .field-service-page#phone-address .profitable-thumb {
      margin-top: 40px;
    }
    .field-service-page .profitable-item {
      justify-content: center;
    }
    .build-for-all-types .contents-inner {
      max-width: 100%;
    }
  
    /* app download page */
    .download-app .card-box {
      padding-right: 20px;
    }
  
    .download-app .card-box .btn.gradient_btn {
      padding: 12px 20px;
      padding-left: 43px;
      width: auto;
    }
  
    .download-app .card-box .btn.gradient_btn::after {
      left: 20px;
    }
  
    /* boost smb page  */
    .birds-eye-view .profitable-item {
      flex-wrap: nowrap;
    }


    .main-header-section .btn {font-size: 14px;}


    .item-service {
      width: 32.5%;}




      .new-top{padding-bottom: 0;}


  }
  
  @media only screen and (min-width: 1281px) and (max-width: 1366px) {

    .btn.without-icon{
      padding: 14px;
    }


  }


  @media only screen and (min-width: 1281px) and (max-width: 1600px) {
    /* Start Home Style */
    .hero-content-wrap {
      padding-bottom: 0;
    }
    .how-it-works-item {
      width: 21%;
    }
  
    
    .footer-widget-wrap {
      column-gap: 2%;
    }
    .footer-widget.footer-widget-gradient {
      width: 17.113475% !important;
    }
    .footer-widget {
      width: 14.404255%;
    }
    .footer-inner {
      padding-left: 0;
    }
    .footer-widget-wrap {
      padding-left: 0;
    }
    .footer-widget.footer-logo {
      width: 17.496454%;
    }
  
    /* End Home Style */
  
    .how-it-works-item-wrap {
      column-gap: 4.71961%;
    }
    .field-service-page.widget-container .component-inner {
      gap: 10px;
    }
  
    /* app download page */
    .download-app .img-card p {
      line-height: normal;
    }
  
    .download-app .card-box {
      padding-right: 20px;
    }
  }
  
  @media only screen and (max-width: 1500px) {
    .list-tag {
      justify-content: start;
      padding-left: 20px;
    }
    .main-nav ul {
      column-gap: 28px;
    }
    .nav-link:after {
      width: 20px;
      height: 20px;
      right: -23px;
      top: 0px;
    }
    .nav-wrap {
      padding-left: 20px;
    }
  }
  
  @media only screen and (max-width: 1315) {
    .main-nav ul {
      column-gap: 35px;
    }
  }
  
  /* ===== 
          utility classes
                          ====== */
  .flex-items-center {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  
  .flex-column {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
  
  .gradient-btn {
    border-radius: 6px;
    background: linear-gradient(99deg, #01d18f 0.47%, #005aff 99.05%);
    box-shadow: -6px 6px 30px 0px rgba(0, 0, 0, 0.15);
    padding: 16px 27px;
    padding-right: 22px;
    color: var(--white, #fff);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    outline: none;
    border: none;
  }
  
  .gradient-arrow-btn {
    border-radius: 6px;
    background: linear-gradient(99deg, #01d18f 0.47%, #005aff 99.05%);
    box-shadow: -6px 6px 30px 0px rgba(0, 0, 0, 0.15);
    padding: 16px 27px;
    padding-right: 54px;
    color: var(--white, #fff);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    position: relative;
    outline: none;
    border: none;
  }
  
  .gradient-arrow-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
    background-image: url(../svgs/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 17px;
    height: 11px;
  }
  
  .outline-btn {
    color: var(--gray-4, #525966);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    padding: 14px 20px 14px 25px;
    line-height: 26px;
    border-radius: 6px;
    border: 2px solid var(--gray-4, #525966);
    box-shadow: -6px 6px 30px 0px rgba(0, 0, 0, 0.15);
    background-color: transparent;
    outline: none;
  }
  
  /* ===== 
                              common elements style 
                                              ====== */
  
  .customer-stories-page .common-wrap {
    max-width: 1420px;
    padding: 0 20px;
  }
  
  .video-container,
  .video-thum-container,
  video,
  .video-thum-container .video-thum {
    width: 100%;
    height: 100%;
  }
  
  .video-container {
    position: relative;
    height: 540px;
  }
  
  .video-container video {
    object-fit: cover;
    z-index: 99;
  }
  
  .video-thum-container {
    background-color: rgb(230, 230, 230);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
  }
  
  .video-thum-container .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
  }
  
  .video-thum-container .video-play-btn img {
    padding: 0;
    margin: 0;
    background-color: transparent;
  }
  
  .video-thum-container .video-thum {
    object-fit: cover;
  }
  
  .productive-teams-wrap {
    width: 100%;
    clear: both;
    position: relative;
    padding: 100px 0;
    margin: 0 auto;
    z-index: 10;
  }
  
  .productive-teams-wrap .common-wrap {
    z-index: 9;
  }
  .productive-teams-wrap .gradient-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  .productive-teams-wrap .gradient-bg img {
    width: 100%;
    height: 100%;
  }
  
  .productive-team-inner {
    display: block;
    max-width: 1103px;
    margin: 0 auto;
  }
  
  .productive-team-inner h4 {
    color: var(--loop-blue);
    text-align: center;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 50px;
  }
  
  .productive-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
  }
  
  .productive-teams img:nth-child(1) {
    max-width: 99px;
  }
  .productive-teams img:nth-child(2) {
    max-width: 98px;
  }
  .productive-teams img:nth-child(3) {
    max-width: 91px;
  }
  .productive-teams img:nth-child(4) {
    max-width: 135px;
  }
  .productive-teams img:nth-child(5) {
    max-width: 44px;
  }
  .productive-teams img:nth-child(6) {
    max-width: 108px;
  }
  .productive-teams img:nth-child(7) {
    max-width: 48px;
  }
  .productive-teams img:nth-child(8) {
    max-width: 72px;
  }
  .productive-teams img:nth-child(9) {
    max-width: 127px;
  }
  
  /*
                           ======= 
                              customer stories page style starts
                                                          ===========*/
  
  .main-content-wrap.customer-stories-page {
    padding-top: 0;
  }
  
  .page-hero-wrap {
    width: 100%;
    padding-bottom: 0;
    float: none;
    position: relative;
  }
  
  .page-hero-wrap {
    padding-top: 180px;
    z-index: 10;
  }
  
  .page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
  }
  
  .page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .page-hero-content-wrap,
  .page-hero-content,
  .page-hero-cta-btns {
    z-index: 1;
    width: 100%;
  }
  
  .page-hero-title {
    text-align: center;
  }
  
  .page-hero-des {
    text-align: center;
    color: var(--gray-5, #30353e);
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    max-width: 1300px;
    margin: 30px auto;
  }
  
  .page-hero-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .page-hero-video-thum,
  .page-hero-video-thum-inner {
    width: 100%;
  }
  
  .page-hero-video-thum-inner {
    max-width: 1160px;
    margin: 0 auto;
    height: auto;
  }
  
  .page-hero-video-thum-inner {
    height: 633px;
  }
  
  .customer-stories-page .page-hero-bg img {
    height: auto;
    max-height: 1000px;
  }
  
  .oneims-wrapper {
    width: 100%;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 10;
    height: auto;
    background: #f6faff;
  }
  
  .oneims-wrapper .common-wrap {
    max-width: 1420px;
    z-index: 1;
  }
  
  .oneims-wrapper .oneims-bg-img-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  .oneims-wrapper .oneims-bg-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .oneims-inner {
    width: 100%;
  }
  
  .oneims-wrapper .gradient-border {
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    padding: 4px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #ffffff80, #a6ceff80);
    backdrop-filter: blur(12.5px);
  }
  
  /* .oneims-content {
                            width: 100%;
                            height: 100%;
                            height: calc(100% - 8px);
                            border-radius: 18px;
                            display: flex;
                            overflow: hidden;
                          } */
  
  .oneims-content {
    width: 100%;
    border-radius: 18px;
    display: flex;
    overflow: hidden;
  }
  
  .oneims-thum {
    width: 50%;
    min-width: 500px;
    background: gray;
  }
  
  .oneims-thum-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .oneims-content .details {
    flex-grow: 1;
    width: 900px;
    padding: 0;
    padding: 20px;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background: #f9fbff;
    backdrop-filter: blur(12.5px);
  }
  
  .oneims-inner .top-text {
    margin: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    max-width: 99999px;
  }
  
  .oneims-content .details h4 {
    margin: 20px 0;
    color: var(--gray-5);
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.02px;
  }
  
  .oneims-content .details p {
    margin-bottom: 30px;
  }
  
  .link_arrow_btn {
    position: relative;
    border: none;
    color: var(--loop-blue);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    padding: 0;
    padding-right: 34px;
  }
  
  .link_arrow_btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
    background: url(../svgs/shared/arrow-blue.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 16px;
  }
  
  /* case study section style starts */
  .case-studies-wrapper {
    width: 100%;
    height: auto;
    background: #f6faff;
    margin: 100px auto;
  }
  
  .case-studies-wrapper.bottom {
    padding-top: 100px;
    margin-top: -58px;
    margin-bottom: -66px;
    padding-bottom: 100px;
    background: #f6faff;
    z-index: 10;
  }
  
  .case-studies-inner {
    padding: 50px 0;
    width: 100%;
  }
  
  .case-studies {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 54px;
    max-width: 1308px;
    margin: 0 auto;
  }
  
  .case-study-card,
  .case-study-thum,
  .case-study-card .content,
  .case-study-thum img {
    width: 100%;
  }
  
  .case-study-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-1);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
  }
  
  .case-study-thum {
    height: 100%;
    max-height: 335px;
    min-height: 300px;
    overflow: hidden;
  }
  
  .case-study-thum img {
    object-fit: cover;
    height: 100%;
  }
  
  .case-study-card .content {
    margin-top: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    align-items: start;
  }
  
  .case-study-card .content div {
    flex-grow: 1;
  }
  
  .case-study-card .content img {
    width: auto;
    height: auto;
  }
  .case-study-card .content h4 {
    color: var(--gray-5, #30353e);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 20px 0;
  }
  
  .case-study-card .content p {
    color: var(--gary-4, #525966);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 30px;
  }
  
  /* company feedback section style */
  .company-feedback-wrapper {
    width: 100%;
    margin-top: 100px;
  }
  
  .company-feedback-wrapper .top-text {
    max-width: 1300px;
  }
  
  .company-feedback-wrapper .company-name,
  .company-feedback-wrapper .role {
    color: var(--loop-blue, #005aff);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
  }
  
  .company-feedback-wrapper .role {
    color: var(--gray-4, #525966);
    margin-top: 30px;
    margin-bottom: 60px;
  }
  
  .company-intro-wrapper {
    max-width: 990px;
    margin: 0 auto;
  }
  
  /* get 1-on-1 help section style */
  
  .get-1-on-1-help-wrapper {
    width: 100%;
    position: relative;
    padding-top: 100px;
    padding-bottom: 152px;
    overflow: hidden;
    z-index: 10;
    background: #f6faff;
    margin-top: 100px;
  }
  
  .get-1-on-1-help-wrapper .common-wrap {
    z-index: 1;
  }
  
  .get-1-on-1-help-wrapper .get-1-on-1-help-bg-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  .get-1-on-1-help-wrapper .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .oneims-inner {
    width: 100%;
  }
  
  .get-1-on-1-help-wrapper .gradient-border {
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    padding: 4px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #ffffff80, #a6ceff80);
    backdrop-filter: blur(12.5px);
  }
  
  .one-on-one-content {
    width: 100%;
  
    border-radius: 18px;
    display: flex;
    overflow: hidden;
  }
  
  .one-on-one-thum {
    width: 100%;
    max-width: 500px;
    min-height: 419px;
    background: gray;
  }
  
  .one-on-one-thum-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .one-on-one-content .details {
    flex-grow: 1;
    padding: 0;
    padding: 20px;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #e2daf7, #cae6fa);
    backdrop-filter: blur(12.5px);
  }
  
  .one-on-one-content .details h4 {
    color: var(--gray-5, #30353e);
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.02px;
    margin-bottom: 20px;
  }
  
  .one-on-one-content p:first-of-type {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .one-on-one-content p:last-of-type {
    margin-top: 18px;
  }
  
  .btn.link_arrow_btn:hover:after {
    right: 5px;
  }
  /*
                           ======= 
                              partners page style starts
                                                          ===========*/
  
  /* common section style */
  .page-section {
    width: 100%;
    height: auto;
    margin-top: 100px;
    position: relative;
    z-index: 10;
  }
  
  .section-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  .section-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .page-section .common-wrap {
    z-index: 10;
  }
  
  .page-section .section-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .page-section h2.section-title {
    text-align: center;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -2.4px;
  }
  
  .page-section h3.section-title {
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.8px;
  }
  
  .page-section h3.content-title {
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.8px;
  }
  
  .page-section .section-subtitle {
    color: var(--loop-blue, #005aff);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .page-section .section-des {
    color: var(--gray-5, #30353e);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 auto;
  }
  .page-section .section-body {
    width: 100%;
  }
  
  .page-section .content p {
    color: var(--gray-5, #30353e);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 136.364%;
  }
  
  /* partner page style */
  
  .partners-page {
    background-color: var(--white, #fff);
  }
  
  .partners-page .common-wrap {
    max-width: 1420px;
    padding: 0 20px;
  }
  
  .partners-page .page-hero-des {
    max-width: 1360px;
  }
  
  .partners-page .page-hero-cta-btns,
  .reviews-page .page-hero-cta-btns {
    margin-bottom: 0;
    padding-bottom: 100px;
  }
  
  .partners-page .page-hero-bg,
  .partners-page .page-hero-bg-img {
    height: 100%;
  }
  
  /* why become thareja.ai partner */
  .why-become-partners-wrapper {
    padding-top: 50px;
    padding-bottom: 110px;
    background: #f6faff;
    text-align: center;
  }
  
  .why-become-partners-wrapper .section-des {
    max-width: 1360px;
    margin: 0 auto;
  }
  
  .reasons-to-become-partners {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
    max-width: 1308px;
    margin-inline: auto;
  }
  
  .reasons-to-become-partners .card {
    padding: 22px;
    border-radius: 14px;
    background: #fff;
  }
  
  .reasons-to-become-partners .card img {
    margin-bottom: 18px;
  }
  
  .reasons-to-become-partners .card h5 {
    margin-bottom: 10px;
    color: var(--loop-blue, #005aff);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .reasons-to-become-partners .card p {
    color: var(--gray-4, #525966);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
  }
  
  .reasons-to-become-partners .link-text,
  .link-text {
    color: var(--loop-blue, #005aff);
  }
  
  .simple-description .section-des {
    max-width: 1340px;
  }
  
  .partners-program .bottom-space {
    margin-bottom: 60px;
  }
  .partners-program .section-body {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
  }
  
  .partners-program .content {
    flex-grow: 1;
    max-width: 749px;
  }
  
  .partners-program .section-thum {
    width: 50%;
    max-width: 551px;
    height: auto;
  }
  
  .partners-program .section-thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .partners-program .content h3 {
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.8px;
    margin-bottom: 24px;
  }
  
  .partners-program .content p,
  .partners-program li {
    color: var(--gray-5, #30353e);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 136.364% */
  }
  
  .partners-program ul {
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .partners-program ul li::marker {
    color: var(--loop-blue);
  }
  
  /*  reviews page style starts */
  .reviews-page .common-wrap {
    max-width: 1420px;
    padding: 0 20px;
  }
  
  .reviews-page .page-hero-cta-btns {
    margin-bottom: 0;
    padding-bottom: 100px;
  }
  .reviews-page .page-hero-bg {
    height: 100%;
  }
  .reviews-page .page-hero-bg-img {
    width: 100%;
    height: 100%;
  }
  
  .reviews-page .page-hero-subtitle {
    text-align: center;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
  }
  
  .reviews-page .page-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .reviews-page .page-hero-des {
    margin: 0 auto;
  }
  
  /* widget section */
  
  .reviews-widget-container .widget {
    gap: 20px;
  }
  
  .reviews-widget-container .page-section-inner {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  /* clients review section starts */
  .clients-review .page-section-inner {
    flex-direction: column;
    gap: 30px;
  }
  
  .clients-review .cards-container {
    gap: 30px;
  }
  
  .clients-review .gradient-card-border {
    background: linear-gradient(90deg, #01d18f, #005aff);
    border-radius: 16px;
    padding: 1px;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.06);
  }
  
  .clients-review .card-border {
    border-radius: 16px;
    border: 1px solid var(--gray-2, #dde3e7);
    background: #fdfdfd;
    overflow: hidden;
  }
  
  .clients-review .small-card {
    max-width: 610px;
    width: 44.202%;
  }
  
  .clients-review .large-card {
    width: 53.623%;
    max-width: 740px;
  }
  
  .clients-review .review-card {
    padding: 30px;
    padding-right: 20px;
    background-color: var(--white, #fff);
    border-radius: 15px;
    width: 100%;
    overflow: hidden;
  }
  
  .clients-review .review-card-shadow {
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.06);
    border: none;
  }
  
  .clients-review svg {
    margin-bottom: 6px;
  }
  
  .clients-review .review-text {
    color: var(--gray-5, #30353e);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
  }
  
  .clients-review .authore {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 136.364%;
  }
  
  .clients-review .name {
    color: var(--gray-5, #30353e);
    font-weight: 700;
  }
  
  .clients-review .company {
    color: var(--gray-4, #525966);
  }
  
  .review-with-profile-wrapper {
    width: 100%;
    gap: 30px;
  }
  
  .page-section.bottom {
    margin-top: 0;
    margin-bottom: 100px;
  }
  
  /* client video review style */
  .review-video-wrapper .page-section-inner {
    max-width: 990px;
    margin: 0 auto;
    width: 100%;
  }
  
  .review-video-wrapper .review-video-card {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
  
  .review-video-wrapper .review-content {
    width: 100%;
    position: relative;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.06);
    z-index: 5;
  }
  .review-video-wrapper .review-content-inner {
    padding: 30px;
    padding-right: 20px;
    z-index: 10;
    background-color: var(--white);
  }
  
  .review-video-wrapper .review-content-inner h4 {
    color: var(--gray-5, #30353e);
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 148%;
  }
  
  .review-video-wrapper .polygon-svg {
    position: absolute;
    left: 30px;
    bottom: -25px;
    z-index: -1;
    filter: drop-shadow(0px 1px 8px rgba(0, 0, 0, 0.06));
  }
  
  .review-video-wrapper .author-info {
    padding-left: 35px;
    gap: 24px;
  }
  
  .review-video-wrapper .author-info img {
    border-radius: 50%;
    max-width: 80px;
    object-fit: cover;
  }
  
  .review-video-wrapper h5 {
    font-size: 22px;
    font-style: normal;
    line-height: 136%;
  }
  
  .review-video-wrapper .name {
    color: var(--gray-5, #30353e);
    font-weight: 700;
  }
  
  .review-video-wrapper .role {
    color: var(--gray-4, #525966);
    font-weight: 400;
  }
  
  /* careers page style starts */
  .careers-page .common-wrap {
    max-width: 1420px;
    padding: 0 20px;
  }
  
  .careers-page .page-hero-cta-btns {
    margin-bottom: 0;
    padding-bottom: 100px;
  }
  .careers-page .page-hero-bg {
    height: 100%;
  }
  .careers-page .page-hero-bg-img {
    width: 100%;
    height: 100%;
  }
  .careers-page .page-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin-inline: auto;
  }
  
  /* about thareja */
  
  .about-thareja .section-body {
    justify-content: space-between;
    gap: 25px;
  }
  
  .about-thareja .section-thum {
    width: 36.884%;
  }
  .about-thareja .content {
    width: 56.449%;
  }
  
  .about-thareja h3 {
    margin-bottom: 24px;
  }
  
  /* team-vacation and fun  */
  .team-vacation .section-head {
    margin-bottom: 60px;
  }
  .team-vacation .team-video-wrapper {
    width: 100%;
    max-width: 990px;
    margin-inline: auto;
    margin-bottom: 30px;
  }
  .team-vacation .in-person-retreat-container {
    display: flex;
  }
  
  .in-person-retreat-card {
    box-sizing: border-box;
    padding: 34px 0;
    display: flex;
    width: 100%;
  }
  
  .in-person-retreat-card .details {
    padding: 0 34px;
    margin-bottom: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .in-person-retreat-card h5 {
    color: var(--gray-5, #30353e);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
  }
  
  .in-person-retreat-card h6 {
    color: var(--loop-blue, #005aff);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.889%;
    text-transform: uppercase;
  }
  
  .in-person-retreat-card p {
    flex-grow: 1;
  }
  
  .in-person-retreat-card.active {
    border-radius: 18px;
    border-bottom: 3px solid var(--loop-blue, #005aff);
    background: #fff;
    box-shadow: 0px 0px 32px 0px rgba(56, 56, 56, 0.08);
  }
  
  .in-person-retreat-card .divider-line {
    width: 1px;
    background-color: var(--gray-2, #dde3e7);
  }
  
  /* our team culture section */
  .our-team-culture {
    background: #f6faff;
  }
  
  .our-team-culture .section-head {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  
  .our-team-culture .section-des {
    max-width: 616px;
  }
  
  .our-team-culture .section-body {
    max-width: 1210px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
  }
  
  .our-team-culture-card {
    padding: 40px 32px;
    flex-direction: column;
    gap: 20px;
    border-radius: 14px;
    background: var(--white, #fff);
  }
  
  .our-team-culture-card img {
    max-width: 66px;
  }
  
  .our-team-culture-card h4 {
    color: var(--loop-blue, #005aff);
    text-align: center;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  .our-team-culture-card p {
    text-align: center;
    color: var(--gray-4, #525966);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  
  /* ditch the office */
  .ditch-the-office .section-body {
    justify-content: space-between;
  }
  .ditch-the-office .content {
    width: 51.594%;
  }
  
  .ditch-the-office h3 {
    margin-bottom: 24px;
  }
  
  .ditch-the-office p {
    margin-bottom: 40px;
    color: var(--gray-5, #30353e);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 136.364%;
  }
  
  .ditch-the-office .section-thum {
    width: 42.608%;
  }
  
  /* client reviews */
  .team-review-slider-wrapper {
    background: #f6faff;
    position: relative;
    padding: 50px 0;
    z-index: 10;
  }
  
  .team-review-slider-wrapper .bg-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .team-review-slider-wrapper .bg-overlay-container div:first-of-type {
    height: 100%;
    width: 36.936%;
  }
  
  .team-review-slider-wrapper .bg-overlay-container div:last-of-type {
    height: 100%;
    width: 63.063%;
    border-radius: 20px 0px 0px 20px;
    background: var(--white, #fff);
  }
  
  .team-review-slider-wrapper .common-wrap {
    z-index: 1;
  }
  
  .team-review-slider-wrapper .section-body {
    z-index: 10;
  }
  
  .team-review-slider-wrapper .team-reviews-slider {
    gap: 70px;
    justify-content: center;
  
    /* hide all slider initially and active with script */
    display: none;
  }
  
  .team-review-slider-wrapper .content {
    width: 51.884%;
    min-height: 480px;
    position: relative;
    padding: 60px 30px 50px 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .team-review-slider-wrapper p {
    color: var(--gray-5, #30353e);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 136.364%;
    margin-bottom: 72px;
  }
  
  .team-review-slider-wrapper h6 {
    color: var(--gray-5, #30353e);
    font-weight: 700;
    font-size: 18px;
    font-style: normal;
    line-height: 138.889%;
  }
  
  .team-review-slider-wrapper h6.company {
    color: var(--gray-4, #525966);
    font-weight: 400;
    margin-top: 4px;
  }
  
  .team-review-slider-wrapper .divider-line {
    width: 100%;
    height: 1px;
    background-color: var(--gray-2, #dde3e7);
    margin: 30px 0;
    display: block;
  }
  
  .team-review-slider-wrapper .slider-navigator {
    gap: 16px;
  }
  
  .team-review-slider-wrapper .team-reviews-slider-navigation-ui {
    gap: 6px;
  }
  
  .team-review-slider-wrapper .dot {
    width: 14px;
    height: 14px;
    max-width: 14px;
    max-height: 14px;
    background-color: var(--gray-2, #dde3e7);
    border-radius: 100%;
    transition: 0.2s;
    cursor: pointer;
  }
  
  .team-review-slider-wrapper .dot:hover {
    background-color: var(--gray-2, #dde3e7);
  }
  
  .team-review-slider-wrapper .dot:hover {
    background-color: var(--loop-blue, #005aff) !important;
  }
  
  .team-review-slider-wrapper .dot.active {
    background-color: var(--gray-4, #525966);
  }
  
  .team-review-slider-wrapper .next-btn,
  .team-review-slider-wrapper .prev-btn {
    width: 34px;
    height: 34px;
    background-color: transparent;
    border: none;
    outline: none;
    border-radius: 100%;
    position: relative;
  }
  
  .team-review-slider-wrapper .next-btn::after,
  .team-review-slider-wrapper .prev-btn::after {
    display: block;
    content: "";
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .team-review-slider-wrapper .next-btn::after {
    background: url("/svgs/careers/next-arrow.svg");
  }
  .team-review-slider-wrapper .prev-btn::after {
    background: url("/svgs/careers/prev-arrow.svg");
  }
  
  .team-review-slider-wrapper .content {
  }
  
  .team-review-slider-wrapper .quote-svg {
    position: absolute;
    top: 20px;
    left: -50px;
    width: 70px;
    height: 70px;
    z-index: -1;
  }
  
  .team-review-slider-wrapper .team-photo {
    width: 48.115%;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .team-review-slider-wrapper .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 460px;
    display: block;
    margin-left: auto;
    max-height: 390px;
    box-shadow: 0px 1.984px 19.838px 0px rgba(0, 0, 0, 0.14);
  }
  
  /* thareja team overview */
  .thareja-team-overview {
    background: #f6faff;
    overflow: hidden;
  }
  
  .thareja-team-overview .section-body {
    gap: 25px;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 62px;
  
    z-index: 10;
  }
  
  .thareja-team-overview .section-bg {
    z-index: -1;
  }
  
  .thareja-team-overview .section-thum {
    width: 42.391%;
  }
  
  .thareja-team-overview .content {
    width: 51.811%;
  }
  
  .thareja-team-overview h3.content-title {
    margin-bottom: 24px;
  }
  
  /* frequently asked questions */
  .careers-page-accordion,
  .careers-page-accordion .accordion {
    background-color: var(--white, #ffff);
  }
  
  .careers-page-accordion .top-heading {
    padding-bottom: 50px;
  }
  
  .careers-page-accordion .text-anim {
    padding-bottom: 0;
  }
  
  .careers-page-accordion .accordion-content {
    padding: 0;
  }
  .careers-page-accordion .content-inner {
    padding: 16px 20px;
    padding-bottom: 36px;
  }
  
  .careers-page-accordion h5 {
    padding: 16px 20px;
    padding-right: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--light-blue, #fafcff);
  }
  
  .careers-page-accordion .accordion-item h5:after {
    right: 20px;
  }
  
  .careers-page-accordion ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 30px;
  }
  
  .careers-page-accordion li::marker {
    font-size: 1em;
  }
  
  .careers-page-accordion .spam-warning {
    border-radius: 10px;
    background: var(--light-blue, #fafcff);
    padding: 20px;
    clear: both;
  }
  
  .careers-page-accordion .warning-text {
    color: var(--gray-5, #30353e);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 138.889%;
    max-width: 730px;
    margin: 0 auto;
  }
  
  /* 
                          ======================
                          =====================
                          ============ =========
                          ======
                          ======================
                          =======================
                          ==== ======== ===== =====
                          */
  
  /* =======================================================================================================
                          ============================================ Responsive style ========================================== */
  
  /*		Laptop and Desktop device from 841px to 1600px.
                          -----------------------------------------------------------------
                          */
  
  @media only screen and (max-width: 1600px) {
    /* customer stories page  */
  }
  @media only screen and (max-width: 1520px) {
    /* customer stories page  */
  
    .page-section h2.section-title {
      font-size: 70px;
      line-height: normal;
    }
  
    .page-section h3.section-title {
      font-size: 50px;
    }
  
    .page-section h3.content-title {
      font-size: 45px;
    }
  
    .home-page .how-thareja-ai-works .index {
      font-size: 120px;
      line-height: 100%;
    }
  }
  
  /* 
                          ======================
                          =====================
                          ============ =========
                          ======
                          ======================
                          =======================
                          ==== ======== ===== =====
                          */
  
  @media only screen and (max-width: 1440px) {
    /* home page */
    .home-page .hero-content h1 {
      line-height: 123%;
      font-size: 80px;
    }
    .home-page .hero-content h2 {
      line-height: 123%;
      font-size: 80px;
    }
  
    /* customer stories page  */
    .page-hero-wrap {
      padding-top: 120px;
    }
  
    .page-hero-bg img {
      height: 100%;
    }
  
    .page-hero-des {
      font-size: 24px;
      line-height: 35px;
    }
  
    .gradient-btn {
      padding: 15px 25px;
      padding-right: 21px;
      font-size: 19px;
      line-height: 25px;
    }
  
    .gradient-arrow-btn {
      padding: 15px 25px;
      padding-right: 53px;
      font-size: 19px;
      line-height: 25px;
    }
  
    .outline-btn {
      font-size: 19px;
      padding: 13px 19px 13px 24px;
      line-height: 25px;
    }
  
    .customer-stories-page .page-hero-bg img {
      min-height: 700px;
    }
  
    .productive-team-inner h4 {
      font-size: 25px;
      line-height: 35px;
      margin-bottom: 40px;
    }
  
    /* partners page style starts */
    .partners-page .page-hero-title,
    .reviews-page .page-hero-title {
      line-height: normal;
    }
  
    .page-hero-wrap {
      height: auto;
    }
  
    .partners-page .page-hero-cta-btns,
    .reviews-page .page-hero-cta-btns {
      padding-bottom: 70px;
    }
  
    .page-section h2.section-title {
      font-size: 60px;
    }
  
    .page-section h3.section-title {
      font-size: 45px;
    }
  
    .page-section h3.content-title {
      font-size: 40px;
    }
  
    .partners-program .section-thum {
      width: 50%;
      max-width: 551px;
      min-width: 40%;
    }
  
    /* reviews page style starts */
    .reviews-page .page-hero-subtitle {
      font-size: 25px;
      line-height: 148.148%;
    }
  
    /* careers page style starts */
    .careers-page .page-hero-content {
      max-width: 800px;
    }
  
    /* thareja team overview */
    .thareja-team-overview .section-body {
      gap: 25px;
      justify-content: space-between;
      padding-top: 80px;
      padding-bottom: 50px;
    }
  
    /* end  */
  
    /* updated home page style */
    .home-page .home-section-title {
      font-size: 80px;
      line-height: 117%;
    }
  
    .home-page .home-section-subtitle {
      font-size: 50px;
    }
  
    .home-page .how-thareja-ai-works .index {
      font-size: 110px;
      line-height: 100%;
    }
  
    .home-page .why-choose-us-wrap .top-text h2.last {
      margin-top: -5px;
    }
  
    .home-page .how-thareja-ai-works h4 {
      font-size: 40px;
      line-height: 120%;
    }
  
    .home-page .how-thareja-ai-works .top-text h3 {
      font-size: 50px;
    }
  }
  
  /* 
                          ======================
                          =====================
                          ============ =========
                          ======
                          ======================
                          =======================
                          ==== ======== ===== =====
                          */
  
  @media only screen and (max-width: 1240px) {
    /* common styles */
    .common_section-wrap .section_title {
      line-height: normal;
    }
  
    /* customer stories page  */
    .page-hero-des {
      font-size: 20px;
      line-height: 30px;
      margin: 20px auto;
    }
  
    .productive-team-inner h4 {
      margin-bottom: 30px;
    }
  
    .case-studies {
      gap: 30px;
    }
  
    .one-on-one-thum {
      min-height: 250px;
    }
  
    /* partners page style */
    .page-section .section-des,
    .page-section .content p {
      font-size: 20px;
    }
  
    .partners-program ul {
      gap: 25px;
      margin-top: 25px;
      margin-bottom: 35px;
    }
  
    .partners-program .content p,
    .partners-program li {
      font-size: 20px;
      line-height: 136.364%;
    }
  
    /* reviews page style starts */
    .reviews-page .page-hero-subtitle {
      font-size: 23px;
      line-height: 148.148%;
    }
  
    /* client review  */
    .clients-review .review-text {
      font-size: 20px;
      line-height: 136%; /* 136.364% */
      margin-bottom: 30px;
    }
  
    .clients-review .authore {
      font-size: 20px;
      line-height: 136.364%;
    }
  
    /* careers page style starts */
    .careers-page .page-hero-content {
      max-width: 700px;
    }
  
    /* our team culture */
  
    .our-team-culture .section-body {
      gap: 40px;
    }
    .our-team-culture-card {
      padding: 32px;
    }
    .our-team-culture-card h4 {
      font-size: 25px;
    }
  
    .our-team-culture-card p {
      font-size: 20px;
    }
  
    /* thareja team overview */
    .thareja-team-overview .section-body {
      padding-top: 70px;
      padding-bottom: 50px;
    }
  
    /* FAQ */
    .careers-page-accordion h2.text-anim {
      line-height: normal;
    }
  
    /* ends */
  
    .why-people-use-thareja.component-wrap .background-img-container img {
      object-fit: cover;
    }
  
    .why-people-use-thareja.component-wrap .thumnail-box {
      max-width: 590px;
      margin: 0 auto;
    }
  
    .component-page .why-people-use-thareja.component-wrap .content-box {
      margin: 0 auto;
    }
  
    .home-page .how-thareja-ai-works .index {
      font-size: 90px;
      line-height: 100%;
    }
  
    .home-page .how-thareja-ai-works h4 {
      font-size: 36px;
    }
  
    .home-page .how-thareja-ai-works .top-text h3 {
      font-size: 45px;
    }


  }
  
  /* 
                          ======================
                          =====================
                          ============ =========
                          ======
                          ======================
                          =======================
                          ==== ======== ===== =====
                          */
  @media only screen and (max-width: 1040px) {
    .home-page-2 .how-thareja-ai-works {
      padding-top: 60px;
    }
  
    /* home page */
    .home-page .hero-content h1 {
      line-height: 123%;
      font-size: 70px;
    }
    .home-page .hero-content h2 {
      line-height: 123%;
      font-size: 70px;
    }
  
    .page-section {
      margin-top: 90px;
    }
  
    .video-thum-container .video-play-btn {
      width: 80px;
      height: 80px;
    }
  
    .gradient-btn {
      padding: 14px 22px;
      font-size: 18px;
      line-height: 24px;
    }
  
    .gradient-arrow-btn {
      padding: 14px 22px;
      padding-right: 50px;
      font-size: 18px;
      line-height: 24px;
    }
  
    .outline-btn {
      padding: 12px 18px 12px 22px;
      font-size: 18px;
      line-height: 24px;
    }
  
    .page-hero-video-thum-inner {
      height: 500px;
    }
  
    .page-hero-des {
      font-size: 18px;
      line-height: 30px;
    }
  
    .oneims-wrapper {
      padding: 80px 0;
    }
  
    .oneims-thum {
      min-width: 400px;
    }
  
    .oneims-content .details {
      padding-left: 30px;
    }
  
    .oneims-content .details h4 {
      font-size: 30px;
      line-height: normal;
      letter-spacing: -1.02px;
    }
  
    .get-1-on-1-help-wrapper {
      padding-top: 90px;
      padding-bottom: 110px;
      margin-top: 90px;
    }
  
    .one-on-one-content .details h4 {
      font-size: 30px;
      line-height: normal;
      letter-spacing: -1.02px;
    }
  
    /* partners page style */
    .page-section h2.section-title {
      font-size: 45px;
    }
  
    .page-section h3.section-title {
      font-size: 35px;
    }
  
    .page-section h3.content-title {
      font-size: 32px;
    }
  
    .page-section .section-des {
      font-size: 18px;
    }
  
    .partners-program .content p,
    .partners-program li {
      font-size: 18px;
      line-height: 136.364%;
    }
    .why-become-partners-wrapper {
      padding-bottom: 90px;
    }
  
    .reasons-to-become-partners {
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 25px;
    }
  
    /* reviews page style starts */
    .reviews-page .page-hero-subtitle {
      font-size: 20px;
    }
  
    .clients-review .small-card {
      max-width: 999px;
      width: 50%;
    }
  
    .clients-review .large-card {
      width: 50%;
      max-width: 999px;
    }
  
    .clients-review .review-card {
      padding: 20px;
    }
  
    .review-video-wrapper .review-content-inner h4 {
      font-size: 24px;
      font-weight: 600;
    }
  
    .review-video-wrapper .polygon-svg {
      width: 80px;
    }
  
    .review-video-wrapper .author-info {
      padding-left: 30px;
    }
  
    .review-video-wrapper h5 {
      font-size: 20px;
    }
  
    .page-section.bottom {
      margin-top: 0;
      margin-bottom: 90px;
    }
  
    /* careers page style starts*/
    .about-thareja .section-thum {
      width: 50%;
    }
    .about-thareja .content {
      width: 50%;
    }
  
    .team-vacation .in-person-retreat-container {
      display: flex;
    }
  
    .in-person-retreat-card {
      padding: 20px 0;
    }
  
    .in-person-retreat-card .details {
      padding: 0 20px;
      margin-bottom: 5px;
    }
  
    .in-person-retreat-card h5 {
      font-size: 18px;
    }
  
    /* our team culture */
  
    .our-team-culture .section-head {
      padding: 50px 0;
    }
  
    .our-team-culture .section-body {
      gap: 40px;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
  
    .our-team-culture-card {
      gap: 10px;
    }
  
    .our-team-culture-card img {
      max-width: 50px;
    }
  
    .our-team-culture-card h4 {
      font-size: 22px;
    }
  
    .our-team-culture-card p {
      font-size: 18px;
    }
  
    /* ditch the office */
    .ditch-the-office .section-body {
      gap: 25px;
    }
  
    .ditch-the-office .content {
      width: 50%;
    }
    .ditch-the-office .section-thum {
      width: 50%;
    }
  
    .ditch-the-office h3 {
      margin-bottom: 300px;
      padding-bottom: 30px;
      margin-left: 100px;
      display: block;
    }
  
    /* team reviews */
    .team-review-slider-wrapper p {
      margin-bottom: 40px;
    }
  
    /* frequently asked questions */
    .careers-page-accordion .top-heading {
      padding-bottom: 40px;
    }
  
    .careers-page-accordion .text-anim {
      margin-bottom: 0;
    }
  
    .remote-fully-page .thareja-tracking-wrap h3 {
      margin-top: 40px;
      font-size: 40px;
    }
  
    /* end  */
  
    .home-page .home-section-title {
      font-size: 70px;
      line-height: 110%;
    }
  
    .home-page .home-section-subtitle {
      font-size: 42px;
    }
  
    .home-page .top-text h2 {
      padding: 0 !important;
    }
  
    .home-page .home-section-subtitle {
      font-size: 42px;
    }
  
    .home-page .why-choose-us-wrap .top-text h2:last-of-type {
      margin-bottom: 40px;
      text-align: center;
      margin-top: 40px;
    }
  
    .home-page .why-choose-us-wrap .top-text h4:last-of-type {
      font-size: 22px;
      line-height: normal;
    }
  
    .home-page .why-choose-us-wrap h5 {
      font-size: 36px;
    }
  
    .home-page .how-thareja-ai-works .index {
      font-size: 70px;
    }
  
    .home-page .how-thareja-ai-works h4 {
      font-size: 32px;
    }
  
    .home-page .how-thareja-ai-works .top-text h3 {
      font-size: 40px;
    }
  
    .home-page .how-thareja-ai-works .top-text h3:last-of-type {
      font-weight: 500;
    }
  }




@media only screen and (min-width:1024px) and (max-width:1280px) {
  


  .ai-profile .profile-inner-info{flex-flow: row wrap;}

  .ai-profile .left-profile {
    width: 100%;}
  
  .ai-profile .right-box-item {
    width: 100%;
  }
  
  .top-header {margin-top: 20px;}
  
  ul.hire-tab-btn {
    flex-flow: row wrap;
    gap: 10px;
  }
  .hire-tab-btn li{width: 100%;}
  
  .ai-profile .profile-details{flex-flow: unset;}


  .right-box-item {
    float: left;
    width: 43.467924%;
}
.left-profile {
  float: left;
  width: 55.377431%;
}
.cta-btns {
  justify-content: center;
  gap: 20px;
}

}




















  
  /* 
                          ======================
                          =====================
                          ============ =========
                          ======
                          ======================
                          =======================
                          ==== ======== ===== =====
                          */
  /*		Tablet Layout from 641px to 840px.
                          -----------------------------------------------------------------
                          */
  @media only screen and (max-width: 840px) {
    .home-page-2 .how-thareja-ai-works {
      padding-top: 20px;
    }
  
    /* home page */
    .home-page .hero-content h1 {
      line-height: 123%;
      font-size: 60px;
    }
    .home-page .hero-content h2 {
      line-height: 123%;
      font-size: 60px;
    }
  
    .page-section {
      margin-top: 80px;
    }
    .page-section .content p {
      font-size: 18px;
    }
    .productive-teams-wrap {
      padding: 80px 0;
    }
  
    /* customer stories page  */
    .video-thum-container .video-play-btn {
      width: 70px;
      height: 70px;
    }
  
    .gradient-btn {
      padding: 12px 20px;
      font-size: 16px;
      line-height: 24px;
    }
  
    .gradient-arrow-btn {
      padding: 12px 20px;
      padding-right: 48px;
      font-size: 16px;
      line-height: 20px;
    }
  
    .gradient-arrow-btn::after {
      right: 20px;
    }
  
    .outline-btn {
      padding: 10px 20px;
      font-size: 16px;
      line-height: 20px;
    }
  
    .page-hero-video-thum-inner {
      height: 450px;
    }
  
    .productive-team-inner h4 {
      font-size: 22px;
    }
  
    .oneims-wrapper {
      padding: 60px 0;
    }
  
    .oneims-thum {
      min-width: 300px;
    }
  
    .oneims-content .details h4 {
      font-size: 27px;
    }
  
    .case-studies-wrapper.top {
      margin-bottom: 80px;
    }
  
    .case-study-card .content {
      margin-top: 10px;
      padding: 20px;
    }
  
    .company-feedback-wrapper .role {
      margin-bottom: 50px;
    }
  
    .get-1-on-1-help-wrapper {
      padding-top: 80px;
      padding-bottom: 100px;
      margin-top: 90px;
    }
  
    .one-on-one-thum {
      width: 50%;
    }
  
    .one-on-one-content .details {
      width: 50%;
    }
  
    .one-on-one-content .details h4 {
      font-size: 27px;
    }
  
    .case-studies-wrapper.bottom {
      padding-top: 70px;
      margin-top: -70px;
      margin-bottom: -60px;
      padding-bottom: 70px;
    }
  
    /* partners page style */
  
    .partners-page .common-wrap {
      padding: 0 20px !important;
    }
  
    .page-section h2.section-title {
      font-size: 40px;
    }
  
    .page-section h3.section-title {
      font-size: 32px;
    }
  
    .page-section .section-subtitle {
      font-size: 20px;
    }
  
    .page-section h3.content-title {
      font-size: 30px;
    }
  
    .page-section .section-body {
      flex-direction: column;
    }
  
    .page-section .section-body.reverse {
      flex-direction: column-reverse;
    }
  
    .why-become-partners-wrapper {
      padding-bottom: 80px;
    }
  
    .partners-program .section-thum {
      width: 70%;
      max-width: 400px;
      min-width: 40%;
    }
  
    /* reviews page */
    .clients-review .small-card,
    .clients-review .large-card {
      width: 100%;
    }
  
    .clients-review .flex-items-center {
      flex-direction: column;
    }
  
    .clients-review .review-card {
      padding: 25px;
    }
  
    .clients-review img {
      width: 100%;
      object-fit: cover;
      height: 100%;
      max-height: 380px;
    }
  
    .clients-review .review-text {
      font-size: 18px;
    }
  
    .clients-review .review-card svg {
      width: 28px;
    }
  
    .clients-review .authore {
      font-size: 18px;
    }
  
    .review-video-wrapper .review-content-inner h4 {
      font-size: 22px;
      font-weight: 500;
    }
  
    .review-video-wrapper h5 {
      font-size: 20px;
    }
  
    .page-section.bottom {
      margin-top: 0;
      margin-bottom: 80px;
    }
  
    .about-thareja .section-body {
      flex-direction: row;
    }
  
    /* careers page style starts */
    .about-thareja .section-body {
      flex-direction: column;
      gap: 40px;
    }
  
    .about-thareja .section-thum {
      width: 80%;
      margin-inline: auto;
    }
    .about-thareja .content {
      width: 100%;
    }
  
    .in-person-retreat-container {
      flex-wrap: wrap;
      row-gap: 30px;
    }
  
    .in-person-retreat-card {
      width: 50%;
    }
  
    .in-person-retreat-card .details {
      gap: 10px;
    }
  
    .in-person-retreat-card h5 {
      font-size: 17px;
    }
  
    .in-person-retreat-card h6 {
      font-size: 17px;
    }
    .in-person-retreat-card p {
      font-size: 16px;
      margin-bottom: 0;
    }
  
    /* our team culture */
  
    .our-team-culture .section-body {
      gap: 30px;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
  
    .our-team-culture-card h4 {
      font-size: 20px;
    }
  
    /* ditch the office */
    .ditch-the-office .content,
    .ditch-the-office .section-thum {
      width: 100%;
    }
  
    .ditch-the-office .section-thum img {
      margin: 0 auto;
    }
  
    .ditch-the-office .section-thum {
      width: 80%;
      max-width: 80%;
      margin-inline: auto;
    }
  
    .ditch-the-office h3 {
      margin-bottom: 20px;
    }
  
    .ditch-the-office p {
      margin-bottom: 30px;
    }
  
    /* team review slider */
  
    .team-review-slider-wrapper .bg-overlay-container div:first-of-type {
      width: 100%;
      background: var(--white, #fff);
    }
  
    .team-review-slider-wrapper .bg-overlay-container div:last-of-type {
      width: 100%;
      border-radius: 0;
    }
  
    .team-review-slider-wrapper .team-reviews-slider {
      display: flex;
      gap: 40px;
    }
  
    .team-review-slider-wrapper .content {
      width: 100%;
      padding: 30px 0;
    }
  
    .team-review-slider-wrapper p {
      margin-bottom: 40px;
    }
  
    .team-review-slider-wrapper .divider-line {
      margin: 25px 0;
    }
  
    .team-review-slider-wrapper .quote-svg {
      position: absolute;
      top: -30px;
      left: 0px;
      width: 50px;
      height: 50px;
    }
  
    .team-review-slider-wrapper .team-photo {
      width: 100%;
      padding-top: 30px;
      margin: 0 auto;
      max-width: 500px;
    }
  
    .team-review-slider-wrapper .team-photo img {
      max-width: 460px;
      max-height: 390px;
    }
  
    .team-reviews-slider {
      flex-direction: column;
      gap: 40px;
    }
  
    .team-reviews-slider .slider-navigator {
      justify-content: center;
    }
  
    .team-review-slider-wrapper .content {
      min-height: 200px;
    }
  
    /* thareja team overview */
    /* .thareja-team-overview .section-body{
                            gap: 25px;
                            justify-content: space-between;
                          } */
  
    .thareja-team-overview .section-body {
      flex-direction: column-reverse;
    }
  
    .thareja-team-overview .section-thum {
      width: 80%;
    }
  
    .thareja-team-overview .content {
      width: 100%;
    }
  
    .thareja-team-overview h3.content-title {
      margin-bottom: 40px;
    }
  
    /* thareja team overview */
    .thareja-team-overview .section-body {
      padding-top: 60px;
    }
  
    /* frequently asked questions */
    .careers-page-accordion .top-heading {
      padding-bottom: 30px;
    }
    .careers-page-accordion .text-anim {
      margin-bottom: 0;
    }
  
    .customize-experience .profitable-item {
      gap: 20px;
    }
  
    .thareja-tracking-wrap h3 {
      margin-top: 40px;
    }
  
    .agile-project-management .text-anim {
      font-size: 42px;
    }
  
    .home-page .home-section-title {
      font-size: 60px;
      line-height: 114%;
    }
  
    .home-page .home-section-subtitle {
      font-size: 38px;
    }
  
    .home-page .why-choose-us-wrap .top-text h2:last-of-type {
      margin-bottom: 30px;
      margin-top: 30px;
    }
  
    .home-page .why-choose-us-wrap .top-text h4:last-of-type {
      font-size: 20px;
      line-height: normal;
    }
  
    .home-page .why-choose-us-wrap h5 {
      font-size: 32px;
    }
  
    .home-page .why-choose-us-wrap li {
      font-size: 18px;
    }
  
    .home-page .why-choose-us-wrap div.flex {
      margin-top: 40px;
      gap: 30px;
      flex-wrap: wrap;
    }
  
    .home-page .remote-work-challenges {
      width: 100%;
    }
  
    .home-page .hwo-thareja-helps {
      width: 100%;
    }
  
    .home-page .how-thareja-ai-works .index {
      font-size: 60px;
    }
  
    .home-page .how-thareja-ai-works h4 {
      font-size: 27px;
    }
  
    .home-page .how-thareja-ai-works .top-text {
      margin-bottom: 40px;
    }
  
    .home-page .how-thareja-ai-works .top-text h3 {
      font-size: 32px;
    }
  
    /* end */
  }
  
  /* 
                          ======================
                          =====================
                          ============ =========
                          ======
                          ======================
                          =======================
                          ==== ======== ===== =====
                          */
  @media only screen and (max-width: 640px) {
    .home-page-2 .why-choose-us-wrap {
      padding-top: 0px;
    }
  
    .page-section {
      margin-top: 70px;
    }
    .page-section .content p {
      font-size: 16px;
    }
  
    /* customer stories page  */
    .customer-stories-page p,
    .customer-stories-page a {
      font-size: 16px;
    }
  
    .customer-stories-page .page-hero-bg img {
      min-height: 700px;
    }
  
    .video-thum-container .video-play-btn {
      width: 60px;
      height: 60px;
    }
  
    .page-hero-video-thum-inner {
      height: 400px;
    }
  
    .oneims-thum {
      max-width: 100%;
      width: 100%;
    }
  
    .oneims-content {
      flex-direction: column;
    }
  
    .oneims-wrapper .gradient-border {
      background: linear-gradient(180deg, #ffffff80, #a6ceff80);
    }
  
    .oneims-content .details {
      padding: 20px;
      flex-grow: 0;
      width: 100%;
    }
  
    .oneims-content .details h4 {
      font-size: 25px;
      margin: 15px 0;
    }
  
    .one-on-one-content .details h4 {
      font-size: 25px;
    }
  
    .oneims-content .details a {
      font-size: 16px;
    }
    .oneims-content .details p {
      margin-bottom: 15px;
    }
  
    .case-study-card .content {
      padding: 25px;
    }
  
    .case-studies-wrapper {
      margin-top: 0;
    }
  
    .case-studies {
      gap: 40px;
    }
  
    .company-feedback-wrapper {
      margin-top: 80px;
    }
  
    .company-feedback-wrapper .company-name {
      font-size: 20px;
    }
  
    .company-feedback-wrapper .role {
      margin-bottom: 40px;
      font-size: 20px;
    }
  
    .get-1-on-1-help-wrapper {
      padding-top: 70px;
      padding-bottom: 140px;
      margin-top: 80px;
    }
  
    .get-1-on-1-help-wrapper .gradient-border {
      background: linear-gradient(180deg, #ffffff80, #a6ceff80);
    }
  
    .one-on-one-content {
      flex-direction: column;
    }
  
    .one-on-one-thum {
      width: 100%;
      max-width: 100%;
    }
  
    .one-on-one-content .details {
      width: 100%;
      padding: 25px;
      padding-top: 30px;
    }
  
    .case-studies-wrapper.bottom {
      padding-top: 0px;
      margin-top: -70px;
      margin-bottom: -60px;
      padding-bottom: 60px;
    }
  
    .case-studies-wrapper.top {
      margin-bottom: 70px;
    }
  
    /* partners page style */
  
    .page-section .top-badge {
      max-width: 50px;
    }
    .page-section h2.section-title {
      font-size: 38px;
    }
  
    .page-section h3.section-title {
      font-size: 30px;
    }
  
    .page-section .section-subtitle {
      font-size: 18px;
    }
  
    .page-section h3.content-title {
      font-size: 28px;
    }
  
    .page-section .section-des {
      font-size: 16px;
    }
  
    .partners-program ul {
      gap: 20px;
      margin-left: 25px;
      margin-top: 20px;
      margin-bottom: 30px;
    }
  
    .partners-program .content p,
    .partners-program li {
      font-size: 16px;
      line-height: 136.364%;
    }
  
    .reasons-to-become-partners .card h5 {
      font-size: 20px;
    }
  
    .reasons-to-become-partners .card p {
      font-size: 16px;
    }
  
    /* reviews page style starts */
  
    .reviews-page .page-hero-content {
      gap: 20px;
    }
  
    .reviews-page .page-hero-subtitle {
      font-size: 18px;
    }
  
    /* widget section style  */
    .reviews-widget-container .widget:first-of-type img {
      width: 140px;
    }
    .reviews-widget-container .widget:nth-child(2) img {
      width: 140px;
    }
    .reviews-widget-container .widget:nth-child(3) img {
      width: 40px;
    }
    .reviews-widget-container .widget:last-of-type img {
      width: 210px;
    }
  
    .reviews-widget-container svg {
      width: 20px;
    }
  
    .reviews-widget-container .page-section-inner {
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }
  
    /* client review  */
    .clients-review .review-text {
      font-size: 16px;
      margin-bottom: 25px;
    }
  
    .clients-review .authore {
      font-size: 16px;
    }
  
    .clients-review .review-card svg {
      width: 24px;
    }
  
    .clients-review .review-card {
      padding: 20px;
    }
  
    .review-video-wrapper .review-video-card {
      margin-bottom: 30px;
    }
  
    .review-video-wrapper .author-info {
      padding-left: 30px;
      gap: 15px;
    }
  
    .review-video-wrapper .author-info img {
      max-width: 60px;
    }
  
    .review-video-wrapper .review-content-inner h4 {
      font-size: 20px;
    }
    .review-video-wrapper .polygon-svg {
      width: 50px;
    }
  
    .review-video-wrapper h5 {
      font-size: 18px;
    }
  
    .page-section.bottom {
      margin-top: 0;
      margin-bottom: 70px;
    }
  
    /* careers section style starts */
  
    .about-thareja h3 {
      margin-bottom: 20px;
    }
  
    .in-person-retreat-container {
      flex-wrap: wrap;
      row-gap: 0px;
    }
  
    .in-person-retreat-card {
      width: 100%;
    }
  
    .in-person-retreat-card .divider-line {
      background-color: transparent;
    }
  
    /* our team culture */
  
    .our-team-culture .section-body {
      display: flex;
      flex-direction: column;
    }
  
    .our-team-culture-card img {
      max-width: 45px;
    }
  
    .our-team-culture-card h4 {
      font-size: 18px;
    }
  
    .our-team-culture-card p {
      font-size: 16px;
    }
  
    .team-vacation .video-container {
      max-height: 350px;
    }
  
    .ditch-the-office h3 {
      margin-bottom: 15px;
    }
  
    .ditch-the-office p {
      margin-bottom: 25px;
    }
  
    /* team reviews */
    .team-review-slider-wrapper h6 {
      font-size: 16px;
    }
  
    .team-review-slider-wrapper p {
      margin-bottom: 30px;
    }
  
    /* thareja team overview */
  
    .thareja-team-overview .section-thum {
      width: 100%;
    }
  
    .thareja-team-overview img {
      max-width: 400px;
      width: 100%;
      margin: 0 auto;
      display: block;
    }
  
    .thareja-team-overview h3.content-title {
      margin-bottom: 35px;
    }
  
    /* thareja team overview */
    .thareja-team-overview .section-body {
      padding: 50px 0;
    }
  
    /* frequently asked questions */
    .careers-page-accordion .top-heading {
      padding-bottom: 40px;
    }
  
    /* FAQ */
  
    .careers-page-accordion .spam-warning {
      font-size: 16px;
    }
    /* .careers-page-accordion h5, */
  
    .careers-page-accordion .warning-text {
      font-size: 16px;
    }
  
    /* employee productivity page */
    .employee-productivity-page .component-item {
      width: 100%;
    }
  
    .hybrid-team-page .component-box-item {
      grid-template-columns: repeat(auto-fill, minmax(298px, 1fr));
    }
  
    .field-service-page.widget-container .component-box-item:nth-child(1),
    .field-service-page.widget-container .component-box-item:nth-child(2),
    .field-service-page.widget-container .component-box-item:nth-child(3),
    .field-service-page.widget-container .component-box-item:nth-child(4),
    .field-service-page.widget-container .component-box-item:nth-child(5) {
      max-width: 999px;
      flex-wrap: nowrap;
      width: 100%;
    }
  
    /* fully remote page */
    .fully-remote-page p.section-des {
      font-size: 18px;
    }
  
    .customize-experience .profitable-item {
      gap: 20px;
    }
  
    .transparent-remote-team.profitable-wrap h2 {
      font-size: 32px;
    }
  
    .transparent-remote-team.profitable-wrap p {
      font-size: 18px;
    }
  
    .cta-inner h3 {
      font-size: 32px;
    }
  
    .cta-inner p {
      font-size: 18px;
    }
  
    .common-item .cta-wrap {
      margin-top: 20px;
    }
  
    .agile-project-management .text-anim {
      font-size: 32px;
      text-align: center;
    }
  
    .productivity-with-remote-workforce .img-text {
      flex-wrap: nowrap;
    }
  
    .home-page .why-choose-us-wrap .top-text h2:last-of-type {
      margin-bottom: 25px;
      margin-top: 25px;
    }
  
    .home-page .why-choose-us-wrap .top-text h2.last {
      margin-top: 0px;
    }
  
    .home-page .why-choose-us-wrap .top-text h4:last-of-type {
      font-size: 18px;
      line-height: normal;
    }
  
    .home-page .why-choose-us-wrap h5 {
      font-size: 27px;
    }
  
    .home-page .how-thareja-ai-works .index {
      font-size: 50px;
    }
  
    .home-page .how-thareja-ai-works h4 {
      font-size: 22px;
    }
  
    .home-page .how-thareja-ai-works .top-text {
      margin-bottom: 30px;
    }
  
    .home-page-2 .how-thareja-ai-works {
      margin-top: 0 !important;
    }
  
    .home-page-2 .how-thareja-ai-works .section-details {
      margin-top: 30px;
    }
  
    .home-page-2 .how-thareja-ai-works .contents {
      width: 100%;
    }
    .home-page-2 .how-thareja-ai-works .section-thum {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
    }
  
    .home-page-2 .how-thareja-ai-works .top-text {
      margin-bottom: 20px;
    }
  
    .home-page-2 .how-thareja-ai-works .bottom-spaching {
      margin-bottom: 20px;
    }
  
    .home-page-2 .how-thareja-ai-works .indexing {
      max-width: 40px;
    }
  
    .home-page-2 .how-thareja-ai-works .round-indexing {
      width: 40px;
      height: 40px;
      font-size: 20px;
    }
  
    .home-page-2 .how-thareja-ai-works .vertical-line {
      border-left: 2px solid #000000;
      min-height: 6px;
    }
  
    .home-page-2 .how-thareja-ai-works .get-started-cta {
      margin-top: 40px;
    }
  
    /* ends */
  }
  
  /* 
                          ==== ======== ===== =====
                          */
  /*		Mobile layout upto 460px.
                          -----------------------------------------------------------------
                          */
  
  @media only screen and (max-width: 460px) {
    /* home page */
    .home-page .hero-content h1 {
      line-height: 123%;
      font-size: 50px;
    }
    .home-page .hero-content h2 {
      line-height: 123%;
      font-size: 50px;
    }
  
    .home-page .tab-wrap .rounded-bg {
      clip-path: ellipse(195% 62% at 50% 38%);
    }
  
    .home-page .tab-wrap .button-nav li {
      width: auto;
      height: auto;
      max-width: 85px;
      margin-top: 0;
    }
  
    .home-page .tab-wrap .button-nav {
      gap: 22px;
    }
  
    .home-page .tab-wrap .button-nav li:hover,
    .home-page .tab-wrap .button-nav li.tab-active {
      margin-top: -6px;
    }
  
    .home-page .tab-wrap .button-nav li .home-tab-icon.inactive {
      width: 79px;
      height: 79px;
    }
  
    .home-page .tab-wrap .button-nav li .home-tab-icon.active {
      width: 85px;
      height: 85px;
    }
  
    /* reviws page */
    .review-video-wrapper .video-container {
      max-height: 300px;
    }
    /* customer stories page  */
  
    .video-thum-container .video-play-btn {
      width: 50px;
      height: 50px;
    }
  
    .customer-stories-page .common-wrap {
      padding: 0 16px;
    }
  
    .page-hero-video-thum-inner {
      height: 300px;
    }
  
    .page-hero-des {
      font-size: 16px;
      line-height: 30px;
    }
  
    .oneims-wrapper {
      padding: 50px 0;
    }
  
    .oneims-content .details h4 {
      font-size: 22px;
      margin: 15px 0;
    }
  
    .one-on-one-content .details h4 {
      font-size: 22px;
    }
  
    .case-study-card .content {
      padding: 20px;
    }
  
    .case-study-card .content h4 {
      font-size: 20px;
      margin: 10px 0;
    }
  
    .company-feedback-wrapper {
      margin-top: 70px;
    }
  
    .company-feedback-wrapper .company-name {
      font-size: 18px;
    }
  
    .company-feedback-wrapper .role {
      margin-bottom: 40px;
      font-size: 18px;
    }
  
    .get-1-on-1-help-wrapper {
      padding-top: 60px;
      padding-bottom: 110px;
      margin-top: 70px;
    }
  
    .one-on-one-content .details {
      padding: 20px;
      padding-top: 35px;
    }
  
    .case-studies-wrapper.bottom {
      padding-bottom: 50px;
    }
  
    /* partners page style starts */
    .partners-page .page-hero-title {
      font-size: 27px;
    }
  
    .page-section h2.section-title {
      font-size: 32px;
    }
  
    .page-section h3.section-title {
      font-size: 27px;
    }
    .page-section h3.content-title {
      font-size: 22px;
    }
  
    .reasons-to-become-partners {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
    }
  
    .reasons-to-become-partners .card {
      padding: 20px;
    }
  
    .reasons-to-become-partners .card img {
      width: 50px;
      height: auto;
    }
  
    .partners-program .bottom-space {
      margin-bottom: 45px;
    }
  
    .partners-program .section-thum {
      width: 80%;
      max-width: 350px;
    }
  
    /* reviews page style starts */
    .reviews-widget-container .widget {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .review-video-wrapper .review-content-inner {
      padding: 20px;
    }
  
    .review-video-wrapper .review-content-inner h4 {
      font-size: 16px;
      font-weight: 500;
    }
  
    .review-video-wrapper .polygon-svg {
      position: absolute;
      left: 20px;
      bottom: -25px;
      z-index: -1;
      filter: drop-shadow(0px 1px 8px rgba(0, 0, 0, 0.06));
    }
  
    .review-video-wrapper .author-info {
      padding-left: 20px;
    }
  
    .review-video-wrapper .author-info img {
      max-width: 50px;
    }
  
    .review-video-wrapper h4 {
      font-size: 18px;
    }
  
    .review-video-wrapper h5 {
      font-size: 16px;
    }
  
    .review-video-wrapper .name {
      font-weight: 600;
    }
  
    /* careers page style starts */
    .about-thareja .section-thum {
      width: 100%;
      margin-inline: auto;
    }
  
    .about-thareja h3 {
      margin-bottom: 15px;
    }
  
    .ditch-the-office .section-thum {
      width: 100%;
      max-width: 100%;
    }
  
    /* team reviews */
    .team-review-slider-wrapper p {
      margin-bottom: 25px;
    }
  
    /* thareja team overview */
    .thareja-team-overview .section-body {
      padding: 40px 0;
    }
  
    .hybrid-team-page .component-box-item {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  
    .our-top-clients-and-companies .case-studies {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  
    .where-metrics-meet-morals .contents ul {
      font-size: 18px;
      line-height: 140%;
    }
  
    .home-page .home-section-title {
      font-size: 50px;
      line-height: 115%;
    }
    .home-page .home-section-subtitle {
      font-size: 32px;
    }
  
    .home-page .thareja-working-process .working-process-card {
      width: 100%;
      max-width: 100%;
      min-width: 240px;
    }
  
    .home-page .how-thareja-ai-works h4 {
      margin: 10px 0;
    }
  }
  

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

.ai-price .save-big .left-box {
  width: 100%; 
}
.ai-price .img-card-items {
  
  width: 100%; margin-top: 50px;
}
.main-logo a img {
    width: 60%;
}
}











  /* element.style {
        clip-path: ellipse(71% 59% at 50% 41%);
    } */
  



    /*******************
    Video player styles
    *************/

    .video-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
      z-index: 1000;
  }
  
  .video-container {
      position: relative;
      width: 80%;
      max-width: 800px;
  }
  
  .video-container iframe {
      width: 100%;
      height: 450px;
  }
  
  .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      color: white;
      cursor: pointer;
  }
  
  .menu-container{ padding-top:5px ;}
  .subnav-back-btn{
    display: none;
    position:absolute; 
    right:20px;
    z-index: 95;
    color: #005aff;
    margin-top:-40px;
  }

  .light-text span{ color: #ffffff; -webkit-text-fill-color: white}