:root {
  --backgrounda: #000820;
  --paragraphs: #f3f3f3;
  --primary-3: #37a2ce;
  --secondary-1: #c0cfe1;
  --white: white;
  --primary-2: #5de0e6;
  --headings: #4e6aee;
  --dark-1: #1d2838;
  --light-glow: rgba(93, 224, 230, .05);
  --dark-glow: rgba(0, 0, 0, .5);
  --secondary-2: #004aad;
  --banner1: rgba(48, 42, 100, .3);
  --transparent-2: rgba(29, 40, 56, .5);
  --graytexts: #616d7e;
  --primary-4: #2382c3;
  --transparent-3: rgba(29, 40, 50, .25);
  --primary-5: #3183ff;
  --gray: #777;
  --black: black;
  --dark-pallet: rgba(9, 12, 17, .5);
}

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

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

body {
  background-color: var(--backgrounda);
  color: var(--paragraphs);
  flex-flow: column;
  font-family: Outfit, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
  transition: transform .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 4em;
  font-weight: 600;
  line-height: 1;
}

h2 {
  color: var(--primary-3);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1;
}

.navbar {
  background-color: rgba(221, 221, 221, 0);
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 30px;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.navbar.com {
  background-color: rgba(221, 221, 221, 0);
}

.gridnavbar {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: stretch;
  width: 100%;
}

.nav {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav.right {
  justify-content: flex-end;
  align-items: center;
}

.brand {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  display: flex;
}

.body {
  transition-property: none;
}

.logo {
  height: 2.3em;
}

.nav-link {
  color: var(--secondary-1);
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  transition: color .4s cubic-bezier(.25, .46, .45, .94);
}

.nav-link:hover {
  color: var(--paragraphs);
  font-weight: 400;
  transform: scale(1.2);
}

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

.nav-link.w--current:hover {
  transform: scale(1.2);
}

.container {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

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

.container.footer {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

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

.container.abt-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.container.abt {
  width: 100%;
  max-width: 720px;
}

.container.homestat, .container.com {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.container.cube {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: visible;
}

.container.lb, .container.ct {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.navcta {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--paragraphs);
  text-transform: uppercase;
  background-color: #2b3749;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 30px;
  padding: 10px;
  font-size: 17px;
  line-height: 17px;
  text-decoration: none;
  transition: transform .4s;
  display: flex;
}

.navcta:hover {
  background-image: linear-gradient(120deg, var(--primary-2), var(--headings));
  transform: scale(1.2);
}

.btncircle {
  background-color: #d4d4d4;
  border-radius: 100%;
  width: 17px;
  height: 17px;
}

.shadownavbar {
  background-image: linear-gradient(180deg, var(--backgrounda), rgba(255, 255, 255, 0));
  opacity: 0;
  height: 160%;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.herosection {
  margin-top: 10em;
  margin-bottom: 5em;
}

.herosection.service {
  margin-top: 10em;
  margin-bottom: 6em;
}

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

.herosection.home {
  margin-top: 3em;
  margin-bottom: 3em;
}

.herosection.com {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 12em;
  margin-bottom: 4em;
  display: flex;
}

._2colgrid {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

._2colgrid.service {
  grid-column-gap: 30px;
  grid-template-columns: 1fr 1.25fr;
}

.contentwrapper {
  text-align: left;
}

.contentwrapper.hiring {
  text-align: right;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.contentwrapper.tandd {
  text-align: right;
}

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

.contentwrapper.bizz {
  text-align: left;
}

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

.contentwrapper.wd {
  text-align: right;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.imagewrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.imagewrapper.service {
  top: -50px;
  left: 30px;
}

.imagewrapper.grap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.imagehero {
  border-radius: 50px;
  width: 450px;
  position: absolute;
}

.bgunderlay {
  opacity: 1;
  filter: blur(100px);
  background-color: rgba(93, 224, 230, .5);
  border-radius: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.shortp {
  letter-spacing: .5px;
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 1em;
  line-height: 1.4;
}

.shortp.bizz {
  max-width: 400px;
}

.shortp.service {
  max-width: 400px;
  font-size: 1.1em;
  font-weight: 200;
}

.shortp.about {
  color: var(--secondary-1);
  text-align: center;
  max-width: 630px;
  margin-bottom: 2em;
  font-size: 1.1em;
  font-weight: 200;
  line-height: 176%;
}

.button {
  border: 1px solid var(--dark-1);
  box-shadow: -10px -6px 10px 5px var(--light-glow), 10px 6px 10px 5px var(--dark-glow);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: rgba(56, 152, 236, 0);
  border-radius: 100px;
  margin-top: 1em;
  font-size: 1em;
  line-height: 1;
  text-decoration: none;
  transition: transform .3s, color .3s, background-color .3s;
}

.button:hover {
  background-image: linear-gradient(83deg, #5de0e6, var(--secondary-2));
  color: var(--backgrounda);
  border-style: none;
  border-width: 0;
  font-weight: 500;
  transform: scale(.94);
}

.button.quote {
  border-radius: 5px;
  margin-top: 0;
  padding: 1.5em 2.8em;
}

.button.banner {
  margin-top: 0;
  padding: 16px 35px;
  line-height: 140%;
}

.servicessection {
  margin-top: 8em;
  margin-bottom: 4em;
}

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

.banner1.service {
  margin-bottom: 4em;
}

.text-block {
  border: 1px solid var(--dark-1);
  color: var(--primary-2);
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
  border-radius: 12px;
  width: 200px;
  padding: 9px 18px;
  font-size: 1em;
  font-weight: 400;
  line-height: 140%;
}

.text-block.sector {
  margin-bottom: 60px;
}

.gridservice {
  grid-column-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  margin-top: 8em;
  margin-bottom: 8em;
}

.gridservice.hiring {
  grid-template-columns: 1fr 1.25fr;
  margin-top: 10em;
}

.gridservice.ppw {
  grid-template-columns: 1fr .75fr;
  margin-top: 6em;
}

.gridservice.tandd {
  grid-template-columns: 1.5fr 2.25fr;
  margin-top: 10em;
}

.gridservice.bizz {
  grid-template-columns: 2fr 1.25fr;
  margin-top: 10em;
}

.gridservice.grap {
  grid-template-columns: 1.5fr 1.25fr;
  width: 100%;
  margin-top: 6em;
  margin-bottom: 8em;
}

.gridservice.wd {
  grid-template-columns: 1fr 1.25fr;
  margin-top: 10em;
}

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

.imagehiring {
  border-top-left-radius: 175px;
  border-bottom-right-radius: 160px;
  max-width: 80%;
  position: absolute;
  top: -60px;
  right: 50px;
}

.imageppw {
  max-width: 100%;
  position: absolute;
}

.subheader {
  color: var(--primary-2);
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1;
}

.subheader.quote {
  color: var(--paragraphs);
  text-transform: uppercase;
  font-size: 1.3em;
}

.imagetandd {
  opacity: .8;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  max-width: 100%;
  position: absolute;
}

.imagebizz {
  opacity: .7;
  mix-blend-mode: normal;
  border-bottom-right-radius: 150px;
  border-bottom-left-radius: 150px;
  max-width: 90%;
  position: absolute;
  right: 20px;
}

.pageloadoverlay {
  z-index: 2000;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.overlayslide {
  background-color: var(--backgrounda);
  width: 50%;
  height: 100%;
}

.overlayslide.oleft {
  transform-origin: 0%;
}

.overlayslide.oright {
  transform-origin: 100%;
}

.overlaylogo {
  position: absolute;
  top: 45%;
  left: 40%;
}

.lastblock {
  color: var(--backgrounda);
  text-align: center;
  letter-spacing: .5px;
  background-image: linear-gradient(270deg, #004aad, #5de0e6);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  position: static;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.featuressection {
  margin-top: 4em;
  margin-bottom: 8em;
}

.sectoritem {
  border-bottom: 1px solid var(--primary-2);
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  transition: background-color .3s, padding .3s;
  display: flex;
  position: relative;
}

.sectoritem:hover {
  background-color: rgba(255, 255, 255, .05);
  padding-left: 40px;
}

.sitemnum {
  letter-spacing: .03em;
  margin-right: 2.25em;
  font-size: 1.125em;
}

.sitem {
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1;
}

.imagesector {
  z-index: 5;
  width: 20em;
  margin-top: auto;
  margin-bottom: auto;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 10%;
}

.banner2 {
  background-color: var(--banner1);
  border-radius: 5px;
  margin-top: .5em;
  margin-bottom: 2em;
  padding: 1.2em;
}

.quotectasection {
  margin-top: 5em;
  margin-bottom: 5em;
  padding-top: 1em;
  padding-bottom: 1em;
}

.h1quote {
  margin-bottom: .75em;
  font-size: 3.5em;
  font-weight: 400;
}

.footersection {
  border-top: 1px solid var(--transparent-2);
  border-right: 1px solid var(--transparent-2);
  border-left: 1px solid var(--transparent-2);
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: 25px;
  margin-right: 25px;
  padding: 40px 30px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 -6px 10px 5px rgba(93, 224, 230, .05), 0 6px 10px 10px rgba(0, 0, 0, .3);
}

.gridfooter {
  grid-column-gap: 2em;
  grid-row-gap: 3em;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr 1fr 2fr;
  width: 100%;
}

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

.imagefooter {
  margin-bottom: 2em;
  position: relative;
  top: -5px;
  left: -15px;
}

.textfooter {
  color: var(--graytexts);
  font-size: .9em;
  line-height: 1.5;
}

.textfooter.about {
  font-size: .8em;
  font-weight: 400;
}

.subfooter {
  color: var(--graytexts);
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 1.5em;
  font-size: 1.5em;
  font-weight: 300;
  line-height: .5;
}

.linksfooter {
  color: var(--graytexts);
  font-size: .8em;
  line-height: 1.1;
  text-decoration: none;
}

.linksfooter:hover {
  color: var(--paragraphs);
  transform: scale(1.1);
}

.text-block-2 {
  color: var(--graytexts);
  margin-top: 1em;
  font-size: 16px;
  font-weight: 500;
}

.paragraph {
  color: var(--graytexts);
  font-size: .6em;
  line-height: 1.6;
}

.h1 {
  z-index: 10;
  font-weight: 400;
  position: relative;
}

.h1.about {
  text-align: center;
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: 40px;
}

.h1.home {
  text-align: center;
  text-transform: capitalize;
  font-size: 92px;
  line-height: 103%;
}

.h1.hstats {
  text-align: left;
  text-transform: capitalize;
}

.h1.com {
  z-index: 0;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.h1.hero {
  text-align: center;
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 3em;
}

.h1.abt2 {
  text-align: center;
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: 40px;
}

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

.glowtop {
  z-index: -10;
  background-image: radial-gradient(circle farthest-side at 50% -170%, rgba(0, 0, 0, 0), var(--backgrounda)), linear-gradient(180deg, var(--primary-4), rgba(255, 255, 255, 0));
  width: 100%;
  height: 500px;
  position: absolute;
  top: -70px;
  left: 0%;
  right: 0%;
}

.glowtop.banner {
  background-image: radial-gradient(circle farthest-side at 50% -170%, rgba(0, 0, 0, 0), var(--backgrounda)), linear-gradient(180deg, var(--primary-2), rgba(255, 255, 255, 0));
}

.glowtop.home {
  background-image: radial-gradient(circle farthest-side at 50% -170%, rgba(0, 0, 0, 0), var(--backgrounda)), linear-gradient(180deg, var(--primary-4), rgba(255, 255, 255, 0));
}

.serviceabout {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 100px;
  display: flex;
}

.groupcontent {
  border: 1px solid var(--transparent-3);
  background-image: linear-gradient(180deg, var(--transparent-2), var(--transparent-2));
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 100px 10% 40px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 10px 5px rgba(0, 0, 0, .3), -8px -8px 10px 5px rgba(93, 224, 230, .05);
}

.blockcontent {
  z-index: 10;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.h2.servicecontent {
  color: var(--primary-2);
  font-size: 2.5em;
}

.h2.tabtext {
  color: var(--primary-2);
  font-size: 2em;
  line-height: 1.1;
}

.h2.avout {
  color: var(--secondary-1);
  text-align: center;
  letter-spacing: 1px;
  font-weight: 400;
}

.heading-2 {
  margin-bottom: 40px;
  font-size: 2em;
  font-weight: 400;
  line-height: 1;
}

.block-quote {
  color: var(--secondary-1);
  margin-bottom: 4vh;
}

.paragraph-2 {
  letter-spacing: .5px;
  margin-bottom: 3vh;
  font-size: 1em;
  font-weight: 200;
  line-height: 1.1;
}

.glowcontent {
  z-index: 0;
  background-color: var(--primary-5);
  opacity: .6;
  filter: blur(65px);
  border-radius: 100%;
  height: 240px;
  position: absolute;
  top: -230px;
  bottom: auto;
  left: 10%;
  right: 10%;
}

.servicelist {
  z-index: 1;
  width: 100%;
  margin-bottom: 10em;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.wrapperservice {
  z-index: 1;
  width: 100%;
  position: relative;
}

.innerwrapper {
  width: 100%;
}

.tabs.service {
  display: flex;
}

.tabs-menu {
  width: 15%;
  overflow: visible;
}

.tabs-content {
  width: 85%;
  overflow: visible;
}

.tablinks {
  color: var(--gray);
  background-color: rgba(221, 221, 221, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-top: 0;
  margin-bottom: 40px;
  padding: 0;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: box-shadow .4s;
  display: flex;
  box-shadow: -6px -6px 10px 5px rgba(93, 224, 230, .05), 6px 6px 10px 5px rgba(0, 0, 0, .3);
}

.tablinks.w--current {
  border-color: var(--backgrounda);
  background-color: var(--backgrounda);
  color: var(--paragraphs);
  box-shadow: inset -3px -3px 10px -5px rgba(93, 224, 230, .3), inset 6px 6px 10px 5px rgba(0, 0, 0, .3);
}

.tablinks.tab1.w--current {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0);
}

.tablinks.tab2.w--current {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0);
  transition: opacity .2s;
  box-shadow: inset 6px 6px 10px 5px rgba(0, 0, 0, .3), inset -2px -2px 10px -5px rgba(93, 224, 230, .3);
}

.tablinks.tab5.w--current, .tablinks.tab6.w--current {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0);
}

.tabitem {
  width: 100%;
  height: 100%;
}

.slidewrapper {
  z-index: 2;
  width: 70%;
  position: relative;
}

.headline {
  letter-spacing: 1px;
  font-size: 1em;
  font-weight: 200;
  line-height: 1;
}

.underline {
  background-color: var(--white);
  width: 100%;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.quoteservice {
  letter-spacing: 1px;
  margin-top: 10px;
  font-size: 1em;
  font-weight: 200;
  line-height: 1;
}

.textbenifits {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.2;
}

.textcta {
  color: var(--primary-2);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
}

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

.contentsection {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 40px 120px;
  display: flex;
  overflow: hidden;
}

.gridabt-a {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  width: 100%;
  margin-bottom: 2em;
}

.blocks {
  background-image: linear-gradient(180deg, var(--transparent-2), var(--transparent-3));
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 370px;
  padding: 55px 55px 25px;
  display: flex;
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, .3), -4px -4px 10px 5px rgba(93, 224, 230, .05);
}

.blockdesc {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 18px;
  display: flex;
}

.gridabt-b {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-bottom: 30px;
}

.stats {
  background-image: linear-gradient(180deg, var(--transparent-2), var(--transparent-3));
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 42px;
  display: flex;
  box-shadow: -4px -4px 10px 3px rgba(93, 224, 230, .05), 4px 6px 10px 3px rgba(0, 0, 0, .3);
}

.stats.lighter {
  border: 1px solid var(--transparent-3);
  background-image: none;
}

.stats.home {
  padding-left: 20px;
  padding-right: 20px;
}

.heading-3 {
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 2px;
  font-size: 42px;
  font-weight: 500;
  line-height: 115%;
}

.textstats {
  color: var(--secondary-1);
  letter-spacing: .5px;
  font-weight: 300;
  line-height: 140%;
}

.imagedesc {
  width: 30px;
  height: 30px;
  margin-bottom: 0;
  margin-right: 16px;
}

.heading-4 {
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
}

.textdesc {
  color: var(--secondary-1);
  font-weight: 300;
}

.textdesc.brief {
  font-size: 16px;
  font-weight: 200;
}

.textdesc.fdr {
  text-align: right;
  letter-spacing: .5px;
  font-weight: 400;
  line-height: 1;
}

.about-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
}

.imagesercicetab {
  z-index: 0;
  width: 45%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.imagesercicetab.wd {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.teamsection {
  margin-top: 140px;
  margin-bottom: 140px;
}

.grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.imageteam {
  border-radius: 100%;
  width: 150px;
}

.textabout {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: 200;
}

.blockteam {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 24px;
  display: flex;
}

.groupabout {
  background-image: linear-gradient(180deg, var(--transparent-2), var(--transparent-2));
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 60px;
  padding-top: 35px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 10px 5px rgba(0, 0, 0, .3), -6px -6px 10px 5px rgba(93, 224, 230, .05);
}

.bannersection {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 100px;
  padding: 120px 40px 50px;
  display: flex;
  overflow: hidden;
}

.wrapperbanner {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  display: flex;
}

.groupbanner {
  background-color: var(--transparent-3);
  text-align: center;
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blockbanner {
  z-index: 10;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 780px;
  display: flex;
  position: relative;
}

.h3 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 52px;
  font-weight: 300;
  line-height: 100%;
}

.form-block {
  width: 100%;
  max-width: 500px;
  margin-top: 10px;
  margin-bottom: 0;
}

.form {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: stretch;
  display: grid;
}

.text-field {
  border: 1px solid var(--transparent-2);
  background-color: rgba(255, 255, 255, 0);
  border-radius: 15px;
  height: 57px;
  margin-bottom: auto;
  padding: 14px 20px;
  box-shadow: inset -2px -2px 10px -5px rgba(93, 224, 230, .05), inset 6px 6px 10px 3px rgba(0, 0, 0, .7);
}

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

.gridfeatures {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-top: 30px;
}

.features {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  padding-top: 33px;
  padding-left: 8%;
  padding-right: 8%;
  display: flex;
}

.iconbg {
  border: 1px solid var(--transparent-3);
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 26px;
  display: flex;
  box-shadow: -6px -6px 10px 3px rgba(93, 224, 230, .05), 6px 6px 10px 3px rgba(0, 0, 0, .3);
}

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

.heading-5 {
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 400;
  line-height: 130%;
}

.heading-5.bars {
  margin-bottom: 0;
}

.section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  overflow: hidden;
}

.gridhstats {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  align-items: center;
  justify-items: stretch;
  width: 100%;
}

.blockleft {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 12%;
  display: flex;
}

.gridstats {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.text-span-4 {
  font-size: 30px;
  font-weight: 300;
}

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

.subtitle {
  border: 2px solid var(--dark-1);
  color: var(--primary-2);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 140%;
}

.subtitle.service {
  margin-bottom: 60px;
}

.figuresection {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  overflow: visible;
}

.figureahero {
  perspective: 1300px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  padding-bottom: 40px;
  display: flex;
}

.figureblockah {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.figurea1 {
  background-color: var(--backgrounda);
  color: var(--primary-2);
  text-align: center;
  border-radius: 100%;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  height: 80%;
  padding-top: 20px;
  font-weight: 500;
  display: flex;
  position: absolute;
}

.figurea1.com {
  background-color: #000820;
  background-image: linear-gradient(295deg, var(--primary-2), var(--headings));
  color: var(--backgrounda);
  width: 400px;
  height: 400px;
  padding-top: 30px;
}

.figurea2 {
  background-image: linear-gradient(50deg, var(--black), #3533cd);
  text-align: center;
  border-radius: 100%;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 60%;
  padding-top: 15px;
  font-weight: 300;
  display: flex;
  position: absolute;
}

.figurea2.com {
  width: 300px;
  height: 300px;
  padding-top: 30px;
}

.figurea3 {
  background-image: linear-gradient(50deg, var(--primary-4), var(--primary-2));
  color: var(--backgrounda);
  text-align: center;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 40%;
  font-weight: 500;
  display: flex;
  position: absolute;
}

.figurea3.com {
  background-image: linear-gradient(50deg, var(--primary-4), var(--primary-2));
  width: 200px;
  height: 200px;
}

.logicsection {
  margin-top: 3em;
  margin-bottom: 6em;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  justify-items: stretch;
  width: 100%;
}

.elementblock {
  background-image: linear-gradient(180deg, var(--primary-2), var(--headings));
  border-radius: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  display: flex;
  position: relative;
  left: 13px;
  transform: rotate(45deg);
}

.elementblock:hover {
  transform: scale(1.2)rotate(45deg);
}

.textelement {
  color: var(--backgrounda);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(-45deg);
}

.elementdash {
  z-index: -1;
  background-color: var(--paragraphs);
  height: 2px;
  position: relative;
}

.cubesection {
  width: 100%;
  margin-top: 4em;
}

.cubewrapper {
  perspective: 100vh;
  transform-origin: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.cube3d {
  pointer-events: auto;
  transform-origin: 50%;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  transform: rotateX(-32deg)rotateY(45deg)rotateZ(0)translate(0);
}

.cubefront {
  z-index: 2;
  transform-origin: 50%;
  object-fit: cover;
  transform-style: preserve-3d;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  max-width: 320px;
  min-height: 320px;
  max-height: 320px;
  padding: 5px;
  display: flex;
  position: absolute;
  overflow: hidden;
  transform: translate3d(0, 0, 160px);
}

.cubeback {
  z-index: 2;
  transform-origin: 50%;
  object-fit: cover;
  transform-style: preserve-3d;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  max-width: 320px;
  min-height: 320px;
  max-height: 320px;
  padding: 5px;
  display: flex;
  position: absolute;
  overflow: hidden;
  transform: translate3d(0, 0, -160px);
}

.cubebottom {
  background-image: linear-gradient(180deg, var(--primary-4), var(--primary-2));
  transform-origin: 50% 100%;
  object-fit: cover;
  transform-style: preserve-3d;
  border-radius: 15px;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  max-width: 320px;
  min-height: 320px;
  max-height: 320px;
  padding: 5px;
  display: flex;
  position: absolute;
  overflow: hidden;
  transform: translate3d(0, 0, -160px)rotateX(-90deg)rotateY(0)rotateZ(0);
}

.cubetop {
  background-image: linear-gradient(180deg, var(--primary-2), var(--primary-4));
  transform-origin: 50% 0;
  object-fit: cover;
  transform-style: preserve-3d;
  border-radius: 15px;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  max-width: 320px;
  min-height: 320px;
  max-height: 320px;
  padding: 5px;
  display: flex;
  position: absolute;
  overflow: hidden;
  transform: translate3d(0, 0, -160px)rotateX(90deg)rotateY(0)rotateZ(0);
}

.cubeleft {
  transform-origin: 0%;
  object-fit: cover;
  transform-style: preserve-3d;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  max-width: 320px;
  min-height: 320px;
  max-height: 320px;
  padding: 5px;
  display: flex;
  position: absolute;
  overflow: hidden;
  transform: translate3d(0, 0, -160px)rotateX(0)rotateY(-90deg)rotateZ(0);
}

.cuberight {
  transform-origin: 100%;
  object-fit: cover;
  transform-style: preserve-3d;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 320px;
  max-width: 320px;
  min-height: 320px;
  max-height: 320px;
  padding: 5px;
  display: flex;
  position: absolute;
  overflow: hidden;
  transform: translate3d(0, 0, -160px)rotateX(0)rotateY(90deg)rotateZ(0);
}

.cubewrapperintro {
  perspective: 100vh;
  transform-origin: 50%;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
}

.cubeimage {
  object-fit: cover;
}

.logicbriefsection {
  margin-bottom: 3em;
  padding-top: 20px;
  padding-bottom: 120px;
  overflow: hidden;
}

.gridbrief {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.blockbrief {
  background-image: linear-gradient(180deg, var(--transparent-2), var(--transparent-2));
  text-align: center;
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 55px 10% 25px;
  display: flex;
  box-shadow: 4px 4px 10px 5px rgba(0, 0, 0, .3), -4px -4px 10px 5px rgba(93, 224, 230, .05);
}

.blockbrief.bars {
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.iconbrief {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
}

.text-span-5 {
  color: var(--paragraphs);
  letter-spacing: .5px;
}

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

.fdr-bg {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bg1 {
  background-image: linear-gradient(rgba(255, 255, 255, .3), rgba(113, 139, 171, .3));
  border-radius: 50px;
  width: 300px;
  height: 300px;
  position: absolute;
  transform: rotate(15deg);
}

.bg2 {
  background-image: linear-gradient(180deg, var(--primary-3), var(--primary-4));
  border-radius: 50px;
  width: 300px;
  height: 300px;
  position: absolute;
  transform: rotate(42deg);
}

.aboutcomsection {
  margin-top: 5em;
  margin-bottom: 5em;
}

.aboutcomsection.service {
  margin-top: 10em;
  margin-bottom: 10em;
}

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

.aboutcomsection.home {
  margin-top: 4em;
}

.aboutcomsection.com {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 12em;
  margin-bottom: 4em;
  display: flex;
}

.imagefdr {
  border-radius: 50px;
  width: 300px;
  position: absolute;
}

.fdrimagewrapper {
  position: relative;
}

.fdrimagewrapper.service {
  top: -50px;
  left: 30px;
}

.comcontentwrapper, .comcontentwrapper.hiring {
  text-align: left;
}

.comcontentwrapper.tandd, .comcontentwrapper.ppw {
  text-align: right;
}

.comcontentwrapper.bizz {
  text-align: left;
}

.gridcom {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.gridcom.service {
  grid-column-gap: 30px;
  grid-template-columns: 1fr 1.25fr;
}

.gridabtcom {
  grid-column-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.gridabtcom.service {
  grid-column-gap: 30px;
  grid-template-columns: 1fr 1.25fr;
}

.worksection {
  margin-top: 4em;
  margin-bottom: 5em;
}

.worksection.service {
  margin-top: 10em;
  margin-bottom: 10em;
}

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

.worksection.home {
  margin-top: 4em;
}

.worksection.com {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 12em;
  margin-bottom: 4em;
  display: flex;
}

.gridwork {
  grid-column-gap: 27px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  justify-items: stretch;
}

.gridwork.service {
  grid-column-gap: 30px;
  grid-template-columns: 1fr 1.25fr;
}

.community {
  position: relative;
}

.community.service {
  top: -50px;
  left: 30px;
}

.workologywrapper {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.workologywrapper.hiring {
  text-align: left;
}

.workologywrapper.tandd, .workologywrapper.ppw {
  text-align: right;
}

.workologywrapper.bizz {
  text-align: left;
}

.gridworkology {
  grid-template-rows: auto auto auto;
  grid-template-columns: .75fr 1fr;
  width: 100%;
}

.sectionhero {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15em;
  margin-bottom: 10em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blockhero {
  z-index: 10;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.headingct {
  max-width: 960px;
  margin-bottom: 40px;
  font-weight: 400;
}

.paract {
  color: var(--graytexts);
  max-width: 620px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 200;
  line-height: 150%;
}

.formct {
  width: 100%;
  max-width: 650px;
  margin-bottom: 60px;
}

.form-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  justify-items: center;
  display: grid;
}

.text-field-2 {
  border: 1px solid var(--backgrounda);
  background-color: var(--backgrounda);
  border-radius: 15px;
  height: 57px;
  margin-bottom: 0;
  padding: 14px 20px;
  box-shadow: inset -4px -1px 8px -5px rgba(93, 224, 230, .3), inset 6px 3px 10px 5px rgba(0, 0, 0, .3);
}

.gridct {
  grid-template-rows: auto;
  align-items: center;
  justify-items: stretch;
  width: 100%;
}

.textarea {
  border: 1px solid var(--backgrounda);
  background-color: var(--backgrounda);
  border-radius: 15px;
  min-width: 100%;
  max-width: 100%;
  height: 57px;
  min-height: 200px;
  max-height: 350px;
  padding: 14px 20px;
  line-height: 140%;
  box-shadow: inset -2px -1px 10px -5px rgba(93, 224, 230, .2), inset 6px 3px 10px 3px rgba(0, 0, 0, .5);
}

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

.vidhome {
  border: 1px solid var(--dark-1);
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
  box-shadow: -10px -6px 10px 5px rgba(93, 224, 230, .07), 10px 6px 10px 5px rgba(0, 0, 0, .5);
}

.cubevideo {
  border: 1px solid var(--dark-1);
  border-radius: 15px;
  width: 100%;
}

.cubevideo.flip180 {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.text-span-8 {
  color: var(--primary-3);
  font-size: 1.2em;
  font-weight: 400;
}

.bold-text {
  color: var(--secondary-1);
  letter-spacing: 1px;
}

.list {
  line-height: 1.5;
}

.text-block-3 {
  color: var(--secondary-1);
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 500;
}

.imagewd {
  max-width: 80%;
  position: absolute;
}

.success-message {
  background-color: var(--transparent-2);
  border-radius: 15px;
  box-shadow: inset -6px -6px 10px -5px rgba(93, 224, 230, .05), inset 6px 6px 10px -5px rgba(0, 0, 0, .3);
}

.failure-massege {
  background-color: var(--black);
  border-radius: 15px;
  box-shadow: inset -6px -6px 10px -5px rgba(93, 224, 230, .05), inset 6px 6px 10px -5px rgba(0, 0, 0, .3);
}

.success-message-2 {
  background-color: var(--backgrounda);
  box-shadow: inset 3px 1px 10px 5px var(--dark-glow), inset -3px -1px 10px 5px var(--light-glow);
  border-radius: 10px;
}

.error-message {
  background-color: var(--black);
  border-radius: 10px;
}

.navblock {
  z-index: 3;
  background-color: var(--dark-pallet);
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
  padding: 20px;
  display: flex;
  position: relative;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.5em;
  }

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

  .herosection.service {
    margin-bottom: 4em;
  }

  .herosection.about {
    margin-top: 8em;
    margin-bottom: 4em;
  }

  .herosection.home {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .herosection.com {
    margin-top: 8em;
    margin-bottom: 2em;
  }

  .shortp {
    font-size: 14px;
  }

  .shortp.service {
    font-size: .9em;
  }

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

  .servicessection {
    margin-top: 4em;
    margin-bottom: 3em;
  }

  .gridservice {
    grid-column-gap: 7px;
    grid-template-columns: 1.25fr 1fr;
  }

  .gridservice.ppw {
    grid-template-columns: 1fr .75fr;
  }

  .gridservice.tandd {
    grid-template-columns: 1.5fr 2fr;
  }

  .gridservice.bizz {
    grid-template-columns: 1.5fr 1.25fr;
  }

  .gridservice.wd {
    grid-template-columns: 1fr 1.25fr;
  }

  .imagehiring {
    border-top-left-radius: 100px;
    top: auto;
    right: auto;
  }

  .subheader {
    font-size: 1.3em;
  }

  .imagetandd {
    border-bottom-right-radius: 35px;
    border-bottom-left-radius: 35px;
  }

  .imagebizz {
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
    max-width: 90%;
    right: auto;
  }

  .featuressection {
    margin-top: 2em;
    margin-bottom: 4em;
  }

  .sitemnum {
    font-size: 1.1em;
  }

  .sitem {
    font-size: 1.3em;
  }

  .quotectasection {
    margin-top: 4em;
  }

  .h1quote {
    text-align: center;
  }

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

  .gridfooter {
    grid-column-gap: .8em;
    grid-template-columns: 1.25fr 1fr 1fr 1.75fr;
  }

  .imagefooter {
    width: 120px;
    margin-bottom: 1em;
  }

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

  .subfooter {
    font-size: 1.2em;
  }

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

  .h1.about {
    font-size: 80px;
  }

  .h1.hstats {
    margin-bottom: 30px;
    font-size: 56px;
  }

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

  .glowtop, .glowtop.home {
    height: 400px;
  }

  .h2.tabtext {
    font-size: 1.8em;
  }

  .servicelist {
    margin-bottom: 4em;
  }

  .tabs-menu {
    margin-right: 30px;
  }

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

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

  .textcta {
    font-size: 1.3em;
  }

  .contentsection {
    padding-left: 0;
    padding-right: 0;
  }

  .blocks {
    justify-content: flex-start;
    align-items: center;
  }

  .blockdesc {
    text-align: center;
  }

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

  .stats {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .textstats {
    font-size: 16px;
  }

  .textdesc {
    text-align: center;
  }

  .textdesc.com, .textdesc.work {
    text-align: left;
  }

  .imagesercicetab {
    opacity: .15;
    width: 100%;
    display: block;
  }

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

  .imageteam {
    width: 100px;
  }

  .groupabout {
    margin-top: 20px;
  }

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

  .heading-5 {
    font-size: 21px;
  }

  .heading-5.bars {
    font-size: 18px;
  }

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

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

  .blockleft {
    padding-left: 7%;
    padding-right: 7%;
  }

  .block {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .elementblock {
    width: 100px;
    height: 100px;
    font-size: 16px;
    left: auto;
  }

  .cubesection {
    margin-top: 1em;
  }

  .cube3d {
    transform: translate(0);
  }

  .cubefront {
    min-width: 280px;
    max-width: 280px;
    min-height: 280px;
    max-height: 280px;
    transform: translate3d(0, 0, 140px);
  }

  .cubeback {
    min-width: 280px;
    max-width: 280px;
    min-height: 280px;
    max-height: 280px;
    transform: translate3d(0, 0, -140px);
  }

  .cubebottom {
    min-width: 280px;
    max-width: 280px;
    min-height: 280px;
    max-height: 280px;
    transform: translate3d(0, 0, -140px)rotateX(-90deg)rotateY(0)rotateZ(0);
  }

  .cubetop {
    min-width: 280px;
    max-width: 280px;
    min-height: 280px;
    max-height: 280px;
    transform: translate3d(0, 0, -140px)rotateX(90deg)rotateY(0)rotateZ(0);
  }

  .cubeleft {
    min-width: 280px;
    max-width: 280px;
    min-height: 280px;
    max-height: 280px;
    transform: translate3d(0, 0, -140px)rotateX(0)rotateY(-90deg)rotateZ(0);
  }

  .cuberight {
    min-width: 280px;
    max-width: 280px;
    min-height: 280px;
    max-height: 280px;
    transform: translate3d(0, 0, -140px)rotateX(0)rotateY(90deg)rotateZ(0);
  }

  .logicbriefsection {
    margin-bottom: 1em;
  }

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

  .aboutcomsection {
    margin-top: 2em;
    margin-bottom: 3em;
  }

  .gridabtcom {
    grid-column-gap: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .worksection {
    margin-bottom: 2em;
  }

  .gridwork {
    grid-template-columns: 1.5fr;
  }

  .vidhome {
    height: 400px;
  }

  .text-span-8 {
    font-size: 1.1em;
  }

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

  .text-block-3 {
    font-size: 1em;
  }

  .imagewd {
    max-width: 90%;
  }

  .heading-6 {
    font-size: 36px;
  }

  .nav-menu, .nav-menu-2, .nav-menu-3, .nav-menu-4, .nav-menu-5 {
    background-color: var(--dark-pallet);
  }

  .menu-button, .menu-button:focus {
    background-color: rgba(0, 0, 0, 0);
  }
}

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

  .container.cube {
    min-height: 80vh;
  }

  .navcta {
    display: none;
  }

  .herosection.service {
    margin-top: 6em;
  }

  .herosection.about {
    margin-top: 6em;
    margin-bottom: 1em;
  }

  .contentwrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
    display: flex;
  }

  .contentwrapper.hiring, .contentwrapper.tandd, .contentwrapper.ppw {
    justify-content: center;
    align-items: center;
  }

  .contentwrapper.bizz {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .contentwrapper.grap, .contentwrapper.wd {
    justify-content: center;
    align-items: center;
  }

  .imagehero {
    width: 300px;
    position: relative;
  }

  .shortp {
    text-align: center;
  }

  .shortp.service {
    text-align: left;
    font-size: .8em;
  }

  .shortp.about {
    font-size: 1em;
  }

  .servicessection {
    margin-bottom: 2em;
  }

  .text-block {
    width: 175px;
    font-size: .8em;
  }

  .text-block.sector {
    margin-bottom: 20px;
  }

  .gridservice {
    grid-template-columns: 1.25fr;
    margin-top: 4em;
  }

  .gridservice.hiring {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    margin-top: 4em;
  }

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

  .gridservice.tandd {
    grid-template-columns: 1.5fr;
  }

  .gridservice.bizz {
    grid-template-columns: 1.5fr;
    margin-bottom: 2em;
  }

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

  .imagehiring, .imageppw {
    width: 300px;
    position: relative;
  }

  .subheader {
    text-align: center;
  }

  .imagetandd {
    width: 300px;
    position: relative;
  }

  .imagebizz {
    width: 250px;
    position: relative;
  }

  .overlaylogo {
    width: 130px;
  }

  .lastblock {
    height: 15px;
    font-size: 10px;
  }

  .sitem {
    font-size: 1.1em;
  }

  .gridfooter {
    grid-column-gap: 30px;
    grid-row-gap: 80px;
    grid-template-columns: 1.25fr 1fr;
  }

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

  .h1.about {
    font-size: 58px;
  }

  .h1.home {
    font-size: 58px;
    line-height: 1;
  }

  .h1.hstats {
    text-align: center;
  }

  .h1.hero {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .h1.abt2 {
    line-height: 1.2;
  }

  .glowtop {
    height: 300px;
  }

  .glowtop.banner {
    height: 250px;
  }

  .glowtop.home {
    height: 300px;
  }

  .groupcontent {
    padding: 60px 15px 30px;
  }

  .h2.servicecontent {
    font-size: 36px;
  }

  .h2.tabtext {
    font-size: 1.6em;
  }

  .heading-2 {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .block-quote {
    font-size: 15px;
  }

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

  .tabs.service {
    justify-content: space-between;
  }

  .tabs-menu {
    width: 20%;
  }

  .tabs-content {
    width: 75%;
  }

  .tablinks {
    width: 70px;
    height: 70px;
    font-size: 2em;
  }

  .slidewrapper {
    width: 100%;
  }

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

  .quoteservice {
    font-size: 12px;
  }

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

  .textcta {
    font-size: 1em;
    font-weight: 400;
  }

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

  .teamsection {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .bannersection {
    padding-top: 60px;
  }

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

  .h3 {
    font-size: 40px;
  }

  .form {
    grid-template-columns: 2fr;
  }

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

  .gridstats {
    grid-template-rows: auto auto;
  }

  .logicsection {
    margin-bottom: 2em;
  }

  .elementblock {
    border-radius: 10px;
    width: 70px;
    height: 70px;
    font-size: 11px;
  }

  .cubefront {
    min-width: 250px;
    max-width: 250px;
    min-height: 250px;
    max-height: 250px;
    transform: translate3d(0, 0, 125px);
  }

  .cubeback {
    min-width: 250px;
    max-width: 250px;
    min-height: 250px;
    max-height: 250px;
    transform: translate3d(0, 0, -125px);
  }

  .cubebottom {
    border-radius: 5px;
    min-width: 250px;
    max-width: 250px;
    min-height: 250px;
    max-height: 250px;
    transform: translate3d(0, 0, -125px)rotateX(-90deg)rotateY(0)rotateZ(0);
  }

  .cubetop {
    border-radius: 5px;
    min-width: 250px;
    max-width: 250px;
    min-height: 250px;
    max-height: 250px;
    transform: translate3d(0, 0, -125px)rotateX(90deg)rotateY(0)rotateZ(0);
  }

  .cubeleft {
    min-width: 250px;
    max-width: 250px;
    min-height: 250px;
    max-height: 250px;
    transform: translate3d(0, 0, -125px)rotateX(0)rotateY(-90deg)rotateZ(0);
  }

  .cuberight {
    min-width: 250px;
    max-width: 250px;
    min-height: 250px;
    max-height: 250px;
    transform: translate3d(0, 0, -125px)rotateX(0)rotateY(90deg)rotateZ(0);
  }

  .logicbriefsection {
    padding-bottom: 60px;
  }

  .blockbrief {
    padding: 20px 10px;
  }

  .aboutcomsection {
    margin-top: 1em;
  }

  .fdrimagewrapper {
    z-index: -2;
    opacity: .2;
    top: -293px;
    right: -83px;
  }

  .comcontentwrapper {
    width: 75%;
  }

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

  .worksection {
    margin-top: 2em;
  }

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

  .vidhome {
    height: 300px;
  }

  .cubevideo {
    border-radius: 6px;
  }

  .text-block-3 {
    font-size: .9em;
  }

  .imagewd {
    width: 250px;
    max-width: 80%;
    position: relative;
  }

  .heading-6 {
    text-align: center;
  }

  .text-block-4, .text-block-5 {
    font-size: 14px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2em;
  }

  .navbar {
    padding-top: 10px;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 300;
  }

  .container.cube {
    min-height: 50vh;
  }

  .navcta {
    width: 80px;
    font-size: 12px;
    line-height: 12px;
    display: none;
  }

  .btncircle {
    width: 10px;
    height: 10px;
  }

  .herosection.service {
    margin-top: 4em;
    margin-bottom: 2em;
  }

  .herosection.about {
    margin-top: 5em;
    margin-bottom: 2em;
  }

  .herosection.home {
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .herosection.com {
    margin-top: 4em;
    margin-bottom: 1em;
  }

  .imagehero {
    width: 200px;
  }

  .shortp {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .shortp.about {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .button {
    margin-top: 10px;
    font-size: 10px;
  }

  .servicessection {
    margin-bottom: 1em;
  }

  .banner1.service {
    margin-bottom: 2em;
  }

  .text-block {
    letter-spacing: .1em;
    width: 135px;
    font-size: 10px;
    font-weight: 300;
  }

  .gridservice, .gridservice.hiring {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 4em;
  }

  .gridservice.ppw, .gridservice.tandd, .gridservice.bizz, .gridservice.wd {
    margin-top: 4em;
  }

  .imagehiring {
    border-bottom-right-radius: 100px;
    width: 200px;
  }

  .subheader {
    font-size: 18px;
  }

  .subheader.quote {
    text-align: center;
    font-size: 14px;
  }

  .imagetandd {
    width: 200px;
  }

  .imagebizz {
    width: 180px;
  }

  .pageloadoverlay {
    display: none;
  }

  .overlaylogo {
    width: 80px;
    top: 20%;
    left: 35%;
  }

  .lastblock {
    height: 10px;
    padding-top: 1px;
    font-size: 8px;
  }

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

  .h1quote {
    font-size: 36px;
  }

  .gridfooter {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-template-columns: 1.25fr;
  }

  .textfooter, .linksfooter {
    font-size: 12px;
  }

  .h1 {
    font-size: 36px;
  }

  .h1.about {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 34px;
  }

  .h1.home, .h1.hstats {
    font-size: 40px;
  }

  .h1.com {
    margin-bottom: 10px;
  }

  .h1.hero {
    font-size: 36px;
    line-height: 1.1;
  }

  .h1.abt2 {
    font-size: 36px;
  }

  .glowtop.banner {
    height: 200px;
  }

  .glowtop.home {
    height: 300px;
  }

  .groupcontent {
    padding: 40px 10px 20px;
  }

  .h2.servicecontent {
    font-size: 24px;
  }

  .h2.tabtext {
    font-size: 1.4em;
  }

  .h2.avout {
    font-size: 36px;
  }

  .heading-2 {
    font-size: 18px;
  }

  .block-quote {
    font-size: 12px;
    line-height: 1.2;
  }

  .paragraph-2 {
    font-size: 12px;
    line-height: 1.3;
  }

  .tabs.service {
    flex-flow: wrap;
  }

  .tabs-menu {
    flex-flow: wrap;
    justify-content: space-between;
    width: 100%;
    margin-right: auto;
    display: flex;
  }

  .tabs-content {
    width: 100%;
  }

  .tablinks {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.5em;
  }

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

  .headline, .textcta {
    text-align: center;
  }

  .contentsection {
    padding-bottom: 60px;
  }

  .blocks {
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .gridabt-b {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .stats {
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .stats.lighter.home {
    border-radius: 10px;
  }

  .heading-3 {
    font-size: 36px;
  }

  .textstats {
    text-align: center;
    font-size: 12px;
  }

  .textdesc {
    font-size: 15px;
  }

  .textdesc.work {
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  .imageteam {
    width: 80px;
  }

  .textabout {
    font-size: 18px;
  }

  .groupabout {
    width: 80%;
  }

  .bannersection {
    margin-bottom: 60px;
  }

  .groupbanner {
    padding: 40px 20px 20px;
  }

  .h3 {
    font-size: 24px;
  }

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

  .features {
    margin-bottom: 20px;
    padding-top: 10px;
  }

  .iconbg {
    border-radius: 10px;
    width: 40px;
    height: 40px;
  }

  .iconfeature {
    width: 20px;
    height: 20px;
  }

  .heading-5 {
    font-size: 18px;
  }

  .heading-5.bars {
    font-size: 14px;
  }

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

  .subtitle {
    font-size: 12px;
  }

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

  .figureahero {
    height: 300px;
    padding-bottom: 10px;
  }

  .figurea1 {
    padding-top: 5px;
    font-size: 13px;
  }

  .figurea1.com {
    width: 250px;
    height: 250px;
    padding-top: 10px;
    font-size: 16px;
  }

  .figurea2 {
    padding-top: 3px;
    font-size: 10px;
  }

  .figurea2.com {
    width: 200px;
    height: 200px;
    padding-top: 10px;
    font-size: 16px;
  }

  .figurea3 {
    font-size: 8px;
  }

  .figurea3.com {
    width: 150px;
    height: 150px;
    font-size: 16px;
  }

  .logicsection {
    margin-bottom: 1em;
  }

  .grid-2 {
    align-items: center;
    justify-items: stretch;
  }

  .elementblock {
    border-radius: 5px;
    width: 42px;
    height: 42px;
    font-size: 6px;
  }

  .elementdash {
    left: -8px;
  }

  .cube3d {
    transform: translate(0);
  }

  .cubefront {
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    transform: translate3d(0, 0, 75px);
  }

  .cubeback {
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    transform: translate3d(0, 0, -75px);
  }

  .cubebottom {
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    transform: translate3d(0, 0, -75px)rotateX(-90deg)rotateY(0)rotateZ(0);
  }

  .cubetop {
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    transform: translate3d(0, 0, -75px)rotateX(90deg)rotateY(0)rotateZ(0);
  }

  .cubeleft {
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    transform: translate3d(0, 0, -75px)rotateX(0)rotateY(-90deg)rotateZ(0);
  }

  .cuberight {
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    transform: translate3d(0, 0, -75px)rotateX(0)rotateY(90deg)rotateZ(0);
  }

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

  .blockbrief.bars {
    height: 30px;
  }

  .bg1, .bg2 {
    border-radius: 25px;
    width: 180px;
    height: 180px;
  }

  .imagefdr {
    border-radius: 25px;
    width: 180px;
  }

  .fdrimagewrapper {
    top: -204px;
    right: -73px;
  }

  .comcontentwrapper {
    width: 100%;
    line-height: 1.2;
  }

  .worksection {
    margin-bottom: 1em;
  }

  .gridwork {
    grid-row-gap: 27px;
  }

  .workologywrapper {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .gridworkology {
    grid-template-columns: 2fr;
    align-items: center;
    justify-items: stretch;
  }

  .textbars {
    margin-bottom: 40px;
  }

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

  .vidhome {
    height: 150px;
  }

  .cubevideo {
    border-radius: 5px;
  }

  .imagewd {
    width: 180px;
  }

  .heading-6 {
    margin-top: 10px;
    font-size: 30px;
  }

  .text-block-4, .text-block-5 {
    font-size: 12px;
    line-height: 1.2;
  }
}

#w-node-_73dd61b2-f2d8-c659-3f9c-b312230bf56f-1210e70b, #w-node-_204919ff-c1dc-4339-e7b3-55b472af17db-1210e70b, #w-node-_6f68ee63-02e2-c578-f1bf-85912cc1ae18-1210e70b, #w-node-e13abca5-c528-e9f9-e8ca-863a0b9c3a6e-1210e70b, #w-node-_2c5b05ff-b123-7e2d-da05-6a23bc500be5-1210e70b, #w-node-a4e8b3ab-744d-4862-90d6-b5a564edc265-1210e70b {
  align-self: center;
}

#w-node-_07cddae2-dd6a-b729-a59a-9fbe391a025e-1210e70b {
  grid-area: 1 / 3 / 2 / 6;
}

#w-node-dc7dbb15-7944-ab5e-8604-ba3df3a85083-1210e70b {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-c652f644-9ca2-59ec-1b5a-67bbf4874be8-1210e70b {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_6c9142f5-3fc1-5bdb-2adf-4b58ce4e98f0-1210e70b {
  grid-area: 3 / 2 / 4 / 5;
}

#w-node-_0fbe1e3b-ba2f-3aeb-de30-a185dac56400-9b2908c0 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_7f3576be-3423-8f7a-fa3e-7eb10bdf1bf5-9b2908c0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f8d2ec40-0acd-660c-857a-e31f26b229c5-cb4b999d, #w-node-_376b4f85-3fc2-4082-f462-3955eec69611-cb4b999d {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-c2d280d6-9e89-c0b6-09cb-25c6234c6db4-1210e70b {
    order: -9999;
  }

  #w-node-_0fbe1e3b-ba2f-3aeb-de30-a185dac56400-9b2908c0 {
    grid-area: span 2 / span 2 / span 2 / span 2;
  }

  #w-node-_376b4f85-3fc2-4082-f462-3955eec69622-cb4b999d {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_7ba465a6-74b9-8c72-324a-d15ae994d307-1210e70b, #w-node-e13abca5-c528-e9f9-e8ca-863a0b9c3a6b-1210e70b, #w-node-a4e8b3ab-744d-4862-90d6-b5a564edc274-1210e70b {
    order: -9999;
  }

  #w-node-c7175a55-375e-d76d-a20b-3e2ed992a986-1210e70b {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_07cddae2-dd6a-b729-a59a-9fbe391a025e-1210e70b, #w-node-dc7dbb15-7944-ab5e-8604-ba3df3a85083-1210e70b, #w-node-c652f644-9ca2-59ec-1b5a-67bbf4874be8-1210e70b, #w-node-_6c9142f5-3fc1-5bdb-2adf-4b58ce4e98f0-1210e70b {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_5c8676cc-db5a-2dc2-81ee-0ed2eb922ad9-eb922ad6, #w-node-_5c8676cc-db5a-2dc2-81ee-0ed2eb922b05-eb922ad6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-a167413c-7d50-f80f-534c-9f52f5e80afd-1210e70b, #w-node-_476c0967-5498-0a2e-21be-4c7e41e2cf69-1210e70b, #w-node-bbb1aa29-5a80-f5dc-2096-5cfde9d2d034-1210e70b, #w-node-ff5dce97-c879-5b29-2cb6-72985d8c80de-1210e70b, #w-node-_7bb91ac4-bfd9-a8f7-57d1-6580affcdbaf-1210e70b, #w-node-a20c6d11-6601-f2b0-92f1-147fc76cea05-1210e70b, #w-node-ec48429a-9acb-d5a0-5993-f79603ffa2fd-1210e70b, #w-node-_983125cc-30e2-dad4-2172-febda6f1e773-1210e70b, #w-node-_5c8676cc-db5a-2dc2-81ee-0ed2eb922adf-eb922ad6, #w-node-_5c8676cc-db5a-2dc2-81ee-0ed2eb922af2-eb922ad6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_0fbe1e3b-ba2f-3aeb-de30-a185dac56400-9b2908c0, #w-node-a1147735-c4aa-5a78-af30-942c7bfd437e-cb4b999d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


