@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter_18pt-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter_18pt-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter_18pt-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter_18pt-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter_18pt-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter_18pt-ExtraBold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter_18pt-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teko;
  src: url('../fonts/Teko-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teko;
  src: url('../fonts/Teko-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teko;
  src: url('../fonts/Teko-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teko;
  src: url('../fonts/Teko-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Teko;
  src: url('../fonts/Teko-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Freestyle Script;
  src: url('../fonts/Freestyle-Script-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-light-black: #0a1019;
  --inter: "Inter Custom", sans-serif;
  --bg-black: #292829;
  --heading-color: white;
  --paragraph-color: #fffc;
  --body-color: white;
  --primary-color: #2e8b86;
  --black: #292829;
  --teko: Teko, Tahoma, sans-serif;
  --freestyle-script: "Freestyle Script", "Times New Roman", sans-serif;
}

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

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

body {
  background-color: var(--bg-light-black);
  font-family: var(--inter);
  color: var(--bg-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

h1 {
  font-family: var(--inter);
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 600;
  line-height: 63px;
}

h2 {
  font-family: var(--inter);
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 600;
  line-height: 48px;
}

h3 {
  font-family: var(--inter);
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

h4 {
  font-family: var(--inter);
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

h5 {
  font-family: var(--inter);
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

h6 {
  font-family: var(--inter);
  color: var(--heading-color);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

p {
  font-family: var(--inter);
  color: var(--paragraph-color);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}

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

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

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

li {
  color: var(--bg-light-black);
  background-image: url('../images/check_1check.png');
  background-position: 0 7px;
  background-repeat: no-repeat;
  background-size: auto;
  margin-bottom: 11px;
  padding-left: 26px;
  font-size: 18px;
  font-weight: 500;
  list-style-type: none;
}

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

blockquote {
  background-color: var(--bg-light-black);
  text-align: center;
  background-image: url('../images/blog-quote_1blog-quote.png');
  background-position: 50% 60px;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 0 solid #000;
  border-radius: 12px;
  margin-bottom: 0;
  padding: 137px 30px 50px;
  font-size: 22px;
  font-weight: 500;
  line-height: 38px;
}

figure {
  margin-bottom: 10px;
}

.page-wrapper {
  overflow: hidden;
}

.container {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  padding: 0 15px;
  display: flex;
}

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

.form-submit-button {
  background-color: var(--primary-color);
  color: var(--bg-black);
  border-radius: 8px;
  margin-top: 19px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  transition: color .3s, background-color .3s;
}

.form-submit-button:hover {
  background-color: var(--body-color);
  color: var(--black);
}

.section-title {
  margin-bottom: 0;
  font-size: 36px;
}

.section-title.black {
  color: var(--body-color);
  font-size: 30px;
}

.section-title.center {
  text-align: center;
  font-size: 36px;
}

.section-title.small {
  color: var(--primary-color);
}

.section-title.dark {
  color: var(--bg-black);
}

.button-primary {
  background-color: var(--primary-color);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px 35px;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
}

.section-subtitle.black {
  color: var(--black);
}

.section-title-wrapper {
  overflow: hidden;
}

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

.text-field-style {
  font-family: var(--inter);
  color: var(--body-color);
  background-color: #fff0;
  border: 1px solid #777;
  border-radius: 6px;
  height: 50px;
  margin-bottom: 0;
  padding: 2px 22px;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  transition: border-color .3s;
}

.text-field-style:focus {
  border-color: var(--primary-color);
}

.text-field-style::placeholder {
  color: var(--body-color);
}

.section-subtitle-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-subtitle-border {
  background-color: var(--primary-color);
  width: 28px;
  height: 2px;
  margin-top: 0;
}

.section-subtitle-border.black {
  background-color: var(--black);
}

.hero-section {
  display: block;
}

.hero-section-top-wrapper {
  height: 90vh;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.hero-content-wrapper {
  z-index: 2;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 940px;
  margin-top: 40px;
  display: flex;
}

.hero-title {
  font-family: var(--inter);
  color: var(--heading-color);
  text-align: center;
  text-transform: uppercase;
  margin: 3px 173px 17px 0;
  padding-left: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
}

.hero-button-wrap {
  text-align: center;
  margin-top: 0;
  overflow: hidden;
}

.hero-button-wrap.home {
  margin-top: 60px;
}

.hero-button-wrap.left {
  text-align: left;
}

.hero-overly {
  background-color: var(--bg-black);
  background-image: linear-gradient(173deg, #000c, #050505b0 34%, #05050500 72%), url('../images/home-hero2.jpg');
  background-position: 0 0, 80% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 90vh;
  position: absolute;
  inset: 0%;
}

.hero-social-icon-style-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-right: 0;
  display: flex;
  position: absolute;
  inset: 23% 7% 0% auto;
}

.hero-social-icon-style-inner-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.hero-social-icon-border-shape {
  background-color: #fff;
  width: 1px;
  height: 60px;
}

.hero-social-icon-link {
  background-color: var(--paragraph-color);
  border: 1px solid #ffffff6b;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  transition: border-color .3s, color .3s, background-color .3s;
  display: flex;
}

.hero-social-icon-link:hover {
  border-width: 3px;
  border-color: var(--primary-color);
  background-color: var(--paragraph-color);
  color: var(--black);
}

.hero-social-icon.linkedin {
  color: var(--primary-color);
  width: 20px;
  height: 30px;
  padding-top: 4px;
}

.hero-content-and-social-wrapper {
  z-index: 2;
  margin-left: -120px;
  margin-right: 0;
  padding-top: 60px;
  position: relative;
}

.services-section.section-pt-125.section-pb-130 {
  background-image: none;
  padding-top: 60px;
  padding-bottom: 80px;
}

.service-card-wrapper {
  border: 1px solid var(--heading-color);
  background-color: var(--heading-color);
  background-image: linear-gradient(#fffcfcde, #fffcfcde), url('../images/quotation-marks.svg');
  background-position: 0 0, 95% 5%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 50%;
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  padding: 42px 20px;
  transition: border-color .3s;
  display: flex;
  position: relative;
}

.service-card-wrapper:hover {
  border-color: var(--primary-color);
}

.service-icon-image-wrap {
  margin-bottom: 33px;
}

.service-title {
  margin-bottom: 0;
  transition: color .3s;
}

.service-title:hover {
  color: var(--primary-color);
}

.service-title.dark {
  color: var(--bg-light-black);
  margin-bottom: 20px;
  margin-left: -5px;
}

.service-button-wrapper {
  display: flex;
}

.service-summary {
  margin-bottom: 22px;
  line-height: 30px;
}

.service-summary.dark {
  color: var(--bg-light-black);
  margin-bottom: 40px;
}

.client-logo-section {
  padding-top: 220px;
}

.client-logo-section.padding-bottom-zero {
  background-color: var(--bg-light-black);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.client-logo-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.client-logo-block {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  flex: none;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  margin-right: 75px;
  display: flex;
}

.team-image-wrapper {
  padding-bottom: 4px;
  position: relative;
  overflow: hidden;
}

.team-image-inner {
  z-index: 2;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-social-area {
  z-index: 3;
  position: absolute;
  top: auto;
  left: 0;
  right: auto;
}

.footer {
  position: static;
}

.footer-top {
  background-image: url('../images/QM.svg'), linear-gradient(180deg, var(--bg-light-black), var(--bg-black));
  background-position: 98% 20%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto 80%, auto;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.footer-bottom {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  background-color: var(--bg-light-black);
  text-align: center;
  flex-flow: row;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.footer-top-wrapper {
  z-index: 2;
  grid-column-gap: 80px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  padding-top: 20px;
  display: grid;
  position: relative;
}

.footer-logo-link {
  margin-bottom: 20px;
}

.footer-summary {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
}

.footer-title {
  margin-bottom: 38px;
}

.single-contact-info-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  margin-bottom: 17px;
  display: flex;
}

.single-contact-info-wrap.mb-zero {
  margin-bottom: 0;
}

.single-contact-info-wrap.footer {
  margin-bottom: 10px;
}

.contact-info-icon-wrap {
  flex: 0 0 25px;
  justify-content: center;
  align-items: center;
  min-width: 25px;
  display: flex;
}

.contact-info-content-wrap {
  color: var(--paragraph-color);
  font-weight: 300;
}

.contact-info-content-wrap.width-270 {
  width: 270px;
}

.contact-info-content-wrap.width-300 {
  max-width: 300px;
}

.footer-top-overly {
  background-color: var(--bg-black);
  opacity: .91;
  color: var(--bg-light-black);
  position: absolute;
  inset: 0%;
}

.copyright-text {
  text-align: right;
  flex: 1;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
}

.copyright-text.r {
  text-align: left;
  flex: 1;
  font-size: 12px;
}

.copyright-text.l {
  text-align: left;
  font-size: 12px;
}

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

.copyright-link:hover {
  text-decoration: underline;
}

.about-us-section {
  overflow: hidden;
}

.about-us-section.section-pb-130.section-pt-130 {
  background-color: var(--bg-light-black);
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-us-section.section-pb-130.section-pt-130.about {
  background-color: var(--bg-light-black);
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.about-us-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-us-image {
  width: 100%;
  margin-top: 0;
}

.about-us-image-one-wrapper {
  z-index: 5;
  border-radius: 15px;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.about-us-summary {
  font-family: var(--inter);
  margin-top: 0;
  margin-bottom: 30px;
}

.about-us-button {
  text-align: center;
  margin-top: 0;
  overflow: hidden;
}

.about-us-image-inner {
  position: relative;
}

.about-us-circle-one {
  z-index: 2;
  border: 1px solid #ffffff0d;
  border-radius: 100%;
  width: 450px;
  height: 450px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.about-us-circle-two {
  z-index: 2;
  border: 1px solid #ffffff0d;
  border-radius: 100%;
  width: 416px;
  height: 416px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.about-us-blur-shape {
  background-color: var(--primary-color);
  opacity: .63;
  filter: blur(77.5px);
  border-radius: 100%;
  width: 400px;
  height: 400px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.breadcrumb-section {
  z-index: 5;
  background-color: var(--bg-light-black);
  background-image: url('../images/breadcrumb-bg-img.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
  overflow: hidden;
}

.breadcrumb-section.breadcrumb-section-padding {
  padding-top: 90px;
  padding-bottom: 100px;
}

.breadcrumb-wrapper {
  z-index: 5;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: end start;
  display: grid;
  position: relative;
}

.breadcrumb-wrapper.block {
  text-align: center;
  display: block;
}

.breadcrumb-content-wrapper.width-100-percent {
  width: 100%;
}

.breadcrumb-main-image-wrapper {
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
  overflow: hidden;
}

.breadcrumb-menu-wrapper {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: #17d2bd1a;
  border: 1px solid #ffffff1a;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 9px;
  padding-right: 9px;
  display: inline-flex;
}

.breadcrumb-title {
  margin-bottom: 12px;
  font-size: 48px;
  line-height: 58px;
}

.breadcrumb-title.service-details-title {
  font-size: 50px;
  line-height: 60px;
}

.breadcrumb-summary {
  color: var(--body-color);
}

.breadcrumb-summary.service-details-short-description {
  max-width: 71%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-main-image-inner-block {
  opacity: .22;
  text-align: center;
  width: 400px;
  position: relative;
}

.breadcrumb-main-image {
  z-index: -1;
  filter: drop-shadow(0 2px 5px #000000b3);
  width: 300px;
  position: relative;
}

.breadcrumb-main-image-content-block {
  z-index: 3;
  text-align: center;
  position: absolute;
  inset: auto 0% 0%;
}

.working-process-section {
  overflow: hidden;
}

.working-process-section.bg-light-black {
  background-color: var(--bg-light-black);
}

.working-process-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
}

.way-we-work-section {
  background-color: var(--bg-light-black);
  overflow: hidden;
}

.way-we-work-section.section-pt-125.section-pb-125 {
  background-color: var(--bg-black);
  padding-top: 60px;
  padding-bottom: 106px;
}

.way-we-work-section.section-pt-125.section-pb-125._2 {
  background-color: var(--bg-light-black);
  padding-top: 60px;
  padding-bottom: 60px;
}

.way-we-work-section.section-pt-125.section-pb-125.about {
  padding-bottom: 60px;
}

.way-we-work-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.way-we-work-content-wrapper {
  padding-right: 10px;
}

.way-we-work-image-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.way-we-work-image-wrapper.mob {
  display: none;
}

.way-we-work-image-inner-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.way-we-work-image-right-block {
  z-index: 3;
  width: 100%;
  position: relative;
}

.way-we-work-image-left-inner {
  border-radius: 15px;
  padding-left: 0;
  overflow: hidden;
}

.section-title-summary {
  margin-top: 20px;
  margin-bottom: 0;
}

.way-we-work-list {
  margin-top: 21px;
  overflow: hidden;
}

.way-we-work-list-item {
  color: var(--paragraph-color);
}

.way-we-work-border-one {
  z-index: 0;
  border: 1px solid #ffffff26;
  border-radius: 100%;
  width: 280px;
  height: 280px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.way-we-work-border-two {
  z-index: 2;
  border: 1px solid #ffffff26;
  border-radius: 100%;
  width: 360px;
  height: 360px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.way-we-work-border-three {
  z-index: 2;
  border: 1px solid #ffffff26;
  border-radius: 100%;
  width: 400px;
  height: 400px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.way-we-work-blur-color {
  background-color: var(--primary-color);
  filter: blur(77.5px);
  border-radius: 100%;
  width: 234px;
  height: 234px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.who-we-are-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 5fr 7fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.who-we-are-section-title-wrap {
  padding-top: 0;
  padding-bottom: 90px;
}

.who-we-are-content-area {
  margin-left: 40px;
  padding-top: 0;
  padding-bottom: 65px;
  position: relative;
}

.single-who-we-are-content-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: .3px solid var(--black);
  background-color: var(--black);
  padding-top: 33px;
  padding-bottom: 30px;
  padding-left: 30px;
  display: flex;
  position: sticky;
  top: 20px;
}

.who-we-are-section-title-inner {
  position: sticky;
  top: 20px;
}

.who-we-are-number-wrap {
  flex: 0 0 42px;
}

.who-we-are-number-text {
  background-color: var(--primary-color);
  color: var(--black);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-top: 7px;
  font-weight: 700;
  display: flex;
}

.who-we-are-content-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.who-we-are-title {
  margin-bottom: 0;
}

.service-details-title {
  margin-bottom: 23px;
  font-size: 32px;
  line-height: 44px;
}

.project-collection-item {
  border: 1px solid #202327;
  padding: 50px 50px 40px;
  transition: background-color .3s;
}

.project-collection-item:hover {
  background-color: var(--bg-light-black);
}

.contact-us-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-us-map-wrap {
  background-image: url('../images/contact.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-us-form-and-info-wrap {
  padding: 10px 30px 40px;
}

.contact-us-form-wrap {
  margin-bottom: 40px;
}

.contact-info-area {
  margin-top: 50px;
  margin-bottom: 40px;
}

.contact-info-title {
  margin-bottom: 26px;
  font-size: 22px;
}

.contact-us-form-and-info-inner {
  max-width: 95%;
}

.contact-us-section-title-wrapper {
  padding-bottom: 30px;
}

.utility-page-wrap {
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
}

.utility-page-content {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.error-wrap {
  text-align: center;
  width: 100%;
  height: 100%;
}

.error-image {
  width: 400px;
}

.error-title {
  margin-top: 10px;
  margin-bottom: 18px;
}

.error-excerpt {
  margin-bottom: 35px;
}

.error-subtitle {
  color: var(--primary-color);
  margin-top: 30px;
  font-size: 48px;
  font-weight: 600;
  line-height: 50px;
}

.button-primary-text {
  z-index: 3;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
}

.button-primary-hover {
  background-color: var(--body-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 100% auto auto 50%;
  transform: translate(-50%);
}

.button-secondary {
  background-color: var(--primary-color);
  border-radius: 8px;
  justify-content: center;
  align-items: flex-end;
  padding: 7px 20px;
  transition: color .5s;
  display: block;
  position: relative;
  overflow: hidden;
}

.button-secondary:hover {
  color: var(--black);
}

.button-secondary.service {
  position: absolute;
  inset: auto auto 4% 7%;
}

.button-secondary-text {
  z-index: 3;
  font-weight: 500;
  position: relative;
}

.button-secondary-hover {
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 100% auto auto 50%;
  transform: translate(-50%);
}

.button-outline {
  border: 1px solid var(--body-color);
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  padding: 10px 35px;
  transition: color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-outline:hover {
  color: var(--black);
}

.button-outline.top-space {
  margin-top: 30px;
}

.password-protected-wrap {
  background-color: var(--bg-light-black);
  text-align: center;
  border-radius: 15px;
  width: 600px;
  padding: 120px 30px;
}

.password-protected-image-wrap {
  background-color: var(--bg-black);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.password-protected-image {
  width: 65px;
}

.cta-section.section-pb-130 {
  background-image: radial-gradient(circle farthest-corner at 50% 50%, black, var(--bg-light-black));
  padding-top: 100px;
}

.cta-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--primary-color);
  background-image: url('../images/cta-pattern.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 51px 50px 47px;
  display: flex;
  position: relative;
}

.cta-content-wrap {
  max-width: 530px;
}

.section-title-span {
  color: var(--body-color);
  font-weight: 400;
}

.section-pt-130 {
  padding-top: 100px;
}

.section-pt-125 {
  padding-top: 95px;
}

.section-pt-120 {
  padding-top: 90px;
}

.section-pb-130 {
  padding-bottom: 100px;
}

.section-pb-125 {
  padding-bottom: 95px;
}

.cta-shape-image {
  width: 70px;
  position: absolute;
  inset: 50% 30% auto auto;
  transform: translate(0, -50%);
}

.section-title-left-align {
  perspective-origin: 0%;
  transform-origin: 0%;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.section-title-right-align {
  perspective-origin: 100%;
  transform-origin: 100%;
}

.who-we-are-content-border-left {
  z-index: 1;
  background-color: #202327;
  width: 1px;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.who-we-are-content-scrolling-border-left {
  z-index: 2;
  background-color: var(--primary-color);
  width: 1px;
  height: 0%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.breadcrumb-blur-shape-one {
  background-color: var(--primary-color);
  opacity: .15;
  filter: blur(162px);
  width: 483px;
  height: 980px;
  position: absolute;
  inset: -620px auto auto -110px;
  overflow: hidden;
  transform: rotate(30deg);
}

.breadcrumb-blur-shape-two {
  background-color: var(--primary-color);
  opacity: .15;
  filter: blur(162px);
  width: 483px;
  height: 980px;
  position: absolute;
  inset: 50% 13.5% auto auto;
  overflow: hidden;
  transform: translate(0, -50%)rotate(30deg);
}

.breadcrumb-title-block, .breadcrumb-summary-block {
  overflow: hidden;
}

.hero-title-block {
  width: 100.594%;
  overflow: hidden;
}

.section-subtitle-block, .section-title-block, .about-us-summary-block, .section-summary-block, .contact-info-block {
  overflow: hidden;
}

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

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.header {
  background-color: var(--bg-light-black);
  padding-top: 0;
  padding-bottom: 0;
}

.header.transparent-header {
  z-index: 99;
  position: absolute;
  inset: 0% 0% auto;
}

.header.transparent-header.header-border-bottom, .header.header-border-bottom {
  border-bottom: 1px solid #d9d9d91a;
}

.navbar-menu {
  background-color: #ddd0;
}

.header-button.for-small-device {
  display: none;
}

.nav-list-item {
  background-image: none;
  margin-bottom: 0;
  padding-left: 0;
}

.nav-list-item-text {
  border-bottom: 2px solid #0000;
  padding: 35px 12px;
  font-size: 18px;
  font-weight: 400;
  transition: color .3s;
  display: inline-block;
}

.nav-list-item-text:hover {
  color: var(--primary-color);
}

.nav-list-item-text.w--current {
  border-bottom-color: var(--primary-color);
  background-color: #ffffff0d;
}

.nav-list-item-text.blog {
  display: none;
}

.header-call-info-wrap {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  justify-content: flex-start;
  align-items: center;
  display: none;
}

.header-call-icon {
  width: 35px;
  height: 35px;
  margin-top: -3px;
}

.header-call-info-text-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.header-phone-number {
  font-weight: 500;
  transition: color .3s;
}

.header-phone-number:hover {
  color: var(--primary-color);
}

.header-wrap {
  background-color: var(--bg-light-black);
  margin-left: 0;
  margin-right: 0;
  padding-left: 30px;
  padding-right: 30px;
}

.mobile-menu-logo-wrap {
  display: none;
}

.contact-info-phone-icon {
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 26px;
  margin-top: 3px;
}

.contact-info-mail-icon {
  color: var(--primary-color);
  width: 25px;
  height: 25px;
  margin-top: 4px;
}

.contact-info-location-icon {
  color: var(--primary-color);
  width: 18px;
  height: 26px;
  margin-top: 4px;
}

.single-pricing-plan-card-area {
  border-radius: 15px;
  padding: 1px 1px 1.5px;
  position: relative;
  overflow: hidden;
}

.password-protected-inner {
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

.code-embed {
  color: var(--heading-color);
  text-align: center;
  width: 50%;
  margin-top: 0;
  margin-left: 146px;
  padding-bottom: 20px;
  padding-left: 0;
  font-size: 14px;
}

.section.why-us {
  padding-top: 80px;
}

.why-us-text {
  margin-top: 20px;
  margin-bottom: 40px;
}

.paragraph {
  margin-top: 0;
}

.code-embed-2 {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}

.team-member {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: block;
  position: relative;
}

.header-phone-number-2 {
  font-weight: 500;
  transition: color .3s;
}

.header-phone-number-2:hover {
  color: #17d2bd;
}

.button-primary-text-2 {
  z-index: 3;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
}

.button-primary-hover-2 {
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 100% auto auto 50%;
  transform: translate(-50%);
}

.button-primary-2 {
  background-color: var(--primary-color);
  color: #02050a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px 35px;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.button-primary-2.small {
  padding: 12px 30px;
}

.button-primary-2.hero {
  margin-right: 155px;
}

.button-primary-2.hero.mob {
  margin-right: 179px;
}

.nav-list-item-text-2 {
  border-bottom: 2px solid #0000;
  padding: 35px 12px;
  font-size: 18px;
  font-weight: 400;
  transition: color .3s;
  display: inline-block;
}

.nav-list-item-text-2:hover {
  color: #17d2bd;
}

.nav-list-item-text-2.w--current {
  background-color: #ffffff0d;
  border-bottom-color: #17d2bd;
}

.team-member-single {
  z-index: 3;
  width: 100%;
  padding-left: 0;
  position: relative;
}

.button-primary-hover-3 {
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 100% auto auto 50%;
  transform: translate(-50%);
}

.button-primary-3 {
  background-color: var(--primary-color);
  color: #02050a;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px 35px;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.button-primary-hover-4 {
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 100% auto auto 50%;
  transform: translate(-50%);
}

.paragraph-2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.bold-text-2, .bold-text-3, .bold-text-4 {
  font-size: 28px;
}

.paragraph-3 {
  text-align: center;
  margin-bottom: 40px;
}

.button-primary-4 {
  color: #02050a;
  background-color: #17d2bd;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px 35px;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.button-primary-4.bg-black {
  color: #fff;
  background-color: #02050a;
}

.button-primary-4.bg-black:hover {
  color: #02050a;
}

.button-primary-text-3 {
  z-index: 3;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
}

.button-primary-hover-5 {
  background-color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  inset: 100% auto auto 50%;
  transform: translate(-50%);
}

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

.team-bio-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.team-bio-wrapper.new {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-columns: .5fr .5fr;
  place-items: center;
  margin-top: 0;
}

.code-embed-4 {
  width: 100%;
  max-width: 100%;
}

.grid {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 0;
}

.section-2 {
  background-color: var(--bg-light-black);
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.div-block {
  text-align: center;
  width: 78%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.underline {
  background-color: var(--primary-color);
  width: 50px;
  height: 2px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: auto;
}

.underline.center {
  margin-left: auto;
  margin-right: auto;
}

.logo-div-wrapper {
  background-color: var(--body-color);
  background-image: url('../images/Pathfind-Media-logo-2024.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 200px;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  transition: transform .5s, opacity .2s;
  display: flex;
  overflow: hidden;
}

.way-we-work-image-right-block-copy {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.terms {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  margin-bottom: 60px;
  display: block;
}

.container-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 940px;
  display: flex;
}

.mob-code-embed {
  color: var(--heading-color);
  text-align: center;
  width: 80%;
  margin-top: -30px;
  margin-left: 146px;
  padding-bottom: 20px;
  padding-left: 0;
  font-size: 14px;
  display: none;
}

.c-card-front {
  perspective: 1000px;
  color: #1a1b1f;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 550px;
  display: flex;
}

.cloneable-area {
  padding: 20px 10px;
}

.c-card-quote {
  background-image: url('../images/semi-colon.svg');
  background-position: 90% 100%;
  background-repeat: no-repeat;
  background-size: auto 200px;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 20px 32px 10px;
  display: flex;
  position: relative;
}

.c-card-quote.nielen {
  background-image: url('../images/semicolon.svg');
  background-position: 50% 90%;
  background-size: auto 145px;
}

.c-card-quote.petro {
  background-image: url('../images/elips.svg');
  background-position: 50% 80%;
  background-size: 160px;
}

.c-card-quote.solette {
  background-image: url('../images/dash.svg');
  background-position: 50% 80%;
  background-size: auto 30px;
}

.c-flip-card {
  position: relative;
}

.c-card-back {
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 550px;
  display: none;
}

.c-card-back.teal {
  display: none;
}

._w-card-front {
  perspective: 1000px;
  background-color: #4f0f46;
  background-image: linear-gradient(45deg, #000, #3f5f2c);
  border-radius: 20px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transform: none;
}

._w-card-front.nielen {
  background-image: url('../images/Nielen-de-Klerk.jpg');
  background-position: 50%;
  background-size: cover;
}

._w-card-front.petro {
  background-color: var(--bg-light-black);
  background-image: url('../images/PetroWagner.jpg');
  background-position: 0%;
  background-size: cover;
}

._w-card-front.solette {
  background-image: url('../images/SoletteSwanepoel.jpg');
  background-position: 0%;
  background-size: cover;
}

._w-flip-card {
  z-index: 10;
  perspective: 1000px;
  display: flex;
  position: relative;
}

._w-card-img {
  perspective: 1000px;
  transform-style: preserve-3d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: z-index;
  display: flex;
  transform: translate3d(0, 0, -50px);
}

._w-card-back {
  border: 1px solid var(--heading-color);
  perspective: 1000px;
  color: var(--body-color);
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
  box-shadow: 1px 1px 11px #3333333d;
}

._w-card-back.teal {
  background-color: var(--primary-color);
  color: var(--primary-color);
  border-width: 0;
}

.c-card-img {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

._w-card-quote {
  color: var(--body-color);
  margin-top: -90px;
  position: relative;
}

.small-caps {
  color: #fff;
  text-transform: uppercase;
  flex: 0 auto;
  font-size: 13px;
  display: none;
}

.card-btn-link {
  color: #fff;
  text-align: center;
  border: 2px solid #ff6565;
  border-radius: 1000px;
  width: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.card-quote-2 {
  z-index: 5;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 1em;
  font-style: italic;
  line-height: 1.4em;
  position: relative;
}

.card-quote-2.white {
  margin-top: -90px;
  padding-top: 0;
  font-size: 1.4em;
}

.bold-text-8 {
  text-shadow: 0 1px 9px #0003;
  font-size: 38px;
}

.paragraph-5 {
  font-size: 23px;
}

.paragraph-5.top-space {
  margin-top: 10px;
}

.pricing {
  background-color: var(--body-color);
  width: 100%;
  max-width: 100%;
  padding-top: 60px;
  padding-bottom: 80px;
}

.code-embed-5 {
  width: 100%;
}

.container-mobile-hide {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  padding: 0 15px;
  display: flex;
}

.container-mobile-hide.center {
  text-align: center;
}

.portfolio-embed {
  z-index: 5;
  text-align: center;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-right: auto;
  display: flex;
  position: relative;
}

.portfolio-wrapper {
  width: 100%;
  max-width: 1000px;
}

.portfolio-inner {
  position: relative;
}

.bg-circle-1 {
  z-index: 2;
  border: 1px solid #ffffff0d;
  border-radius: 100%;
  width: 450px;
  height: 450px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.portfolio-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 99.9987%;
  max-width: 100%;
  display: block;
}

.container-5 {
  width: 100%;
  max-width: 1000px;
}

.pricing-embed {
  z-index: 5;
  text-align: center;
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-right: auto;
  display: flex;
  position: relative;
}

.embed {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.blog-container {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  max-width: 78%;
  margin-top: 0;
  padding: 0 15px;
  display: flex;
}

.blog-container.center {
  text-align: center;
}

.code-embed-6 {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
}

@media screen and (min-width: 1280px) {
  h1 {
    font-size: 60px;
    line-height: 72px;
  }

  h2 {
    font-size: 48px;
    line-height: 58px;
  }

  .container {
    max-width: 1200px;
  }

  .hero-section-top-wrapper {
    padding-bottom: 320px;
  }

  .hero-content-wrapper {
    max-width: 800px;
    margin-top: 100px;
    margin-left: -140px;
  }

  .hero-title {
    width: 95%;
    margin-right: 0;
    padding-right: 89px;
  }

  .hero-button-wrap.home {
    margin-top: 60px;
  }

  .hero-social-icon-style-wrapper {
    margin-top: 108px;
    top: 2%;
    right: -26%;
  }

  .hero-content-and-social-wrapper {
    margin-left: 50px;
    margin-right: 50px;
  }

  .services-section.section-pt-125.section-pb-130 {
    padding-top: 60px;
  }

  .service-card-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .client-logo-section.padding-bottom-zero {
    padding-bottom: 80px;
  }

  .client-logo-block {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    margin-right: 100px;
  }

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

  .footer-top-wrapper {
    grid-row-gap: 80px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-widget.footer-first-column {
    margin-right: -30px;
  }

  .contact-info-content-wrap.width-300 {
    max-width: 100%;
  }

  .copyright-link:hover {
    text-decoration: underline;
  }

  .about-us-wrapper {
    place-items: center start;
  }

  .about-us-content-wrapper {
    margin-left: 30px;
  }

  .about-us-summary {
    margin-bottom: 30px;
  }

  .about-us-button {
    margin-top: 0;
  }

  .about-us-circle-one {
    width: 552px;
    height: 552px;
  }

  .about-us-blur-shape {
    width: 500px;
    height: 500px;
  }

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

  .breadcrumb-main-image-wrapper {
    padding-right: 40px;
  }

  .breadcrumb-title.service-details-title {
    font-size: 60px;
    line-height: 70px;
  }

  .breadcrumb-summary.service-details-short-description {
    max-width: 56%;
  }

  .working-process-section.bg-light-black.section-pt-120.section-pb-125 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .working-process-wrapper {
    justify-content: center;
    align-items: center;
    display: block;
  }

  .working-process-section-title-wrapper {
    max-width: none;
  }

  .way-we-work-section.section-pt-125.section-pb-125._2 {
    padding-top: 50px;
  }

  .way-we-work-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    place-items: center;
    max-width: 1170px;
    margin-top: 40px;
  }

  .way-we-work-content-wrapper {
    max-width: none;
  }

  .way-we-work-image-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .who-we-are-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 4fr 8fr;
    grid-auto-columns: 1fr;
  }

  .who-we-are-section-title-wrap {
    padding-top: 20px;
    padding-bottom: 120px;
  }

  .who-we-are-content-area {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .single-who-we-are-content-wrap {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    padding-left: 50px;
  }

  .who-we-are-section-title-inner {
    max-width: 390px;
  }

  .service-details-title {
    font-size: 38px;
    line-height: 50px;
  }

  .contact-us-map-wrap {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .contact-us-form-and-info-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
  }

  .contact-info-area {
    margin-top: 70px;
  }

  .contact-us-form-and-info-inner {
    max-width: 600px;
  }

  .contact-us-section-title-wrapper {
    padding-bottom: 20px;
  }

  .error-image {
    width: 500px;
  }

  .password-protected-wrap {
    width: 700px;
  }

  .cta-wrapper {
    padding-left: 115px;
    padding-right: 115px;
  }

  .cta-content-wrap {
    max-width: 570px;
  }

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

  .section-pt-125 {
    padding-top: 125px;
  }

  .section-pt-120 {
    padding-top: 120px;
  }

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

  .section-pb-125 {
    padding-bottom: 125px;
  }

  .cta-shape-image {
    width: 115px;
    right: 32%;
  }

  .breadcrumb-blur-shape-two {
    display: none;
  }

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

  .header-button {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .nav-list-item-text {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-call-info-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    display: flex;
  }

  .header-wrap {
    margin-left: 50px;
    margin-right: 50px;
  }

  .code-embed {
    margin-left: 131px;
  }

  .nav-list-item-text-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .paragraph-2 {
    width: 80%;
    max-width: 100%;
  }

  .team-bio-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    place-items: center;
    max-width: 1170px;
    margin-top: 40px;
  }

  .team-bio-wrapper.new {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: .5fr .5fr;
    place-items: center;
    margin-top: 40px;
  }

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

  .container-2 {
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
  }

  .mob-code-embed {
    margin-left: 131px;
  }

  .container-mobile-hide {
    max-width: 1200px;
  }

  .bg-circle-1 {
    width: 552px;
    height: 552px;
  }

  .portfolio-container {
    place-items: center start;
  }

  .blog-container {
    max-width: 1200px;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 65px;
    line-height: 75px;
  }

  blockquote {
    padding-left: 80px;
    padding-right: 80px;
  }

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

  .hero-content-wrapper {
    max-width: 900px;
  }

  .hero-title {
    font-size: 70px;
    line-height: 90px;
  }

  .hero-button-wrap {
    padding-left: 20px;
  }

  .hero-button-wrap.left {
    padding-left: 0;
  }

  .hero-social-icon-style-wrapper {
    margin-top: 105px;
    right: -31%;
  }

  .hero-content-and-social-wrapper {
    margin-left: -32px;
    margin-right: 75px;
    padding-top: 60px;
  }

  .service-card-wrapper {
    padding-left: 34px;
    padding-right: 34px;
  }

  .client-logo-block {
    grid-column-gap: 170px;
    grid-row-gap: 170px;
    margin-right: 170px;
  }

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

  .footer-bottom {
    background-color: var(--bg-black);
    border: 1px solid #00000063;
  }

  .about-us-section.section-pb-130.section-pt-130.about {
    padding-bottom: 130px;
  }

  .about-us-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .about-us-image-one-wrapper {
    margin-right: 0;
  }

  .about-us-content-wrapper {
    margin-left: 40px;
  }

  .about-us-blur-shape {
    width: 552px;
    height: 552px;
  }

  .breadcrumb-summary {
    max-width: 100%;
  }

  .breadcrumb-summary.service-details-short-description {
    max-width: 53%;
  }

  .way-we-work-section.section-pt-125.section-pb-125._2 {
    padding-bottom: 80px;
  }

  .way-we-work-section.section-pt-125.section-pb-125.about {
    padding-top: 60px;
  }

  .way-we-work-list {
    margin-bottom: 20px;
  }

  .contact-us-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-us-map-wrap {
    background-position: 50% 34%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .contact-us-form-and-info-wrap {
    padding-left: 40px;
  }

  .contact-us-form-wrap {
    margin-bottom: 40px;
  }

  .contact-info-area {
    margin-top: 20px;
  }

  .contact-us-form-and-info-inner {
    max-width: 700px;
  }

  .error-subtitle {
    margin-top: 30px;
    line-height: 56px;
  }

  .cta-shape-image {
    right: 36%;
  }

  .header-button {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .nav-list-item-text {
    padding-left: 22px;
    padding-right: 22px;
  }

  .header-wrap {
    margin-left: 100px;
    margin-right: 100px;
  }

  .code-embed {
    margin-top: 0;
    margin-left: 170px;
  }

  .nav-list-item-text-2 {
    padding-left: 22px;
    padding-right: 22px;
  }

  .team-member-single {
    padding-left: 0;
  }

  .team-bio-wrapper, .team-bio-wrapper.new {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .section-2 {
    padding-left: 60px;
  }

  .container-2 {
    max-width: 1200px;
  }

  .mob-code-embed {
    margin-top: -30px;
    margin-left: 170px;
  }

  .portfolio-embed {
    margin-right: 0;
  }

  .portfolio-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .pricing-embed {
    margin-right: 0;
  }
}

@media screen and (min-width: 1920px) {
  .hero-content-wrapper {
    margin-left: -200px;
  }

  .hero-button-wrap.left {
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
  }

  .hero-social-icon-style-wrapper {
    margin-top: 200px;
    margin-right: 0;
    right: -67%;
  }

  .hero-content-and-social-wrapper {
    margin-left: 0;
    padding-top: 100px;
  }

  .about-us-section.section-pb-130.section-pt-130.about {
    padding-top: 130px;
  }

  .about-us-content-wrapper {
    margin-left: 20px;
  }

  .way-we-work-content-wrapper, .section-title-summary {
    width: 100%;
    max-width: 100%;
  }

  .contact-us-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .contact-us-map-wrap {
    background-image: url('../images/contact_1.jpg');
    background-position: 50% 100%;
  }

  .contact-us-form-and-info-wrap {
    padding-left: 60px;
  }

  .contact-info-area {
    margin-top: 20px;
  }

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

  .header-wrap {
    margin-left: 230px;
    margin-right: 230px;
  }

  .code-embed {
    margin-left: 158px;
  }

  .code-embed-2 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .team-member-single {
    padding-left: 0;
  }

  .button-primary-3.left {
    justify-content: flex-start;
    align-items: center;
  }

  .team-bio-wrapper.new {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .paragraph-4 {
    width: 80%;
  }

  .container-3, .container-4 {
    max-width: 1200px;
  }

  .mob-code-embed {
    margin-left: 158px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 52px;
  }

  h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .container {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .section-title.font-size-decrease-tablet-device {
    font-size: 30px;
    line-height: 42px;
  }

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

  .section-title.small {
    color: var(--primary-color);
  }

  .section-subtitle {
    margin-bottom: 10px;
  }

  .section-subtitle-wrap.center-for-768-device {
    justify-content: center;
    align-items: center;
  }

  .hero-section-top-wrapper {
    padding-top: 150px;
    padding-bottom: 270px;
  }

  .hero-content-wrapper {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
    margin-top: 6px;
  }

  .hero-title {
    text-align: left;
    font-size: 50px;
    line-height: 60px;
  }

  .hero-button-wrap.home {
    margin-top: 60px;
  }

  .hero-overly {
    background-position: 80% 100%;
  }

  .hero-content-and-social-wrapper {
    margin-left: 0;
  }

  .client-logo-section {
    padding-top: 188px;
    padding-bottom: 70px;
  }

  .footer-top {
    padding-top: 80px;
    padding-bottom: 75px;
  }

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

  .contact-info-content-wrap.width-270 {
    width: 250px;
  }

  .about-us-wrapper {
    grid-template-columns: 1fr;
  }

  .about-us-image {
    width: 95%;
  }

  .about-us-image-one-wrapper {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-us-summary {
    margin-bottom: 30px;
  }

  .about-us-button {
    margin-top: 0;
  }

  .about-us-image-inner {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .breadcrumb-section.breadcrumb-section-padding {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .breadcrumb-content-wrapper {
    margin-right: -30px;
  }

  .breadcrumb-main-image-wrapper {
    padding-left: 30px;
    padding-right: 0;
  }

  .breadcrumb-menu-wrapper {
    margin-bottom: 12px;
  }

  .breadcrumb-title {
    margin-bottom: 8px;
    font-size: 42px;
    line-height: 52px;
  }

  .breadcrumb-title.service-details-title {
    font-size: 40px;
    line-height: 50px;
  }

  .breadcrumb-summary.service-details-short-description {
    max-width: 92%;
  }

  .breadcrumb-main-image-content-block {
    margin-left: 30px;
  }

  .working-process-section.bg-light-black.section-pt-120.section-pb-125 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .working-process-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .way-we-work-section.section-pt-125.section-pb-125 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .way-we-work-section.section-pt-125.section-pb-125.about {
    padding-top: 20px;
  }

  .way-we-work-section.section-pt-125.section-pb-125.about._1 {
    padding-top: 60px;
  }

  .way-we-work-wrapper {
    grid-template-columns: 1fr;
  }

  .way-we-work-image-wrapper {
    width: 90%;
  }

  .way-we-work-image-wrapper.desktop {
    display: none;
  }

  .way-we-work-image-wrapper.mob {
    display: block;
  }

  .way-we-work-image-inner-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
    place-items: start center;
    width: 100%;
    margin-top: 40px;
  }

  .way-we-work-section-title-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .section-title-summary {
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
  }

  .who-we-are-section-title-wrap {
    padding-top: 20px;
    padding-bottom: 70px;
  }

  .who-we-are-content-area {
    padding-top: 20px;
    padding-bottom: 45px;
  }

  .service-details-title {
    margin-bottom: 20px;
  }

  .project-collection-item {
    padding: 30px 30px 20px;
  }

  .contact-us-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-us-map-wrap {
    background-position: 50% 20%;
    height: 500px;
  }

  .contact-us-form-and-info-wrap {
    padding-top: 72px;
    padding-bottom: 70px;
  }

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

  .button-primary-text {
    font-size: 16px;
  }

  .cta-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    padding-bottom: 60px;
  }

  .cta-content-wrap {
    text-align: center;
    display: flex;
  }

  .section-pt-130 {
    padding-top: 80px;
  }

  .section-pt-125 {
    padding-top: 75px;
  }

  .section-pt-120 {
    padding-top: 70px;
  }

  .section-pb-130 {
    padding-bottom: 80px;
  }

  .section-pb-125 {
    padding-bottom: 75px;
  }

  .cta-shape-image {
    inset: auto auto 5% 15%;
  }

  .breadcrumb-blur-shape-one {
    left: 0;
  }

  .breadcrumb-blur-shape-two {
    right: 0%;
  }

  .hero-title-block {
    margin-top: -144px;
  }

  .nav-menu-wrapper {
    z-index: 99;
    background-color: var(--black);
    text-align: left;
    width: 350px;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 40px;
    display: block;
    position: fixed;
    inset: 0% auto 0% 0%;
    overflow: auto;
    box-shadow: 0 4px 50px 5px #ffffff1a;
  }

  .nav-menu {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: #fff0;
    border-top: 1px solid #d9d9d91a;
    border-bottom: 1px solid #d9d9d91a;
    flex-flow: column;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 45px;
    margin-bottom: 40px;
    padding-top: 36px;
    padding-bottom: 35px;
    overflow: auto;
  }

  .menu-button {
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 4px 12px 7px;
    transition: background-color .3s;
  }

  .menu-button:hover {
    background-color: var(--body-color);
  }

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

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

  .header-button.for-small-device {
    text-align: left;
    display: block;
  }

  .header-button.none-small-device {
    display: none;
  }

  .nav-list-item-text {
    padding: 0;
  }

  .nav-list-item-text.w--current {
    color: var(--primary-color);
    background-color: #fff0;
  }

  .header-call-info-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom: 20px;
    display: flex;
  }

  .header-call-info-text-wrap {
    text-align: left;
    display: block;
  }

  .header-wrap {
    margin-left: 35px;
    margin-right: 35px;
  }

  .mobile-menu-logo-wrap {
    display: block;
  }

  .default-menu-icon {
    display: none;
  }

  .code-embed {
    margin-top: -18px;
    margin-left: 0;
    display: flex;
  }

  .team-member {
    place-items: start center;
  }

  .nav-menu-wrapper-2 {
    z-index: 99;
    text-align: left;
    background-color: #02050a;
    width: 350px;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 40px;
    display: block;
    position: fixed;
    inset: 0% auto 0% 0%;
    overflow: auto;
    box-shadow: 0 4px 50px 5px #ffffff1a;
  }

  .menu-button-2 {
    background-color: #17d2bd;
    border-radius: 5px;
    padding: 4px 12px 7px;
    transition: background-color .3s;
  }

  .menu-button-2:hover {
    background-color: #fff;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #17d2bd;
  }

  .nav-list-item-text-2 {
    padding: 0;
  }

  .nav-list-item-text-2.w--current {
    color: #17d2bd;
    background-color: #fff0;
  }

  .team-member-single {
    width: 60%;
    padding-right: 0;
  }

  .paragraph-3 {
    text-align: left;
  }

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

  .team-bio-wrapper.new {
    flex-flow: column;
    grid-template-columns: .75fr;
    margin-top: 0;
    display: flex;
  }

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

  .logo-div-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

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

  .mob-code-embed {
    margin-top: -48px;
    margin-left: 0;
  }

  ._w-card-img {
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
  }

  .small-caps {
    display: none;
  }

  .container-mobile-hide {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-embed {
    text-align: center;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
  }

  .portfolio-inner {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .portfolio-container {
    grid-template-columns: 1fr;
  }

  .pricing-embed {
    text-align: center;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-container {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
    line-height: 47px;
  }

  h2 {
    font-size: 30px;
    line-height: 42px;
  }

  blockquote {
    background-position: 50% 45px;
    padding-top: 120px;
    padding-bottom: 40px;
    font-size: 20px;
    line-height: 36px;
  }

  .container {
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-title.font-size-decrease-tablet-device {
    font-size: 32px;
    line-height: 44px;
  }

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

  .section-subtitle {
    margin-bottom: 5px;
  }

  .hero-section-top-wrapper {
    padding-top: 143px;
    padding-bottom: 190px;
  }

  .hero-content-wrapper {
    max-width: 500px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 50px;
  }

  .hero-overly {
    background-image: linear-gradient(#000c, #050505b0 27%, #05050500 102%), url('../images/home-hero-mob.jpg');
    background-position: 0 0, 50% 100%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
  }

  .hero-social-icon-style-wrapper {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    position: static;
  }

  .hero-social-icon-style-inner-wrapper {
    flex-flow: row;
  }

  .hero-social-icon-border-shape {
    width: 60px;
    height: 1px;
  }

  .service-card-wrapper {
    width: 100%;
  }

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

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

  .footer-top-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 50px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-title {
    margin-bottom: 25px;
  }

  .single-contact-info-wrap {
    margin-bottom: 15px;
  }

  .contact-info-content-wrap.width-270 {
    width: 270px;
  }

  .about-us-wrapper {
    grid-row-gap: 60px;
  }

  .about-us-image {
    width: auto;
  }

  .about-us-image-one-wrapper {
    margin-right: auto;
  }

  .about-us-image-inner {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

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

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

  .breadcrumb-wrapper {
    grid-template-columns: 1fr;
  }

  .breadcrumb-content-wrapper {
    text-align: center;
    margin-right: 0;
  }

  .breadcrumb-main-image-wrapper {
    padding-left: 0;
  }

  .breadcrumb-title, .breadcrumb-title.service-details-title {
    font-size: 36px;
    line-height: 46px;
  }

  .breadcrumb-summary.service-details-short-description {
    max-width: 100%;
  }

  .breadcrumb-main-image-content-block {
    margin-left: 0;
  }

  .working-process-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .way-we-work-image-wrapper.desktop {
    display: none;
  }

  .way-we-work-image-inner-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 4fr;
    place-items: center;
  }

  .way-we-work-image-left-inner {
    width: 100%;
  }

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

  .who-we-are-section-title-wrap {
    padding-top: 55px;
    padding-bottom: 30px;
  }

  .who-we-are-content-area {
    margin-left: 0;
    padding-top: 0;
  }

  .single-who-we-are-content-wrap {
    padding-left: 0;
    position: static;
  }

  .who-we-are-section-title-inner {
    position: static;
  }

  .service-details-title {
    margin-bottom: 15px;
  }

  .contact-us-form-and-info-wrap {
    padding: 55px 15px;
  }

  .contact-info-area {
    margin-top: 40px;
  }

  .button-secondary.service {
    left: 4%;
  }

  .password-protected-wrap {
    width: 100%;
    margin-left: 15px;
    margin-right: 15px;
    padding: 60px 50px;
  }

  .cta-wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-top: 46px;
    padding-bottom: 60px;
  }

  .section-pt-130 {
    padding-top: 60px;
  }

  .section-pt-125 {
    padding-top: 55px;
  }

  .section-pt-120 {
    padding-top: 50px;
  }

  .section-pb-130 {
    padding-bottom: 60px;
  }

  .section-pb-125 {
    padding-bottom: 55px;
  }

  .cta-shape-image {
    left: 10%;
  }

  .who-we-are-content-border-left, .who-we-are-content-scrolling-border-left {
    display: none;
  }

  .breadcrumb-blur-shape-one {
    opacity: .1;
    width: auto;
    inset: 0%;
    transform: none;
  }

  .breadcrumb-blur-shape-two {
    width: auto;
    inset: 0%;
    transform: none;
  }

  .nav-menu-wrapper {
    width: 330px;
  }

  .nav-menu {
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 35px;
    padding-top: 31px;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .header-wrap {
    margin-left: 15px;
    margin-right: 15px;
  }

  .code-embed {
    margin-top: 6px;
    display: none;
  }

  .section.why-us {
    padding-top: 0;
  }

  .team-member {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: wrap;
    grid-template-columns: 4fr 8fr;
    justify-content: center;
    place-items: center start;
    display: flex;
  }

  .nav-menu-wrapper-2 {
    width: 330px;
  }

  .button-primary-2.hero.mob {
    display: none;
  }

  .team-member-single {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    width: 60%;
    padding-right: 0;
    display: block;
  }

  .paragraph-3 {
    text-align: left;
  }

  .grid {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

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

  .logo-div-wrapper {
    justify-content: center;
    align-items: center;
  }

  .terms {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mob-code-embed {
    margin-top: -27px;
    display: block;
  }

  .container-mobile-hide {
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .portfolio-embed {
    margin-right: auto;
  }

  .portfolio-inner {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .portfolio-container {
    grid-row-gap: 60px;
  }

  .pricing-embed {
    margin-right: auto;
  }

  .blog-container {
    max-width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }

  h2 {
    font-size: 25px;
    line-height: 38px;
  }

  blockquote {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    line-height: 33px;
  }

  .page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

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

  .form-submit-button {
    margin-top: 15px;
  }

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

  .section-title.font-size-decrease-tablet-device {
    font-size: 25px;
    line-height: 38px;
  }

  .section-title.center {
    color: var(--body-color);
    font-size: 30px;
  }

  .button-primary {
    padding: 10px 25px;
  }

  .hero-section-top-wrapper {
    height: 70vh;
    padding-bottom: 180px;
    padding-left: 1rem;
  }

  .hero-title {
    margin-top: 0;
    margin-bottom: 14px;
    margin-right: 0;
    font-size: 30px;
    line-height: 40px;
  }

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

  .hero-overly {
    background-image: linear-gradient(#000c, #050505b0 27%, #05050500 102%), url('../images/mob-home-hero.jpg');
    background-position: 0 0, 60% 100%;
    background-size: auto, cover;
    height: 70vh;
    padding-left: 0;
  }

  .hero-social-icon-style-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    margin-top: -18px;
  }

  .hero-social-icon-style-inner-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .hero-social-icon-link {
    width: 45px;
    height: 45px;
  }

  .hero-content-and-social-wrapper {
    padding-top: 60px;
  }

  .services-section.section-pt-125.section-pb-130 {
    padding-bottom: 20px;
  }

  .service-card-wrapper {
    padding-bottom: 0;
  }

  .service-summary.dark {
    margin-bottom: 110px;
  }

  .client-logo-section.padding-bottom-zero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .client-logo-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .client-logo-block {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    margin-right: 50px;
  }

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

  .footer-top-wrapper {
    grid-column-gap: 35px;
    grid-row-gap: 35px;
    grid-template-columns: 1fr;
  }

  .footer-title {
    margin-bottom: 20px;
  }

  .single-contact-info-wrap {
    margin-bottom: 10px;
  }

  .contact-info-content-wrap.width-270 {
    width: 100%;
  }

  .about-us-section.section-pb-130.section-pt-130 {
    padding-top: 40px;
  }

  .about-us-section.section-pb-130.section-pt-130.about {
    padding: 10px 10px 60px;
  }

  .about-us-wrapper {
    grid-row-gap: 40px;
  }

  .about-us-image {
    border-radius: 8px;
    width: 95%;
    margin-top: 21px;
  }

  .about-us-image-one-wrapper {
    text-align: center;
    margin-right: 0;
  }

  .about-us-summary {
    margin-top: 15px;
  }

  .about-us-circle-one {
    width: 280px;
    height: 280px;
  }

  .about-us-circle-two, .about-us-blur-shape {
    width: 250px;
    height: 250px;
  }

  .breadcrumb-section {
    overflow: hidden;
  }

  .breadcrumb-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    place-items: center;
  }

  .breadcrumb-title.service-details-title {
    font-size: 30px;
    line-height: 42px;
  }

  .breadcrumb-main-image-inner-block {
    width: auto;
    display: none;
  }

  .way-we-work-section.section-pt-125.section-pb-125 {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .way-we-work-section.section-pt-125.section-pb-125._2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .way-we-work-section.section-pt-125.section-pb-125.about {
    padding-top: 20px;
  }

  .way-we-work-section.section-pt-125.section-pb-125.about._1 {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .way-we-work-section.section-pt-125.section-pb-125.about._3 {
    padding-bottom: 20px;
  }

  .way-we-work-image-inner-block {
    grid-template-columns: 4fr;
  }

  .single-who-we-are-content-wrap {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .who-we-are-title {
    font-size: 18px;
  }

  .service-details-title {
    font-size: 25px;
    line-height: 38px;
  }

  .project-collection-item {
    padding: 20px 20px 15px;
  }

  .contact-us-form-and-info-wrap {
    padding-top: 10px;
  }

  .error-image {
    width: 300px;
  }

  .error-title {
    margin-bottom: 8px;
  }

  .error-excerpt {
    margin-bottom: 22px;
  }

  .button-secondary.service {
    margin-left: -7px;
  }

  .button-outline {
    padding-left: 30px;
    padding-right: 30px;
  }

  .password-protected-wrap {
    padding: 50px 15px;
  }

  .cta-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-shape-image {
    width: 50px;
    bottom: 1%;
    left: 5%;
  }

  .nav-menu-wrapper {
    padding-left: 0;
    padding-right: 20px;
  }

  .nav-menu-wrapper.mobile {
    padding-left: 43px;
  }

  .nav-menu {
    flex-direction: column;
  }

  .header {
    padding-bottom: 20px;
  }

  .navbar-menu {
    width: 100%;
  }

  .header-wrap {
    margin-bottom: 0;
  }

  .code-embed {
    margin-top: -21px;
    font-size: 20px;
    display: none;
  }

  .section.why-us {
    padding-top: 10px;
  }

  .team-member {
    grid-template-columns: 4fr;
  }

  .nav-menu-wrapper-2 {
    width: 250px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button-primary-text-2 {
    text-align: center;
  }

  .button-primary-text-2.mob {
    font-size: 16px;
  }

  .button-primary-2 {
    padding: 10px 25px;
  }

  .button-primary-2.mob {
    padding-left: 10px;
    padding-right: 10px;
    display: none;
  }

  .team-member-single {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button-primary-3 {
    padding: 10px 25px;
  }

  .bold-text-2, .bold-text-3, .bold-text-4 {
    font-size: 25px;
  }

  .paragraph-3 {
    text-align: left;
  }

  .button-primary-4 {
    padding: 10px 25px;
  }

  .team-bio-wrapper.new {
    justify-content: flex-start;
    align-items: center;
  }

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

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

  .mob-code-embed {
    margin-top: 6px;
    font-size: 20px;
    display: block;
  }

  .bold-text-7 {
    font-size: 27px;
  }

  .c-card-front {
    width: 250px;
    max-width: none;
    height: 400px;
  }

  .c-card-quote {
    padding-left: 10px;
    padding-right: 10px;
  }

  .c-card-back {
    width: 250px;
    max-width: 330px;
    height: 400px;
  }

  ._w-card-front.nielen {
    background-color: var(--bg-light-black);
  }

  .card-quote-2.white {
    font-size: 1.1em;
  }

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

  .portfolio-embed {
    text-align: center;
    margin-top: 20px;
    margin-right: 0;
  }

  .bg-circle-1 {
    width: 280px;
    height: 280px;
  }

  .portfolio-container {
    grid-row-gap: 40px;
  }

  .pricing-embed {
    text-align: center;
    margin-top: 20px;
    margin-right: 0;
  }

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

#w-node-d93a419a-02ac-0c94-a3d6-316d42d82dca-9b4088c7 {
  place-self: center;
}

#w-node-d8f2199e-f52e-a6d9-b42b-a5c75c2756a9-b92dee35 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-faf00552-8624-43fc-2203-9aa9aa14204f-b92dee35 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_697dd8af-8d60-333a-9787-e1e6917d2da3-9b408942 {
  align-self: center;
}

#w-node-_697dd8af-8d60-333a-9787-e1e6917d2da7-9b408942 {
  justify-self: end;
}

#w-node-_6fd85a02-37b9-7f94-764c-e6d1043214fa-9b408942 {
  place-self: center;
}

#w-node-_6fd85a02-37b9-7f94-764c-e6d104321503-9b408942, #w-node-a5d43506-131a-19c7-3507-f61e9b1b66b7-9b408943 {
  align-self: center;
}

#w-node-a5d43506-131a-19c7-3507-f61e9b1b66bb-9b408943 {
  justify-self: end;
}

#w-node-_32462128-aee9-8636-2cb0-32b16a3ce034-9b408943, #w-node-_14a64b5e-9e62-8d3c-22b7-058d5d27260e-9b408943 {
  place-self: center;
}

#w-node-_1f34933a-7613-e274-14de-6054dd4d3e81-9b40894f {
  align-self: center;
}

#w-node-_1f34933a-7613-e274-14de-6054dd4d3e92-9b40894f {
  justify-self: end;
}

#w-node-_42299b1a-3e29-a3eb-b15e-36174509f76d-9b408953, #w-node-_1f34933a-7613-e274-14de-6054dd4d3e81-e1b5ba9b {
  align-self: center;
}

#w-node-_1f34933a-7613-e274-14de-6054dd4d3e92-e1b5ba9b {
  justify-self: end;
}

#w-node-_1f34933a-7613-e274-14de-6054dd4d3e81-c6073115 {
  align-self: center;
}

#w-node-_1f34933a-7613-e274-14de-6054dd4d3e92-c6073115 {
  justify-self: end;
}

#w-node-_697dd8af-8d60-333a-9787-e1e6917d2da3-efd631af {
  align-self: center;
}

#w-node-_697dd8af-8d60-333a-9787-e1e6917d2da7-efd631af {
  justify-self: end;
}

#w-node-_6fd85a02-37b9-7f94-764c-e6d1043214fa-efd631af {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-_697dd8af-8d60-333a-9787-e1e6917d2da3-b659abd0 {
  align-self: center;
}

#w-node-_697dd8af-8d60-333a-9787-e1e6917d2da7-b659abd0 {
  justify-self: end;
}

#w-node-_6fd85a02-37b9-7f94-764c-e6d1043214fa-b659abd0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-a5d43506-131a-19c7-3507-f61e9b1b66b7-3be9f619 {
  align-self: center;
}

#w-node-a5d43506-131a-19c7-3507-f61e9b1b66bb-3be9f619 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_66c8ccd4-0083-625e-1e4b-0eeff122527c-9b4088c7, #w-node-_6fd85a02-37b9-7f94-764c-e6d104321503-9b408942, #w-node-_30e2d302-dfa1-4ce7-3557-f1ed026513b8-9b408942, #w-node-_8c8c9811-4531-1903-67b3-b8c4aaa9eff5-9b408942, #w-node-_06552b12-1089-c479-4925-62696e0d929a-9b408942, #w-node-_14a64b5e-9e62-8d3c-22b7-058d5d27260e-9b408943 {
    order: -9999;
  }

  #w-node-_7aa67c61-3863-15c9-cdd7-814f4930ebb7-9b40894f {
    order: 9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d93a419a-02ac-0c94-a3d6-316d42d82dca-9b4088c7 {
    place-self: center;
  }

  #w-node-_6e6a5a0c-8b8b-19e3-7eec-9382b92dee39-b92dee35 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_697dd8af-8d60-333a-9787-e1e6917d2da7-9b408942, #w-node-a5d43506-131a-19c7-3507-f61e9b1b66bb-9b408943, #w-node-_1f34933a-7613-e274-14de-6054dd4d3e92-9b40894f, #w-node-_1f34933a-7613-e274-14de-6054dd4d3e92-e1b5ba9b, #w-node-_1f34933a-7613-e274-14de-6054dd4d3e92-c6073115, #w-node-_697dd8af-8d60-333a-9787-e1e6917d2da7-efd631af, #w-node-_697dd8af-8d60-333a-9787-e1e6917d2da7-b659abd0, #w-node-a5d43506-131a-19c7-3507-f61e9b1b66bb-3be9f619 {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_6e6a5a0c-8b8b-19e3-7eec-9382b92dee39-b92dee35 {
    grid-column: span 1 / span 1;
  }

  #w-node-_30e2d302-dfa1-4ce7-3557-f1ed026513b8-9b408942, #w-node-_8c8c9811-4531-1903-67b3-b8c4aaa9eff5-9b408942, #w-node-_06552b12-1089-c479-4925-62696e0d929a-9b408942, #w-node-_14a64b5e-9e62-8d3c-22b7-058d5d27260e-9b408943 {
    order: 9999;
  }
}


@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter_18pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter_18pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter_18pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter_18pt-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter_18pt-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Freestyle Script';
  src: url('../fonts/Freestyle-Script-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}