:root {
  --black: black;
  --white: white;
  --graphictank-purple: #6d01ff;
  --yellow: #ffea00;
  --grey: #7c7c7c;
  --red: #ff3a1b;
  --white-2: #fff3;
  --dim-grey: #494949;
  --blue-violet: #5f22eb;
  --silver: #b9bbc8;
  --dark-green: #00663f;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: Tt norms pro, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.33333;
}

h1 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 44px;
}

h2 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

h5 {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

h6 {
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

p {
  color: var(--white);
  margin-bottom: 0;
}

a {
  color: var(--graphictank-purple);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  color: var(--graphictank-purple);
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 40px;
}

li {
  color: var(--white);
  padding-top: 2px;
  padding-bottom: 2px;
  font-weight: 400;
}

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

strong {
  font-weight: bold;
}

blockquote {
  border-left: 3px solid var(--white);
  color: var(--white);
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
  padding: 0 20px 0 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

figure {
  margin-top: 30px;
  margin-bottom: 30px;
}

figcaption {
  color: #9c9c9c;
  text-align: center;
  margin-top: 5px;
  font-size: 15px;
}

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

.go-top {
  z-index: 9990;
  background-color: #ececec;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding-bottom: 4px;
  display: flex;
  position: fixed;
  inset: auto 10px 10px auto;
  overflow: hidden;
}

.go-top.w--current {
  background-color: var(--graphictank-purple);
  display: flex;
  box-shadow: -1px 0 4px #00000040, 1px 0 4px #00000040;
}

.container {
  z-index: 1;
  flex: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container._60 {
  max-width: 60%;
}

.container.with-z-index {
  z-index: 15;
  position: absolute;
}

.container._100 {
  height: 100%;
}

.container.is--sticky {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
  display: flex;
  position: static;
}

.section {
  color: var(--white);
  background-color: #0000;
  border-bottom: 1px solid #fff3;
  padding: 100px 5% 100px 130px;
  position: relative;
}

.section.inner {
  align-items: center;
  min-height: 500px;
  padding-top: 180px;
  padding-bottom: 140px;
  display: flex;
}

.section.inner.is-case {
  background-color: #6d01ff14;
}

.section.is-anim {
  overflow: hidden;
}

.section._100vh {
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  display: none;
}

.section.take-off {
  cursor: none;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 85px;
  display: flex;
}

.section._5 {
  padding-left: 5%;
}

.section.hide {
  display: none;
}

.section.no-bottom-line {
  border-bottom-style: none;
}

.button {
  border: 1px solid var(--graphictank-purple);
  background-color: var(--graphictank-purple);
  color: #fff;
  text-align: center;
  border-radius: 20px;
  margin-top: 0;
  padding: 10px 23px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button:hover {
  border-color: var(--black);
  background-color: var(--black);
  color: var(--white);
  text-decoration: none;
}

.button.discount {
  border-radius: 20px;
  height: 42px;
  padding-top: 0;
  padding-bottom: 0;
}

.button.full {
  width: 100%;
}

.button.full:hover {
  background-color: var(--graphictank-purple);
  color: var(--white);
}

.button.yellow {
  background-color: var(--yellow);
  color: var(--black);
}

.button.yellow:hover {
  background-color: var(--black);
  color: #fff;
}

.button.buy {
  background-color: #4500a3;
  flex: 1;
}

.button.buy:hover {
  background-color: var(--graphictank-purple);
  color: var(--white);
  text-decoration: none;
}

.button.is-tag {
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 14px;
  display: inline-block;
}

.button.is-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: #0000;
  border-style: none;
  border-radius: 0;
  align-items: center;
  padding: 0;
  display: flex;
}

.sticky-nav {
  z-index: 9999;
  background-color: var(--black);
  position: sticky;
  top: 0;
}

.margin-15px {
  margin-top: 15px;
}

.display-1 {
  color: var(--white);
  text-align: left;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 74px;
  font-weight: 500;
  line-height: 1;
}

.display-1.center {
  text-align: center;
  font-size: 7vw;
}

.display-1.blog-page {
  font-size: 5vw;
  line-height: 1.1;
}

.display-1.is-news {
  text-align: center;
  font-size: 60px;
}

.display-1.hero-text {
  color: var(--white);
  text-align: center;
}

.margin-30px {
  margin-top: 30px;
}

.margin-30px.hide-desktop {
  display: none;
}

.display-2 {
  color: var(--white);
  letter-spacing: normal;
  text-transform: none;
  font-size: 10vw;
  font-weight: 500;
  line-height: 1;
}

.display-2.is-case-st {
  font-size: 2rem;
}

.display-2.normal {
  font-size: 40px;
}

.display-2.cta {
  font-size: 8vw;
}

.margin-20px {
  margin-top: 20px;
}

.margin-80px {
  margin-top: 80px;
}

.paragraph-white {
  color: #fffc;
  margin-bottom: 0;
  font-weight: 400;
}

.paragraph-white.align-right {
  text-align: right;
}

.white {
  color: #fff;
}

.hero {
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 80px 5% 140px;
  display: flex;
  position: relative;
}

.hero.sub {
  background-color: var(--black);
  padding-bottom: 125px;
}

.hero.new {
  background-color: #0000;
  align-items: flex-start;
  min-height: 250vh;
  max-height: 2500px;
  padding: 0;
  display: block;
}

.navigation-wrapper {
  background-color: #fff0;
  align-items: center;
  min-height: 85px;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
}

.navigation-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  display: grid;
}

.navigation-grid._3-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.button-liner {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: none;
  position: relative;
}

.button-liner.white {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.button-liner.white:hover {
  color: var(--graphictank-purple);
  text-decoration: none;
}

.button-line {
  width: 100%;
  height: 1px;
  margin-top: 4px;
  position: relative;
}

.button-line-absolute {
  z-index: 1;
  background-color: var(--graphictank-purple);
  width: 100%;
  height: 1px;
  position: absolute;
}

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

.flex-wrapper.justify-right {
  justify-content: flex-end;
}

.hamburger-menu {
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  height: 85px;
  display: flex;
  position: relative;
}

.menu {
  z-index: 900;
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  padding-left: 130px;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu-grid {
  z-index: 2;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--black);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.brun-logo {
  height: 50px;
}

.logo-link {
  flex-direction: column;
  height: 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.margin-40px {
  margin-top: 40px;
}

.margin-40px.is-left {
  text-align: center;
  text-align: center;
}

.max-w-width {
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.max-w-width.center {
  max-width: 90%;
}

.max-w-width.full {
  max-width: 100%;
}

.lottie-animation {
  width: 22px;
  position: relative;
  top: 2px;
}

.lottie-animation.right {
  width: 30px;
}

.lottie-animation.right._2 {
  width: 34px;
}

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

.blog-grid {
  grid-column-gap: 16px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
}

.blog-link {
  color: #000;
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 80%;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  font-size: 70px;
  font-weight: 400;
  line-height: 70px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.blog-text {
  z-index: 1;
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  position: relative;
}

.blog-image {
  z-index: 0;
  width: 300px;
  max-width: none;
  display: block;
  position: absolute;
  inset: auto -298px -58px auto;
}

.social-wrapper {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.social-wrapper.left {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.social-wrapper.footer-socila {
  flex-flow: row;
}

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

.social-icon {
  background-color: var(--black);
  color: var(--white);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
}

.social-icon:hover {
  background-color: var(--graphictank-purple);
}

.social-icon.down {
  background-color: var(--graphictank-purple);
  width: 60px;
  height: 60px;
}

.social-icon.with-margin {
  background-color: var(--blue-violet);
  margin-bottom: 6px;
  margin-right: 6px;
  transition: all .25s;
}

.social-icon.with-margin:hover {
  background-color: #7548dd;
}

.animation-image {
  z-index: 1;
  object-fit: contain;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.animation-image._2 {
  width: 20px;
}

.animation-image._3 {
  width: 36px;
}

.animation-image._3.absolute {
  opacity: 0;
  position: absolute;
}

.animation-image._4 {
  width: 24px;
  top: 2px;
}

.animation-image._4.rotate {
  top: 0;
  transform: rotate(180deg);
}

.animation-image.hamburger {
  width: 34px;
  position: relative;
}

.animation-image.remover {
  width: 20px;
  position: absolute;
}

.animation-image.project-icon {
  width: 18px;
  margin-right: 5px;
}

.social-circle {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.social-circle.black {
  background-color: var(--black);
  width: 60px;
  height: 60px;
  transform: scale(0);
}

.social-circle._2 {
  background-color: var(--graphictank-purple);
  background-color: var(--graphictank-purple);
  border: 1px solid #000;
  width: 107%;
  height: 112%;
}

.track {
  background-color: #0000;
  height: 400vh;
}

.sticky {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding-left: 130px;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.collection-list {
  display: flex;
}

.collection-item {
  flex: none;
  align-items: flex-end;
  width: 40%;
  padding-right: 40px;
  display: flex;
}

.project-card {
  cursor: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.wrapper1 {
  width: 100%;
}

.photo {
  height: 100%;
}

.project-overlay {
  opacity: 1;
  background-image: linear-gradient(#fff0, #00000026);
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0%;
}

.project-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.project-ttitle {
  color: #fff;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.3vw;
  font-weight: 700;
}

.project-ttitle.with-px {
  font-size: 21px;
}

.project-circle {
  z-index: 10;
  background-color: var(--graphictank-purple);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  display: flex;
  position: absolute;
}

.project-circle.black {
  cursor: none;
  background-color: #000;
}

.project-circle.white {
  background-color: var(--graphictank-purple);
}

.title-line {
  color: #fff;
  text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}

.title-line._2 {
  color: var(--graphictank-purple);
}

.paragraph-0px {
  color: #ffffffbf;
  margin-bottom: 0;
}

.margin-100px {
  margin-top: 100px;
}

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

.button-flex.left {
  justify-content: flex-start;
}

.category-text {
  color: #696969;
  font-size: 17px;
  font-weight: 500;
}

.horizontal-divider {
  width: 24px;
}

.horizontal-divider._15px {
  width: 15px;
}

.footer {
  background-color: #0000;
  padding: 80px 5% 30px 130px;
}

.grid-4-columns {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 0;
  display: flex;
}

.footer-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
}

.menu-footer-grid {
  grid-column-gap: 16px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.copyright-flex {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-right: 60px;
  display: flex;
}

.copyright {
  color: #ffffffa1;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.list1 {
  padding-left: 20px;
}

.link {
  color: var(--white);
  text-decoration: none;
}

.link:hover {
  color: var(--graphictank-purple);
}

.link-7 {
  color: var(--silver);
  justify-content: space-between;
  align-items: flex-start;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: none;
}

.link-7:hover {
  color: var(--graphictank-purple);
}

.align-center {
  color: var(--white);
  text-align: center;
}

.line {
  color: var(--white);
  text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
}

.line.purple {
  color: var(--graphictank-purple);
}

.navigation-wrapper {
  z-index: 910;
  border-bottom: 1px solid #fff3;
  padding-left: 120px;
  padding-right: 120px;
  position: absolute;
  inset: 0% 0% auto;
}

.social-link {
  color: var(--white);
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.social-link:hover {
  opacity: 1;
  color: var(--graphictank-purple);
}

.menu-text-wrapper {
  color: var(--white);
  min-width: 44px;
  height: 20px;
  margin-top: -5px;
  margin-right: 5px;
  overflow: hidden;
}

.hamburger-image {
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 20px;
  display: flex;
}

.left-part {
  z-index: 911;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.project-text-warpper {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  transform: rotate(-90deg);
}

.menu-flex {
  align-items: flex-start;
  display: flex;
}

.big-text {
  color: var(--black);
  text-shadow: 0 -1px 0 var(--white), 1px 0 0 var(--white), 0 1px 0 var(--white), -1px 0 0 var(--white);
  margin-right: 3px;
  font-size: 13vw;
  font-weight: 700;
  line-height: .8;
}

.menu-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navigation-link {
  color: var(--white);
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
}

.navigation-link:hover {
  color: var(--graphictank-purple);
}

.sticky-wrapper {
  z-index: 1;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.sticky-wrapper-main {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.hero-outlined-text-wrapper {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 30vw;
  height: auto;
  transition: opacity .2s;
  display: flex;
  overflow: hidden;
  transform: scale(1);
}

.part-1 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.main-width-hero {
  align-self: auto;
  padding-bottom: 10px;
  overflow: hidden;
}

.scroll-down-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.scroll-flex {
  align-items: center;
  display: flex;
}

.mouse-scroll {
  border: 1px solid #fff9;
  border-radius: 9px;
  justify-content: center;
  align-items: flex-start;
  width: 20px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.mouse-dot {
  background-color: var(--white);
  width: 2px;
  height: 5px;
  margin-top: 6px;
}

.scroll-text {
  color: #ffffffb3;
  margin-left: 10px;
  font-size: 13px;
}

.other-font {
  font-family: Playfair Display, sans-serif;
  font-style: italic;
}

.other-font.italic {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  font-style: italic;
  line-height: 1em;
}

.other-font.italic.is-contact {
  font-size: 2.5rem;
}

.other-font.italic.is-contact.is-purple {
  color: var(--graphictank-purple);
}

.other-font.italic.pupple {
  color: var(--graphictank-purple);
  line-height: 1em;
  overflow: visible;
}

.other-font.italic.is-hero {
  font-size: 74px;
}

.max-w-flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.max-width-page {
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.max-width-page._2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.max-width-page._2.inner {
  overflow: visible;
}

.max-width-page._3 {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.max-width-page.ceneterd {
  text-align: center;
}

.process-wrapper {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.process-content {
  border-top: 1px solid #fff3;
  border-bottom: 1px solid #fff3;
  padding: 20px 30px;
}

.process-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .3fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.process-part-1 {
  justify-content: center;
  align-items: center;
  padding: 30px 34px;
  display: flex;
  position: relative;
}

.process-line {
  background-color: #fff3;
  flex-direction: column;
  justify-content: center;
  width: 1px;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.process-overlay {
  background-color: var(--graphictank-purple);
  width: 1px;
  height: 50px;
  position: absolute;
}

.process-image {
  width: 120px;
  height: 120px;
}

.process-part-2 {
  padding: 15px 10px 5px 70px;
}

.process-title {
  color: var(--white);
  margin-top: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

.process-lottie {
  mix-blend-mode: lighten;
}

.client-logo {
  border-left-style: none;
  border-right: 0 solid #fff3;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  display: flex;
}

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

.testimonial-content-text {
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.7em;
}

.testimonial-border {
  z-index: -1;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1.3em;
  left: -1.3em;
}

.container-2 {
  z-index: 10;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8em;
  padding-right: 8em;
  position: relative;
}

.carousel {
  z-index: 10;
  background-color: #0000;
  border: 1px solid #fff;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: auto;
  margin-left: -.5em;
  margin-right: -.5em;
  display: flex;
  position: relative;
}

.carousel-max-width {
  width: 100%;
  max-width: 64em;
  margin-left: auto;
  margin-right: auto;
}

.carousel-mask {
  height: auto;
  margin-top: 8em;
  margin-bottom: 11.5em;
  overflow: hidden;
}

.carousel-nav {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 .5em;
  display: none;
  bottom: -5em;
}

.carousel-slide {
  color: #fff;
  width: 100%;
}

._3d-text {
  z-index: 20;
  line-height: 1em;
}

.section-bg-animation {
  z-index: 1;
  background-color: var(--black);
  position: absolute;
  inset: 0%;
}

.section-2 {
  z-index: 20;
  padding-left: 130px;
  font-size: 1vw;
  display: none;
  position: relative;
  overflow: hidden;
}

._3d-text-transform {
  z-index: 20;
  perspective: 1000px;
  position: relative;
}

.padding-inner {
  padding: 10em 0;
}

.carousel-button {
  opacity: .4;
  color: #f36f20;
  background-image: url("https://cdn.prod.website-files.com/63f478d2bf84a86fb30f3f17/63f478d2bf84a8f73a0f40b0_icons8-chevron-right-w-96.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1.7em;
  border-top: 1px solid #fff;
  width: 50%;
  height: 5em;
  margin-top: auto;
  margin-bottom: 0;
  font-size: 1em;
  transition: background-color .2s, opacity .35s;
  position: absolute;
  inset: auto 0% 0% auto;
}

.carousel-button:hover {
  border-color: var(--white) #272b3d #272b3d var(--white);
  opacity: 1;
  color: #0b7541;
  background-size: 2em;
  border-left-style: solid;
  border-left-width: 1px;
}

.carousel-button.is-left {
  background-image: url("https://cdn.prod.website-files.com/63f478d2bf84a86fb30f3f17/63f478d2bf84a86be40f4089_61962a33ab885f4f2c7f1663_icons8-chevron-right-w-96.png");
  border-right: 1px solid #fff;
  inset: auto auto 0% 0%;
}

.carousel-button.is-left:hover {
  border-right: 1px solid var(--white);
}

.carousel-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 6em;
  padding-right: 6em;
  display: flex;
}

.testimonial-name-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5em;
  display: flex;
}

.testimonial-uppercase-title {
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 700;
  line-height: 1.1em;
}

.loader {
  z-index: 999999;
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.text-color-purple {
  color: var(--graphictank-purple);
}

.testimonial_client {
  text-align: left;
  align-items: center;
  display: flex;
}

.testimonial_client.hide-dektop-tablet {
  display: none;
}

.padding-global {
  height: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-global.home {
  padding-left: 0;
  padding-right: 0;
}

.testimonial_client-info {
  color: #fff;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-self: auto;
  padding-right: 20px;
  display: block;
}

.testimonial_rating-icon {
  color: var(--graphictank-purple);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: .25rem;
  display: flex;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-large.nav-size {
  max-width: 75rem;
}

.testimonial_content {
  grid-column-gap: 4.375rem;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 1.25fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: block;
}

.testimonial-position {
  color: #fff;
  margin-bottom: 0;
  line-height: 24px;
}

.testimonial_rating-wrapper {
  margin-bottom: 1.25rem;
  display: flex;
}

.testimonial_rating-wrapper.show-desktop-tablet {
  margin-bottom: .5rem;
}

.testimonial_rating-wrapper.hide-dektop-tablet {
  display: none;
}

.testimonial_content-right {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.testimonial_content-right.is-case {
  justify-content: flex-start;
  align-items: flex-start;
}

.padding-section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.padding-section-large.is-mob-centerd {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.text-weight-semibold {
  color: #fff;
  font-weight: 600;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  align-items: flex-end;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.margin-bottom.margin-xxsmall, .margin-bottom.margin-small, .margin-bottom.margin-xxlarge, .margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-medium {
  margin: 0 0 2rem;
}

.margin-bottom.margin-small {
  margin-bottom: 1.56rem;
}

.margin-bottom.margin-xxlarge {
  margin-bottom: 5rem;
}

.margin-bottom.margin-small {
  align-items: flex-end;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.margin-bottom.margin-xxlarge, .margin-bottom.margin-small {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.testimonial-text {
  color: #fff;
  text-align: center;
  max-width: 66ch;
  font-weight: 400;
  line-height: 1.5;
}

.testimonial-text.is-case {
  text-align: left;
}

.section_testimonial {
  position: relative;
}

.section_testimonial.with-bottom-border {
  border-bottom: 1px solid #fff3;
  display: block;
}

.section_testimonial.with-bottom-border.hide {
  display: none;
}

.padding-global-2 {
  padding-left: 5%;
  padding-right: 5%;
}

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

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.max-width-large.align-center {
  margin-left: auto;
  margin-right: auto;
}

.container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-section-medium {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.social-icon-2 {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
}

.social-icon-2.services {
  width: 110px;
  height: 110px;
  margin-left: auto;
  margin-right: auto;
}

.social-circle-2 {
  background-color: var(--graphictank-purple);
  border-radius: 100%;
  width: 100%;
  height: 100%;
  position: absolute;
}

.animation-image-2 {
  z-index: 1;
  width: 16px;
  position: relative;
}

.animation-image-2._5 {
  width: 48px;
}

.menu-component {
  height: 100%;
  display: flex;
  position: relative;
}

.menu-contact-details-wrapper {
  padding-bottom: 60px;
  position: absolute;
  inset: auto 0% 0%;
}

.menu-contact {
  z-index: 2;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  display: none;
  position: relative;
}

.align-central {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pricing18_content-top {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.pricing18_plan {
  border: 1px solid var(--white-2);
  text-align: center;
  height: 100%;
  padding: 2rem;
}

.pricing18_components {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.pricing18_content {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.blog4-header_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.blog4-header_featured-image-wrapper {
  width: 100%;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.blog4-header_image-link {
  width: 100%;
  margin-bottom: 1.5rem;
}

.page-wrapper {
  overflow: clip;
}

.blog4-header_featured-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 0 0 0 3rem;
  display: flex;
}

.blog4-header_title-link {
  margin-bottom: .5rem;
  text-decoration: none;
  display: block;
}

.blog4-header_title-link.featured-post {
  margin-top: .5rem;
  margin-bottom: 1rem;
}

.blog4-header_featured-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 4rem;
  display: grid;
}

.card_pricing-text {
  color: #ffffffb3;
  font-family: Tt norms pro, sans-serif;
  font-size: .75rem;
  font-style: italic;
  font-weight: 400;
}

.text-weight-bold {
  font-weight: 700;
}

.info-link {
  color: var(--white);
  margin-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.info-link:hover {
  color: var(--graphictank-purple);
  text-decoration: none;
}

.info-link.margin-30px {
  align-items: center;
}

.info-icon {
  width: 40px;
  min-width: 40px;
  margin-right: 10px;
  line-height: 0;
}

.phone--icon {
  width: 34px;
}

.purple-bullet {
  color: var(--graphictank-purple);
}

.email--icon {
  width: 25px;
}

.hide {
  display: none;
}

.trustpilot-wrapper {
  width: 14.75rem;
  margin-top: 1rem;
}

.trustpilot-wrapper.is-mobile {
  display: none;
}

.client-logo {
  border-left: 1px solid var(--white);
  border-right-width: 0;
  width: 150px;
  height: 80px;
  padding-left: 20px;
}

.review-client-logo {
  object-fit: contain;
  height: 100%;
}

.review-client-logo.is-case {
  object-fit: contain;
}

.circle {
  aspect-ratio: 1;
  background-color: var(--graphictank-purple);
  opacity: .5;
  filter: blur(160px);
  border-radius: 100vw;
  width: 100%;
  max-width: 43.75rem;
  position: absolute;
  inset: auto auto 0% 0%;
}

.circle._1 {
  background-image: linear-gradient(#000, #6d01ff);
  top: -25%;
  left: 1%;
}

.circle._3 {
  background-image: linear-gradient(#6d01ff, #13012d);
  inset: auto -10% -25% auto;
}

.circle._4 {
  background-image: linear-gradient(#000, #140030);
  inset: auto auto -39% -4%;
}

.circle.cc-2 {
  background-image: linear-gradient(180deg, var(--graphictank-purple), black);
  inset: 0% 0% auto auto;
}

.loader-video {
  flex: none;
  width: 20rem;
  height: 20rem;
}

.circle_wrapper {
  pointer-events: none;
  position: fixed;
  inset: 0%;
}

.wrapper {
  width: 100%;
  position: static;
}

.list {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.horizontal-item {
  flex: none;
  width: 34%;
  padding-right: 20px;
}

.project-card-link {
  cursor: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.horizontal-trigger {
  position: absolute;
  inset: 0% 0% auto;
}

.horizontal-section {
  background-color: #0000;
  width: 100%;
  position: relative;
}

.horizontal-sticky {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 130px;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.sticky_top {
  align-items: center;
  width: 100%;
  padding-bottom: 2.5em;
  display: flex;
}

.project-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.outlined-image {
  width: 100%;
}

.outlined-image.show-mobile {
  display: none;
}

.div-block-56 {
  text-align: center;
  max-width: 70ch;
}

.paragraph-2.is-left {
  text-align: center;
  text-align: center;
  max-width: 65ch;
}

.outline-text-mobile {
  display: none;
}

.fs-cc-banner_text {
  color: var(--white);
  flex-direction: column;
  flex: 0 auto;
  margin-right: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  display: block;
}

.fs-cc-banner_component {
  z-index: 998;
  border: 1px solid var(--dim-grey);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #000000e6;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem;
  display: none;
  position: fixed;
  inset: auto 0% 5%;
}

.fs-cc-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-banner_close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-banner_button {
  border: 2px solid var(--graphictank-purple);
  background-color: var(--graphictank-purple);
  color: #fff;
  text-align: center;
  border-radius: 999rem;
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: .625rem 1.25rem;
  font-size: 1rem;
  transition: all .25s;
}

.fs-cc-banner_button:hover {
  background-color: #360080;
}

.fs-cc-banner_button.fs-cc-button-alt {
  -webkit-text-stroke-color: transparent;
  background-color: #0000;
}

.fs-cc-banner_button.fs-cc-button-alt:hover {
  background-color: #6d01ff42;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-banner_close {
  border: 1px solid var(--grey);
  background-color: var(--black);
  opacity: 1;
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
  cursor: pointer;
  border-radius: 999rem;
  margin-left: .75rem;
  padding: .625rem;
  box-shadow: 1px 1px 12px #0000001a;
}

.hero-animating-text_wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  padding-bottom: 12px;
  display: none;
  overflow: hidden;
}

.hero-animating-text_trigger {
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 16px;
  display: flex;
  overflow: visible;
}

.hero-animating-text_mask {
  height: 84px;
  overflow: hidden;
}

.typer {
  font-family: Playfair Display, sans-serif;
  font-style: italic;
}

.testimonial_component {
  grid-column-gap: 4.375rem;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial_tank-logo.hide-dektop-tablet {
  display: none;
}

.text-weight-semibold {
  font-weight: 600;
}

.flex-v-16 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.hero_wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  min-height: min(100svh, 62.5rem);
  display: flex;
  position: relative;
}

.heading-56 {
  color: var(--white);
  letter-spacing: -.02em;
  font-family: Tt norms pro, sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero_heading {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 42ch;
  display: flex;
}

.hero-bg_wrapper {
  align-self: stretch;
  margin-left: -5%;
  margin-right: -5%;
  line-height: 1;
}

.hero_list {
  grid-column-gap: 2rem;
  grid-row-gap: .5rem;
  flex-flow: wrap;
  display: flex;
}

.hero_item {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero_icon {
  color: var(--blue-violet);
  max-width: 1.5rem;
  max-height: 1.5rem;
}

.button-primary_wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  background-color: var(--graphictank-purple);
  color: var(--white);
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.button-primary_wrapper:hover {
  text-decoration: none;
}

.button-primary_text {
  z-index: 99;
  text-shadow: 0 1.5em 0 var(--graphictank-purple);
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-primary_bg {
  background-color: var(--white);
  position: absolute;
  inset: 0%;
  transform: translate(0, 100%);
}

.button-primary-icon_wrapper {
  z-index: 99;
  flex-flow: column;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-primary-icon_white {
  flex: none;
}

.button-primary-icon_purple {
  color: var(--graphictank-purple);
  flex: none;
}

.projects_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.heading-48 {
  color: var(--white);
  letter-spacing: -.02em;
  font-family: Tt norms pro, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

.heading-48.text-weight-bold {
  font-weight: 700;
}

.projects-cms_list {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.projects-card_wrapper {
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.projects-card_visual {
  aspect-ratio: 2 / 3;
}

.project-card_content {
  background-image: linear-gradient(#fff0, #0000004d);
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
  position: absolute;
  inset: 0%;
}

.project-card_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.25rem;
  display: flex;
}

.project-card_icon {
  z-index: 9;
  background-color: var(--black);
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 6.875rem;
  height: 100%;
  max-height: 6.875rem;
  display: flex;
  position: absolute;
}

.eye_lottie {
  width: 1.875rem;
  line-height: 1;
}

.link_wrapper {
  z-index: 9999;
  position: absolute;
  inset: 0%;
}

.link_wrapper.cc-cursor-none {
  cursor: none;
  cursor: none;
}

.sr-only {
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.heading-24 {
  color: var(--white);
  letter-spacing: -.02em;
  font-family: Tt norms pro, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.about_wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-style-uppercase {
  text-transform: uppercase;
}

.flex-align-center {
  align-self: center;
}

.testimonial_wrapper {
  overflow: hidden;
}

.showcase-slider_handle {
  cursor: grab;
  background-color: #2d62ff;
  border-radius: 100vw;
  width: 30%;
  height: 100%;
}

.showcase-slider_controls {
  flex-flow: wrap;
  place-content: center;
  align-items: center;
  margin-top: 2rem;
  display: flex;
}

.button-5 {
  color: #fff;
  text-align: center;
  background-color: #2d62ff;
  border-radius: .5rem;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.showcase-slider_buttons {
  grid-column-gap: clamp(.5 * 1rem, ((.5 - ((.5 - .5) / (80 - 20) * 20)) * 1rem + ((.5 - .5) / (80 - 20)) * 100vw), .5 * 1rem);
  grid-row-gap: clamp(.5 * 1rem, ((.5 - ((.5 - .5) / (80 - 20) * 20)) * 1rem + ((.5 - .5) / (80 - 20)) * 100vw), .5 * 1rem);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.showcase-slider_button.swiper-button-disabled {
  opacity: .5;
  pointer-events: none;
  opacity: .5;
  pointer-events: none;
}

.showcase-slider_bullet {
  aspect-ratio: 1;
  border: .09rem solid var(--blue-violet);
  background-color: #3d924400;
  border-radius: 100vw;
  width: 1rem;
  min-width: 0;
  padding: 0;
}

.showcase-slider_bullet.is-active {
  background-color: var(--blue-violet);
  background-color: var(--blue-violet);
}

.showcase-slider_draggable {
  border: .09rem solid #dd23bb;
  border-radius: 100vw;
  width: 14rem;
  min-width: 0;
  max-width: 100%;
  height: 1rem;
}

.showcase-cl_item.swiper-slide {
  flex: none;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.showcase-cl_list.swiper-wrapper {
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.showcase-slider_bullets {
  grid-column-gap: clamp(.5 * 1rem, ((.5 - ((.5 - .5) / (80 - 20) * 20)) * 1rem + ((.5 - .5) / (80 - 20)) * 100vw), .5 * 1rem);
  grid-row-gap: clamp(.5 * 1rem, ((.5 - ((.5 - .5) / (80 - 20) * 20)) * 1rem + ((.5 - .5) / (80 - 20)) * 100vw), .5 * 1rem);
  justify-content: center;
  align-items: center;
  display: flex;
  width: auto !important;
}

.showcase-cl_wrapper.swiper {
  overflow: visible;
}

.testimonial-card_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.testimonial-card_logo {
  width: 9.375rem;
  display: none;
}

.img-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.testimonial-card_text {
  text-align: center;
  max-width: 66ch;
}

.text-18 {
  font-family: Tt norms pro, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.testimonial-card_footer {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-card_info {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-flow: column;
  display: flex;
}

.testimonial-card_rating {
  display: flex;
}

.text-weight-normal {
  font-weight: 400;
}

.vertical-divider {
  background-color: var(--silver);
  align-self: stretch;
  width: .0625rem;
}

.process_wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.process_list {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: grid;
}

.process_item {
  padding-top: 0;
  padding-bottom: 0;
}

.process-card_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border: 1px solid #fff3;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.process-card_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.process-card_lottie {
  aspect-ratio: 1;
  mix-blend-mode: lighten;
  width: 7.5rem;
}

.news_wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.news_header {
  text-align: center;
}

.news-cms_list {
  grid-column-gap: 3.5rem;
  grid-row-gap: 3.5rem;
  flex-flow: column;
  display: flex;
}

.news-card_wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.news-card_visual {
  aspect-ratio: 3 / 2;
}

.news-card_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.heading-32 {
  color: var(--white);
  letter-spacing: -.02em;
  font-family: Tt norms pro, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.text-16 {
  font-size: 1rem;
}

.trustpilot {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

@media screen and (min-width: 1440px) {
  .section._100vh {
    padding-left: 5%;
  }

  .button.buy {
    background-color: #43019c;
  }

  .button.buy:hover {
    background-color: var(--graphictank-purple);
    color: var(--white);
    text-decoration: none;
  }

  .hero-title-flex {
    max-width: 100%;
  }

  .social-icon {
    transition: all .4s;
  }

  .social-icon.down {
    z-index: 1;
    border: 1px none var(--white);
    z-index: 1;
    border: 1px none var(--white);
    background-color: #bdbdbd;
    border-radius: 100%;
  }

  .footer {
    padding-left: 5%;
  }

  .team-heading {
    align-items: center;
  }

  .card_pricing {
    margin-right: -5px;
    padding-right: 0;
  }

  .add-to-card_wrapper {
    width: 100%;
    margin-top: 3rem;
  }
}

@media screen and (min-width: 1920px) {
  .section {
    padding-left: 5%;
  }

  .display-2.cta {
    font-size: 6vw;
  }

  .menu {
    padding-left: 0;
  }

  .footer {
    padding-left: 5%;
  }

  .pricing13_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .section-package {
    padding-left: 5%;
  }
}

@media screen and (max-width: 991px) {
  .utility-page-wrap {
    padding-bottom: 6px;
  }

  .page-content {
    padding-left: 0;
  }

  .brand {
    margin-right: 10px;
  }

  .section {
    padding-left: 5%;
  }

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

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

  .section.inner {
    min-height: 0;
    padding-top: 130px;
    padding-bottom: 100px;
  }

  .first-checkout {
    width: 100%;
    margin-right: 0;
  }

  .second-checkout {
    flex-basis: auto;
    width: 100%;
    position: relative;
    top: 0;
  }

  .checkout-container {
    flex-direction: column;
  }

  .display-1 {
    text-align: center;
    font-size: 64px;
  }

  .margin-30px.hide-tablet {
    display: none;
  }

  .margin-30px.hide-desktop {
    display: block;
  }

  .display-2 {
    font-size: 47px;
  }

  .sticky-left {
    position: relative;
    top: 0;
  }

  .components-grid-style {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .margin-80px {
    margin-top: 40px;
  }

  .hero.new {
    padding-top: 0;
  }

  .navigation-wrapper {
    min-height: auto;
  }

  .hamburger-menu {
    height: 60px;
  }

  .menu {
    padding-left: 0;
    display: none;
  }

  .menu-grid {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: #0000;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .nav-paragraph {
    margin-bottom: 0;
  }

  .menu-overlay {
    cursor: auto;
  }

  .brun-logo {
    width: auto;
    height: 40px;
  }

  .logo-link.w--current {
    height: 40px;
  }

  .we-are-grid {
    max-width: 80%;
  }

  .max-w-width, .max-w-width.full, .max-w-width.full {
    max-width: 100%;
  }

  .lottie-animation.right {
    width: 26px;
  }

  .lottie-animation.right._2 {
    width: 24px;
  }

  .blog-text {
    font-size: 30px;
    line-height: 32px;
  }

  .blog-image {
    width: 200px;
    bottom: 12px;
    right: -95px;
  }

  .track {
    height: auto;
  }

  .sticky {
    width: auto;
    height: auto;
    padding: 50px 5%;
    position: relative;
    overflow: visible;
  }

  .collection-list {
    flex-wrap: wrap;
  }

  .collection-item {
    flex: 0 auto;
    width: 50%;
    padding-right: 0;
  }

  .wrapper1 {
    width: auto;
  }

  .project-overlay {
    background-image: linear-gradient(#fff0, #0000004d);
  }

  .project-content {
    flex-direction: column;
    padding-bottom: 20px;
  }

  .project-ttitle {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .project-circle, .project-circle.black, .project-circle.black {
    width: 80px;
    height: 80px;
  }

  .margin-100px {
    margin-top: 60px;
  }

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

  .fun-facts-wrapper {
    justify-content: center;
  }

  .footer {
    padding-left: 5%;
  }

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

  .copyright-flex {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
  }

  .copyright {
    margin-bottom: 0;
  }

  .work-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .legal-wrapper {
    width: 100%;
  }

  .form-grid {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .blog-page-content {
    max-width: 100%;
  }

  .remove-circe-mobile {
    background-color: #fff;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
    position: absolute;
    inset: 20px 20px auto auto;
  }

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

  .project-details li {
    font-size: 17px;
  }

  .navigation-wrapper {
    min-height: 85px;
    padding-left: 2%;
    padding-right: 2%;
    inset: 0% 0% auto;
  }

  .left-part {
    display: none;
  }

  .menu-flex {
    justify-content: center;
  }

  .big-text {
    font-size: 10vw;
  }

  .menu-wrapper {
    text-align: center;
    align-items: center;
  }

  .navigation-link {
    font-size: 40px;
  }

  .sticky-wrapper {
    height: auto;
    position: relative;
  }

  .sticky-wrapper.home {
    height: 100vh;
    position: sticky;
  }

  .hero-outlined-text-wrapper {
    width: 50vw;
  }

  .part-1 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .scroll-down-wrapper {
    max-width: 90%;
  }

  .scroll-down-wrapper.main {
    display: none;
  }

  .other-font.italic.pupple, .other-font.italic.is-hero {
    font-size: 64px;
  }

  .other-font.italic {
    font-size: 47px;
  }

  .other-font.italic.pupple, .other-font.italic.is-hero, .other-font.italic.pupple, .other-font.italic.is-hero {
    font-size: 64px;
  }

  .max-width-page {
    text-align: center;
    max-width: 100%;
  }

  .max-width-page._2 {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .process-wrapper {
    max-width: 100%;
  }

  .flex-child {
    justify-content: center;
    max-width: 100%;
  }

  .client-grid {
    grid-row-gap: 32px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: 1fr;
    justify-content: center;
    display: flex;
  }

  .testimonial-content-text {
    font-size: 14px;
  }

  .container-2 {
    padding-left: 4em;
    padding-right: 4em;
  }

  .carousel-mask {
    margin-top: 6em;
    margin-bottom: 7em;
  }

  .main-button {
    border: 1px #141414;
    min-height: 7em;
    font-size: .9em;
  }

  .section-2 {
    padding-left: 0;
  }

  .padding-inner {
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .carousel-button {
    opacity: 1;
    background-size: 1.2em;
  }

  .testimonial-uppercase-title {
    font-size: 16px;
  }

  .form-block {
    max-width: none;
  }

  .padding-global.home {
    padding-left: 5%;
    padding-right: 5%;
  }

  .testimonial_content {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: .25fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .padding-section-large-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .menu-component {
    padding-top: 100px;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

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

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .blog4-header_featured-image-wrapper {
    padding-top: 75%;
  }

  .faq3_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .section_layout1 {
    padding-left: 0;
  }

  .layout1_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .heading-style-h1-2 {
    font-size: 3.25rem;
  }

  .trustpilot-wrapper.is-desktop {
    display: none;
  }

  .trustpilot-wrapper.is-mobile {
    margin-top: 2rem;
    display: block;
  }

  .section-package {
    padding-left: 5%;
  }

  .client-logo-wrapper {
    margin-left: 1em;
    margin-right: 1em;
  }

  .client-logo-border {
    border-right: 1px solid #fff;
    width: auto;
    height: 3.5rem;
  }

  .wrapper {
    width: auto;
  }

  .horizontal-item {
    width: 52%;
  }

  .horizontal-sticky {
    padding-left: 5%;
    padding-right: 5%;
  }

  .section-team {
    padding-left: 5%;
  }

  .team-heading {
    align-items: center;
    font-size: 10rem;
  }

  .team-heading-sticky {
    justify-content: center;
    align-items: center;
  }

  .shop-listing_card {
    justify-content: space-between;
    min-height: 14rem;
  }

  .shop-listing_list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .categories-filter_list {
    white-space: nowrap;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .categories-filter_form {
    flex-direction: column;
    align-items: center;
  }

  .category-filter_button-text {
    white-space: nowrap;
  }

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

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial_component {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    grid-template-columns: .25fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .big-text-2 {
    font-size: 5rem;
  }

  .capabilities_heading {
    font-size: 4rem;
  }

  .capabilities_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .case-studies-grid_list {
    grid-column-gap: .2rem;
    grid-row-gap: .2rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .case-studies_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .case-study_header-logo {
    width: 12rem;
    margin-top: 10px;
  }

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

  .hero-bg_wrapper {
    display: none;
  }

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

  .projects-cms_item {
    position: sticky;
    top: 8rem;
  }

  .project-card_icon {
    width: 80px;
    height: 80px;
  }

  .process_list, .news-card_wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .container._60 {
    max-width: 90%;
  }

  .circle-plus {
    bottom: 20px;
    right: 20px;
  }

  .display-1 {
    font-size: 50px;
  }

  .subhead {
    font-size: 23px;
    line-height: 26px;
  }

  .display-2 {
    font-size: 38px;
    line-height: 38px;
  }

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

  .nav-text {
    font-size: 40px;
  }

  .photo-animation {
    max-width: 100%;
  }

  .hero {
    padding-bottom: 140px;
  }

  .menu {
    display: block;
  }

  .menu-grid {
    grid-row-gap: 20px;
    padding-top: 5rem;
  }

  .nav-wrapper {
    padding-bottom: 20px;
  }

  .nav-paragraph {
    display: none;
  }

  .remove-circle {
    top: 15px;
    right: 15px;
  }

  .max-w-width {
    max-width: 100%;
  }

  .blog-image {
    width: 150px;
    right: -42px;
  }

  .social-wrapper {
    display: none;
  }

  .social-wrapper.left {
    padding-left: 2%;
    padding-right: 0;
  }

  .social-wrapper.footer-socila {
    display: flex;
  }

  .social-icon.with-margin {
    justify-content: center;
  }

  .social-icon.with-margin:hover {
    color: var(--white);
    background-color: #0000;
    justify-content: flex-start;
  }

  .project-circle {
    display: none;
  }

  .testimonials-name {
    margin-bottom: 3px;
    font-size: 16px;
  }

  .fun-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

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

  .copyright-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .copyright {
    margin-bottom: 5px;
  }

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

  .blog-page-content {
    max-width: 100%;
  }

  .sticky-nav {
    display: none;
  }

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

  .hero-outlined-text-wrapper {
    height: 40vh;
    display: block;
  }

  .other-font.italic.pupple, .other-font.italic.is-hero {
    font-size: 50px;
  }

  .other-font.italic {
    font-size: 38px;
  }

  .other-font.italic.pupple, .other-font.italic.is-hero, .other-font.italic.pupple, .other-font.italic.is-hero {
    font-size: 50px;
  }

  .process-part-1 {
    align-items: center;
  }

  .client-grid {
    grid-column-gap: 0px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
    place-content: stretch;
    place-items: center;
    display: grid;
  }

  .testimonial-content-text {
    font-size: 14px;
  }

  .carousel-mask {
    margin-top: 6em;
    margin-bottom: 7em;
  }

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

  .carousel-block {
    padding-left: 4em;
    padding-right: 4em;
  }

  .form-block {
    margin-top: 2rem;
  }

  .testimonial_client {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .testimonial_client.hide-dektop-tablet {
    text-align: center;
    display: flex;
  }

  .testimonial_client.show-desktop-tablet {
    display: none;
  }

  .testimonial_client.is-case {
    justify-content: flex-start;
    align-items: center;
  }

  .testimonial_client-info {
    text-align: center;
    padding-right: 0;
  }

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

  .testimonial_content {
    grid-row-gap: 1rem;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonial_rating-wrapper.show-desktop-tablet {
    display: none;
  }

  .testimonial_rating-wrapper.hide-dektop-tablet {
    grid-column-gap: .25rem;
    justify-content: center;
    margin-bottom: 0;
    display: flex;
  }

  .testimonial_content-right {
    align-items: center;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .padding-section-large.is-mob-centerd {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small.is-centerd {
    text-align: center;
    text-align: center;
    text-align: center;
  }

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

  .pricing13_plan {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .padding-section-large-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .text-size-medium.is-centerd {
    text-align: center;
    text-align: center;
  }

  .pricing13_feature-list, .pricing13_component {
    grid-template-columns: 1fr;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .pricing18_plan {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .blog4-header_featured-image-wrapper {
    padding-top: 66%;
  }

  .blog4-header_featured-item-content {
    padding: 0;
  }

  .blog4-header_featured-item {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .faq3_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .faq3_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .layout1_content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .layout1_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h1-2 {
    font-size: 2.5rem;
  }

  .client-logo.is-case {
    height: 60px;
    margin-left: 20px;
  }

  .gradient-wrapper {
    width: 100%;
    height: 100%;
    display: none;
  }

  .circle._1 {
    opacity: .5;
    inset: 0% auto auto 0%;
  }

  .circle.cc-2 {
    inset: 0% 0% auto auto;
  }

  .circle._3 {
    opacity: .5;
    inset: auto auto 0% 0%;
  }

  .circle._4 {
    inset: auto 0% 0% auto;
  }

  .client-logo-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 8rem;
    display: flex;
  }

  .client-logo-border {
    border-left-style: none;
    border-left-width: 0;
    border-right-style: none;
    border-right-width: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }

  .client-logo-border.has-right-border {
    border-right-style: none;
    border-right-width: 0;
  }

  .moibile-gradient-wrapper {
    width: 100%;
    height: 100%;
    display: block;
  }

  .horizontal-item {
    width: 100%;
    padding-right: 4vw;
  }

  .team-image-wrapper.image-02, .team-image-wrapper.image-05 {
    width: 15rem;
    top: 2%;
  }

  .team-image-wrapper.image-01 {
    width: 15rem;
  }

  .team-image-wrapper.image-02, .team-image-wrapper.image-05 {
    width: 15rem;
    top: 2%;
  }

  .team-image-wrapper.image-06 {
    width: 15rem;
    top: 4%;
  }

  .team-image-wrapper.image-04 {
    width: 15rem;
    top: 4%;
    left: 52%;
  }

  .section-team {
    height: 330vh;
  }

  .team-heading {
    font-size: 5rem;
  }

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

  .div-block-56, .paragraph-2 {
    text-align: center;
  }

  .categories-filter_list {
    justify-content: center;
  }

  .categories-filter_form {
    flex-wrap: wrap;
    align-items: center;
  }

  .category-filter_button-text {
    white-space: normal;
    overflow-wrap: normal;
  }

  .outline-text-mobile {
    width: 50vh;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial_component {
    grid-row-gap: 1rem;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .testimonial_tank-logo {
    width: 10rem;
  }

  .testimonial_tank-logo.hide-dektop-tablet {
    object-fit: contain;
    object-fit: contain;
    width: 10rem;
    height: 5rem;
    margin-bottom: 2rem;
    display: block;
  }

  .big-text-2 {
    font-size: 3.5rem;
  }

  .capabilities_item-list {
    grid-row-gap: 2rem;
  }

  .capabilities_heading {
    font-size: 3.5rem;
  }

  .capabilities_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .case-studies-grid_list {
    grid-row-gap: .2rem;
    grid-template-columns: 1fr;
  }

  .case-studies_slider_slide {
    padding-left: 0;
    padding-right: 0;
  }

  .case-studies_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .case-study-gallery_component, .case-study-gallery_row {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .heading-56 {
    font-size: 2.5rem;
  }

  .hero_heading {
    max-width: 34ch;
  }

  .heading-48 {
    font-size: 2.5rem;
  }

  .project-card_icon {
    display: none;
  }

  .testimonial-card_logo {
    display: block;
  }

  .testimonial-card_footer {
    display: none;
  }

  .process-card_wrapper {
    flex-flow: column-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }

  .process-card_lottie {
    width: 3.75rem;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 1rem;
  }

  .container.is--sticky {
    justify-content: center;
  }

  .brand {
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

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

  .section.take-off {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .section.checkout {
    padding-top: 100px;
  }

  .product-title-sidebar {
    font-size: 16px;
  }

  .order-item {
    flex-direction: column;
  }

  .strange-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .circle-plus {
    bottom: 10px;
    right: 10px;
  }

  .image-small-product {
    margin-bottom: 20px;
  }

  .display-1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .display-1.center {
    font-size: 10vw;
  }

  .display-1.hero-text {
    font-size: 2.5rem;
  }

  .subhead.gray {
    font-size: 20px;
    line-height: 24px;
  }

  .display-2 {
    font-size: 34px;
    line-height: 38px;
  }

  .display-2.normal {
    font-size: 8vw;
    line-height: 29.4px;
  }

  .display-3 {
    font-size: 29px;
  }

  .style-guide-grid {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

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

  .nav-text {
    font-size: 30px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 108px;
  }

  .hero.sub {
    padding-bottom: 75px;
  }

  .navigation-wrapper {
    padding-left: 3%;
    padding-right: 3%;
  }

  .menu {
    display: none;
  }

  .menu-grid {
    padding-top: 4rem;
  }

  .remove {
    width: 14px;
  }

  .brun-logo {
    width: 60px;
  }

  .hero-title-flex, .we-are-grid {
    max-width: 100%;
  }

  .flex-lottie {
    z-index: 2;
  }

  .blog-link {
    max-width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .blog-text {
    font-size: 27px;
    line-height: 30px;
  }

  .blog-image, .social-wrapper.left {
    display: none;
  }

  .social-wrapper.left {
    display: none;
  }

  .social-wrapper.footer-socila {
    display: flex;
  }

  .social-icon.with-margin:hover {
    color: var(--white);
    background-color: #0000;
  }

  .collection-item {
    width: 100%;
  }

  .margin-100px {
    margin-top: 40px;
  }

  .button-flex {
    flex-direction: column;
  }

  .button-flex.left {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 6px;
  }

  .horizontal-divider {
    height: 20px;
  }

  .horizontal-divider._15px {
    height: 0;
  }

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

  .fun-facts-wrapper {
    border-right-style: none;
  }

  .counterup {
    font-size: 40px;
    line-height: 40px;
  }

  .grid-4-columns {
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .copyright-flex {
    flex-direction: column;
  }

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

  .form-grid {
    max-width: 100%;
  }

  .remove-circe-mobile {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }

  .project-details li {
    font-size: 14px;
  }

  .sticky-nav {
    display: block;
  }

  .navigation-link {
    font-size: 40px;
  }

  .sticky-wrapper-main {
    overflow: hidden;
  }

  .hero-outlined-text-wrapper {
    width: 75vw;
    height: auto;
    display: none;
  }

  .other-font.italic.pupple, .other-font.italic.is-hero {
    font-size: 36px;
  }

  .other-font.italic {
    font-size: 34px;
  }

  .other-font.italic.pupple, .other-font.italic.is-hero, .other-font.italic.pupple, .other-font.italic.is-hero {
    font-size: 36px;
  }

  .process-content {
    padding-left: 0;
    padding-right: 0;
  }

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

  .process-part-1 {
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 0;
  }

  .process-image {
    width: 100px;
    height: 100px;
  }

  .process-part-2 {
    padding: 0 0 0 10px;
  }

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

  .container-2 {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .carousel {
    padding-bottom: 50px;
  }

  .carousel-max-width {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .carousel-mask {
    margin-top: 4em;
  }

  .carousel-slide {
    width: 100%;
  }

  .main-button {
    min-height: 7em;
  }

  .carousel-button {
    height: 50px;
    font-size: 10px;
  }

  .carousel-block {
    padding: 20px 4em;
  }

  .testimonial_client-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

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

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .buy-now-btn {
    flex-direction: column;
    align-items: stretch;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .button-4 {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .faq3_component, .layout1_component {
    grid-template-columns: 1fr;
  }

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

  .team-image-wrapper.image-06 {
    width: 10rem;
    top: 3%;
    left: 35%;
  }

  .team-image-wrapper.image-01 {
    width: 11rem;
  }

  .team-image-wrapper.image-02 {
    width: 10rem;
    top: 1%;
    left: 40%;
  }

  .team-image-wrapper.image-05 {
    width: 10rem;
    margin-bottom: 2rem;
    top: 3%;
  }

  .team-image-wrapper.image-06 {
    width: 10rem;
    top: 3%;
    left: 35%;
  }

  .team-image-wrapper.image-04 {
    width: 10rem;
    margin-bottom: 2rem;
    top: 3%;
    left: 46%;
  }

  .section-team {
    flex-direction: column;
    justify-content: flex-start;
    height: 275vh;
    display: flex;
  }

  .team-heading {
    font-size: 5rem;
  }

  .outlined-image.show-mobile {
    display: block;
  }

  .outline-text-mobile {
    background-image: url("https://cdn.prod.website-files.com/63f478d2bf84a86fb30f3f17/64ca3b85f810b86e30fe441f_graphictank-hero-image.svg");
    background-position: 50% 100%;
    background-repeat: repeat-y;
    background-size: contain;
    background-attachment: scroll;
    width: 55%;
    height: 30%;
    display: block;
    position: static;
    inset: 0% auto;
  }

  .recaptcha {
    z-index: 1;
    position: relative;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -1.5rem .75rem auto auto;
  }

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

  .testimonial_tank-logo {
    width: 7rem;
  }

  .testimonial_tank-logo.hide-dektop-tablet {
    width: 8rem;
    height: 5rem;
  }

  .add-to-card_wrapper {
    margin-top: 2rem;
  }

  .big-text-2 {
    font-size: 2.8rem;
  }

  .big-text-2.is-one {
    font-size: 2.6rem;
  }

  .big-text-2.is-two {
    font-size: 2rem;
  }

  .capabilities_item-list {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .capabilities_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

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

  .case-study_header-logo {
    width: 8rem;
  }
}

#w-node-_1a40ced3-f9db-63b0-6fa0-c3f4d78c7442-af0f3f16, #w-node-_1a40ced3-f9db-63b0-6fa0-c3f4d78c7447-af0f3f16, #w-node-_1a40ced3-f9db-63b0-6fa0-c3f4d78c7464-af0f3f16, #w-node-_1a40ced3-f9db-63b0-6fa0-c3f4d78c7469-af0f3f16, #w-node-_1a40ced3-f9db-63b0-6fa0-c3f4d78c7485-af0f3f16, #w-node-_1a40ced3-f9db-63b0-6fa0-c3f4d78c748a-af0f3f16, #w-node-_1a40ced3-f9db-63b0-6fa0-c3f4d78c74a5-af0f3f16, #w-node-_1a40ced3-f9db-63b0-6fa0-c3f4d78c74aa-af0f3f16 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c95c28ac-a06a-7816-a837-302382e5f7ec-af0f3f16, #w-node-_6f5e494e-f0fe-ca8d-c0d5-b2d52c2e6334-2c2e6325 {
  justify-self: auto;
}

#w-node-_6f5e494e-f0fe-ca8d-c0d5-b2d52c2e6326-2c2e6325 {
  align-self: start;
}

#w-node-d27ee516-ba33-752a-62f9-77377fa2c537-7fa2c520, #w-node-d27ee516-ba33-752a-62f9-77377fa2c53d-7fa2c520, #w-node-d27ee516-ba33-752a-62f9-77377fa2c543-7fa2c520, #w-node-edb24c9d-6fc0-07f3-a346-565cd50b3095-7fa2c520, #w-node-d27ee516-ba33-752a-62f9-77377fa2c549-7fa2c520, #w-node-d27ee516-ba33-752a-62f9-77377fa2c54f-7fa2c520, #w-node-_498ed585-5479-ab3b-4c45-e09d56755da3-7fa2c520 {
  justify-self: start;
}

#w-node-f611a8f8-8155-dba4-9286-d9c01a1b1df5-1a1b1df1, #w-node-f611a8f8-8155-dba4-9286-d9c01a1b1df6-1a1b1df1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f611a8f8-8155-dba4-9286-d9c01a1b1dff-1a1b1df1 {
  justify-self: center;
}

#w-node-f611a8f8-8155-dba4-9286-d9c01a1b1e03-1a1b1df1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_217ff727-6d4e-8676-cbcf-aac863cbee03-1a1b1df1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_21133c4b-802b-ffb7-9d08-3987f5e4e793-1a1b1df1, #w-node-f611a8f8-8155-dba4-9286-d9c01a1b1e18-1a1b1df1, #w-node-f611a8f8-8155-dba4-9286-d9c01a1b1e21-1a1b1df1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-d27ee516-ba33-752a-62f9-77377fa2c523-7fa2c520 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c95c28ac-a06a-7816-a837-302382e5f7ec-af0f3f16, #w-node-_6f5e494e-f0fe-ca8d-c0d5-b2d52c2e6334-2c2e6325 {
    order: -9999;
  }

  #w-node-d27ee516-ba33-752a-62f9-77377fa2c523-7fa2c520 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-f611a8f8-8155-dba4-9286-d9c01a1b1dff-1a1b1df1 {
    order: -9999;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d27ee516-ba33-752a-62f9-77377fa2c523-7fa2c520, #w-node-d27ee516-ba33-752a-62f9-77377fa2c564-7fa2c520 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}
