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

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/MuseoSans-300.woff2') format('woff2'),
    url('../fonts/MuseoSans-300.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/MuseoSans-700.woff2') format('woff2'),
    url('../fonts/MuseoSans-700.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('../fonts/NeueHaasDisplay-Bold.woff2') format('woff2'),
    url('../fonts/NeueHaasDisplay-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


:root {
  --color-orange: #f99b1c;
  --color-black: #393939;
  --body-color: #4d4d4d;
  --high-color: #f69937;
  --ct-green: #1fa464;
  --body-font: 'Museo Sans';
  --heading-font: 'Neue Haas Grotesk Display Pro';
}

body {
  font-family: 'Museo Sans', Arial;
  font-weight: 300;
  font-size: 16px;
  color: var(--body-color)
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Neue Haas Grotesk Display Pro', Arial;
}

* {
  transition: all 0.1s
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1380px;
  }
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: none;
}

/* header */
.header-top {
  padding: 20px 0;
  border-top: 4px solid var(--color-orange)
}

.logo {
  max-width: 470px;
}

.header-nav-top {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
  align-items: center
}

.header-nav-top li {
  list-style: none;
}

.header-nav-top li a {
  font-weight: 600;
  text-decoration: none;
  color: #393939;
  font-size: 18px;
  padding: 0 12px;
}

.header-nav-top li a:hover {
  color: var(--color-orange)
}

.header-nav-top li a.btn-getstart,
.btn-getstart {
  background: #000;
  color: #fff;
  border-radius: 0;
  padding: 6px 30px;
  margin-left: 20px;
  font-weight: 600
}

.header-nav-top li a.btn-getstart svg,
.btn-getstart svg {
  fill: #fff;
  margin-left: 10px;
  transition: all 0s;
}

.header-nav-top li a.btn-getstart:hover,
.btn-getstart:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000
}

.header-nav-top li a.btn-getstart:hover svg,
.btn-getstart:hover svg {
  fill: #000;
  transition: all 0s;
}

.header-bottom {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}


.header-search {
  max-width: 160px;
  margin-left: 10px;
}

form.searchbox-new {
  display: flex;
  align-items: center;
  position: relative;
}

.header-search input.searchbox-input {
  padding-left: 0;
  color: #616161;
  font-weight: 400;
  font-size: 17px;
  padding-right: 30px;
  height: 28px;
  display: none;
}

.header-search .searchbox-new.show_searchbox input.searchbox-input {
  display: block;
  position: absolute;
  width: 200px;
  top: 67px;
  padding: 22px 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  z-index: 9;
  left: -144px;
}

.header-search input.searchbox-submit {
  background: transparent !important;
  display: none;
}

span.search-icon {
  border: 1px solid #c7c7c7;
  border-radius: 8px;
  height: 51px;
  width: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9;
}

form.searchbox-new.show_searchbox:before {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  border-right: 1px solid #c7c7c7;
  border-top: 1px solid #c7c7c7;
  width: 10px;
  height: 10px;
  transform: translate(-50%, 0) rotate(-45deg);
  bottom: -20px;
  background: #ffffff;
  z-index: 99;
}

#main-menu .navbar-nav .nav-item {
  margin: 0 10px;
}

#main-menu .navbar-nav .nav-item .nav-link {
  color: var(--color-green);
  font-weight: 600
}

#main-menu .navbar-nav .nav-item .nav-link.active {
  color: var(--color-orange)
}

#main-menu .navbar-nav .nav-link.contact-link {
  display: flex;
  position: relative
}

#main-menu .navbar-nav .nav-link.contact-link:after {
  content: "";
  position: absolute;
  right: 20px;
  width: 60%;
  height: 100%;
  background: var(--color-lgreen);
  z-index: -1;
  top: auto;
  bottom: 0;
}

#main-menu .navbar-nav .nav-link span {
  margin-left: 30px;
}

.cta-button-wrap {
  color: var(--color-orange);
  line-height: 0;
  display: flex;
  align-items: center
}

.cta-button-wrap a {
  color: var(--color-orange);
  text-decoration: none;
  font-size: 25px;
  font-family: var(--heading-font)
}

.cta-button-wrap a svg {
  fill: var(--color-orange);
  margin-right: 5px;
}

.cta-button-wrap a span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
}

.navbar .megamenu {
  padding: 1rem;
}

/* ============ desktop view ============ */



.mar-auto {
  margin: auto;
}

.font-45 {
  font-size: 45px !important;
}

@media all and (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu.megamenu {
    position: fixed;
    width: 100%;
    display: flex;
    left: 0;
    top: 152px;
    border-radius: 0;
    border: 0 none;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: 0px;
    border-top: 1px solid #eeee;
    z-index: 120;
    opacity: 0;
    transform: translateY(900px);
    transition: transform 0 cubic-bezier(0, 0, 0, 1.26);
    padding: 20px 0;
    box-shadow: 0 17px 20px rgba(0, 0, 0, 0.1);
    min-height: 170px;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu.megamenu.show {
    opacity: 1;
    transform: translateY(-1px);
  }

}


.navbar-expand-lg .navbar-nav .dropdown-menu.megamenu:before {
  content: "";
  position: absolute;
  height: 100%;
  left: -100%;
  width: 100%;
  background: #fff;
  top: 0px;
  border-top: 1px solid #eee;
}

.navbar-expand-lg .navbar-nav .dropdown-menu.megamenu:after {
  content: "";
  position: absolute;
  height: 100%;
  right: -100%;
  width: 100%;
  background: #fff;
  top: 0px;
  border-top: 1px solid #eee;
}

/* ============ desktop view .end// ============ */
.header__dropdown--list li .header__dropdown--item div img {
  position: absolute;
  left: 22px;
  top: 22px;
}

.col-megamenu {
  display: flex;
  flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
}

.header__dropdown--list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 50%;
}

.header__list li {
  width: auto;
}

.header__dropdown--item {
  border-radius: 1rem;
  padding: 0.5rem 1rem;
}

.header__dropdown--item div {
  padding-left: 2rem;
  padding-right: .5rem;
  position: relative;
}

.header__dropdown--list a {
  text-decoration: none;
}

.header__dropdown--item div h5 {
  color: rgb(2 15 28/1);
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.header__dropdown--item div p {
  color: #4c4c4c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25rem;
  min-height: 2rem;
  margin: 0;
}

.header__dropdown--item-source {
  background-color: rgb(255 243 255/1);
  border-radius: 1rem;
  padding: 1rem;
}

.header__dropdown--list li .header__dropdown--item div {
  border-radius: 1rem;
  padding: 14px 20px 20px 70px;
  transition: all 0.5s
}

.header__dropdown--list li.active .header__dropdown--item div,
.header__dropdown--list li:hover .header__dropdown--item div {
  background-color: #edf8f6;
}

.mega--buttons ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.mega--buttons ul li {
  list-style: none;
}

.mega--button {
  border-radius: 1rem;
  cursor: pointer;
}

.mega--button p {
  margin: 0;
  padding: 0
}

.mega--button:first-child {
  --tw-bg-opacity: 1;
  background-color: #fff1e0;
  border-color: transparent;
  border-width: 1px;
  margin-bottom: 20px;
}

.mega--button:nth-child(2) {
  --tw-bg-opacity: 1;
  background-color: #d9fdf8;
  border-color: transparent;
  border-width: 1px;
  margin-bottom: 20px;
}

.mega--button:nth-child(3) {
  --tw-bg-opacity: 1;
  background-color: #e4eaf3;
  border-color: transparent;
  border-width: 1px;
}

.mega--button--wrap img {
  position: absolute;
  left: 24px;
  top: 20px;
}

.mega--button--wrap {
  position: relative;
}

.mega--button--wrap {
  padding: 1rem 1rem 1rem 6rem;
}

.col-megamenu-buttons {
  padding-left: 40px;
  border-left: 1px solid #eee;
}

.col-megamenu-buttons h4 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.mega--button h5 {
  font-family: var(--body-font);
  font-size: 22px;
  font-weight: 600;
}

.mega--button h5+p {
  font-size: 14px;
  line-height: 22px;
}

#main-menu .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

#main-menu .dropdown-toggle:after {
  border: 0 none;
  content: "+";
  vertical-align: bottom;
}

.msub-menu {
  margin: 0;
  padding: 0;
}

.msub-menu li a {
  text-decoration: none;
  color: #393939;
  font-size: 14px;
  font-weight: normal
}

.msub-menu li:hover a {
  color: var(--color-orange)
}

.msub-menu li {
  list-style: none;
  margin-bottom: 5px;
}

/* home banner */
.home-banner {
  padding-top: 60px;
  padding-bottom: 100px;
}

.ban-caption {
  font-size: 26px;
  color: #a2a2a2;
  font-weight: normal;
  text-align: center;
  margin-bottom: 30px;
}

.ban-title {
  font-size: 70px;
  line-height: 74px;
  text-align: center;
  margin-bottom: 15px;
  color: #393939
}

.ban-subtitle {
  font-size: 33px;
  text-align: center;
  color: #4d4d4d;
  line-height: 40px;
}

.ban-feature-list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center
}

.ban-feature-list li {
  list-style: none;
  margin: 55px 30px 0 30px;
  font-size: 20px;
  color: #393939;
  position: relative;
  padding-left: 45px;
}

.ban-feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/icon-cross-1.png) no-repeat 0 0;
  width: 30px;
  height: 30px;
}

.ban-feature-list span {
  font-weight: 600
}


.home-content-wrapper {
  overflow: hidden
}

/* credential banner */
.credential-banner {
  position: relative
}

.credential-banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #efefef;
  width: 100%;
  height: 100%;
  z-index: -1
}

.credential-iconbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0
}

.credential-iconbox .cr-icon {
  text-align: center;
  margin-bottom: 15px;
}

.credential-iconbox .cr-title {
  font-size: 28px;
  font-weight: 600;
  color: #393939;
  line-height: 24px;
}

.credential-iconbox .cr-desc {
  font-size: 18px;
  font-weight: normal
}

.clienteles {
  position: absolute;
  /*background: #fff;  border: 1px solid #eeeeee;*/
  width: 100%;
  height: 108%;
  top: -12px;
  z-index: 0;
  /*box-shadow: -10px 20px 20px 0 rgba(0,0,0,0.07);*/
}

.clienteles:before {
  content: " ";
  position: absolute;
  display: block;
  width: 1000%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: #fff;
  transform-origin: bottom left;
  -ms-transform: skew(-30deg, 0deg);
  -webkit-transform: skew(-30deg, 0deg);
  transform: skew(-30deg, 0deg);
  border-left: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  box-shadow: -10px 30px 70px 0 rgba(0, 0, 0, 0.07);
}

.zindex99 {
  z-index: 99
}

.credential-iconbox.trusted-clients {
  margin-left: 80px;
}

/* popular coding */

.section-title {
  font-size: 45px;
  color: #393939;
  margin-bottom: 80px;
  text-align: center
}

.popular-coding {
  padding: 100px 0;
}

.popular-coding .accordion-collapse {
  border: 0;
}

.popular-coding .accordion-button {
  padding: 0px;
  font-weight: bold;
  border: 0;
  font-size: 18px;
  color: #333333;
  text-align: left;
  border-bottom: 0 none;
}

.popular-coding .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.popular-coding .accordion-button {
  font-family: var(--body-font);
  font-size: 22px;
  position: relative;
  padding-left: 40px;
}

.popular-coding .accordion-button:not(.collapsed) {
  background: none;
  color: var(--color-orange);
}

.popular-coding .accordion-body {
  padding: 0;
  background-color: #fff;
  padding-top: 15px;
}

.popular-coding .accordion-button::after {
  width: auto;
  height: auto;
  content: "+";
  font-size: 30px;
  background-image: none;
  font-weight: 100;
  color: #fff;
  transform: translateY(0px);
  background: #faa533;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 8px;
}

.popular-coding .accordion-button:not(.collapsed)::after {
  width: 36px;
  height: 36px;
  background-image: none;
  content: "-";
  font-size: 48px;
  transform: translate(-5px, -4px);
  transform: rotate(0deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

#popularcat .accordion-item {
  border-bottom: 0 none;
  /*border: 1px dashed #6e6e6e;*/
  padding: 20px 12px 20px 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23333' stroke-width='2' stroke-dasharray='8' stroke-dashoffset='8' stroke-linecap='round'/%3e%3c/svg%3e");
  border-radius: 10px;
}

#popularcat .accordion-item.active {
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23F99B1CFF' stroke-width='2' stroke-dasharray='8' stroke-dashoffset='8' stroke-linecap='round'/%3e%3c/svg%3e");
  border-radius: 10px;
}

.popular-coding .accordion-body {
  padding: 0;
  background-color: #fff;
  border: 0 none;
  margin-top: 20px;
}

.popular-coding .accordion-button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  transform: rotate(45deg);
  height: 28px;
  width: 12px;
  border-bottom: 3px solid #4d4d4d;
  border-right: 3px solid #4d4d4d;
}

#popularcat .accordion-item.active .accordion-button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  transform: rotate(45deg);
  height: 28px;
  width: 12px;
  border-bottom: 3px solid var(--color-orange);
  border-right: 3px solid var(--color-orange);
}

.pc-Categories {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.pc-Categories li {
  list-style: none;
  width: 50%;
  padding: 5px 0 5px 15px;
  border-left: 2px solid #dadada;
}

.pc-Categories li a {
  text-decoration: none;
  font-weight: 600;
  color: #4d4d4d;
  font-size: 14px;
}

.pc-Categories li:hover {
  border-left: 3px solid var(--color-orange);
}

.talent-cloud-lists {
  margin: 0;
  padding: 0;
  display: flex
}

.talent-cloud-lists li {
  list-style: none;
  width: 20%;
}

.tc-wrap {
  position: relative
}

.tc-wrap .tc-image {
  border-radius: 50%;
  overflow: hidden;
  max-width: 200px;
  height: 200px;
  margin-bottom: 30px;
  border: 6px solid #fff
}

.tc-wrap .tc-name {
  font-family: var(--heading-font);
  font-size: 18px;
  color: #393939;
  margin-bottom: 10px;
  margin-left: 50px;
}

.tc-wrap .tc-desig {
  color: #393939;
  font-weight: 300;
  font-size: 16px;
  margin-left: 50px;
  padding-left: 26px;
  position: relative
}

.tc-wrap .tc-desig:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url(../images/icon-code.png) no-repeat 0 0
}

.tc-wrap .tc-Certified {
  color: #1fa464;
  font-size: 15px;
  margin-left: 50px;
  position: relative;
  padding-left: 26px;
  padding-top: 2px;
}

.tc-wrap .tc-Certified:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url(../images/icon-certified.png) no-repeat 0 0
}

.tc-wrap .tc-expertise {
  font-size: 15px;
  margin-top: 15px;
  margin-left: 50px;
  margin-bottom: 5px;
}

.tc-wrap .expertise-list {
  margin-left: 50px;
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}

.tc-wrap .expertise-list li {
  list-style: none;
  margin-right: 15px;
  width: auto;
}

.tc-wrap .tc-experience {
  font-size: 15px;
  margin-top: 15px;
  margin-left: 50px;
}

.tc-line {
  position: absolute;
  left: 30px;
  top: 230px;
  width: 1px;
  height: 200px;
  background: #393939;
  z-index: 99
}

.tc-bg {
  position: relative;
  padding-bottom: 60px;
}

.tc-bg:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
  background: #f3f4f5;
}

.w-97 {
  width: 97% !important;
}

/* benefits */
.sec-benefits {
  padding: 100px 0
}

.caption-title {}

.table.table-pricing {}

.table.table-pricing tr th {
  font-size: 30px;
  font-weight: 300;
  text-align: center
}

.table.table-pricing tr th:nth-child(1) {
  color: #4d4d4d
}

.table.table-pricing tr th:nth-child(2) {
  color: #393939
}

.table.table-pricing tr th:nth-child(2) {
  color: var(--color-orange)
}

.table.table-pricing tr th,
.table.table-pricing tr td {
  padding: 15px 50px;
  vertical-align: middle
}

.table.table-pricing tr td .tbl-benefits {
  font-size: 22px;
  color: #393939;
  line-height: 24px;
}

.table.table-pricing tr td .tbl-benefits span {
  display: block;
  font-style: italic;
  font-size: 14px;
}

.table.table-pricing tr td:nth-child(2),
.table.table-pricing tr td:nth-child(3) {
  text-align: center
}

.table.table-pricing tr td {
  color: #474747
}

.table.table-pricing.table-striped>tbody>tr:nth-of-type(2n+1)>* {
  --bs-table-bg-type: #f3f6fa;
}


/* case study */
.case-testimonial {
  padding: 0 0 100px;
  position: relative
}

.sec-bg {
  position: absolute;
  left: 0;
  bottom: 100px;
  z-index: -1
}

.case-testimonial .section-title {
  margin-bottom: 20px;
}

.case-testimonial .casestudy-wrap h3 {
  font-family: var(--body-font);
  font-size: 30px;
  line-height: 38px;
  color: #393939
}

/* testimonial */
.testim-line {
  width: 170px;
  height: 1px;
  background: #d9d9d9;
  margin-bottom: 30px;
  margin-top: 20px;
}

.testim-info {
  position: relative;
  padding-left: 90px;
}

.testim-fig {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  border-radius: 50%;
}

.testim-info {
  margin-top: 70px;
}

.testimonial-wrap {
  margin-left: 80px;
  border: 1px solid #393939;
  border-radius: 30px;
  padding: 60px 50px;
  margin-top: 130px;
  position: relative
}

.tarrow-top,
.tarrow-left {
  position: absolute;
}

.tarrow-left {
  bottom: 32%;
  left: -74px;
}

.tarrow-top {
  top: -130px;
  left: 44%;
}

.testim-desc {
  font-size: 18px;
  line-height: 26px;
  color: #393939;
}

.testim-client {
  font-size: 22px;
  font-weight: normal;
  line-height: 25px;
  color: #012b43
}

/* howit-works */
.howit-works {
  padding: 40px 0 60px;
  color: #393939
}

.process-howit-works {
  margin: 0;
  padding: 0;
  display: flex;
}

.process-howit-works li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 20%;
  text-align: center;
  padding: 0 15px;
}

.process-img {
  margin-bottom: 30px;
  position: relative;
}

.process-img:after {
  content: "";
  position: absolute;
  right: -168px;
  top: 32px;
  background: url(../images/step-arrow.png) no-repeat;
  width: 100%;
  width: 168px;
  height: 29px;
}

.process-wrap .h5 {
  margin-bottom: 15px;
  font-family: var(--body-font);
  font-weight: 400;
  position: relative;
  text-align: left;
  padding-left: 20px;
}

.process-wrap .h5::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--color-orange);
  border-radius: 50%;
}

.process-howit-works li:last-child .process-img:after {
  display: none;
}

.process-wrap {
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.process-howit-works .slick-prev,
.process-howit-works .slick-next {
  background: #444;
  padding: 10px;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  top: 25%;
  z-index: 100
}

/* footer */
.footer-cta-inner {
  padding: 60px;
  border-radius: 30px;
  border: 1px solid #dbdbdb;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  background: #fff
}

footer {
  background: #393939;
  margin-top: 0;
  padding-bottom: 60px;
  margin-top: 150px;
}

.footer-cta {
  position: relative;
  top: -150px;
}

.footer-middle {
  margin-top: -50px;
}

.footer-cta-inner .btn-getstart {
  background: var(--color-orange) !important;
  color: #393939;
  font-size: 20px;
}

.footer-cta-inner .btn-getstart svg {
  fill: #393939
}

.footer-cta-inner .button-wrap {
  text-align: center
}

.footer-menu-header {
  font-weight: 600;
  color: #fff;
  font-size: 18px;
  border-bottom: 1px solid #848484;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 12px;
}

.footer-links li a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

.ft-address {
  color: #fff;
  font-size: 15px;
  margin-bottom: 22px;
}

.ft-address strong {
  padding-bottom: 10px;
  display: block;
  font-weight: 600;
}

.ft-phone {
  margin-bottom: 10px;
}

.ft-phone a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.ft-email a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.title-cust {
  margin-bottom: 0px !important;
}

.certificates {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #848484;
  padding-top: 30px;
  margin-top: 30px;
}

.certificates li {
  list-style: none;
  padding: 10px;
}

.footer-copyright {
  border-top: 1px solid #1a1a1a;
  margin-top: 40px;
  padding-top: 40px;
}

.text-copyright {
  color: #fff;
  font-size: 14px;
  margin-top: 6px;
}

.text-copyright span {
  color: rgba(255, 255, 255, 0.7)
}

.sm-links {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
}

.sm-links li {
  list-style: none;
  margin: 0 5px;
}

.sm-links li a {
  display: flex;
  width: 48px;
  height: 48px;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.sm-links svg {
  fill: #fff
}

.sm-links li:first-child:hover a {
  border-color: #0274b3
}

.sm-links li:first-child:hover a svg {
  fill: #0274b3
}

.sm-links li:nth-child(2):hover a {
  border-color: #fff
}

.sm-links li:nth-child(2):hover a svg {
  fill: #b5b5b5
}

.sm-links li:nth-child(3):hover a {
  border-color: #4267b2
}

.sm-links li:nth-child(3):hover a svg {
  fill: #4267b2
}

.sm-links li:nth-child(4):hover a {
  border-color: #891ce7
}

.sm-links li:nth-child(4):hover a svg {
  fill: #891ce7
}

.sm-links li:nth-child(5):hover a {
  border-color: #e60000
}

.sm-links li:nth-child(5):hover a svg {
  fill: #e60000
}


.cp-links {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: end;
}

.cp-links li {
  list-style: none;
  margin-left: 20px;
  position: relative
}

.cp-links li:first-child:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 10px;
  width: 1px;
  height: 8px;
  background: #fff
}

.cp-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.cp-links li a:hover {
  color: var(--color-orange)
}

.talent-slider .slick-prev,
.talent-slider .slick-next {
  background: rgba(0, 0, 0, 0.9);
  width: 38px;
  height: 38px;
}

button:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

.slider.client-slider {
  position: relative;
  z-index: 999;
}

.text-left {
  text-align: left !important
}

/* services pages */

.home-banner.inner-banner h1.ban-title {
  font-size: 58px;
  line-height: 62px;
}

.home-banner.inner-banner h1.ban-title span {
  color: var(--high-color)
}


.home-banner.inner-banner {
  background: url(../images/inner-banner-bg.jpg) no-repeat 0 0;
  background-size: cover;
}

.home-banner.inner-banner h2.ban-title {
  font-size: 58px;
  line-height: 62px;
}

.home-banner.inner-banner h2.ban-title span {
  color: var(--high-color)
}

.home-banner.inner-banner div.ban-title {
  font-size: 58px;
  line-height: 62px;
}

.home-banner.inner-banner div.ban-title span {
  color: var(--high-color)
}

.home-banner.inner-banner .ban-subtitle {
  font-size: 18px;
  line-height: 24px;
}

.home-banner.inner-banner .btn-getstart {
  font-weight: 700;
  font-size: 18px;
}

.inner-sub-title {
  font-size: 18px;
  line-height: 32px;
}

div.ban-title {
  font-family: 'Neue Haas Grotesk Display Pro', Arial;
}

.srcv-intro-list {}

/* service intro section */

.pt100 {
  padding-top: 60px;
}

/* .pt100{padding-top:100px;} */
.pb100 {
  padding-bottom: 100px;
}

.service-intro {
  padding: 40px 0 60px;
  position: relative;
}

.srvc-introline {
  border: 1px solid var(--color-orange)
}

.service-inner .section-title {
  margin-bottom: 40px;
}

.service-inner .section-title span {
  color: var(--high-color)
}

.srcv-intro-list {
  display: flex;
  flex-wrap: wrap;
}

.srcv-intro-list li {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  color: #393939;
  line-height: 30px;
  margin-bottom: 26px;
  flex: 0 0 50%;
  padding-right: 70px;
}

.srcv-intro-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 23px;
  height: 23px;
  background: url(../images/srcv-intro-check.png) no-repeat 0 0;
  background-size: cover;
}

.semi-circle {
  width: 10rem;
  height: 18rem;
  background-color: #f7f7f7;
  border-radius: 0 10rem 10rem 0;
  position: absolute;
  left: -70px;
  top: 30%;
  z-index: -1
}


.service-credential {
  padding: 40px 0 275px;
  background: #f8f8f8;
}

.service-inner .section-title div {
  font-size: 30px;
}

.srvc-inner-credential {
  display: flex;
  flex-wrap: wrap;
}

.srvc-inner-credential li {
  flex: 0 0 50%;
  padding: 15px 15px;
}

.sic-wrap {
  background: #fff;
  padding: 20px 40px;
  border-bottom: 2px solid var(--color-orange);
  border-radius: 10px;
  min-height: 220px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center
}

.ic-header {
  font-size: 48px;
  font-weight: 500;
  color: #393939;
  text-align: center;
  line-height: 48px;
}

.ic-body {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  line-height: 20px;
}

.sic-dots {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0
}

.service-credential .container {
  position: relative;
  z-index: 99
}

.service-middle-cta {
  margin-top: -200px;
  position: relative;
}

.inner-middle-cta {
  background: url(../images/srvc-inner-cta-bg.jpg) no-repeat 0 0;
  background-size: cover;
  border-radius: 20px;
  padding: 50px;
}

.inner-middle-contact {
  background: #f3f4f5;
  border-radius: 20px;
  padding: 50px;
}

.btn-cta-white {
  background: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 6px 30px;
  font-weight: 600;
  font-size: 18px;
}

.btn-cta-white svg {
  fill: #fff;
  margin-left: 10px;
}

.btn-cta-white:hover {
  border-color: var(--color-orange);
  color: var(--color-orange)
}

.btn-cta-white:hover svg {
  fill: var(--color-orange)
}


/* service engagement modal */
.service-engagement-modal {
  padding: 80px 0 60px;
}

.engagement-model-box {
  padding: 30px 15px;
  border: 1px dashed #393939;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #393939;
  margin: 0 20px;
  border-radius: 15px;
  min-height: 210px;
}

.engagement-model-box img {
  margin-bottom: 15px;
}

.engagement-model-box .engmdl-title {
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}

.engmdl-desc {
  text-align: center;
  line-height: 18px;
  font-size: 17px;
  font-weight: 500;
}

.engagement-model-box .engmdl-title {
  text-align: center
}

.engagementmdl-slider {
  margin-top: 45px;
}

.middle-cta-bg {
  position: absolute;
  top: 140px;
  right: 110px;
  z-index: -1;
  opacity: 0.3;
}

.engagementmdl-slider .slick-prev,
.engagementmdl-slider .slick-next {
  width: 56px;
  height: 56px;
}

.engagementmdl-slider .slick-prev:before {
  content: '';
  background: url(../images/circle-arrow-left.png) no-repeat 0 0 #fff;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: -20px;
}

.engagementmdl-slider .slick-next:before {
  content: '';
  background: url(../images/circle-arrow-right.png) no-repeat 0 0 #fff;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: 20px;
}

.slick-prev:before,
.slick-next:before {
  opacity: 1
}

.bg-grey {
  background: #f8f8f8
}

.process-wrap.inner-srvc-list .h5 {
  text-align: center !important;
  margin-bottom: 5px;
  margin-bottom: 20px;
}

.process-wrap.inner-srvc-list .h5::before {
  left: 50%;
  bottom: -18px !important;
  top: auto;
}

.process-wrap.inner-srvc-list .process-img {
  margin-bottom: 15px;
}

.srvc-case-study {
  padding: 60px 0
}

hr.srvc {
  margin: 2rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 1;
}

.case-list.two-colum {
  display: flex;
  flex-wrap: wrap;
}

.case-list.two-colum li {
  flex: 0 0 50%;
  color: #393939;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 100px;
  line-height: 22px;
  margin-bottom: 40px;
}

.case-list.one-colum {
  display: flex;
  flex-direction: column;
}

.case-list.one-colum li {
  color: #393939;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 100px;
  margin-bottom: 40px;
  line-height: 22px;
}

.case-list.one-colum li .case-list-header,
.case-list.two-colum li .case-list-header {
  font-size: 48px;
  font-family: var(--heading-font);
  position: absolute;
  left: 0;
  top: 0;
  line-height: 48px;
}

.case-list.one-colum li .case-list-header span,
.case-list.two-colum li .case-list-header span {
  font-size: 30px;
}

.srvc-trends-box {
  position: relative;
  background: #f0f0f0;
  padding: 40px 40px 40px 50px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.srvc-trends-box:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 47px;
  height: 47px;
  background: url(../images/icon-bcheck.png) no-repeat 0 0;
}

.srvc-trends-box .trend-title {
  font-size: 18px;
  font-weight: 600;
  color: #393939
}

.why-choose-list1 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

.why-choose-list1 li {
  list-style: none;
  flex: 0 0 50%;
  font-size: 18px;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.why-choose-list1 li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  display: inline-block;
  transform: rotate(45deg);
  height: 13px;
  width: 6px;
  border-bottom: 2px solid #4d4d4d;
  border-right: 2px solid #4d4d4d;
}

.service-whychoose-us-2 {
  padding: 40px 0 60px
}

.srcv-intro-list2 {
  display: flex;
  flex-wrap: wrap;
}

.srcv-intro-list2 li {
  position: relative;
  padding-left: 60px;
  font-size: 16px;
  color: #393939;
  line-height: 26px;
  margin-bottom: 35px;
  flex: 0 0 33.333%;
}

.srcv-intro-list2 li strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600
}

.srcv-intro-list2 li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  background: url(../images/icon-bcheck2.png) no-repeat 0 0;
  background-size: cover;
}

.semi-circle {
  width: 10rem;
  height: 18rem;
  background-color: #f7f7f7;
  border-radius: 0 10rem 10rem 0;
  position: absolute;
  left: -70px;
  top: 30%;
  z-index: -1
}

/* services page */

.service-main-intro {
  padding: 10px 0
}

.srvc-introline.line4 {
  border-width: 2px;
}

.service-main-services {
  background: #f7f7f7;
  padding: 60px 0
}

.services-slider .slick-dots li button:before {
  width: 10px;
  height: 10px;
  content: '';
  background: #949494;
  border-radius: 50%;
  opacity: 1
}

.services-slider .slick-dots li.slick-active button:before {
  background: var(--color-orange);
}

.services-slider .slick-dots li {
  margin: 0
}

.service-model-box {
  padding: 15px 15px 15px 30px;
  background: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  color: #393939;
  margin: 0 10px;
  border-radius: 15px;
  min-height: 180px;
}

.service-model-box:hover {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05)
}

.service-model-box img {
  margin-bottom: 15px;
}

.service-model-box .service-title {
  font-family: 'Museo Sans', Arial;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}

.service-model-box .service-title {
  text-align: center
}

.services-slider {
  margin-top: 45px;
}

.middle-cta-bg {
  position: absolute;
  top: 140px;
  right: 110px;
  z-index: -1;
  opacity: 0.3;
}

.services-slider .slick-prev,
.services-slider .slick-next {
  width: 56px;
  height: 56px;
}

.services-slider .slick-prev:before {
  content: '';
  background: url(../images/sv-arrow-left.png) no-repeat 0 0 transparent;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: 0;
}

.services-slider .slick-next:before {
  content: '';
  background: url(../images/sv-arrow-right.png) no-repeat 0 0 transparent;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: 14px;
}

.services-slider .slick-prev,
.services-slider .slick-next {
  top: auto;
  bottom: 0
}

.w-60 {
  width: 60% !important;
}

.w-55 {
  width: 55% !important;
}

.w-85 {
  width: 85% !important;
}

.w-77 {
  width: 77% !important;
}

@media only screen and (max-width:360px) {
  .cta-button-wrap a {
    font-size: 16px;
  }

  .logo {
    max-width: 320px;
  }

  .w-75 {
    width: 100% !important;
  }

  .w-77 {
    width: 100% !important;
  }

  .w-55 {
    width: 100% !important;
  }

  .w-60 {
    width: 100% !important;
  }

  .w-85 {
    width: 100% !important;
  }

  .srvc-inner-credential li {
    flex: 0 0 100%;
  }

  .footer-menu-header {
    padding-bottom: 0px !important;
    padding-top: 24px;
  }

  .service-intro {
    padding: 40px 0 0px !important;
    position: relative;
  }

  .service-whychoose-us-2 {
    padding: 60px 0 0px;
  }

  .testimonial-wrap {
    margin-top: 30px !important;
  }

  .slick-next {
    right: -10px !important;
  }

  .slick-prev {
    left: -10px !important;
  }

  .services-slider .slick-next:before {
    display: none;
  }

  .services-slider .slick-prev:before {
    display: none;
  }
}

@media only screen and (min-width:361px) and (max-width:414px) {
  .cta-button-wrap a {
    font-size: 16px;
  }

  .logo {
    max-width: 320px;
  }

  .w-75 {
    width: 100% !important;
  }

  .w-77 {
    width: 100% !important;
  }

  .w-60 {
    width: 100% !important;
  }

  .w-55 {
    width: 100% !important;
  }

  .w-85 {
    width: 100% !important;
  }

  .srvc-inner-credential li {
    flex: 0 0 100%;
  }

  .footer-menu-header {
    padding-bottom: 0px !important;
    padding-top: 24px;
  }

  .service-intro {
    padding: 40px 0 0px !important;
    position: relative;
  }

  .service-whychoose-us-2 {
    padding: 60px 0 0px;
  }

  .testimonial-wrap {
    margin-top: 30px !important;
  }

  .slick-next {
    right: -10px !important;
  }

  .slick-prev {
    left: -10px !important;
  }

  .services-slider .slick-next:before {
    display: none;
  }

  .services-slider .slick-prev:before {
    display: none;
  }
}

@media only screen and (max-width:576px) {
  .ban-feature-list {
    flex-direction: column
  }

  .ban-feature-list li:before {
    top: 6px;
  }

  .logo {
    max-width: 320px;
  }

  .w-75 {
    width: 100% !important;
  }

  .w-77 {
    width: 100% !important;
  }

  .w-60 {
    width: 100% !important;
  }

  .w-55 {
    width: 100% !important;
  }

  .w-85 {
    width: 100% !important;
  }

  .srvc-inner-credential li {
    flex: 0 0 100%;
  }

  .footer-menu-header {
    padding-bottom: 0px !important;
    padding-top: 24px;
  }

  .service-intro {
    padding: 40px 0 0px !important;
    position: relative;
  }

  .service-whychoose-us-2 {
    padding: 40px 0 0px;
  }

  .testimonial-wrap {
    margin-top: 30px !important;
  }

  .slick-next {
    right: -10px !important;
  }

  .slick-prev {
    left: -10px !important;
  }

  .services-slider .slick-next:before {
    display: none;
  }

  .services-slider .slick-prev:before {
    display: none;
  }
}

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

  .home-banner.inner-banner div.ban-title span {
    color: #ff8b00;
  }

  .service-inner .section-title span {
    color: #ff8b00;
  }

  .ban-feature-list li {
    font-size: 20px;
  }

  .w-75 {
    width: 100% !important;
  }

  .w-77 {
    width: 100% !important;
  }

  .w-60 {
    width: 100% !important;
  }

  .w-55 {
    width: 100% !important;
  }

  .w-85 {
    width: 100% !important;
  }

  .logo {
    max-width: 320px;
  }

  .srvc-inner-credential li {
    flex: 0 0 100%;
  }

  .footer-menu-header {
    padding-bottom: 0px !important;
    padding-top: 24px;
  }

  .service-intro {
    padding: 40px 0 0px !important;
    position: relative;
  }

  .service-whychoose-us-2 {
    padding: 0 0 0px;
  }

  .testimonial-wrap {
    margin-top: 30px !important;
  }

  .slick-next {
    right: -10px !important;
  }

  .slick-prev {
    left: -10px !important;
  }

  .services-slider .slick-next:before {
    display: none;
  }

  .services-slider .slick-prev:before {
    display: none;
  }
}

@media only screen and (max-width:767px) {
  .w-75 {
    width: 100% !important;
  }

  .w-77 {
    width: 100% !important;
  }

  .w-60 {
    width: 100% !important;
  }

  .w-85 {
    width: 100% !important;
  }

  .w-55 {
    width: 100% !important;
  }


  .header-nav-top li:nth-child(1),
  .header-nav-top li:nth-child(2) {
    display: none;
  }

  .header-nav-top {
    justify-content: center;
  }

  .header-nav-top li a.btn-getstart {
    margin-left: 0;
    width: 100%
  }

  .header-nav-top li:nth-child(3) {
    width: 100%;
    margin-top: 15px;
  }

  div#navbarNav {
    position: absolute;
    top: 57px;
    left: 0;
    z-index: 99;
    background: #fff;
    width: 100%;
    padding: 10px;
    border-bottom: 5px solid var(--color-orange);
  }

  button.navbar-toggler {
    position: absolute;
    right: 0;
    border: 0 none;
    padding: 0;
  }

  .cta-button-wrap a {
    display: flex;
    align-items: center;
  }

  .ban-title {
    font-size: 34px;
    line-height: 40px;
  }

  .ban-subtitle {
    font-size: 24px;
    line-height: 34px;
  }

  .ban-feature-list li {
    margin: 25px 30px 0 30px;
  }

  .clienteles {
    display: none;
  }

  .credential-iconbox.trusted-clients {
    margin-left: 0
  }

  .slider.client-slider {
    background: #fff;
    margin: 20px 0;
    padding: 15px 0
  }

  .section-title,
  .service-inner .section-title {
    font-size: 32px;
  }

  .pc-Categories li {
    width: 100%;
  }

  .talent-slider .slick-next {
    right: 0;
  }

  .talent-slider .slick-prev {
    left: 0;
  }

  .testimonial-wrap {
    margin-left: 0;
  }

  .sec-bg {
    bottom: 0;
  }

  .process-howit-works {
    flex-wrap: wrap;
  }

  .process-howit-works li {
    width: 100%;
    margin-bottom: 30px;
  }

  .process-img:after {
    display: none;
  }

  .certificates {
    flex-wrap: wrap;
  }

  .certificates li {
    width: 33%;
    margin-bottom: 30px;
  }

  .footer-cta .section-title {
    font-size: 22px;
  }

  .footer-cta .section-title br {
    display: none;
  }

  #main-menu .navbar-nav .nav-item:first-child {
    margin-left: 10px;
  }

  .navbar .megamenu {
    padding: 0;
    border: 0;
    border-bottom: 1px solid #393939;
    border-radius: 0;
  }

  #main-menu .navbar-nav .nav-item {
    border-bottom: 1px solid #393939;
  }

  #main-menu .navbar-nav .nav-item:last-child {
    border: 0 none;
  }

  #main-menu .dropdown-toggle:after {
    float: right
  }


  /* services */
  .home-banner.inner-banner h2.ban-title {
    font-size: 34px;
    line-height: 40px;
  }

  .home-banner.inner-banner div.ban-title {
    font-size: 34px;
    line-height: 40px;
  }

  .home-banner.inner-banner {
    background-position: center right;
  }

  .srcv-intro-list li {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .sic-wrap {
    min-height: auto;
  }

  .ic-header {
    font-size: 30px;
  }

  .srvc-inner-credential li {
    width: 100%;
    flex: 0 0 100% !important;
  }

  .inner-middle-cta {
    padding: 50px 20px;
  }

  .service-credential .service-inner .section-title {
    font-size: 28px;
  }

  .process-wrap.inner-srvc-list .h5 {
    font-size: 16px;
  }

  .service-inner .process-howit-works li {
    padding: 0
  }

  .service-inner .process-howit-works .slick-prev {
    left: 0;
    top: 30%;
  }

  .service-inner .process-howit-works .slick-next {
    right: 0;
    top: 30%;
  }

  .service-inner .slick-prev:before,
  .service-inner .slick-next:before {
    opacity: 1;
    color: #393939
  }

  .case-list.two-colum li {
    flex: 0 0 100%;
  }

  .why-choose-list1 li {
    flex: 0 0 100%;
  }

  .why-choose-list1 {
    margin-bottom: 60px;
  }

  .footer-cta-inner {
    padding: 20px;
  }

  .footer-cta-inner .btn-getstart {
    font-size: 16px;
  }

  .howit-works {
    padding: 40px 0 60px;
  }

  .section-title br {
    display: none
  }

  .sic-dots {
    left: -106px;
  }

  .logo {
    max-width: 320px;
  }

  .pt100 {
    padding-top: 0px !important;
  }

  .footer-menu-header {
    padding-bottom: 0px !important;
    padding-top: 24px;
  }

  .slick-next {
    right: -10px !important;
  }

  .slick-prev {
    left: -10px !important;
  }

  .srcv-intro-list2 li {
    flex: 0 0 100% !important;
  }

  .service-intro {
    padding: 40px 0 0px !important;
    position: relative;
  }

  .service-whychoose-us-2 {
    padding: 40px 0 0px;
  }

  .home-banner.inner-banner {
    background: #faefdf;
  }

  .sic-dots {
    display: none;
  }

  .displaynone {
    display: none;
  }

  .testimonial-wrap {
    margin-top: 30px !important;
  }

  .talent-cloud-lists {
    display: block;
  }

  .tc-wrap .tc-image {
    margin-left: 80px;
  }

  .talent-cloud-lists li {
    width: 100%;
  }

  .services-slider .slick-next:before {
    display: none;
  }

  .services-slider .slick-prev:before {
    display: none;
  }
}

@media only screen and (min-width:768px) and (max-width:991px) {
  .header-nav-top li a {
    font-size: 16px;
    padding: 0 8px;
  }

  div#navbarNav {
    position: absolute;
    top: 57px;
    left: 0;
    z-index: 99;
    background: #fff;
    width: 100%;
    padding: 10px;
    border-bottom: 5px solid var(--color-orange);
  }

  button.navbar-toggler {
    position: absolute;
    right: 0;
    border: 0 none;
    padding: 0;
  }

  .cta-button-wrap a {
    display: flex;
    align-items: center;
  }

  .ban-title {
    font-size: 54px;
    line-height: 60px;
  }

  .ban-feature-list li {
    margin: 55px 10px 0 20px;
  }

  .clienteles:before {
    left: -34px;
  }

  .credential-iconbox .cr-title {
    font-size: 22px;
  }

  .credential-iconbox .cr-desc {
    font-size: 14px;
    text-align: center;
    line-height: 18px;
  }

  .popular-coding .accordion-button {
    font-size: 16px;
  }

  .table.table-pricing tr th,
  .table.table-pricing tr td {
    padding: 20px 35px;
  }

  .sec-bg {
    bottom: 0
  }

  .hw-desc {
    font-size: 12px;
  }

  .process-wrap .h5 {
    font-size: 16px;
  }

  .footer-cta-inner .section-title {
    font-size: 28px;
  }

  .sic-dots {
    left: -106px;
  }

  .srcv-intro-list li {
    flex: 0 0 100%;
    padding-right: 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-title br {
    display: none
  }

  .case-list.two-colum li {
    flex: 0 0 100%;
  }

  .srvc-trends-box {
    padding: 40px 30px 30px 50px;
  }

}

@media only screen and (min-width:992px) and (max-width:1199px) {
  .header-nav-top li a {
    font-size: 16px;
    padding: 0 8px;
  }

  div#navbarNav {
    position: absolute;
    top: 57px;
    left: 0;
    z-index: 99;
    background: #fff;
    width: 100%;
    padding: 10px;
    border-bottom: 5px solid var(--color-orange);
  }

  button.navbar-toggler {
    position: absolute;
    right: 0;
    border: 0 none;
    padding: 0;
  }

  .cta-button-wrap a {
    display: flex;
    align-items: center;
  }

  .section-title {
    font-size: 42px;
  }

  .credential-iconbox .cr-title {
    font-size: 22px;
  }

  .credential-iconbox .cr-desc {
    font-size: 14px;
    text-align: center;
    line-height: 18px;
  }

  .sic-dots {
    left: -106px;
  }
}

.srvc-trends-box {
  height: 175px;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .who-we-service .service-box {
    padding: 1.5rem;
  }

  .table-responsive {
    overflow-x: scroll;
  }
}

.grey-bg-radius {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
}

.white-bg-radius {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
}

.table-container {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-section {
  padding: 40px 0 60px;
  background-color: #f8f9fa;
}

.comparison-table {
  text-align: left;
  margin-bottom: 0;
}

.comparison-table th {
  background-color: #f69937;
  color: white;
  position: sticky;
  top: 0;
  /* For sticky header */
  z-index: 1;
}

.comparison-table td,
.comparison-table th {
  vertical-align: middle;
  padding: 20px;
  font-size: 15px;
}

.comparison-table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.comparison-table th[scope="row"] {
  background-color: #f69937;
  font-weight: bold;
}

.key-takeaways-section {
  background-color: #ffffff;
  color: #333;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.icon-primary {
  font-size: 32px;
  color: #0056b3;
}

.icon-accent {
  font-size: 32px;
  color: #ff7b54;
}

.ul-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}

.ul-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 23px;
  height: 23px;
  background: url(../images/srcv-intro-check.png) no-repeat 0 0;
  background-size: cover;
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
  /* Light gray background */
  padding: 4rem 0;
}

.faq-section .accordion-item {
  margin-bottom: 10px;
}

.faq-section .accordion-button {
  font-weight: bold;
  background-color: #f6f6f6;
  /* Inactive/Collapsed tab background */
  border: 1px solid #ddd;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  /* Space between the question text and the icon */
  align-items: center;
  /* Center the content vertically */
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #f69937;
  /* Active tab color */
  border: 1px solid #f69937;
  color: #fff;
}

.faq-section .accordion-body {
  border-left: 1px solid #f69937;
  border-right: 1px solid #f69937;
  border-bottom: 1px solid #f69937;
  padding: 20px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

/* The icon will be placed at the end */
.faq-section .accordion-button::after {
  content: "+";
  font-weight: bold;
  font-size: 1.25rem;
  /* Adjust size */
}

/* Change to '-' when the accordion is expanded */
.faq-section .accordion-button:not(.collapsed)::after {
  content: "-";
  /* Change to minus when tab is active */
}

.key-takeaway-card {
  height: 100%;
}

.key-takeaway-card p,
.benefit-title {
  position: relative;
  padding-left: 50px;
  margin: 0;
}

.benefit-card {
  height: 100%;
}

.benefit-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.key-takeaway-card p:before,
.benefit-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 37px;
  height: 37px;
  background: url(../images/icon-bcheck2.png) no-repeat 0 0;
  background-size: cover;
}

/*******  NEW DESIGN CSS PAGE *******/
.service-page-banner {
  background: #f1f1f1;
  padding: 4% 0;
}
 
.main-content h1 {
 
  line-height: 1.2;
  margin-bottom: 3%;
}
 
.main-content span{
  color: #f38303
}
 
.sub-title p{
  font-size: 1em;
   
}
 
 
.cta-content h5 {
    padding: 4%;
    font-size: 1.6em;
    line-height: 1.5;
    color: #fff;
}
 
.main-banner-button {
    border-radius: 30px;
    padding: 2%;
    width: 38%;
    margin: 0 2% 0 0;
}
 
.services-section{
  background: #F2F2F2;
   
    background-image: url(/images/service-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
   
 
   
}
 
 
.service-section-title {
  font-size: 40px;
  color: #393939;
  padding-bottom: 1%;
}
 
.service-box {
  background: #fff;
  border-radius:10px;
  padding: 4%;
  margin-bottom: 5%;
  border: 2px solid #e8dfdf;
}
 
.service-box:hover{
  background: #fff;
  border-radius:10px;
  padding: 4%;
  margin-bottom: 5%;
  border: 2px solid #F99B1E;
  box-shadow: 0px 9px 10px rgba(25, 15, 9, 0.1);
}
 
.box-design{
    background: #F99B1E;
    height: 15px;
    width: 15px;
    display: inline-block;
    margin-right: 2%;
    border-radius: 4px;
}
 
.inner-service-title {
  font-size: 16px;
   
}
 
.bottom-cta-section-1 {
    position: relative;
}
 
.techonology {
    border: 2px dashed #707070;
    padding: 3%;
    border-radius: 10px;
}
 
.w-15 {
  width:16%
}
 
.service-intro-img {
  position: absolute;
    left: -19px;
}
 
.service-intro-img img{
  border-radius:20px;
   
}
 
.why-choose-us{
  padding: 40px 0 60px;
    position: relative;
    background: #000;
}
 
.why-choose-us-title {
    font-size: 40px;
    color: #fff;
    padding-bottom: 1%;
}
 
.why-choose-us-sub-title {
    font-size: 16px;
   
    color:#fff
}
 
.why-choose-us-service-title {
    font-size: 16px;
     
    color:#fff
}
 
.testimonial-section {
    position: relative;
    top: -69px;
}
 
.testimonial-box {
    border: 2px dashed #707070;
    padding: 3%;
    border-radius: 10px;
    background: #fff;
}
 
.testim-figure {
  position: absolute;
    left: 0;
    top: 0;
    width: 70px;
}
 
.inner-sub-title-content{
    font-size: 16px;
   
}
 
.section-title-content{
  font-size: 40px;
}
 
.service-inner .section-title-content span {
    color: var(--high-color);
}
 
.contact-form-inner {
  background: #F2F2F2;
  border-radius: 24px;
}
 
 :root{
  interpolate-size: allow-keywords;
}
.content{
    padding-left: 4%;
}
 
 
 
.our-process{
        background:#F5F5F5;
        padding: 3% 0px;
    }
 
    .process-box {
        background:#fff;
        padding: 10%;
        border-radius: 10px;
        border: 1px solid #fb8c;
        height:100%;
    }
 
    .process-box span{
       color:#202020
    }
 
    .process-box h6{
       color:#202020;
       padding-top: 3%;
    }
 
    .single-img {
    position: relative;
    }
 
    .image {
    display: block;
    width: 100%;
    height: auto;
    }
 
    .img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FB8C00;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    border-radius: 10px;
    }
 
    .single-img:hover .img-overlay {
    height: 100%;
    }
 
    .text {
    color: #fff;
    font-size: 19px;
    font-weight: bold;
    padding: 7%;
    line-height: normal;
    }
 
    .text p{
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.2px;
    font-weight: normal;
    line-height: normal;
    }
 
    .count {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    color: #000;
}
 
.count .count-content {
    font-size: 0.3em;
    font-weight: normal;
}
 
.counter-wrapper {
    position: relative;
}
 
.counter-inner {
    position: relative;
    z-index: 2;
    padding: 3% 0;
}
 
@media all and (max-width: 992px) {
 
 
.main-content-banner img{
  width:100%
}
.w-15 {
  width:100% !important
}
 
.service-intro-img {
    position: relative;
}
}
 
 .service-intro-img {
        position: static;
        height: 100%;
        width: 100%;
    }
    #accordionServicePage .accordion-button:not(.collapsed) {
        background-color: #fff;
        box-shadow: none;
    }
    #footerServicePage .footer-menu-header {
        padding-top: 40px;
    }
    .why-choose-us-sub-title {
        font-size: 15px;
        line-height: normal;
    }
    .why-choose-us h5 {
        font-size: 18px;
    }
    .why-choose-us-service-title {
        font-size: 15px;
    }
    .testim-desc {
        font-size: 15px;
    }
    .testim-info {
        margin-top: 30px;
    }
    #accordionServicePage .accordion-button::after {
       
        content: '-';
        font-size: 1.25rem;
        font-family: monospace;
     
        color: #000;
        background-image: none;
        transform: none;
        transition: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.5rem;
     
        height: 1.5rem;
        margin-left: auto;
       
    }
    #accordionServicePage .accordion-button:not(.collapsed)::after {
        content: '-';
        background-image: none;
    }
    #accordionServicePage .accordion-button:not(.collapsed) {
        color: #000;
    }
   
    #accordionServicePage.accordion-flush .accordion-item {
        border: 1px solid #ddd;
       
        border-radius: 5px;
     
        margin-bottom: 10px;
     
        overflow: hidden;
       
    }
   
    #accordionServicePage.accordion-flush .accordion-button {
        background-color: #fff;
    }
   
    #accordionServicePage.accordion-flush .accordion-button:hover {
        background-color: #fff;
    }
    #accordionServicePage.accordion-flush .accordion-item:last-child {
        border-bottom: 1px solid #dddddd !important;
    }
    #accordionServicePage.accordion-flush .accordion-item:first-child {
        border-top: 1px solid #dddddd !important;
    }
 
     @media (max-width: 767px) {
    #captcha-fields-container {
        flex-direction: column;
        align-items: stretch;
    }
 
    #captcha-fields-container input {
        margin-bottom: 10px;
        width: 100%;
    }
 
    #captcha-fields-container .d-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
 
    #captcha-fields-container img {
        max-width: 70%;
        height: auto;
    }
 
    #captcha-fields-container a {
        font-size: 24px;
        margin-left: 10px;
    }
}
 .main-content h1{
        padding-top:2%;
    }
 @media only screen and (min-width:1300px) and (max-width:2024px){
        .main-content h1{
        padding-top:8%;
    }
    }