:root {
  --text-dark: #000c;
  --paragraph-gray: #5e6774;
  --primary: #a7bee0;
  --gray: #d3dfef;
  --primary-light: #a7cfe0;
  --white: white;
  --transparent: #0000;
  --image-radius: 6px;
  --dark-gray: #afafaf;
  --light-gray: #f9f9fa;
  --light-gray-shadow: #d3dfefb3;
  --dark-grey: #47505d;
  --black: black;
  --radius-large: 56px;
  --button-radius: 46px;
}

body {
  color: var(--text-dark);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 60px;
  font-weight: 600;
}

h2, h3, h4, h5 {
  margin-top: 0;
  margin-bottom: 0;
}

h6 {
  color: var(--text-dark);
  letter-spacing: -1.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
}

p {
  margin-bottom: 0;
}

a {
  align-items: center;
  text-decoration: none;
  transition: all .35s ease-out;
}

ul {
  grid-row-gap: 15px;
  background-color: var(--paragraph-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 20px;
  display: flex;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  align-items: center;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  color: var(--primary);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

blockquote {
  text-align: center;
  letter-spacing: -1.5px;
  background-image: url("https://cdn.prod.website-files.com/68600d7d02cac4e041170247/68600d7d02cac4e041170311_quote%20icon.svg");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  border-left: 1px #000;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 30px 20px 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4em;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.container {
  width: 100%;
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container.align-left {
  align-items: flex-start;
}

.navbar {
  border-bottom: 1px solid var(--gray);
  background-color: var(--white);
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  position: fixed;
}

.navbar.transparent {
  background-color: var(--transparent);
  border-bottom-style: none;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-menu {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  margin-left: auto;
  margin-right: 50px;
}

.nav-link {
  color: var(--text-dark);
  padding: 20px 10px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.white {
  color: var(--white);
}

.footer {
  border-top: 1px solid var(--gray);
  text-align: center;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-copyright {
  color: var(--white);
  letter-spacing: -.8px;
  font-size: 16px;
  line-height: 1.5em;
}

.footer-copyright.text-dark {
  color: var(--text-dark);
}

.footer-brand {
  color: #fff;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
  font-family: Poppins;
}

.nav-button-wrapper {
  align-items: center;
  display: flex;
}

.footer-top-wrap {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.footer-top-left-wrap {
  width: 50%;
}

.footer-social-link {
  border: 1px solid var(--text-dark);
  background-color: var(--transparent);
  color: var(--text-dark);
  border-radius: 56px;
  padding: 10px 16px;
  font-size: 14px;
  transition: border-color .3s, background-color .3s, color .3s;
}

.footer-social-link:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--text-dark);
}

.footer-social-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 100%;
  display: flex;
}

.footer-menu-wrap {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-menu-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.gradient-title-top {
  background-image: linear-gradient(160deg, var(--primary), var(--text-dark));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.2em;
}

.heading-h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}

.page-wrapper {
  overflow: clip;
}

.paragraph-normal {
  color: var(--paragraph-gray);
  font-size: 16px;
}

.heading-style-h2 {
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-block;
}

.button-secondary {
  border: 1.5px solid var(--text-dark);
  background-color: var(--text-dark);
  color: var(--white);
  text-align: center;
  border-radius: 56px;
  padding: 16px 30px;
  font-weight: 500;
  line-height: 1.1;
  transition: all .35s ease-in-out;
  display: inline-block;
}

.button-secondary:hover {
  background-color: var(--transparent);
  color: var(--text-dark);
}

.button-secondary.is-small {
  padding-left: 24px;
  padding-right: 24px;
}

.footer-top-right-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  width: 40%;
  display: flex;
}

.footer-menu-link {
  color: var(--text-dark);
}

.footer-menu-link:hover {
  color: var(--primary);
}

.navbar-wrap {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.navigation {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-logo-image, .footer-logo-image {
  width: 100px;
}

.footer-note {
  color: #00000080;
  width: 250px;
  margin-top: 8px;
  font-size: 14px;
}

.cta-banner-section {
  background-color: var(--light-gray);
  padding-top: 80px;
  padding-bottom: 80px;
}

.privacy-policy-hero-section {
  background-image: url("https://cdn.prod.website-files.com/68600d7d02cac4e041170247/686e391767067d7085f532c0_background.jpg");
  background-position: 0 0;
  background-size: auto;
  padding-top: 300px;
  padding-bottom: 80px;
}

.privacy-title-wrap {
  position: relative;
}

.privacy-info-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.privacy-info-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.privacy-content-wrap {
  max-width: 785px;
}

.privacy-side-panel {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  width: 100%;
  max-width: 275px;
  display: flex;
  position: sticky;
  top: 120px;
}

.toc {
  max-height: 480px;
  padding: 24px;
  overflow: auto;
}

.privacy-body h2 {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}

.privacy-body h3 {
  margin-bottom: 10px;
}

.privacy-body p {
  margin-bottom: 24px;
}

.nav-button-mobile {
  align-items: center;
  display: none;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 70px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .section.top-space-medium {
    padding-top: 160px;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .nav-link, .nav-dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-dropdown-list.megamenu.w--open {
    right: -230px;
  }

  .nav-dropdown-list.megamenu-left.w--open {
    right: -175px;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: nowrap;
  }

  .pricing-plan-item {
    padding-left: 40px;
    padding-right: 40px;
  }

  .contact-info-inner {
    grid-column-gap: 80px;
  }

  .textarea-field {
    margin-bottom: 50px;
  }

  .input-field {
    margin-bottom: 20px;
  }

  .footer-social-icons-wrapper {
    margin-top: 50px;
  }

  .footer-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    margin-bottom: 100px;
  }

  .footer-brand-wrapper {
    width: 24%;
  }

  .testimonials-card-item {
    padding: 30px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._2, .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .about-content-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .main-style-guide-body-wrapper {
    margin-right: 60px;
  }

  .footer-line-divider {
    margin-bottom: 100px;
  }

  .footer-links-wrapper-large {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .footer-light {
    background-position: 0 170%;
    padding-top: 130px;
  }

  .footer-top-wrap {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    margin-bottom: 50px;
  }

  .footer-text {
    font-size: 70px;
  }

  .button-large {
    padding: 36px 60px;
  }

  .footer-divider {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .footer-menu-list {
    grid-column-gap: 35px;
  }

  .footer-bottom-left-holder {
    grid-column-gap: 70px;
  }

  .footer-rights-wrapper-right {
    width: 30%;
  }

  .background-video {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .margin-bottom-medium {
    margin-bottom: 50px;
  }

  .quote-icon-medium {
    width: 59px;
    height: 46px;
  }

  .contact-hero-inner {
    width: 70%;
  }

  .cta-section {
    padding-top: 130px;
    padding-bottom: 140px;
  }

  .cta-image {
    height: 500px;
    top: 40px;
    right: -35%;
  }

  .pricing-tab-link {
    font-size: 18px;
  }

  .pricing-tab-pane {
    padding-left: 50px;
    padding-right: 50px;
  }

  .form-input-group {
    grid-column-gap: 20px;
  }

  .timeline-section, .how-we-help-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .heading-h1 {
    font-size: 56px;
  }

  .section-summary-block {
    margin-bottom: 50px;
  }

  .home-hero-section {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .timeline-inner {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .timeline-right-wrap {
    grid-row-gap: 50px;
  }

  .who-we-are-section {
    padding-top: 100px;
  }

  .pricing-tab-heading {
    font-size: 28px;
  }

  .testimonail-summary {
    font-size: 22px;
  }

  .faq-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .nav-link-2 {
    font-size: 16px;
  }

  .header-logo-image, .footer-logo-image {
    width: 110px;
  }

  .about-hero-section {
    padding-top: 280px;
    padding-bottom: 180px;
  }

  .about-content-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .about-content {
    font-size: 18px;
  }

  .vision-misson-item {
    padding: 50px;
  }

  .value-section {
    padding-top: 180px;
    padding-bottom: 200px;
  }

  .value-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .value-grid {
    margin-bottom: -120px;
  }

  .value-item {
    grid-row-gap: 50px;
  }

  .value-icon {
    width: 34px;
    height: 34px;
  }

  .sets-us-apart-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    margin-top: 100px;
    margin-bottom: 50px;
  }

  .team-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .team-grid {
    grid-row-gap: 60px;
  }

  .team-member-image {
    height: 490px;
  }

  .career-hero-section {
    padding-top: 200px;
  }

  .career-list-section, .career-info-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .career-info-left {
    padding: 40px 30px;
  }

  .blog-banner-section {
    padding-top: 280px;
    padding-bottom: 180px;
  }

  .contact-hero-section {
    padding-top: 200px;
  }

  .heading-style-h2-2 {
    font-size: 36px;
  }

  .contact-form {
    border-radius: 8px;
    flex-flow: row;
  }

  .our-data-security-policy-popup {
    display: flex;
  }

  .blog-list-right {
    grid-row-gap: 50px;
  }

  .blog-list-inner {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-list-left {
    width: 33%;
  }

  .blog-list-item {
    padding-bottom: 30px;
  }

  .blog-hero-section {
    padding-top: 280px;
    padding-bottom: 180px;
  }

  .form-select-field {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 18px;
  }

  .container, .nav-container {
    max-width: 1330px;
  }

  .nav-dropdown-list.megamenu.w--open {
    right: -295px;
  }

  .contact-info-inner {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand-wrapper {
    width: 21%;
  }

  .search-section {
    padding-top: 160px;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .paragraph-small {
    font-size: 16px;
  }

  .footer-links-wrapper-large {
    grid-column-gap: 75px;
    grid-row-gap: 75px;
  }

  .footer-top-left-wrap {
    width: 50%;
  }

  .footer-menu-list {
    grid-column-gap: 50px;
  }

  .cta-image {
    right: -30%;
  }

  .career-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .pricing-tab-box {
    grid-column-gap: 100px;
  }

  .heading-h1 {
    font-size: 60px;
  }

  .home-hero-summary {
    max-width: 800px;
  }

  .home-hero-inner {
    width: 89%;
  }

  .paragraph-normal {
    font-size: 18px;
  }

  .heading-style-h2 {
    font-size: 48px;
  }

  .timeline-item {
    padding-left: 24px;
  }

  .heading-style-h5 {
    font-size: 24px;
  }

  .timeline-content-box {
    width: 80%;
  }

  .max-width-600 {
    max-width: 650px;
  }

  .pricing-plan-feature {
    font-size: 16px;
  }

  .testimonial-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .testimonial-content {
    padding-right: 30px;
  }

  .testimonial-author-image {
    width: 188px;
    height: 188px;
  }

  .how-we-help-summary {
    max-width: 700px;
  }

  .faq-grid {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .paragraph-normal-light {
    font-size: 18px;
  }

  .about-hero-summary {
    max-width: 700px;
  }

  .about-gallery-image {
    height: 530px;
  }

  .why-choose-summary {
    max-width: 700px;
  }

  .why-choose-item {
    padding: 32px;
  }

  .why-choose-desc {
    font-size: 16px;
  }

  .heading-style-h4 {
    font-size: 24px;
  }

  .career-hero-summary {
    max-width: 630px;
  }

  .career-info-item {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .faq-question {
    font-size: 24px;
  }

  .blog-list-inner {
    max-width: 85%;
  }

  .blog-list-left {
    width: 30%;
  }

  .blog-read-more {
    font-size: 18px;
  }

  .blog-summary {
    font-size: 16px;
  }
}

@media screen and (min-width: 1920px) {
  .section {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .container, .nav-container {
    max-width: 1530px;
  }

  .pricing-plan-item {
    flex: none;
    width: 43%;
  }

  .contact-info-inner {
    justify-content: space-between;
    max-width: 80%;
  }

  .footer-wrapper {
    grid-column-gap: 270px;
    grid-row-gap: 270px;
  }

  .footer-brand-wrapper {
    width: 19%;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .footer-links-wrapper-large {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .footer-light {
    padding-top: 160px;
  }

  .footer-top-wrap {
    grid-column-gap: 160px;
    grid-row-gap: 160px;
  }

  .footer-top-left-wrap {
    width: 57%;
  }

  .footer-text {
    font-size: 80px;
  }

  .background-video {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .who-we-are-item {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 50px;
  }

  .contact-hero-inner {
    width: 70%;
  }

  .banner-background {
    width: 86%;
  }

  .cta-section {
    padding-top: 160px;
    padding-bottom: 175px;
  }

  .cta-text-wrapper {
    width: 34%;
  }

  .cta-image {
    height: 600px;
    right: -20%;
  }

  .pricing-tab-link {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 20px;
  }

  .heading-style-h1 {
    font-size: 80px;
  }

  .pricing-tab-box {
    grid-column-gap: 130px;
  }

  .home-hero-inner {
    width: 75%;
  }

  .home-hero-section {
    padding-top: 220px;
    padding-bottom: 120px;
  }

  .home-hero-shape {
    top: -5%;
  }

  .heading-style-h2 {
    font-size: 50px;
  }

  .who-we-are-grid {
    margin-top: 20px;
  }

  .pricing-tab-left {
    grid-row-gap: 100px;
  }

  .pricing-tab-heading {
    font-size: 32px;
  }

  .testimonial-grid {
    grid-template-columns: .7fr 1fr;
  }

  .testimonail-summary {
    font-size: 24px;
  }

  .how-we-help-box {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 50px;
  }

  .about-hero-section {
    padding-top: 300px;
    padding-bottom: 200px;
  }

  .about-content-section {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .value-grid {
    margin-bottom: -130px;
  }

  .value-item {
    padding-right: 40px;
  }

  .sets-us-apart-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .team-section {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .team-member-image {
    height: 590px;
  }

  .career-hero-section {
    padding-top: 250px;
    padding-bottom: 130px;
  }

  .career-info-section {
    padding-top: 160px;
    padding-bottom: 160px;
  }

  .blog-banner-section {
    padding-top: 300px;
    padding-bottom: 200px;
  }

  .heading-style-h2-2 {
    font-size: 42px;
  }

  .blog-list-left {
    width: 26%;
  }

  .blog-hero-section {
    padding-top: 300px;
    padding-bottom: 200px;
  }

  .offshoring-starter-kit-form, .download-our-data-security-policy {
    width: 35%;
  }
}

@media screen and (max-width: 991px) {
  .section.top-space-medium {
    padding-top: 100px;
  }

  .grid-system {
    width: 100%;
  }

  .grid-description.first-description {
    text-align: center;
    text-align: center;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    margin-top: 40px;
    display: flex;
  }

  .bottom-style-spacing-desktop {
    bottom: 6%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .colors-wrapper {
    margin-right: 40px;
  }

  .colors-container {
    flex-wrap: wrap;
  }

  .headings-typography-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }

  .headings-typography-wrapper.last-child {
    margin-bottom: 30px;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .nav-menu {
    z-index: 99;
    background-color: var(--white);
    flex-direction: column;
    margin-right: 0;
    padding: 50px 40px;
    display: none;
    position: fixed;
    inset: 12% 0% 0%;
    transform: translate(100%);
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 8px 0;
    font-size: 20px;
    display: flex;
  }

  .nav-link.white {
    color: var(--text-dark);
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-icon {
    margin-right: 1.5px;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-dropdown-icon.white {
    color: var(--text-dark);
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu, .nav-dropdown-list.megamenu-left, .nav-dropdown-list.megamenu, .nav-dropdown-list.megamenu-left {
    width: auto;
    height: 285px;
    padding-left: 20px;
    padding-right: 40px;
    overflow: scroll;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 20px;
  }

  .close-menu-button {
    padding: 0 20px 0 0;
  }

  .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
  }

  .nav-item-title {
    font-size: 20px;
  }

  .nav-item-title.white {
    color: var(--text-dark);
  }

  .footer {
    padding-bottom: 40px;
  }

  .career-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-plan-item {
    text-align: left;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-plan-list {
    grid-row-gap: 10px;
  }

  .contact-info-inner {
    flex-direction: column;
    grid-template-columns: 1fr;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info-left {
    position: static;
  }

  .contact-info-right {
    width: 100%;
    padding: 30px;
  }

  .footer-social-icons-wrapper {
    margin-top: 0;
  }

  .footer-wrapper {
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .footer-brand-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .search-desktop {
    display: none;
  }

  .search-bottom-line {
    display: flex;
  }

  .nav-button-wrapper {
    display: none;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .search-section {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .footer-logo-wrapper {
    width: 50%;
  }

  .headings-container, .style-guide-content-wrapper {
    flex-wrap: wrap;
  }

  .nav-dropdown-column {
    justify-content: center;
    width: 180px;
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .about-content-grid {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .about-content-left, .about-content-right {
    width: 100%;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .menu-wrap {
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 73px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    display: flex;
  }

  .brand-tablet {
    display: block;
  }

  .style-guide-tab-content-wrapper {
    grid-row-gap: 40px;
  }

  .spacing-system-image-2 {
    width: 75%;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .style-guide-tab-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spasing-system-image-mobile-2 {
    width: 70%;
  }

  .landing-section-title {
    width: 80%;
    font-size: 46px;
  }

  .landing-home-pages-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .nav-tablet-button-holder {
    width: 100%;
    margin-top: 20px;
    display: flex;
  }

  .footer-links-wrapper-large {
    width: 100%;
  }

  .footer-light {
    background-position: 0 170%;
  }

  .footer-top-wrap {
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .footer-top-left-wrap {
    width: 100%;
  }

  .footer-text {
    font-size: 50px;
  }

  .footer-text-wrapper-right {
    grid-row-gap: 40px;
    width: 100%;
  }

  .footer-menu-wrap {
    grid-row-gap: 15px;
    flex-wrap: wrap;
  }

  .footer-menu-list {
    justify-content: center;
  }

  .footer-bottom-left-holder, .footer-rights-wrapper-right {
    justify-content: center;
    width: 100%;
  }

  .about-gallery-left, .about-gallery-right {
    width: 100%;
  }

  .testimonial-arrow {
    width: 50px;
    height: 50px;
  }

  .testimonial-arrow.right-new {
    left: 70px;
  }

  .contact-hero-inner {
    width: 100%;
  }

  .cta-section {
    padding-bottom: 80px;
  }

  .cta-text-wrapper {
    width: 70%;
  }

  .cta-image {
    height: 350px;
    right: -55%;
  }

  .pricing-tab-link {
    font-size: 14px;
  }

  .pricing-tab-pane {
    padding-bottom: 40px;
  }

  .heading-style-h1 {
    font-size: 54px;
  }

  .why-choose-inner {
    grid-row-gap: 24px;
    flex-wrap: wrap;
  }

  .bottom-block-2.margin-top {
    margin-top: 30px;
  }

  .career-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tab-box {
    text-align: center;
    flex-flow: column;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .promotion-label-holder, .promotion-labels-wrapper-to-remove {
    display: none;
  }

  .timeline-section, .how-we-help-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .heading-h1 {
    font-size: 40px;
  }

  .home-hero-summary {
    max-width: 100%;
  }

  .section-summary-block {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .home-hero-inner {
    max-width: 95%;
  }

  .home-hero-section {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .paragraph-normal {
    font-size: 14px;
  }

  .timeline-inner {
    grid-template-columns: 1fr;
  }

  .timeline-left-wrap, .timeline-right-wrap {
    width: 100%;
  }

  .heading-style-h2 {
    font-size: 36px;
  }

  .timeline-item {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .who-we-are-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .who-we-are-grid {
    grid-template-columns: 1fr 1fr;
  }

  .heading-style-h3 {
    font-size: 24px;
  }

  .pricing-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pricing-tab-left {
    width: 100%;
  }

  .pricing-tab-heading {
    font-size: 20px;
  }

  .testimonial-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .testimonial-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .testimonial-left-wrap, .testimonial-right-wrap {
    width: 100%;
  }

  .testimonial-slider {
    width: 100%;
    margin-bottom: 90px;
  }

  .testimonail-summary {
    font-size: 18px;
  }

  .how-we-help-summary {
    max-width: 100%;
  }

  .how-we-help-slider-wrap {
    padding-top: 60px;
  }

  .faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .faq-grid {
    flex-wrap: wrap;
  }

  .footer-top-right-wrap {
    width: 100%;
  }

  .swiper-arrow {
    width: 50px;
    height: 50px;
  }

  .swiper-navigation {
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    position: static;
  }

  .navigation {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .menu-bar {
    z-index: 100;
    padding: 16px;
    position: relative;
  }

  .menu-icon {
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    display: flex;
  }

  .menu-close-icon {
    width: 32px;
    height: 32px;
    display: none;
  }

  .nav-link-2 {
    margin-left: 0;
    margin-right: 0;
    font-size: 18px;
  }

  .section-title-block {
    max-width: 100%;
  }

  .cta-banner-section, .about-content-section, .about-gallery-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-gallery-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .about-gallery-image {
    object-position: 50% 20%;
    height: 330px;
  }

  .why-choose-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .why-choose-summary {
    max-width: 100%;
  }

  .why-choose-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .why-choose-item {
    width: 100%;
  }

  .why-choose-desc {
    font-size: 15px;
  }

  .heading-style-h4 {
    line-height: 1.3;
  }

  .why-choose-icon {
    width: 24px;
    height: 24px;
  }

  .vision-misson-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .vision-misson-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .vision-misson-item {
    padding: 30px;
  }

  .value-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .value-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    margin-bottom: 0;
  }

  .value-icon-box {
    width: 55px;
    min-width: 55px;
    height: 55px;
    min-height: 55px;
  }

  .sets-us-apart-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sets-us-apart-grid {
    justify-content: center;
  }

  .sets-us-apart-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .team-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .team-member-image {
    height: 300px;
  }

  .career-list-section, .career-info-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .career-info-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .career-info-item {
    width: 100%;
  }

  .career-info-right.is-last {
    height: 100%;
  }

  .roadmap_panel-content {
    min-width: auto;
    max-width: none;
    padding-right: 1.875rem;
  }

  .roadmap_panel {
    width: auto;
    height: 5.375rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .roadmap_panel.active {
    width: auto;
    height: 100%;
  }

  .roadmap_arrow {
    transform: rotate(90deg);
  }

  .roadmap_panel-number-wrap {
    width: 2.875rem;
    min-width: 2.875rem;
    height: 2.875rem;
    min-height: 2.875rem;
    font-size: 2rem;
  }

  .roadmap_component {
    padding-top: 3.125rem;
  }

  .roadmap_layout {
    flex-flow: column;
    height: 49rem;
  }

  .heading-style-large-h3 {
    font-size: 28px;
  }

  .blog-list-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-hero-section {
    padding-bottom: 60px;
  }

  .contact-form {
    flex-flow: row;
    align-items: stretch;
  }

  .large-link-text {
    margin-bottom: 80px;
  }

  .blog-list-right {
    width: 100%;
  }

  .blog-author-box {
    min-height: 300px;
  }

  .blog-list-left {
    width: 100%;
  }

  .blog-body-inner {
    max-width: 100%;
  }

  .blog-body-content-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .privacy-policy-hero-section {
    padding-top: 250px;
  }

  .privacy-info-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .privacy-content-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    max-width: 450px;
  }

  .privacy-side-panel {
    max-width: 220px;
  }

  .toc {
    max-height: 450px;
  }

  .privacy-body h2 {
    font-size: 28px;
  }

  .offshoring-starter-kit-form, .download-our-data-security-policy {
    width: 70%;
    padding: 30px;
  }

  .nav-button-mobile {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  blockquote {
    background-size: 20px 20px;
    font-size: 18px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.top-space-medium {
    padding-top: 90px;
  }

  .container {
    max-width: 95%;
  }

  .grid-system-wrapper {
    flex-direction: row;
    margin-top: 15px;
  }

  .grid-system {
    border-left: 1px solid var(--gray);
    flex-direction: column;
  }

  .grid-description {
    border-top: 1px solid var(--gray);
    border-bottom-style: none;
    border-right-width: 1px;
    align-items: center;
    width: 100%;
  }

  .grid-description.first-description {
    border-width: 1px 1px .5px 0;
    border-top-style: none;
    border-top-color: #a7a7a7;
    border-bottom-style: none;
    border-left-style: none;
    width: 100%;
  }

  .grid-description.last-description {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-width: 1px;
  }

  .spacing-system-column {
    margin-top: 40px;
  }

  .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .typography-wrapper, .spacing-columns {
    margin-top: 20px;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .colors-wrapper {
    margin-top: 15px;
    margin-right: 0;
  }

  .colors-container {
    margin-top: 0;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .primary-button.search-button {
    width: 100%;
  }

  .style-guide-div {
    margin-top: 35px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-link {
    margin-left: 0;
  }

  .licensing-images-wrapper {
    padding-top: 10px;
  }

  .utility-page-content {
    width: 70%;
  }

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

  ._404-paragraph {
    margin-bottom: 30px;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-copyright {
    width: 100%;
  }

  .style-guide-buttons-wrapper {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .career-item {
    flex-wrap: wrap;
  }

  .pricing-plan-item {
    width: 100%;
  }

  .contact-info-inner {
    max-width: 100%;
  }

  .contact-info-right {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
    width: 100%;
    margin-top: 30px;
  }

  .footer-wrapper {
    justify-content: center;
    margin-bottom: 60px;
  }

  .footer-brand-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .footer-brand {
    padding-left: 0;
  }

  .footer-links-wrapper {
    text-align: center;
    align-items: center;
    width: 25%;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .footer-logo-wrapper {
    align-items: center;
    width: 100%;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

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

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2, .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .about-image {
    height: 280px;
    min-height: auto;
  }

  .home-9-team-item {
    width: 48%;
  }

  .about-content-left, .about-content-right {
    width: 100%;
  }

  .search {
    flex-direction: column;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .rich-text-style h2 {
    font-size: 30px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .home-23-team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .grid-header {
    width: 100%;
    margin-top: 35px;
  }

  .main-style-guide-body-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .style-guide-tab-link {
    text-align: center;
  }

  .style-guide-tabs-menu {
    grid-row-gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
  }

  .grid-title {
    border-bottom: 1px solid var(--gray);
    border-right-style: none;
    width: 100%;
  }

  .grid-title.first-grid {
    border-left-style: none;
    border-right-style: none;
    flex: 1;
    width: 100%;
  }

  .landing-section-title {
    width: 70%;
    font-size: 40px;
  }

  .landing-home-pages-wrapper {
    grid-row-gap: 40px;
  }

  .footer-rights-wrapper {
    justify-content: center;
    width: 100%;
  }

  .footer-line-divider {
    margin-bottom: 60px;
  }

  .footer-links-wrapper-large {
    grid-row-gap: 40px;
    flex-direction: row;
    justify-content: center;
  }

  .footer-top-wrap {
    grid-row-gap: 30px;
    margin-bottom: 30px;
  }

  .footer-top-left-wrap {
    width: 100%;
  }

  .footer-text {
    font-size: 46px;
  }

  .button-large {
    padding: 16px 30px;
  }

  .footer-divider {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .footer-menu-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    justify-content: center;
  }

  .footer-menu-list {
    grid-column-gap: 32px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .footer-bottom-left-holder {
    grid-row-gap: 15px;
    flex-wrap: wrap;
  }

  .footer-rights-wrapper-right {
    justify-content: center;
    width: 100%;
  }

  .background-video {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .who-we-are-item {
    padding: 24px;
    transform: scale(1);
  }

  .stars-image {
    height: 265px;
  }

  .cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cta-text-wrapper {
    width: 100%;
  }

  .cta-image {
    display: none;
  }

  .pricing-tab-link {
    white-space: nowrap;
  }

  .pricing-tab-pane {
    padding-top: 40px;
  }

  .heading-style-h1 {
    font-size: 48px;
  }

  ._404-text {
    font-size: 140px;
  }

  .pricing-tab-box {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    width: 100%;
  }

  .promotion-label-buttons-wrapper {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

  .heading-h1 {
    font-size: 32px;
  }

  .home-hero-inner {
    max-width: 100%;
  }

  .home-hero-shape {
    display: none;
    bottom: -145%;
  }

  .paragraph-normal {
    font-size: 14px;
  }

  .timeline-right-wrap {
    grid-row-gap: 24px;
  }

  .heading-style-h2 {
    font-size: 32px;
  }

  .timeline-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
  }

  .timeline-icon {
    font-size: 50px;
  }

  .heading-style-h5 {
    font-size: 18px;
  }

  .timeline-content-box {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 85%;
  }

  .section-title-header {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .who-we-are-grid {
    margin-top: 60px;
  }

  .heading-style-h3 {
    font-size: 22px;
  }

  .middle-section-title-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .pricing-tabs-menu {
    justify-content: flex-start;
    align-items: stretch;
    max-width: 100%;
    display: flex;
    overflow: auto;
  }

  .pricing-tabs-content {
    margin-top: 24px;
  }

  .pricing-tab-heading {
    font-size: 18px;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonail-summary {
    font-size: 16px;
  }

  .how-we-help-slider-wrap {
    padding-top: 50px;
  }

  .how-we-help-box {
    min-height: auto;
  }

  .faq-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    display: flex;
  }

  .footer-top-right-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .footer-logo-wrap {
    width: 100%;
  }

  .footer-menu-link {
    font-size: 15px;
  }

  .faq-list, .footer-note {
    width: 100%;
  }

  .paragraph-normal-light {
    font-size: 14px;
  }

  .about-hero-section {
    padding-top: 200px;
  }

  .about-hero-summary {
    font-size: 14px;
  }

  .about-gallery-image {
    height: 280px;
  }

  .why-choose-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .why-choose-item {
    padding: 20px;
  }

  .vision-misson-item {
    width: 100%;
    padding: 24px;
  }

  .value-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    width: 100%;
  }

  .value-icon {
    font-size: 50px;
  }

  .sets-us-apart-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .sets-us-apart-item {
    width: 100%;
  }

  .sets-us-apart-divider {
    width: 100%;
    height: 1.5px;
    display: block;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-member-image {
    height: 330px;
  }

  .career-hero-section {
    padding-bottom: 60px;
  }

  .career-hero-summary {
    max-width: 100%;
  }

  .career-list-section, .career-info-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .career-info-grid {
    grid-template-columns: 1fr;
  }

  .career-info-item {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .career-info-item.is-3 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .career-info-left {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .career-info-right {
    height: 100%;
  }

  .career-info-image {
    border-top-right-radius: var(--image-radius);
    border-bottom-left-radius: 0;
  }

  .roadmap_arrow-block {
    right: -5.815rem;
  }

  .heading-style-large-h3 {
    font-size: 24px;
  }

  .blog-banner-section {
    padding-top: 200px;
  }

  .contact-hero-section {
    padding-top: 160px;
  }

  .contact-info-section {
    padding-top: 170px;
    padding-bottom: 60px;
  }

  .heading-style-h2-2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 18px;
  }

  .blog-author-box {
    padding: 30px;
  }

  .blog-hero-section, .privacy-policy-hero-section {
    padding-top: 200px;
  }

  .privacy-content-wrap {
    max-width: 100%;
  }

  .privacy-side-panel {
    display: none;
  }

  .offshoring-starter-kit-form, .download-our-data-security-policy {
    width: 85%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 479px) {
  .grid-system-wrapper {
    flex-direction: row;
  }

  .grid-system {
    flex-direction: column;
    width: 50%;
  }

  .grid-description {
    border-bottom-width: 1px;
    border-bottom-color: #fff3;
  }

  .grid-description.first-description {
    border-bottom: 1px #fff3;
    border-left-style: none;
    border-right-style: solid;
  }

  .grid-description.last-description {
    border-bottom-color: var(--gray);
  }

  .bottom-style-spacing-desktop {
    bottom: 4%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .middle-style-spacing-desktop {
    top: 29%;
  }

  .color-container {
    flex-wrap: wrap;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .nav-link {
    width: 99%;
  }

  .nav-dropdown-list.megamenu, .nav-dropdown-list.megamenu-left, .nav-dropdown-list.megamenu, .nav-dropdown-list.megamenu-left {
    padding-right: 0;
  }

  .utility-page-content {
    width: 100%;
  }

  ._404-content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-rights {
    font-size: 14px;
  }

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
  }

  .footer-copyright-link {
    margin-left: 5px;
    font-size: 14px;
  }

  .career-item {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .pricing-plan-list {
    padding-left: 10px;
  }

  .pricing-plan-price-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-plan-price {
    font-size: 50px;
  }

  .contact-info-inner {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .textarea-field {
    min-height: 120px;
    padding: 14px 10px;
  }

  .input-field {
    padding: 14px 10px;
  }

  .footer-social-icons-wrapper {
    justify-content: center;
  }

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .footer-links-wrapper {
    text-align: center;
    width: 26%;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

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

  .our-services-wrap, .home-9-team-item {
    width: 100%;
  }

  .about-content-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .home-23-team-item {
    width: 100%;
  }

  .center-title {
    text-align: center;
  }

  .brand-tablet {
    padding-left: 0;
  }

  .grid-title {
    align-items: center;
  }

  .grid-title.first-grid {
    text-align: center;
    text-align: center;
    width: 100%;
  }

  .landing-section-title {
    width: 100%;
    font-size: 32px;
  }

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    text-align: center;
    justify-content: center;
  }

  .position-relative {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-light {
    text-align: left;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .footer-top-wrap {
    grid-row-gap: 24px;
  }

  .footer-social-link {
    font-size: 12px;
  }

  .footer-menu-wrap {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .footer-bottom-left-holder {
    text-align: center;
  }

  .footer-rights-wrapper-right {
    grid-row-gap: 5px;
    text-align: center;
    justify-content: center;
  }

  .testimonial-slide {
    padding: 20px 15px;
  }

  .stars-image {
    display: none;
  }

  .pricing-tab-pane {
    padding: 30px 15px;
  }

  .heading-style-h1 {
    font-size: 40px;
  }

  .form-input-group {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .portfolio-tab-link-2 {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .career-top-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .career-time-box {
    justify-content: center;
  }

  .home-hero-section {
    padding-top: 120px;
  }

  .home-hero-shape {
    display: none;
  }

  .heading-style-h2 {
    font-size: 28px;
  }

  .timeline-item {
    flex-wrap: wrap;
  }

  .timeline-content-box {
    width: 100%;
  }

  .who-we-are-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .button-secondary {
    font-size: 14px;
  }

  .pricing-tab-heading {
    font-size: 16px;
  }

  .testimonial-author-image {
    width: 116px;
    height: 116px;
    margin-top: -20px;
    margin-right: -15px;
  }

  .how-we-help-slider-wrap {
    padding-top: 40px;
  }

  .faq-question-wrap {
    align-items: flex-start;
  }

  .footer-logo-wrap {
    text-align: center;
  }

  .footer-menu-link {
    font-size: 16px;
  }

  .header-logo-image {
    width: 80px;
  }

  .about-hero-section {
    padding-top: 170px;
    padding-bottom: 100px;
  }

  .about-gallery-grid {
    flex-flow: column;
  }

  .why-choose-grid, .vision-misson-grid {
    grid-template-columns: 1fr;
  }

  .vision-misson-item {
    padding: 20px;
  }

  .value-item {
    padding-left: 15px;
  }

  .sets-us-apart-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 40px;
  }

  .sets-us-apart-item {
    flex-wrap: wrap;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member-image {
    object-position: 50% 0%;
  }

  .career-hero-section {
    padding-top: 150px;
  }

  .career-hero-summary {
    font-size: 14px;
  }

  .career-tag {
    width: 100%;
  }

  .job-info-wrap {
    grid-column-gap: 20px;
    align-items: center;
  }

  .career-button-wrap {
    margin-top: 10px;
  }

  .career-info-box {
    font-size: 13px;
  }

  .career-info-item {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .career-info-item.is-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .career-info-image, .career-info-image.is-last, .career-info-image.is-last {
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--image-radius);
  }

  .roadmap_panel {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .roadmap_layout {
    height: 55.5rem;
  }

  .blog-banner-section {
    padding-top: 170px;
    padding-bottom: 100px;
  }

  .contact-info-section {
    padding-top: 150px;
  }

  .popup-close-button {
    top: 15px;
    right: 15px;
  }

  .heading-style-h2-2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .contact-form {
    flex-flow: column;
  }

  .large-link-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .author-wrapper {
    flex-wrap: wrap;
  }

  .blog-author-box {
    padding: 20px 15px;
  }

  .large-link-arrow {
    width: 24px;
    height: 24px;
  }

  .values-top-block {
    flex-wrap: wrap;
  }

  .blog-hero-section {
    padding-top: 170px;
    padding-bottom: 100px;
  }

  .form-text-label {
    font-size: 12px;
  }

  .form-select-field {
    padding: 14px 10px;
    font-size: 14px;
  }

  .privacy-policy-hero-section {
    padding-bottom: 60px;
  }

  .privacy-title-wrap {
    z-index: 2;
    position: relative;
  }

  .privacy-body h2 {
    font-size: 25px;
    line-height: 1.3;
  }

  .contact-list-wrap {
    grid-template-columns: 1fr;
  }

  .offshoring-starter-kit-form, .download-our-data-security-policy {
    width: 90%;
  }
}
