:root {
  --heading-font: Inter, sans-serif;
  --secondary-color: #192f3d;
  --h1: 2.7em;
  --white-bg: white;
  --body-font: Roboto, sans-serif;
  --text-button: #efefef;
  --primary-color: #c62828;
  --soft-bg: #f4f6f8;
  --hover-primary: #a61f1f;
  --h2: 2.1em;
  --text-small: 1.1em;
  --text-color-primary: #161313;
  --text-regular: 1.3em;
  --text-color-secondary: #586169;
  --h3: 1.75em;
  --border-color: #d1c7c4;
}

.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;
  }
}

h1 {
  font-family: var(--heading-font);
  color: var(--secondary-color);
  font-size: var(--h1);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

a {
  text-decoration: underline;
}

img {
  vertical-align: baseline;
  object-fit: cover;
  max-width: 100%;
  display: inline-block;
}

.body {
  background-color: var(--white-bg);
  font-family: var(--body-font);
}

.section {
  width: 100%;
  height: 100vh;
  padding: 40px 10px;
  overflow: hidden;
}

.section.herosection {
  justify-content: center;
  height: 100vh;
  padding: 0;
  display: flex;
}

.heroimg {
  object-fit: fill;
  width: 100%;
}

.hero_wrapper {
  grid-column-gap: 1.4em;
  grid-row-gap: 1.4em;
  width: 50%;
  color: var(--text-button);
  flex-flow: column;
  display: flex;
  position: absolute;
  inset: auto auto 15% 5%;
}

.overlay {
  background-color: #0006;
  position: absolute;
  inset: 0%;
}

.button {
  background-color: var(--primary-color);
  font-family: var(--heading-font);
  color: var(--soft-bg);
  border-radius: 8px;
  font-weight: 500;
}

.button:hover, .button:active {
  background-color: var(--hover-primary);
}

.div-block {
  grid-column-gap: 1.2rem;
  grid-row-gap: 1.2rem;
  display: flex;
}

.sectiontagline {
  font-family: var(--heading-font);
  color: var(--primary-color);
  font-size: var(--h1);
  text-align: right;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-right: 20px;
  font-weight: 500;
  line-height: 36px;
}

.sectiontagline.secondary_textcolor {
  color: var(--text-button);
}

.container {
  max-width: 1200px;
}

.aboutuswrap {
  width: 90%;
  font-size: var(--text-small);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.heroh1 {
  color: var(--soft-bg);
  font-size: clamp(1.3rem, 22vw, 2.8rem);
}

.herotext {
  padding-right: 20px;
  font-size: 1.4em;
  line-height: 1.4em;
}

.paragraph {
  color: var(--text-color-primary);
  font-size: var(--text-regular);
  text-align: justify;
  line-height: 1.4em;
}

.tabs {
  border-radius: 8px;
  width: 96%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.tabs.project_tabs {
  background-color: var(--soft-bg);
  flex-flow: row;
  justify-content: flex-start;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.tabs-menu {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.tabs-menu.project_tabmenu {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 30%;
  height: auto;
}

.tabs-content {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.tabs-content.project_tabscontent {
  align-self: flex-start;
  width: 70%;
  height: auto;
}

.tabcontent {
  width: 100%;
  height: 66vh;
  color: var(--text-button);
  background-color: #0000;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  overflow: hidden;
}

.tabcontent.project_tabcontent {
  background-color: var(--soft-bg);
  height: auto;
  padding: 30px 10px 10px 20px;
  position: relative;
}

.tab_textblock {
  background-color: var(--white-bg);
  width: 100%;
  min-width: 100%;
  height: 64vh;
  color: var(--text-color-secondary);
  font-size: var(--text-small);
  padding: 60px 40px 20px;
  font-weight: 400;
  line-height: 24px;
}

.tab_link {
  background-color: var(--secondary-color);
  width: 100%;
  font-family: var(--heading-font);
  color: var(--text-button);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.tab_link.w--current {
  border: 1px solid var(--hover-primary);
  background-color: var(--white-bg);
  color: var(--hover-primary);
}

.tab_link.project_tablink {
  background-color: var(--secondary-color);
  color: var(--text-button);
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1em;
  font-weight: 500;
}

.tab_link.project_tablink.w--current {
  border: 1px solid var(--secondary-color);
  background-color: var(--white-bg);
  color: var(--hover-primary);
}

.card {
  border: 2px solid var(--hover-primary);
  border-radius: 8px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  line-height: 24px;
  display: flex;
}

.card._4cards {
  border: 2px solid var(--hover-primary);
  text-align: center;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-self: flex-end;
  align-items: center;
  width: 23%;
  height: 260px;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 1em;
}

.card._4cards:hover {
  box-shadow: 2px 2px 5px 5px #946a6a4d;
}

.card._4cards.whiteborder {
  border-color: var(--white-bg);
  text-align: center;
  justify-content: space-around;
  align-items: center;
  height: 250px;
  padding-top: 15px;
}

.card._4cards.whiteborder:hover {
  background-color: var(--white-bg);
  color: var(--text-color-primary);
}

.icon {
  border: 1px solid #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  padding: 5px;
}

.icon.contacticon {
  width: 60px;
  height: 60px;
  margin-top: 10px;
}

.card_wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 80px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.card_wrapper.paddingdown {
  padding-bottom: 100px;
}

.subheading {
  font-family: var(--heading-font);
  color: var(--hover-primary);
  text-align: left;
  margin-top: 60px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.subheading.nopadding {
  text-align: left;
  margin-top: 0;
}

.subheading.subheadingcenter {
  color: var(--text-color-secondary);
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.h3card {
  font-family: var(--heading-font);
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 600;
}

.h3card.redh3 {
  color: var(--hover-primary);
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
}

.h3card.blackh3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
}

.servieces_subheading {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: auto;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 24px;
}

.servieces_subheading.margindown {
  font-size: var(--h3);
  margin-bottom: 20px;
  font-weight: 600;
}

.profile_wrap {
  width: 90%;
  color: var(--text-color-secondary);
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  position: relative;
}

.profile_image {
  border-radius: 12px;
  width: 16%;
  position: absolute;
  inset: auto 3% 0% auto;
}

.profile_paragraph {
  width: 80%;
  font-size: var(--text-small);
  margin-bottom: 20px;
  padding-right: 10px;
  line-height: 24px;
}

.tab_project_content {
  background-color: var(--soft-bg);
  width: 100%;
  height: auto;
  color: var(--text-color-secondary);
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  overflow: hidden;
}

.link {
  float: right;
  border-bottom: 2px solid var(--primary-color);
  font-family: var(--body-font);
  color: var(--primary-color);
  font-size: var(--text-small);
  font-style: italic;
  font-weight: 500;
  text-decoration: none;
}

.project_img_wrap {
  justify-content: flex-start;
  align-items: flex-start;
  width: 70%;
  display: flex;
}

.project_img_wrap.shorter_img_width {
  width: 46%;
  height: 100%;
  overflow: hidden;
}

.project_img_wrap.project_img_wider {
  width: 70%;
  height: 100%;
  overflow: hidden;
}

.project_content_container {
  padding-bottom: 10px;
  display: flex;
}

.project_img {
  object-fit: fill;
  width: 100%;
  height: 50vh;
}

.project_img.profile {
  height: 56vh;
}

.tab_wrapper {
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.contactsubheading {
  font-family: var(--heading-font);
  color: var(--soft-bg);
  text-align: center;
  margin-top: 80px;
  padding-bottom: 40px;
  font-size: 24px;
  font-weight: 500;
}

.footer-subscribe {
  background-color: var(--white-bg);
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 40px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper-three {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: #1a1b1f;
  font-size: var(--text-small);
  margin-left: 20px;
  margin-right: 20px;
  text-decoration: none;
}

.footer-link-three:hover {
  color: #1a1b1fbf;
}

.footer-divider-two {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.footer-copyright {
  color: #3a4554;
}

.footerimg {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.footerlogoblock {
  text-align: center;
  width: 400px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.brand {
  width: auto;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  padding-left: 8px;
  display: flex;
}

.navbar {
  z-index: 999;
  border-bottom: 1px solid var(--hover-primary);
  background-color: var(--white-bg);
  width: 100%;
  padding-top: 25px;
  padding-bottom: 20px;
  padding-left: 20px;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-button {
  background-color: var(--primary-color);
  text-align: center;
  border-radius: 6px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
}

.nav-link {
  font-family: var(--heading-font);
  color: var(--text-color-primary);
  padding: 8px 12px 10px;
  font-size: clamp(.8rem, 1.2vw, 1.6rem);
  font-weight: 400;
}

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

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

.secondary-button {
  border: 1px solid var(--hover-primary);
  color: var(--text-button);
  background-color: #f3f3f34d;
  border-radius: 8px;
}

.secondary-button:hover {
  background-color: var(--white-bg);
  color: var(--text-color-primary);
}

.logo {
  width: clamp(120px, 26vw, 230px);
  height: auto;
}

.heading-center {
  color: var(--text-color-secondary);
  font-size: var(--h2);
  text-align: center;
  padding-bottom: 40px;
  font-weight: 600;
}

.list {
  width: 80%;
  margin-top: 10px;
  padding-right: 30px;
  line-height: 24px;
  list-style-type: disc;
}

.text-span, .text-span-2 {
  color: var(--primary-color);
}

.tab-pane-tab-1, .tab-pane-tab-2, .tab-pane-tab-3 {
  width: 100%;
}

.bold-text-9, .bold-text-10, .bold-text-11, .bold-text-12 {
  color: var(--text-color-primary);
}

.cardwrap {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 40%;
  display: flex;
}

.bold-text-18, .bold-text-19 {
  color: var(--hover-primary);
}

.heading2 {
  font-size: var(--h3);
}

.contactwrap {
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  height: 50%;
}

.text-span-3 {
  color: var(--primary-color);
}

.tab-subheading {
  width: 96%;
  color: var(--text-color-secondary);
  font-size: var(--text-regular);
  text-align: center;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}

.column1, .column2 {
  padding-right: 40px;
}

.project_content_wrap {
  flex-flow: column;
  font-weight: 400;
}

.project_text_wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: justify;
  flex-flow: column;
  width: 30%;
  padding-left: 20px;
  display: flex;
}

.project_text_wrap.long_img {
  display: flex;
}

.project_details {
  float: right;
  text-align: right;
  width: 100%;
  padding-bottom: 40px;
}

.dropdown-toggle {
  color: var(--secondary-color);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 30px;
  font-weight: 500;
  display: flex;
}

.dropdown-toggle:hover {
  color: var(--primary-color);
}

.dropdown-toggle.menu_toggle {
  color: var(--text-color-primary);
  padding-left: 10px;
  padding-right: 30px;
}

.dropdown {
  color: var(--white-bg);
  margin-left: 8px;
  margin-right: 8px;
}

.icon-2 {
  margin-right: 10px;
}

.dropdown-link {
  background-color: var(--primary-color);
  color: var(--text-button);
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 10px;
}

.dropdown-toggle-copy {
  color: var(--secondary-color);
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: 500;
  display: flex;
}

.dropdown-toggle-copy:hover {
  color: var(--primary-color);
}

.dropdown-toggle-copy.hide_toggle {
  display: none;
}

.card_wrapper-contact {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.card_wrapper-services {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.cardtextservices {
  width: 60%;
  padding-right: 10px;
  line-height: 26px;
}

.accordion {
  background-color: var(--soft-bg);
  flex-flow: column;
  max-width: 900px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  display: none;
}

.accordion-item {
  width: 100%;
  overflow: hidden;
}

.accordion-toggle {
  background-color: var(--secondary-color);
  height: 70px;
  color: var(--white-bg);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.accordion-toggle:active {
  background-color: var(--white-bg);
  color: var(--text-color-secondary);
}

.dropdown-list {
  display: block;
  position: static;
}

.linkedin_logo {
  width: 30px;
  height: 30px;
}

.project-section {
  width: 100%;
  height: 100vh;
  padding-top: 40px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}

.dropdown-list-2.w--open {
  color: var(--text-button);
}

.heroimg_mobile {
  object-fit: fill;
  width: 100%;
  display: none;
}

.aboutus-setion {
  width: 100%;
  height: 100vh;
  padding: 40px 10px;
  overflow: hidden;
}

.aboutus-setion.autovh {
  height: auto;
}

.expertise-section {
  width: 100%;
  height: 100vh;
  padding: 40px 10px;
  overflow: hidden;
}

.expertise-section.soft_bg {
  z-index: 10;
  background-color: var(--soft-bg);
}

.expertise-section.soft_bg.autowh {
  height: auto;
}

.services-section, .tools-section {
  width: 100%;
  height: 100vh;
  padding: 40px 10px;
  overflow: hidden;
}

.tools-section.soft_bg {
  z-index: 10;
  background-color: var(--soft-bg);
}

.whyus-section, .contact-section {
  width: 100%;
  height: 100vh;
  padding: 40px 10px;
  overflow: hidden;
}

.contact-section.blue_bg {
  background-color: var(--secondary-color);
  height: auto;
  color: var(--soft-bg);
  padding-bottom: 100px;
}

.footer-designby {
  color: #3a4554;
  font-size: 12px;
}

.designby_link {
  color: var(--primary-color);
  text-decoration: none;
}

@media screen and (min-width: 1440px) {
  .section {
    padding-bottom: 20px;
  }

  .section.herosection {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link {
    font-size: clamp(.7rem, 1.2vw, 1rem);
  }

  .card_wrapper-services {
    margin-top: 60px;
  }

  .project-section, .aboutus-setion, .expertise-section {
    padding-bottom: 20px;
  }

  .expertise-section.soft_bg {
    height: auto;
  }

  .services-section, .tools-section {
    padding-bottom: 20px;
  }

  .tools-section.soft_bg {
    height: auto;
  }

  .whyus-section, .contact-section {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  .section {
    height: auto;
  }

  .button {
    font-size: 12px;
  }

  .sectiontagline {
    font-size: var(--h2);
    text-align: center;
    padding-right: 40px;
    line-height: 36px;
  }

  .aboutuswrap {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .heroh1 {
    font-size: clamp(1.4rem, 20vw, 2.4rem);
  }

  .herotext {
    margin-top: 10px;
    font-size: 1em;
  }

  .paragraph {
    font-size: var(--text-small);
  }

  .tabs-menu.project_tabmenu {
    width: auto;
    min-width: auto;
    min-height: 100%;
  }

  .tabs-content.project_tabscontent {
    padding-top: 10px;
  }

  .tabcontent.project_tabcontent {
    width: auto;
    padding-top: 0;
  }

  .tab_textblock {
    height: 58vh;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 20px;
  }

  .tab_link {
    padding: 15px;
    font-size: 11px;
  }

  .tab_link.project_tablink {
    font-size: .9em;
    line-height: 18px;
  }

  .tab_link.project_tablink.w--current {
    line-height: 18px;
  }

  .card {
    font-size: 13px;
    line-height: 24px;
  }

  .card._4cards {
    align-self: flex-start;
    width: 90%;
    height: 190px;
    padding-top: 5px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 1em;
    line-height: 20px;
  }

  .card._4cards.whiteborder {
    height: 15rem;
    padding-top: 15px;
  }

  .icon {
    width: 40px;
    height: 40px;
  }

  .icon.contacticon {
    width: 50px;
    height: 50px;
  }

  .card_wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 40px 20px;
    display: grid;
  }

  .card_wrapper.paddingdown {
    padding-bottom: 40px;
  }

  .subheading.nopadding {
    font-size: 16px;
    line-height: 22px;
  }

  .subheading.subheadingcenter {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 22px;
  }

  .h3card.redh3 {
    font-size: 14px;
    line-height: 18px;
  }

  .servieces_subheading {
    font-size: 16px;
    line-height: 24px;
  }

  .servieces_subheading.margindown {
    line-height: 20px;
  }

  .profile_wrap {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .profile_paragraph {
    width: 100%;
  }

  .tab_project_content {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .link {
    bottom: 4%;
    right: 4%;
  }

  .project_img_wrap.shorter_img_width, .project_img_wrap.project_img_wider {
    width: 100%;
    padding-bottom: 20px;
  }

  .project_content_container {
    padding-bottom: 0;
  }

  .project_img {
    height: 14rem;
  }

  .project_img.profile {
    width: 44%;
    height: 14rem;
    margin-left: auto;
    margin-right: auto;
  }

  .tab_wrapper {
    margin-top: 80px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contactsubheading {
    margin-top: 60px;
    padding-bottom: 20px;
    font-size: 1.6em;
    line-height: 32px;
  }

  .footer-subscribe {
    padding-top: 40px;
  }

  .footer-wrapper-three {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-link-three {
    font-size: .9em;
  }

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

  .footer-copyright {
    font-size: .8em;
  }

  .footerimg {
    width: 70%;
  }

  .footerlogoblock {
    margin-bottom: 40px;
  }

  .nav-container {
    justify-content: flex-end;
    width: 70%;
  }

  .navbar {
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    display: flex;
  }

  .nav-button {
    vertical-align: baseline;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    display: inline-block;
  }

  .nav-menu {
    background-color: var(--white-bg);
    text-align: right;
    width: 30%;
    margin-left: auto;
    margin-right: 0;
    padding-bottom: 20px;
    padding-right: 20px;
  }

  .nav-link {
    text-align: right;
    margin: 10px 0 10px auto;
    padding-top: 5px;
  }

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

  .logo {
    width: clamp(150px, 26vw, 220px);
    padding-top: 10px;
  }

  .heading-center {
    font-size: 1.4em;
  }

  .cardwrap {
    align-self: flex-start;
    font-size: 12px;
    line-height: 18px;
  }

  .heading2 {
    font-size: 17px;
    line-height: 26px;
  }

  .contactwrap {
    height: 60%;
    font-size: .8em;
  }

  .tab-subheading {
    font-size: 1em;
  }

  .column1, .column2 {
    padding-right: 10px;
  }

  .project_content_wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: baseline;
    font-size: 14px;
    line-height: 20px;
    display: grid;
  }

  .menu-button {
    background-color: var(--primary-color);
    color: var(--text-button);
    border-radius: 8px;
  }

  .menu-button.w--open {
    background-color: var(--primary-color);
    color: var(--white-bg);
  }

  .project_text_wrap {
    flex-flow: row;
    width: 100%;
    padding-left: 0;
  }

  .project_details {
    text-align: left;
    padding-bottom: 10px;
  }

  .dropdown-toggle.menu_toggle {
    display: none;
  }

  .dropdown {
    margin-right: 10px;
  }

  .icon-2 {
    margin-right: 8px;
  }

  .dropdown-link {
    padding: 6px 26px 6px 20px;
  }

  .dropdown-link.w--current {
    color: var(--soft-bg);
  }

  .dropdown-link.w--current:active {
    color: var(--secondary-color);
  }

  .dropdown-toggle-copy.hide_toggle {
    display: none;
  }

  .dropdown-toggle-copy.hide_toggle.show_toggle {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 30px;
    display: block;
  }

  .card_wrapper-contact {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .card_wrapper-services {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 40px;
  }

  .cardtextservices {
    padding-right: 0;
  }

  .project-section {
    height: auto;
    padding-bottom: 60px;
  }

  .aboutus-setion, .expertise-section, .services-section, .tools-section, .whyus-section, .contact-section {
    height: auto;
  }

  .footer-designby {
    font-size: .8em;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .section.herosection {
    height: auto;
    min-height: 100dvh;
  }

  .hero_wrapper {
    grid-column-gap: .8em;
    grid-row-gap: .8em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 18px;
    bottom: 20%;
    left: auto;
  }

  .overlay {
    background-color: #00000080;
  }

  .sectiontagline {
    text-align: center;
    padding-right: 0;
    font-size: 1.5em;
    line-height: 26px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .aboutuswrap {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .heroh1 {
    font-size: clamp(1.4rem, 20vw, 1.8rem);
  }

  .paragraph {
    font-size: .9em;
  }

  .tabs {
    display: none;
  }

  .tabs.project_tabs {
    display: block;
  }

  .tabs-content.project_tabscontent {
    width: 100%;
  }

  .tabcontent.project_tabcontent {
    flex-flow: wrap;
    justify-content: center;
    width: 100%;
    display: flex;
  }

  .tab_textblock {
    height: auto;
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1em;
    line-height: 18px;
  }

  .tab_link {
    padding: 10px 8px;
    font-size: 10px;
  }

  .card {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .card._4cards {
    height: auto;
    font-size: .9em;
    line-height: 18px;
  }

  .card._4cards.whiteborder {
    flex-flow: row;
    justify-content: space-around;
    align-self: center;
    align-items: center;
    height: 7rem;
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .icon {
    width: 30px;
    height: 30px;
  }

  .icon.contacticon {
    width: 40px;
    height: 40px;
  }

  .card_wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    display: flex;
  }

  .card_wrapper.paddingdown {
    padding-bottom: 20px;
  }

  .subheading.nopadding {
    width: 100%;
    font-size: var(--text-small);
  }

  .subheading.subheadingcenter {
    margin-top: 40px;
    font-size: 14px;
  }

  .h3card.redh3 {
    margin-bottom: 20px;
    font-size: 1.1em;
  }

  .servieces_subheading {
    font-size: 1.1em;
    line-height: 18px;
  }

  .servieces_subheading.margindown {
    font-size: var(--text-regular);
  }

  .profile_wrap {
    width: 100%;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 20px;
    font-size: 1em;
  }

  .profile_image {
    width: 24%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: static;
  }

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

  .tab_project_content {
    width: 100%;
  }

  .link {
    padding-bottom: 0;
    bottom: 5%;
  }

  .project_content_container {
    padding-bottom: 0;
    font-size: 14px;
    line-height: 18px;
  }

  .project_img {
    height: 16rem;
  }

  .project_img.profile {
    width: 36%;
    margin-left: auto;
  }

  .tab_wrapper {
    display: none;
  }

  .contactsubheading {
    margin-top: 40px;
    padding-bottom: 20px;
    font-size: 1.2em;
  }

  .footer-subscribe {
    padding: 40px 15px 10px;
  }

  .footer-block-three {
    flex-flow: wrap;
    place-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
  }

  .footer-link-three {
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

  .footer-copyright {
    line-height: 20px;
  }

  .footerimg {
    width: 60%;
  }

  .footerlogoblock {
    width: 300px;
    margin-bottom: 20px;
  }

  .brand {
    width: 30%;
    padding-top: 15px;
  }

  .navbar {
    z-index: 999;
  }

  .nav-button {
    align-self: flex-end;
  }

  .logo {
    width: clamp(160px, 30vw, 250px);
    padding-top: 0;
  }

  .heading-center {
    font-size: var(--text-small);
    margin-top: 0;
    padding-bottom: 20px;
    line-height: 24px;
  }

  .list {
    width: 100%;
    padding-left: 20px;
    padding-right: 0;
  }

  .cardwrap {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .heading2 {
    font-size: 12px;
    line-height: 22px;
  }

  .contactwrap {
    width: 60%;
    height: 90%;
    padding-top: 0;
    font-size: 1em;
  }

  .tab-subheading {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 700;
  }

  .column1 {
    padding-right: 10px;
  }

  .project_content_wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    font-size: 13px;
    line-height: 18px;
  }

  .menu-button {
    padding: 8px;
  }

  .project_details {
    padding-right: 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .dropdown-link {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 20px;
  }

  .dropdown-toggle-copy.hide_toggle.show_toggle {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .card_wrapper-contact {
    flex-flow: row;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    padding-top: 40px;
    display: grid;
  }

  .card_wrapper-services {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .cardtextservices {
    font-size: 1em;
    line-height: 20px;
  }

  .accordion {
    background-color: var(--white-bg);
    width: 96%;
    margin-top: 40px;
    display: block;
  }

  .accordion.secondarybg {
    background-color: var(--soft-bg);
  }

  .accordion-toggle {
    border-radius: 8px;
    font-weight: 500;
  }

  .linkedin_logo {
    width: 26px;
    height: 26px;
  }

  .project-section, .aboutus-setion, .expertise-section, .services-section, .tools-section, .whyus-section, .contact-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .contact-section.blue_bg {
    height: auto;
    padding-bottom: 60px;
  }

  .footer-designby {
    line-height: 20px;
  }
}

@media screen and (max-width: 479px) {
  .heroimg {
    width: auto;
    height: auto;
    display: none;
  }

  .hero_wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 40px;
  }

  .div-block {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    margin-top: 10px;
  }

  .sectiontagline {
    margin-top: 10px;
    font-size: 1.2em;
    line-height: 20px;
  }

  .heroh1 {
    font-size: clamp(1.4rem, 20vw, 1.8rem);
    font-weight: 700;
    line-height: 1.2em;
  }

  .herotext {
    font-size: 1em;
    line-height: 1.7em;
  }

  .tabs.project_tabs {
    flex-flow: column;
    width: 100%;
  }

  .tabs-menu {
    flex-flow: column;
  }

  .tabs-menu.project_tabmenu {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .tabs-content.project_tabscontent {
    width: 100%;
  }

  .tabcontent {
    height: auto;
  }

  .tabcontent.project_tabcontent {
    padding-left: 0;
    padding-right: 0;
  }

  .tab_textblock {
    height: auto;
  }

  .tab_link {
    font-size: .8em;
  }

  .tab_link.project_tablink {
    font-size: .7em;
  }

  .card {
    flex-flow: column;
  }

  .card._4cards {
    align-self: center;
    width: 100%;
  }

  .card._4cards.whiteborder {
    flex-flow: row;
    justify-content: space-around;
    align-self: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .icon {
    height: 30px;
  }

  .icon.contacticon {
    margin-left: auto;
    margin-right: auto;
  }

  .subheading.nopadding {
    margin-bottom: 20px;
  }

  .subheading.subheadingcenter {
    margin-top: 40px;
    font-size: .9em;
  }

  .h3card.redh3 {
    margin-bottom: 10px;
  }

  .h3card.blackh3 {
    margin-bottom: 10px;
    font-size: 1.1em;
  }

  .servieces_subheading {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .servieces_subheading.margindown {
    text-align: center;
  }

  .profile_wrap {
    flex-flow: column;
    padding-left: 20px;
  }

  .profile_image {
    width: 50%;
  }

  .tab_project_content {
    flex-flow: column;
    padding-left: 0;
    padding-right: 0;
  }

  .link {
    padding-top: 5px;
    padding-bottom: 0;
    bottom: 3%;
    right: 5%;
  }

  .project_img_wrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .project_img {
    width: 100%;
    height: 18rem;
  }

  .project_img.profile {
    width: auto;
    height: 18rem;
  }

  .contactsubheading {
    margin-top: 30px;
    font-size: 1em;
  }

  .footer-block-three {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: wrap;
  }

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

  .footer-bottom {
    flex-flow: row;
    justify-content: space-around;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .brand {
    width: auto;
    padding-top: 0;
  }

  .nav-container {
    flex-flow: row;
    justify-content: flex-end;
    align-items: center;
    width: auto;
  }

  .navbar {
    justify-content: space-between;
    padding: 14px 20px 14px 10px;
    display: flex;
  }

  .nav-button {
    margin-right: 0;
    font-size: 12px;
    line-height: 16px;
  }

  .logo {
    width: clamp(160px, 30vw, 250px);
    padding-top: 10px;
  }

  .list {
    padding-left: 20px;
  }

  .cardwrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-self: center;
    width: 96%;
  }

  .heading2 {
    margin-top: 0;
  }

  .contactwrap {
    justify-content: flex-start;
    width: 85%;
    padding-top: 0;
    padding-bottom: 0;
    font-size: .9em;
  }

  .project_content_wrap {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .menu-button {
    padding: 4px;
  }

  .project_text_wrap {
    width: 100%;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 0;
  }

  .project_text_wrap.long_img {
    padding-right: 10px;
  }

  .project_details {
    padding: 10px 5px;
    line-height: 22px;
  }

  .dropdown {
    margin-top: 0;
  }

  .icon-2 {
    margin-right: 0;
  }

  .dropdown-link, .dropdown-toggle-copy.hide_toggle.show_toggle {
    padding: 8px 20px 8px 10px;
    font-size: 13px;
    line-height: 13px;
  }

  .card_wrapper-contact {
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 20px;
    display: flex;
  }

  .cardtextservices {
    text-align: left;
    width: 96%;
    font-size: .9em;
    line-height: 20px;
  }

  .accordion-toggle {
    font-size: 12px;
  }

  .heroimg_mobile {
    width: auto;
    height: auto;
    display: block;
  }

  .contact-section.blue_bg {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  #w-node-c297ce8e-7b17-1d4e-dcf8-952936abdf4e-b1614b7d, #w-node-a745ba08-5409-9fee-a2e0-09e751d32638-b1614b7d, #w-node-_05b067c3-411b-e887-69d8-cbaad33e649a-b1614b7d, #w-node-f919ac4d-0e31-bf6f-4ff4-e1ea3f77bc69-b1614b7d, #w-node-_4e9e0fea-dfa8-5bb3-087f-9e6df0a8c851-b1614b7d, #w-node-_83863f36-8ef1-8949-4ed1-a0b3bde502c3-b1614b7d, #w-node-f36c2223-27c4-5e66-20f9-be0842008785-b1614b7d, #w-node-bffa3228-8aa1-f9e4-400a-3926d9e0b2b4-b1614b7d, #w-node-_7510edb7-9006-7e59-8069-53b5aee584df-b1614b7d, #w-node-_104bd1bc-f8c2-33c1-58f2-33b2f702b1a8-b1614b7d, #w-node-_8e3f66d4-3454-a0d0-95de-f9e26446d71d-b1614b7d, #w-node-_7b2a3c3c-3b44-ba0a-64fb-cdf131b71a5e-b1614b7d, #w-node-a6ff6e2f-3c10-8b51-67cd-46682e93cb8e-b1614b7d, #w-node-fcaa6de6-4516-04a9-90d2-811f4a9a9808-b1614b7d, #w-node-_029e1d0c-12cf-9dcb-7a11-567adcc76a67-b1614b7d, #w-node-d9f378fc-c8f6-aafb-75ad-9d595f58a9ae-b1614b7d, #w-node-c297ce8e-7b17-1d4e-dcf8-952936abdf4e-15310a31, #w-node-a745ba08-5409-9fee-a2e0-09e751d32638-15310a31, #w-node-_05b067c3-411b-e887-69d8-cbaad33e649a-15310a31, #w-node-f919ac4d-0e31-bf6f-4ff4-e1ea3f77bc69-15310a31, #w-node-_4e9e0fea-dfa8-5bb3-087f-9e6df0a8c851-15310a31, #w-node-_83863f36-8ef1-8949-4ed1-a0b3bde502c3-15310a31, #w-node-f36c2223-27c4-5e66-20f9-be0842008785-15310a31, #w-node-bffa3228-8aa1-f9e4-400a-3926d9e0b2b4-15310a31, #w-node-_0bf6630b-28a4-3b90-0e34-47ed764dbee5-15310a31, #w-node-bc72646f-fff9-35ce-6cdc-d3f7bc7d0773-15310a31, #w-node-_915afbbc-0b28-735e-4da0-ce5a3f5afbbe-15310a31, #w-node-b7efea1a-ca3a-e019-1644-85440b7ebc95-15310a31, #w-node-a6aaf7e6-199d-3a1f-9d31-462015e26839-15310a31, #w-node-c436e7e3-508f-5436-17cb-a756ba6d0b57-15310a31, #w-node-f1473f70-1fca-75c6-a2d4-3af5ea4a81b2-15310a31, #w-node-_9013421e-03a9-1622-5312-b330420297e2-15310a31 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


