@font-face {
  font-family: Panchang variable;
  src: url('../fonts/Panchang-Variable.ttf') format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: #141414;
  --white: white;
  --light-grey: #f4f4f4;
  --burlywood: #fac878;
}

.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 {
  color: var(--black);
  height: 100vh;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Panchang variable, sans-serif;
  font-size: 5rem;
  font-weight: 200;
  line-height: 1.2;
}

h2 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Panchang variable, sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Panchang variable, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
  font-size: 1rem;
}

a {
  border-color: var(--black);
  color: var(--black);
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

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

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

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.main-wrapper {
  overflow: visible;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.padding-xxsmall {
  padding: .5rem;
}

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

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

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

.text-size-medium {
  font-size: 1.125rem;
  font-weight: 300;
}

.button {
  border: 1px solid var(--black);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  border-radius: 8rem;
  padding: .75rem 1.5rem;
  font-family: Panchang variable, sans-serif;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

.form-input {
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: #0009;
}

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

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

.navbar_component {
  z-index: 50;
  background-color: #0000;
  border: 1px #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.navbar_container {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar_logo-link {
  z-index: 1;
  padding-left: 0;
}

.navbar_wrapper {
  grid-column-gap: 1rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.navbar16_menu-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding-top: 4.5rem;
  display: flex;
  position: relative;
}

.navbar16_links-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  display: flex;
}

.navbar_menu-button {
  z-index: 1;
  padding: 0;
  position: relative;
}

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

.menu-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: relative;
}

.menu-icon_wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.menu-icon_line-middle-top {
  z-index: 2;
  width: 24px;
  height: 2px;
  position: absolute;
  inset: 0;
}

.menu-icon_line-middle-base {
  background-color: #000;
  width: 24px;
  height: 2px;
  position: absolute;
}

.section-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-top: 2%;
  margin-bottom: 10%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ultra-gradient-wrapper {
  opacity: 1;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1vw;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.ultra-gradient-wrapper.pointer-events-off {
  z-index: 0;
}

.main-shapes-wrapper {
  opacity: 1;
  filter: blur(120px);
}

.shape-3 {
  background-color: #b5a3d6;
  border-radius: 999em;
  width: 53em;
  height: 100em;
  position: absolute;
  top: -19.8em;
  left: -26em;
  right: 0;
  transform: rotate(-28deg);
}

.shape-2 {
  background-color: #b5a3d6;
  border-radius: 999em;
  width: 43em;
  height: 40em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -20em;
  left: -27.4em;
  right: 0;
}

.shape-1 {
  background-color: #a0bce0;
  border-radius: 999em;
  width: 40em;
  height: 40em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -24.7em;
  left: 0;
  right: 0;
}

.blending-group-wrapper {
  z-index: 1;
  opacity: 1;
  filter: blur(120px);
  mix-blend-mode: overlay;
}

.shape-8 {
  background-color: #9fc68e;
  border-radius: 999em;
  width: 47em;
  height: 119em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -17.1em;
  left: 26.7em;
  right: 0;
  transform: rotate(29deg);
}

.shape-9 {
  background-color: #1b1b1b;
  border-radius: 999em;
  width: 30em;
  height: 119em;
  position: absolute;
  top: -5.3em;
  right: 1.2em;
  transform: rotate(39deg);
}

.shape-4 {
  background-color: #f6c779;
  border-radius: 999em;
  width: 65em;
  height: 40em;
  margin-left: auto;
  position: absolute;
  top: -11.3em;
  left: 0;
  transform: rotate(40deg);
}

.shape-5 {
  background-color: #e7805b;
  border-radius: 999em;
  width: 30em;
  height: 30em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -21.7em;
  left: 0;
  right: 0;
}

.shape-7 {
  background-color: #b5a3d6;
  border-radius: 999em;
  width: 20em;
  height: 13em;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: -4.1em;
  left: 0;
  right: -23.9em;
  transform: rotate(40deg);
}

.shape-6 {
  background-color: #a0bce0;
  border-radius: 999em;
  width: 66em;
  height: 60em;
  margin-left: auto;
  position: absolute;
  top: -14.2em;
  right: -25em;
  transform: rotate(60deg);
}

.background-noise {
  z-index: 0;
  opacity: .3;
  background-image: url('../images/noise.png');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.header_component {
  z-index: 99;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 5%;
  display: block;
  position: relative;
}

.menu-icon_line-bottom {
  background-color: #141414;
  width: 24px;
  height: 2px;
}

.menu-icon_line-top {
  background-color: #141414;
  width: 24px;
  height: 2px;
  padding-bottom: 0;
  padding-right: 0;
}

.navbar16_link-2 {
  color: #141414;
  text-transform: uppercase;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem 0;
  font-family: Panchang variable, sans-serif;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1.2;
  display: inline-block;
  position: static;
}

.navbar16_link-2.w--current {
  color: #141414;
}

.menu-icon_line-middle {
  background-color: #141414;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 2px;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.navbar_menu {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding-left: 5%;
  padding-right: 5%;
  transition: height .5s;
  position: absolute;
  inset: 0% 0% auto;
  overflow: auto;
}

.footer_bottom-wrapper {
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: absolute;
  bottom: 1rem;
}

.footer_credit-text {
  text-transform: none;
  font-size: .875rem;
  font-weight: 500;
}

.switch {
  border: 1px solid #fff;
  border-radius: 8rem;
  width: 8rem;
  height: 4rem;
  position: relative;
}

.switch.align-center {
  border-color: var(--black);
}

.switch.align-center.custom-cursor {
  width: 6rem;
  height: 2.6rem;
  margin-left: auto;
}

.switch-button {
  background-color: #fff;
  border-radius: 8rem;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 3.9rem;
  display: flex;
  position: absolute;
}

.switch-button.custom-cursor {
  justify-content: center;
  align-items: center;
  height: 2.5rem;
}

.mode-lottie {
  align-items: center;
  width: 1.4rem;
  display: flex;
}

.heading {
  text-transform: none;
  margin-top: 4rem;
  font-family: Google Sans, sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
}

.text-wrapper {
  text-align: center;
  min-width: 55ch;
}

.scramble-text.text-size-xl.text-weight-light {
  margin-bottom: 60px;
  font-size: .99rem;
  line-height: 150%;
}

.button-54 {
  color: #222;
  cursor: pointer;
  background-color: #94ee94;
  border: .2em solid #000;
  border-radius: 500px;
  place-content: space-around center;
  align-self: center;
  align-items: center;
  margin-top: 20px;
  padding: 1em .8em;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: ease-in-out;
  display: inline-block;
}

.button-54:hover {
  transform: translate(-8px, -8px);
  box-shadow: 6px 6px #222;
}

.button-54:active {
  box-shadow: none;
  transform: translate(0);
}

.button-54.custom-cursor {
  text-align: center;
  background-color: #94ee94;
  margin-top: 0;
  margin-left: 10px;
}

.button-54.custom-cursor.main-btn {
  color: #000;
  background-color: #bbaffd;
  background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
  margin-bottom: 5%;
  margin-left: 0;
  padding-top: .88em;
  padding-bottom: .5em;
}

.button_text-5 {
  float: left;
  color: #353535;
  flex: 0 auto;
  margin-top: 0;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: .88em;
  font-style: normal;
  display: inline-block;
}

.button_text-5.custom-cursor {
  margin-bottom: 5px;
  padding-top: .5em;
  padding-bottom: .5em;
  font-family: Google Sans, sans-serif;
  font-size: .85em;
  font-weight: 700;
}

.button_arrow-2 {
  float: right;
  color: #353535;
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 1.2em;
  line-height: 1;
  display: inline-block;
}

.button_arrow-2.custom-cursor {
  margin-left: .125rem;
  padding-top: 5px;
  font-size: .88em;
}

.marquee-horizontal {
  z-index: 200;
  letter-spacing: .2px;
  background-color: #5739fb;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 44px;
  margin-top: 0%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0%;
  font-family: Inconsolata, monospace;
  font-size: 1.1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.track-horizontal-alt {
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.marquee-text {
  color: #fff;
  text-transform: uppercase;
  flex: none;
  margin-right: 8vw;
  font-size: .88rem;
}

.about-text {
  margin-left: 10%;
  margin-right: 10%;
  position: relative;
}

.padding-global-9 {
  margin-top: 5%;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-layout {
  text-align: center;
  margin-top: 22%;
  margin-bottom: 15%;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-size: .77rem;
}

.text-size-large {
  letter-spacing: -.02em;
  font-size: 3rem;
  line-height: 1.2;
}

.text-size-large.text-color-gray800 {
  padding-left: 0%;
  font-size: 1.88rem;
  display: inline;
}

.text-span-16 {
  color: #5739fb;
  font-style: italic;
}

.text-block-126 {
  font-family: Inconsolata, monospace;
  font-size: .85em;
}

.past-projects-titleblock {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #1f2020;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  display: flex;
}

.past-projects-titleblock.how-we_help-titleblock {
  margin-bottom: 20px;
}

.card_content {
  padding-top: .5em;
  padding-bottom: .5em;
}

.card_text {
  margin-top: 1em;
  margin-bottom: 1.4em;
  font-size: .8em;
  line-height: 1.3;
}

.card_text.heading-servicecard {
  margin-bottom: 0;
  font-size: 1.5em;
  font-weight: 500;
}

.about__block-meta-2 {
  color: #e6e6e6;
  border-bottom: 1px solid #414141;
  margin-bottom: .5rem;
  padding-bottom: 1rem;
}

.about__block-meta-2:hover {
  color: #e6e6e6;
}

.grid {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: 5%;
  margin-right: 5%;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: grid;
}

.card {
  background-color: #e9e9e9;
  border-radius: 2em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: auto;
  padding: 2.25em;
  transition: color .2s, background-color .2s;
  display: flex;
}

.highlight {
  opacity: .1;
  filter: blur(20px);
  background-color: #fff;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  display: block;
  position: absolute;
  inset: auto 0% 0% auto;
}

.pricing_checklist {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.top-card {
  margin-top: 10%;
  padding-left: 30px;
  padding-right: 30px;
}

.service-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  perspective: 1667px;
  flex-direction: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto 57px;
  padding: 15px;
  display: grid;
  transform: none;
}

.pricing_bottom {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #0000;
  flex-flow: column;
  margin-bottom: 10%;
  padding: 30px;
  display: flex;
}

.services-wrapper {
  width: 100%;
  font-size: 1em;
  position: relative;
  overflow: hidden;
}

.heading-style-h2 {
  color: #1f2020;
  text-align: center;
  font-size: 3.7rem;
}

.heading-style-h2.custom-text {
  text-transform: none;
  margin-bottom: 20px;
  margin-right: 40px;
  font-family: Google Sans, sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
}

.pricing_tick-icon {
  width: 18px;
  height: 18px;
}

.card-text.check-list {
  font-size: .8em;
}

.pricing_checkitem {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  align-items: center;
  display: flex;
}

.container-3 {
  width: 100%;
  max-width: 90em;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 2em;
}

.container-3.is-cards {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: auto;
  padding-top: 4em;
  display: flex;
}

.text-span-11 {
  color: #5739fb;
  font-style: italic;
}

.loading-lottie {
  width: 10vw;
  height: 10vw;
  padding-left: 0;
}

.learn-more {
  color: #fff;
  text-align: center;
  background-color: #4a3aff;
  border-radius: 50px;
  width: 57%;
  padding: 17px 20px;
  font-size: .8em;
  font-weight: 700;
  line-height: 20px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: -6px 6px #252aa3;
}

.learn-more:hover {
  transform: translate(0, 3px);
  box-shadow: 0 0 #252aa3;
}

.flex-service-25 {
  text-align: center;
  background-color: #f5f5f6;
  border: 1px solid #00000040;
  border-radius: 20px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px 2px #00000021;
}

.flex-service-25:hover {
  background-color: #fff;
}

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

.text-weight-semibold.card-text {
  font-size: .9em;
}

.section-6 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.heading-12 {
  background-color: #0000;
  position: relative;
}

.logo-slider-inner {
  display: flex;
}

.logo {
  max-width: 8em;
}

.logo.php {
  max-width: 6em;
}

.logo.wp {
  max-width: 10em;
}

.logo.js {
  max-width: 6em;
}

.logo-sldier {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  width: 200vw;
  display: flex;
  overflow: visible;
}

.marquee-item {
  display: flex;
  overflow: visible;
}

.logo-wrapper {
  aspect-ratio: 3 / 2;
  background-color: #f5f5f5;
  border: 1px solid #0f1c1236;
  border-radius: 1em;
  justify-content: center;
  align-items: center;
  width: 11em;
  margin-right: 1em;
  display: flex;
}

.section {
  background-color: #fff;
  padding: 4em;
  overflow: hidden;
}

.section.logos {
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.languages-marquee {
  display: block;
  position: relative;
  overflow: hidden;
}

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

.work_tag-wrapper {
  background-color: #5739fb;
  border: 1px solid #838383;
  border-radius: 6px;
  padding: .175rem .5rem;
}

.buttone-text-block {
  font-weight: 700;
}

.work_grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  width: 100%;
}

.work_thumbnail-img {
  object-fit: cover;
  width: 108%;
  max-width: none;
  height: 108%;
  position: absolute;
  inset: -4% 0% 0% -4%;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.icon-embed-xlarge.absolute {
  color: #abf066;
  -webkit-text-stroke-color: #abf066;
  margin-top: 55px;
  position: absolute;
  inset: 10% 10% auto auto;
}

.work_card-content {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

.paragraph-4 {
  text-align: left;
  max-width: 80%;
  font-family: Google Sans, sans-serif;
  text-decoration: none;
}

.work_title-line {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  display: flex;
}

.button-text-wrapper {
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 1em;
  display: flex;
  overflow: hidden;
}

.heading-19 {
  color: #2e3030;
  margin-top: 1%;
  font-size: 2rem;
  line-height: 1;
}

.heading-19.custom-text {
  text-align: center;
  text-transform: none;
  margin-top: 0%;
  margin-bottom: 4%;
  font-family: Google Sans, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.gallery__lottie {
  width: 220px;
  height: 200px;
  margin-bottom: 20px;
}

.button-background {
  border: 2px solid #dcff7d;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  position: absolute;
}

.work_embed {
  display: none;
}

.work-button {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  color: #0f1c12;
  text-transform: uppercase;
  border: 2.4px solid #5739fb;
  border-radius: .25em;
  justify-content: center;
  align-items: center;
  min-width: 11em;
  padding: .5em .5em .5em .75em;
  font-size: .875em;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.button-wrapper {
  color: #dcff7d;
  align-items: center;
  min-height: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  position: relative;
}

.button-text-5 {
  z-index: 1;
  margin-left: 20px;
  margin-right: 10px;
  position: relative;
}

.work_project-title {
  color: #e6e6e6;
  text-transform: none;
  font-family: Google Sans, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.project_cta-new-webstie {
  grid-row-gap: 1rem;
  color: #fff;
  background-color: #252525;
  border-radius: 10px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.work_card-border_glow {
  z-index: 2;
  background-color: #000;
  border: 0 #0000;
  border-radius: 13px;
  padding: 1px;
  position: relative;
  overflow: hidden;
}

.work_card-glow-background {
  z-index: 1;
  filter: blur(80px);
  background-color: #c7c7c7;
  border-radius: 50%;
  width: auto;
  height: auto;
  position: absolute;
  inset: 0% auto auto 0%;
}

.work_thumbnail-img-wrapper {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 60%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-arrow {
  width: 15px;
  margin-right: 20px;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

.text-size-tiny {
  color: #e6e6e6;
  font-size: .9rem;
  font-weight: 400;
}

.work_tags-container {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

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

.margin-top-2.margin-xlarge {
  margin: 40px 0 0;
}

.work_scroll-wrapper {
  padding-left: 5%;
  padding-right: 5%;
}

.work_card-hover {
  z-index: 2;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  perspective: 1000px;
  letter-spacing: .25px;
  background-color: #2b2929;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-block-124 {
  color: #e6e6e6;
  font-family: Google Sans, sans-serif;
  font-size: 1rem;
}

.heading-style-h1-3 {
  text-transform: none;
  font-family: Google Sans, sans-serif;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.large-circle-link {
  color: #000;
  letter-spacing: 4px;
  text-transform: uppercase;
  background-color: #f7f7f7;
  border: 1px solid #8c9fac33;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  font-size: 11px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: auto auto auto -100px;
  overflow: hidden;
}

.large-circle-link.click {
  pointer-events: auto;
  cursor: default;
}

.link-hover-fill {
  background-color: #000;
  border-radius: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.optimism-cta-2 {
  color: #181818;
  background-color: #0000;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: relative;
  overflow: hidden;
}

.body-display {
  color: #333538;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
}

.button-text-4 {
  z-index: 20;
  color: #000;
  font-size: 16px;
  position: relative;
  transform: rotate(-15deg);
}

.small-width {
  max-width: 450px;
}

.stacked-intro {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grain-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.grid-wrapper-2 {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1500px) minmax(5vw, 1fr);
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.menu-lotti-icon-2 {
  width: 36px;
  height: 36px;
  margin-top: 20px;
  margin-bottom: 0;
  margin-left: 20px;
}

.grain {
  z-index: 1;
  opacity: .02;
  background-image: url('../images/noise.gif');
  background-position: 50%;
  background-size: auto;
  position: fixed;
  inset: 0%;
}

.grain.in-block {
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: auto;
}

.div-block-22 {
  flex-flow: row;
  display: flex;
}

.stacked-content {
  grid-column-gap: 0px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-left: 72px;
  padding-right: 72px;
  display: grid;
  position: relative;
}

.action-content {
  grid-column-gap: 16px;
  grid-row-gap: 48px;
  border-left: 1px solid #8c9fac33;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 800px;
  padding-top: 140px;
  padding-bottom: 140px;
  padding-left: 200px;
  display: grid;
  position: relative;
}

.content-wrapper {
  z-index: 20;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  position: relative;
}

.heading-4 {
  font-size: 1.8rem;
}

.grid-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 6%;
  display: grid;
}

.grid-container.is--background {
  z-index: -1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100vh;
  margin-top: 0%;
  display: grid;
  position: fixed;
  inset: 0%;
}

.grid-background__item {
  border-left: 1px solid #4141411a;
}

.os-menu-inner {
  height: 26px;
  overflow: hidden;
}

.os-social-link {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.os-btn-text {
  font-size: .9rem;
}

.os-footer-text {
  color: #3a3939;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 21px;
}

.container-md-2 {
  max-width: 1112px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.footer-logo {
  max-width: 220px;
}

.os-btn-menu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #000;
  background-color: #fff;
  border-top: 1px solid #6666664f;
  border-radius: 100px;
  align-items: center;
  padding: 16px 30px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}

.os-btn-menu.back-home {
  z-index: 50;
  inset: 10% 10% auto auto;
  margin-top: 20px;
  position: absolute;
  inset: 2% 10% auto auto;
}

.os-footer-menu {
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.showcase-footer-top {
  text-align: center;
}

.orbix-social {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  padding-top: 35px;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.final-footer {
  color: #f7f7f7;
  background-color: #f7f7f7;
  padding-top: 86px;
  padding-bottom: 40px;
  position: relative;
}

.os-footer-text-btm {
  color: #000;
  text-align: center;
  font-size: 1rem;
}

.styles {
  width: 0;
  height: 0;
  position: fixed;
  inset: 0% 0% auto;
  overflow: hidden;
}

.to-top {
  z-index: 9000;
  width: 1px;
  height: 1px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.button-55 {
  color: #fffbea;
  font-variation-settings: "wght" 600;
  text-align: center;
  cursor: url('../images/'), pointer;
  background-color: #141414;
  border: .1rem solid #141414;
  border-radius: 3rem;
  padding: .75rem 1.5rem;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
}

.button-55:hover {
  border-radius: .5rem;
}

.button-55:active {
  background-color: #fa3c23;
  border-color: #ff7145;
}

.button-55:focus {
  outline-offset: .0625rem;
  outline: .125rem dotted #fa3c23;
}

.button-55:focus-visible, .button-55[data-wf-focus-visible] {
  outline-offset: .0416667rem;
  outline-width: .166667rem;
  outline-color: #50ff6c;
}

.button-55.is-secondary {
  color: #161616;
  background-color: #fffbea;
}

.button-55.is-link {
  color: #141414;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.heading1 {
  letter-spacing: -.05rem;
  text-wrap: balance;
  font-size: 5rem;
  font-weight: 400;
  line-height: 4rem;
}

.image-tone {
  mix-blend-mode: multiply;
  border: .3rem solid #000;
  border-radius: 100%;
  padding: .25rem;
}

.link {
  color: #f36117;
  cursor: url('../images/'), pointer;
  font-weight: 700;
  text-decoration: underline;
}

.heading2 {
  color: #242321;
  text-wrap: balance;
  font-size: 1.375rem;
  line-height: 1.8rem;
}

.link-block {
  cursor: url('../images/'), pointer;
}

.spacer-medium {
  height: 2rem;
}

.header-block {
  position: relative;
}

.heading3 {
  color: #413f3e;
  text-wrap: balance;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3rem;
}

.spacer-large {
  width: 100%;
  padding-top: 3rem;
}

.about-tone-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 0rem;
  grid-template-rows: 10rem;
  grid-template-columns: 20rem auto;
  display: grid;
}

.tone-avatar-logo {
  flex-flow: column;
  align-items: center;
  display: flex;
}

.button-group-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group-2.is-center {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.extrabold {
  font-weight: 700;
}

.contact-text-field {
  color: #003049;
  background-color: #4200f71c;
  border: 1px solid #00f;
  height: 50px;
  font-family: Varela Round, sans-serif;
  line-height: 1.3;
}

.contact-text-field:focus {
  border-color: #003049;
}

.contact-text-field::placeholder {
  color: #00304966;
  font-family: Varela Round, sans-serif;
}

.error-message-inquiry {
  color: #fff;
  background-color: #d62828;
  font-size: 14px;
  line-height: 1.3;
}

.button-56 {
  color: #222;
  cursor: pointer;
  background-color: #94ee94;
  border: .2em solid #000;
  border-radius: 500px;
  place-content: space-around center;
  align-self: center;
  align-items: center;
  margin-top: 20px;
  padding: 1em .8em;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: ease-in-out;
  display: inline-block;
}

.button-56:hover {
  transform: translate(-8px, -8px);
  box-shadow: 6px 6px #222;
}

.button-56:active {
  box-shadow: none;
  transform: translate(0);
}

.button-56.custom-cursor {
  text-align: center;
  background-color: #94ee94;
  margin-top: 0;
  margin-left: 10px;
}

.button-56.custom-cursor.main-btn {
  color: #000;
  background-color: #bbaffd;
  background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
  margin-bottom: 5%;
  margin-left: 0;
  padding-top: .88em;
  padding-bottom: .5em;
}

.button-56.custom-cursor.main-btn.contact-page-button {
  overflow: visible;
}

.contact-wrapper-2 {
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: block;
}

.lottie-eye {
  width: 21px;
  height: 20px;
  padding-right: 0;
}

.lottie-eye.demo-eye {
  text-align: left;
  width: 26px;
  height: 26px;
}

.lottie-eye.demo-eye.big-eye {
  width: 40px;
  height: 32px;
  margin-top: 2%;
  margin-left: 2%;
}

.hero__title {
  color: #353535;
  text-align: center;
  margin-top: 0;
  font-size: 30vh;
  line-height: .825;
  position: relative;
}

.hero-section {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  position: relative;
}

.contact-text-area {
  color: #003049;
  background-color: #4200f71a;
  border: 1px solid #00f;
  min-height: 150px;
  padding-top: 12px;
  font-family: Varela Round, sans-serif;
  line-height: 1.3;
}

.contact-text-area:focus {
  border-color: #003049;
}

.contact-text-area::placeholder {
  color: #00304966;
  font-family: Varela Round, sans-serif;
}

.contact-text-area.input-cursor {
  font-family: Google Sans, sans-serif;
}

.heading-17 {
  color: #2e3030;
  text-align: center;
  text-transform: none;
  margin-top: 10px;
  font-family: Google Sans, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.hero {
  grid-row-gap: 4vh;
  flex-direction: column;
  align-items: center;
  margin-top: 0%;
  margin-bottom: 0%;
  display: flex;
}

.contact-bottom-wrapper {
  margin-bottom: 40px;
  margin-right: 40px;
}

.div-block-8 {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  display: flex;
}

.form-block-2 {
  margin-top: 3%;
  padding-left: 10%;
  padding-right: 10%;
}

.inquiry-form {
  overflow: visible;
}

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

.contact-name-wrapper {
  flex: 1;
  margin-right: 40px;
}

.contact-field-label {
  color: #181818;
  margin-bottom: 10px;
  font-family: Google Sans, sans-serif;
  font-size: 21px;
  line-height: 1.3;
}

.contact-top-wrapper {
  margin-bottom: 40px;
  display: flex;
}

.contact-left-2 {
  z-index: 100;
  text-align: center;
  width: 100%;
  margin-top: 0%;
  position: relative;
}

.success-message-4 {
  background-color: #fcbf49;
  font-size: 16px;
  font-weight: 600;
}

.contact-paragraph {
  text-align: left;
  width: 88%;
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.contact-paragraph.smaller {
  text-align: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 60px;
  padding-top: 10px;
  padding-left: 7%;
  padding-right: 7%;
  font-size: 1.4rem;
}

.contact-paragraph.bigger {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 1.2rem;
  font-weight: 400;
  display: none;
}

.button-57 {
  color: #fffbea;
  font-variation-settings: "wght" 600;
  text-align: center;
  cursor: url('../images/'), pointer;
  background-color: #141414;
  border: .1rem solid #141414;
  border-radius: 3rem;
  padding: .75rem 1.5rem;
  transition-property: all;
  transition-duration: .15s;
  transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
}

.button-57:hover {
  border-radius: .5rem;
}

.button-57:active {
  background-color: #fa3c23;
  border-color: #ff7145;
}

.button-57:focus {
  outline-offset: .0625rem;
  outline: .125rem dotted #fa3c23;
}

.button-57:focus-visible, .button-57[data-wf-focus-visible] {
  outline-offset: .0416667rem;
  outline-width: .166667rem;
  outline-color: #50ff6c;
}

.button-57.is-link {
  color: #141414;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-57.is-link.is-alternate {
  color: #fffbea;
  background-color: #0000;
}

.button-57.is-link.is-alternate:hover {
  color: #50ff6c;
}

.button-57.is-link.is-alternate.is-underline:hover {
  color: #ff7145;
}

.div-tonemaki-logo-full {
  z-index: 999999;
  outline-offset: -.125rem;
  outline: .25rem dotted #141414;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  height: 2.5rem;
  display: flex;
  position: relative;
}

.div-tonemaki-logo-full:active {
  background-color: #100f0e;
}

.div-tonemaki-logo-full:focus {
  background-color: #ff7575;
  outline-color: #141414;
}

.div-tonemaki-logo-full:focus-visible, .div-tonemaki-logo-full[data-wf-focus-visible] {
  outline-offset: -6px;
  outline: 4px dotted #fefce1;
}

.div-tonemaki-logo-full.w--current {
  z-index: 2147483647;
  cursor: url('../images/'), pointer;
  background-color: #dad6c8;
  border-radius: .125rem;
  outline-color: #141414;
  position: relative;
}

.div-tonemaki-logo-full.w--current:hover {
  outline-offset: -.125rem;
  background-color: #ff7145;
  outline: .25rem dotted #141414;
}

.div-tonemaki-logo-full.w--current:active {
  background-color: #fffbea;
}

.div-tonemaki-logo-full.w--current:focus {
  outline-offset: -.125rem;
  background-color: #ff7575;
  outline-width: .25rem;
  outline-color: #ff7575;
}

.div-tonemaki-logo-full.w--current:focus-visible, .div-tonemaki-logo-full.w--current[data-wf-focus-visible] {
  outline-offset: -.125rem;
  background-color: #50ff6c;
  outline: .25rem dotted #50ff6c;
}

.div-tonemaki-logo-full.z-index-max {
  outline-offset: -.125rem;
  background-color: #dad6c8;
  outline: .25rem #141414;
}

.div-tonemaki-logo-full.z-index-max:hover {
  outline-color: #141414;
}

.div-tonemaki-logo-full.z-index-max.w--current {
  z-index: 2147483647;
}

.div-tonemaki-logo-full.z-index-max.rotate-3x {
  outline-offset: -.125rem;
  outline: .25rem solid #161616;
}

.div-tonemaki-logo-full.z-index-max.rotate-3x.w--current {
  transform: rotate(-3deg);
}

.tonemaki-logo-half {
  display: flex;
}

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

.tonemaki-logo-full {
  cursor: url('../images/'), pointer;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  display: flex;
}

.icon-embed-xsmall {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#fa3c23, #ff7145);
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.icon-embed-xsmall:hover {
  color: #fa3c23;
}

.icon-embed-xsmall:active {
  color: #ff7575;
}

.icon-embed-xsmall.text-color-makidarkgrey {
  color: #fffbea;
}

.icon-embed-xsmall.text-color-makidarkgrey:hover {
  color: #fa3c23;
}

.padding-global5pc {
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

.spacer-small {
  height: 1rem;
}

.social-icons1_link {
  cursor: url('../images/'), pointer;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer_top-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  place-items: center stretch;
}

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

.footer.background-dark.overflow-hidden.z-index-max {
  background-color: #fff;
  position: relative;
}

.footer4_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: grid;
}

.footer_legal-link {
  color: #141414;
  font-size: .875rem;
  text-decoration: underline;
}

.tonemaki-logo-dotlottie.hiddendesktop-vismobile-logo {
  display: none;
}

.footer-link-wrapper {
  color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.footer4_linkbutton-text {
  color: #b3b3b3;
  text-align: center;
  text-wrap: balance;
  font-size: .875rem;
}

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

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

.footer_bottom-wrapper-2 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: space-between;
  display: grid;
}

.body-display-2 {
  color: #333538;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
}

.menu-lotti-icon-3 {
  width: 36px;
  height: 36px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 20px;
}

.heading-20 {
  text-transform: none;
  font-family: Google Sans, sans-serif;
  font-size: 1.8rem;
}

.footer_para {
  color: #000;
  font-family: Google Sans, sans-serif;
  font-weight: 400;
  line-height: 26px;
}

.footer_top {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer_title {
  color: #ffffffb3;
  letter-spacing: 1px;
  font-size: .75rem;
  font-weight: 600;
  line-height: 18px;
}

.footer_title.padding-bottom {
  padding-bottom: 30px;
}

.footer_title.padding-bottom.header-f {
  font-family: Google Sans, sans-serif;
}

.footer_title.header-f {
  color: #000;
}

.footer_copyrights-txt {
  color: #000;
  font-family: Google Sans, sans-serif;
  font-size: .75rem;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

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

.section_footer {
  background-color: #ffffff4f;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 486px;
  display: flex;
  position: relative;
}

.footer_para-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #ffffffb3;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 300px;
  margin-top: auto;
  margin-bottom: auto;
  font-size: .875rem;
  font-weight: 600;
  display: flex;
}

.footer_para-wrap.v2 {
  margin-top: 0;
}

.footer_bottom {
  border-top: 1px solid #ffffff1a;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 0;
  display: flex;
}

.div-block-3 {
  width: 306px;
}

.footer_links-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.footer_links-wrap.hide-tablet {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  font-family: Google Sans, sans-serif;
}

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

.footer_wrap {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  flex-flow: column;
  display: flex;
}

.footer_tab-links {
  display: none;
}

.form {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  height: 180px;
  display: flex;
}

.signup_submit-button {
  color: #153236;
  background-color: #00fe4a;
  border-radius: 100px;
  min-height: 46px;
  margin-top: 19px;
  transition: all .3s;
}

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

.signup_submit-button.footer {
  color: #101111;
  background-color: #31d561;
  border-radius: 7px;
  min-height: 50px;
  margin-top: 0;
  font-size: .875rem;
}

.footer_link {
  color: #000;
  font-size: .875rem;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s;
}

.footer_link:hover {
  text-decoration: underline;
}

.signup_text-field {
  color: #fff;
  background-color: #ffffff0d;
  border: 1px solid #ffffff0d;
  border-radius: 7px;
  min-height: 46px;
  margin-bottom: 0;
  padding-left: 20px;
  font-size: .875rem;
}

.signup_text-field::placeholder {
  color: #ffffff80;
  font-size: .875rem;
  font-weight: 400;
}

.signup_text-field.fff {
  color: #000;
  background-color: #fff;
  min-height: 50px;
}

.signup_text-field.fff:focus-visible, .signup_text-field.fff[data-wf-focus-visible] {
  border-color: #00fe4a;
}

.signup_text-field.fff::placeholder {
  color: #153236b3;
}

.bold-text {
  color: #020202;
}

.text-block-130 {
  text-transform: uppercase;
  padding-left: 33px;
  font-family: Google Sans, sans-serif;
  font-weight: 600;
}

.logo-big-block---t3 {
  background-color: #f8f8f8;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 15%;
  height: 100px;
  display: flex;
}

.navbar-wrapper---t3 {
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container-regular---t3 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.topbar-main-block {
  z-index: 2;
  background-image: url('../images/Hero-Slider_1Hero Slider.webp');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  max-width: 1200px;
  height: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.topbar-main-block._01 {
  background-image: none;
  max-width: none;
  height: auto;
  overflow: visible;
}

.dropdown-link---t3 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.topbar-and-nav-block---t3 {
  flex-direction: column;
  width: 100%;
  display: flex;
}

.topbar-contact-block---t3 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.detail-block---t3 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #7b8280;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.search-icon-border---t3 {
  background-color: #ddd;
  width: 1px;
  height: 40px;
}

.top-bar-block---t3 {
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  display: flex;
}

.navbar-no-shadow---t3 {
  background-color: #fff;
  border-top: 1px solid #0003;
  padding-left: 30px;
  padding-right: 30px;
}

.navbar-brand---t3 {
  display: none;
}

.topbar-3-main-block---t3 {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  box-shadow: 0 0 0 1px #0003, 4px 4px 14px #0003;
}

.dropdown-list---t3 {
  padding: 28px;
}

.dropdown-list---t3.w--open {
  background-color: #0a66c2;
  padding: 20px;
  display: flex;
  top: 70%;
  left: -50px;
}

.logo-text {
  color: #fff0;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #000c;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
}

.topbar-text---t3 {
  color: #1d262d;
  font-size: 13px;
}

.nav-link---t3 {
  color: #1a1b1b;
  letter-spacing: .25px;
  text-transform: uppercase;
  margin-left: 0;
  padding: 22.5px 0;
  font-family: Google Sans, sans-serif;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  display: inline-block;
}

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

.topbar---t3 {
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
}

.nav-logo {
  z-index: 1;
  flex: none;
  position: relative;
}

.nav-logo.topbar-02 {
  padding: 5px 30px;
}

.search-icon---t3 {
  color: #1d262d;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.nav-menu---t3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.dropdown-toggle---t3 {
  text-transform: uppercase;
  padding: 22.5px 30px 22.5px 0;
  transition: color .3s;
}

.topbar-btn {
  color: #1d262d;
  text-transform: capitalize;
  background-color: #fff;
  border: 1px solid #1d262d;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  transition: all .2s;
}

.topbar-btn:active {
  background-color: #43464d;
}

.container---t3 {
  max-width: 1140px;
}

.navbar-no-shadow-container---t03 {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.contact-block-res---t3 {
  display: none;
}

.contact-text---t3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #1d262d;
  align-items: center;
  font-size: 13px;
  text-decoration: none;
  display: flex;
}

.search-icon-block---t3 {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.nav-menu-wrapper---t3 {
  display: flex;
}

.section-eyes {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 5rem;
  display: flex;
}

.container-small-2 {
  width: 100%;
  max-width: 48rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.container-small-2.is--flex {
  justify-content: center;
  display: flex;
}

.eye-1 {
  background-color: #ca9cc4e6;
  border-radius: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 2rem;
  display: flex;
  position: relative;
}

.pupil-1 {
  background-color: #000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 1rem;
  max-width: 100%;
  height: 1rem;
  display: flex;
  position: static;
}

.txt-block {
  color: #000;
  margin-left: 1rem;
  margin-right: 1rem;
  font-size: 2rem;
}

.txt-block.text-color-pink {
  color: #ca9cc4;
  text-align: center;
}

.active-wite-dott {
  background-color: #aeb2d7;
  border-radius: 999px;
  width: 10px;
  height: 10px;
}

.active-wite-dott.d-1 {
  cursor: auto;
  background-color: #57b830;
  width: 8px;
  height: 8px;
}

.hero_tag-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  justify-content: center;
  align-items: center;
  padding: 20px 10px 10px;
  display: flex;
}

.active-cercle-wrap {
  z-index: 1;
  background-color: #57b830;
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.active-dotted-wrap-2 {
  z-index: 1;
  cursor: pointer;
  background-color: #57b830;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  display: flex;
  position: relative;
}

.hero-tag_text-2 {
  color: #0f0f0f;
  text-transform: uppercase;
}

.hero-tag_text-2.now-booking {
  font-family: Google Sans, sans-serif;
  font-size: .9rem;
}

.hero__meta {
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  display: flex;
}

.cercle {
  background-color: #57b830;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  margin-top: 0;
  display: flex;
  position: absolute;
  inset: -2% 0% 0%;
}

.nav_container {
  padding: 1em 2em;
  display: flex;
}

.navigation_item {
  color: #222;
  text-align: center;
  text-transform: uppercase;
  flex-direction: column;
  flex: 0 auto;
  align-self: center;
  padding: .5em 1em;
  font-size: 1.5em;
  font-weight: 900;
  text-decoration: none;
  transition: color .15s;
  position: relative;
}

.navigation_item:hover {
  color: #ff6541;
}

.navigation_item.is-about:hover {
  color: #5739fb;
}

.navigation_item.is-sayhi:hover {
  color: #5739fb;
  background-color: #0000;
}

.navigation_item.is-serious:hover {
  color: #5739fb;
  white-space: normal;
}

.navigation_logo {
  width: 3em;
  height: 3em;
}

.animation_scribble {
  width: 100%;
  height: auto;
  display: inline-block;
  position: absolute;
  inset: auto 0% -20%;
}

.navigation_right {
  background-color: #0000;
  justify-content: flex-end;
  align-self: stretch;
  width: 50%;
  display: flex;
}

.brand-2 {
  color: #222;
  align-self: center;
  font-size: 1.5em;
  display: flex;
}

.navigation_left {
  align-self: center;
  width: 50%;
  display: flex;
}

.navigation_item_text {
  font-family: Google Sans, sans-serif;
  font-size: .65em;
  position: relative;
}

.navigation_item_text:hover {
  color: #5739fb;
  -webkit-text-stroke-color: #5739fb;
}

.navigation_logo_text {
  align-self: center;
  margin-left: .5em;
  font-weight: 900;
}

.animation_underline {
  width: 100%;
  height: auto;
  display: inline-block;
  position: absolute;
  inset: auto 0% -20%;
}

.animation_circle {
  width: 100%;
  height: auto;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

.div-block-24, .div-block-25 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-53 {
  margin-top: 10%;
}

.final-footer-2 {
  color: #f7f7f7;
  background-color: #f7f7f7;
  padding-top: 86px;
  padding-bottom: 40px;
}

.os-footer-text-btm-2 {
  color: #000;
  text-align: center;
  font-size: 1rem;
}

.span-blue {
  color: #5b3acc;
}

.form-title-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 35px;
  display: flex;
}

.success {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 80vh;
  margin-top: 40px;
  padding: 0 3%;
  display: flex;
}

.form-section-title-5 {
  color: #1b1b1b;
  letter-spacing: -.03px;
  margin-bottom: 12px;
  font-size: 34px;
  font-weight: 400;
  line-height: 32px;
}

.os-btn-text-2 {
  font-size: .9rem;
}

.contact-wrapper-3 {
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: 0% auto 1%;
  padding-left: 5%;
  padding-right: 5%;
  display: block;
}

.hero-section-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  position: relative;
}

.text-span-14 {
  color: #5739fb;
}

.hero-2 {
  grid-row-gap: 4vh;
  flex-direction: column;
  align-items: center;
  margin-top: 10%;
  margin-bottom: 0%;
  display: flex;
}

.paragraph-11 {
  color: #353535;
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  font-size: 22px;
  line-height: 29px;
}

.contact-left-3 {
  width: 100%;
  margin-top: 5%;
}

.project_image {
  border: .2em solid #222;
  border-radius: 1em;
  align-self: center;
  width: 100%;
  margin-top: .5em;
  margin-bottom: .5em;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  transform: translate(0);
}

.project_image:hover {
  transform: translate(-10px, -10px);
  box-shadow: 11px 11px 0 5px #222;
}

.project_image:active {
  box-shadow: none;
  transform: none;
}

.paragraph-12 {
  text-align: left;
  margin-top: 20px;
  margin-left: 12%;
  margin-right: 12%;
  font-family: Google Sans, sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.grid-12 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3%;
  margin-left: 7%;
  margin-right: 7%;
}

.bold-text-4 {
  font-family: Google Sans, sans-serif;
}

.hero-section-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  position: relative;
}

.text-block-141 {
  text-align: center;
  margin-top: 10px;
  font-family: Google Sans, sans-serif;
  font-size: 3vh;
  font-weight: 700;
}

.hero-3 {
  grid-row-gap: 4vh;
  flex-direction: column;
  align-items: center;
  margin-top: 5%;
  margin-bottom: 0%;
  display: flex;
}

.grid_item {
  flex-direction: column;
  flex: 0 auto;
  align-self: auto;
  align-items: stretch;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
}

.grid_item.grid_item_50 {
  align-self: flex-start;
  width: 88%;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.heading-style-h2-7 {
  text-align: center;
  font-size: 2.625rem;
}

.heading-style-h2-7.skills-header {
  text-align: left;
  margin-bottom: 20px;
  font-size: 2rem;
}

.heading-style-h2-7.skills-header.background-header {
  margin-top: 0;
  margin-left: 0%;
  padding-top: 10px;
  font-size: 2rem;
}

.heading-style-h2-7.skills-header.background-header.custom-text {
  text-transform: none;
  margin-bottom: 10px;
  font-family: Google Sans, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.text-block-142 {
  font-family: Google Sans, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 28px;
}

.div-block-28 {
  margin-left: 5%;
  margin-right: auto;
}

.os-btn-text-3 {
  font-size: .9rem;
}

.menu-lotti-icon-4 {
  width: 36px;
  height: 36px;
  margin-top: 20px;
  margin-bottom: 0;
  margin-left: 20px;
}

.image-56 {
  margin-bottom: 10px;
  display: none;
  position: absolute;
  inset: auto auto 0% 0%;
}

@media screen and (min-width: 1280px) {
  .margin-top.margin-medium {
    margin-top: 0;
  }

  .navbar_component {
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .navbar_container {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: .25fr max-content .25fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .section-hero {
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 5%;
    margin-bottom: 10%;
  }

  .header_component {
    margin-top: 5%;
  }

  .switch.align-center.custom-cursor {
    justify-content: flex-start;
    width: 7rem;
    height: 2.6rem;
    margin-left: 0%;
    display: flex;
    position: relative;
  }

  .text-wrapper {
    margin-bottom: 60px;
  }

  .scramble-text.text-size-xl.text-weight-light {
    color: #353535;
    margin-bottom: 5%;
    font-size: 1.5rem;
  }

  .button-54.custom-cursor {
    background-color: #94ee94;
    padding-top: .5em;
  }

  .button-54.custom-cursor.main-btn {
    margin-left: 0;
  }

  .button_text-5 {
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: 1em;
  }

  .button_text-5.custom-cursor {
    margin-bottom: 5px;
    padding-top: .5em;
    padding-bottom: .5em;
    font-size: .75em;
    font-style: normal;
    font-weight: 700;
  }

  .button_arrow-2 {
    padding-top: 7px;
    font-size: 1.2em;
  }

  .button_arrow-2.custom-cursor {
    margin-left: .125rem;
    padding-top: 0;
    font-size: .88em;
  }

  .about-text {
    margin-top: 14%;
    margin-left: 10%;
    margin-right: 10%;
  }

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

  .text-size-large.text-color-gray800 {
    text-align: left;
    font-size: 2.1rem;
  }

  .text-block-126 {
    font-family: Inconsolata, monospace;
    font-style: normal;
  }

  .card_text {
    padding-left: 0;
    padding-right: 0;
    font-size: .9em;
  }

  .card_text.heading-servicecard {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: 500;
  }

  .grid {
    padding-top: 0;
  }

  .top-card {
    padding: 30px 30px 10px;
  }

  .heading-style-h2.custom-text {
    font-size: 2.5rem;
  }

  .card-text.check-list {
    font-size: .7em;
  }

  .pricing_checkitem {
    font-size: 1.2em;
  }

  .container-3.is-cards {
    min-height: auto;
    padding-top: 0;
    padding-left: 5%;
    padding-right: 5%;
  }

  .text-span-11 {
    color: #5739fb;
    font-style: italic;
  }

  .learn-more {
    border-radius: 50px;
    width: 55%;
    padding: 17px 20px;
    font-size: .77em;
  }

  .text-weight-semibold.card-text {
    font-size: .88em;
  }

  .logo-wrapper {
    background-color: #f5f5f5;
    width: 11em;
  }

  .work_tag-wrapper {
    color: #e6e6e6;
    background-color: #5739fb;
    font-size: 1.7rem;
  }

  .button-background {
    color: #dcff7d;
    -webkit-text-stroke-color: #dcff7d;
    border-color: #dcff7d;
  }

  .work-button {
    border-width: 2.4px;
    border-color: #5739fb;
  }

  .button-text-5 {
    color: #dcff7d;
    font-size: 1rem;
  }

  .work_project-title {
    color: #e6e6e6;
  }

  .text-size-tiny {
    font-size: .9rem;
  }

  .text-block-124 {
    color: #e6e6e6;
    font-size: 1rem;
    font-weight: 400;
  }

  .button-text-4 {
    transform: rotate(-15deg);
  }

  .menu-lotti-icon-2 {
    margin-left: 20px;
    padding-left: 0;
  }

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

  .os-btn-text {
    font-size: 1rem;
  }

  .os-footer-text {
    padding-top: 0;
    font-size: 18px;
  }

  .container-md-2 {
    margin-top: 20px;
  }

  .footer-logo {
    max-width: 260px;
  }

  .os-btn-menu.back-home {
    z-index: 50;
    inset: 7% 10% auto auto;
    margin-top: 40px;
    position: absolute;
    inset: 0% 10% auto auto;
  }

  .os-footer-menu {
    padding-top: 40px;
  }

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

  .orbix-social {
    padding-top: 25px;
  }

  .button-56.custom-cursor {
    background-color: #94ee94;
    padding-top: .5em;
  }

  .button-56.custom-cursor.main-btn {
    margin-left: 0;
  }

  .contact-wrapper-2 {
    z-index: 100;
    margin-top: 5%;
    margin-bottom: 0;
    position: relative;
  }

  .hero-section {
    margin-top: 0;
    margin-bottom: 0;
  }

  .heading-17 {
    margin-top: 20px;
    font-size: 2.5rem;
  }

  .hero {
    grid-row-gap: 2vh;
    margin-top: 0%;
    margin-bottom: 5%;
  }

  .div-block-8 {
    flex-flow: column;
    padding-bottom: 0;
  }

  .form-block-2 {
    margin-bottom: 15%;
    padding-left: 21%;
    padding-right: 21%;
  }

  .contact-field-label {
    margin-bottom: 10px;
  }

  .contact-left-2 {
    text-align: center;
    margin-top: 0%;
  }

  .contact-paragraph.smaller {
    margin-top: 20px;
    margin-bottom: 40px;
    padding-left: 21%;
    padding-right: 21%;
    font-size: 1.2rem;
  }

  .menu-lotti-icon-3 {
    margin-left: 20px;
    padding-left: 0;
  }

  .footer_para, .footer_title.header-f {
    color: #000;
  }

  .section_footer {
    z-index: 50;
    background-color: #ffffff4f;
    position: relative;
  }

  .signup_submit-button.footer {
    color: #000;
    background-color: #31d561;
  }

  .footer_link {
    color: #000;
  }

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

  .div-block-23 {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .topbar-contact-block---t3 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .topbar-3-main-block---t3 {
    box-shadow: 0 0 0 1px #0003, 4px 4px 16px #0003;
  }

  .topbar-text---t3 {
    line-height: 30px;
  }

  .container---t3, .navbar-no-shadow-container---t03 {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-text---t3 {
    line-height: 30px;
  }

  .active-wite-dott.d-1 {
    cursor: auto;
  }

  .hero-tag_text-2.now-booking {
    font-family: Google Sans, sans-serif;
    font-size: 1rem;
  }

  .link-block-2 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .bold-text-2 {
    font-family: Google Sans, sans-serif;
    font-weight: 500;
  }

  .div-block-24 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-25 {
    display: flex;
  }

  .success {
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    margin-top: 40px;
    padding-bottom: 0;
  }

  .form-section-title-5 {
    font-size: 32px;
  }

  .os-btn-text-2 {
    font-size: 1rem;
  }

  .contact-wrapper-3 {
    margin-top: 0%;
    margin-bottom: 0;
  }

  .hero-section-2 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-2 {
    grid-row-gap: 2vh;
    margin-top: 10%;
    margin-bottom: 5%;
  }

  .paragraph-11 {
    color: #353535;
    font-size: 22px;
    line-height: 29px;
  }

  .contact-left-3 {
    margin-top: 5%;
  }

  .project_image {
    height: 100%;
  }

  .paragraph-12 {
    margin-top: 20px;
    margin-left: 12%;
    margin-right: 12%;
    font-family: Google Sans, sans-serif;
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .bold-text-4 {
    font-family: Google Sans, sans-serif;
  }

  .hero-section-3 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .text-block-141 {
    text-align: center;
    font-size: 2.8vh;
    font-weight: 500;
  }

  .hero-3 {
    grid-row-gap: 2vh;
    margin-top: 5%;
    margin-bottom: 5%;
  }

  .grid_item.grid_item_50 {
    width: 88%;
  }

  .heading-style-h2-7.skills-header.background-header.custom-text {
    text-transform: none;
    font-family: Google Sans, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
  }

  .text-block-142 {
    font-family: Google Sans, sans-serif;
    font-size: 1.1rem;
  }

  .div-block-27 {
    margin-top: 10px;
  }

  .div-block-27.second {
    margin-top: 40px;
  }

  .bold-text-5 {
    font-family: Google Sans, sans-serif;
  }

  .os-btn-text-3 {
    font-size: .88rem;
  }

  .menu-lotti-icon-4 {
    margin-left: 20px;
    padding-left: 0;
  }

  .image-56 {
    display: block;
  }
}

@media screen and (min-width: 1440px) {
  .margin-top.margin-medium {
    margin-top: 0;
  }

  .navbar_component {
    z-index: 10;
    -webkit-text-stroke-width: .5px;
    justify-content: center;
    align-items: center;
    padding-top: 1%;
    padding-bottom: 1%;
    position: relative;
  }

  .navbar_container {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto;
    grid-template-columns: 1fr max-content 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    display: grid;
  }

  .section-hero {
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-top: 3%;
    margin-bottom: 10%;
  }

  .header_component {
    margin-top: 5%;
    margin-bottom: 0%;
  }

  .switch.align-center.custom-cursor {
    width: 8rem;
    height: 2.6rem;
    margin-left: 25%;
  }

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

  .heading {
    font-size: 2.5rem;
  }

  .text-wrapper {
    margin-bottom: 20px;
  }

  .scramble-text.text-size-xl.text-weight-light {
    margin-top: .125rem;
    margin-bottom: .125rem;
    font-family: Google Sans, sans-serif;
    font-size: 1.2rem;
    font-style: normal;
  }

  .button-54 {
    background-color: #94ee94;
    margin-top: 20px;
  }

  .button-54.custom-cursor {
    background-color: #94ee94;
    margin-top: 0;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button-54.custom-cursor.main-btn {
    margin-top: 40px;
    margin-left: 0;
    padding-bottom: .25em;
  }

  .button_text-5 {
    margin-top: 0;
    padding-top: .5em;
    font-size: 1em;
  }

  .button_text-5.custom-cursor {
    margin-bottom: 10px;
    margin-left: 1rem;
    padding: .25em 20px .25em 0;
    font-family: Google Sans, sans-serif;
    font-size: .9em;
    font-weight: 700;
  }

  .button_arrow-2 {
    padding-top: .25em;
    font-size: 1.2em;
  }

  .button_arrow-2.custom-cursor {
    margin-bottom: 5px;
    margin-left: 0;
    padding-top: .25em;
    padding-bottom: .5em;
    font-family: Google Sans, sans-serif;
    font-size: 1em;
  }

  .track-horizontal-alt {
    font-size: 1.2rem;
  }

  .text-size-large.text-color-gray800 {
    font-size: 2rem;
  }

  .text-block-126 {
    font-size: 1em;
    font-style: normal;
  }

  .past-projects-titleblock {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
  }

  .card_content {
    text-align: left;
  }

  .card_text {
    margin-bottom: .125em;
    font-size: 1em;
  }

  .card_text.heading-servicecard {
    margin-bottom: 0;
    font-size: 1.8rem;
  }

  .about__block-meta-2 {
    width: 100%;
  }

  .grid {
    margin-left: 2rem;
    margin-right: 2rem;
    padding-top: 0;
  }

  .card {
    min-height: 21em;
    padding: 1.5em;
    transition-property: none;
  }

  .top-card {
    margin-top: 10%;
    padding-top: 25px;
  }

  .service-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .pricing_bottom {
    margin-top: 2%;
    margin-bottom: 10%;
    padding-top: 10px;
    padding-bottom: 25px;
  }

  .services-wrapper {
    margin-top: 1rem;
  }

  .heading-style-h2.custom-text {
    margin-top: 0;
    margin-bottom: 0;
  }

  .card-text.check-list {
    font-size: .8em;
  }

  .container-3.is-cards {
    min-height: auto;
    padding: 1em 10em 4em;
  }

  .text-span-11 {
    color: #5739fb;
  }

  .learn-more {
    border-radius: 50px;
    width: 75%;
    padding: 17px 22px;
    font-size: .8em;
  }

  .learn-more._2-btn {
    margin-top: 40px;
  }

  .flex-service-25 {
    width: auto;
  }

  .text-weight-semibold.card-text {
    font-size: 1em;
  }

  .section-6 {
    background-image: none;
    height: auto;
    margin-top: 0%;
  }

  .heading-12 {
    line-height: 1;
  }

  .logo-wrapper {
    background-color: #f5f5f5;
    width: 14em;
  }

  .section.logos {
    background-color: #0000;
    margin-bottom: 20px;
  }

  .languages-marquee {
    width: auto;
  }

  .work_tag-wrapper {
    color: #e6e6e6;
    background-color: #5739fb;
    font-size: 1.4rem;
  }

  .buttone-text-block {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: .95rem;
  }

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

  .heading-19.custom-text {
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .gallery__lottie {
    height: 220px;
    margin-bottom: 0;
  }

  .button-background {
    border-color: #dcff7d;
  }

  .work-button {
    border-width: 2px;
    border-color: #5739fb;
    padding-top: .75em;
    padding-bottom: .7em;
  }

  .work-button.see-more-work-btn {
    margin-top: 60px;
  }

  .button-wrapper {
    color: #dcff7d;
    font-size: 1rem;
  }

  .button-text-5 {
    letter-spacing: .2px;
  }

  .work_project-title {
    color: #e6e6e6;
  }

  .text-size-tiny {
    font-size: 1.1rem;
  }

  .work_card-hover {
    -webkit-text-stroke-color: #353535;
    background-color: #353535;
  }

  .text-block-124 {
    color: #e6e6e6;
    font-size: 1rem;
  }

  .button-text-4 {
    transform: rotate(-15deg);
  }

  .menu-lotti-icon-2 {
    width: 40px;
    height: 40px;
    margin-top: 0;
  }

  .heading-4 {
    text-transform: none;
    font-family: Google Sans, sans-serif;
  }

  .os-btn-text {
    font-size: .9rem;
  }

  .os-footer-text {
    padding-top: 0;
    font-size: 18px;
  }

  .os-btn-menu.back-home {
    z-index: 10;
    inset: 5% 10% auto auto;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    position: absolute;
    inset: 2% 10% auto auto;
  }

  .os-footer-menu {
    padding-top: 60px;
  }

  .orbix-social {
    padding-top: 25px;
  }

  .final-footer {
    position: relative;
  }

  .button-55 {
    margin-top: 10px;
  }

  .section-tone-creator.background-fffbea {
    position: relative;
  }

  .text-block-127 {
    font-family: Google Sans, sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
  }

  .button-56 {
    background-color: #94ee94;
    margin-top: 20px;
  }

  .button-56.custom-cursor {
    background-color: #94ee94;
    margin-top: 0;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button-56.custom-cursor.main-btn {
    margin-bottom: 1%;
    margin-left: 0;
  }

  .button-56.custom-cursor.main-btn.contact-page-button {
    margin-top: 20px;
  }

  .contact-wrapper-2 {
    margin-top: 2%;
    margin-bottom: 0%;
  }

  .hero__title {
    margin-top: 0;
  }

  .hero-section {
    z-index: 100;
    cursor: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .heading-17 {
    margin-top: 40px;
    font-size: 3rem;
  }

  .hero {
    grid-row-gap: 3vh;
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .image-50 {
    padding-bottom: 10px;
  }

  .div-block-8 {
    flex-flow: column;
  }

  .form-block-2 {
    margin-bottom: 15%;
  }

  .contact-field-label {
    color: #000;
    font-family: Google Sans, sans-serif;
    font-weight: 600;
  }

  .contact-left-2 {
    text-align: center;
    margin-top: 2%;
  }

  .contact-paragraph.smaller {
    margin-top: 10px;
    margin-bottom: 5%;
    padding-left: 15%;
    padding-right: 15%;
    font-family: Google Sans, sans-serif;
    font-size: 1.4rem;
  }

  .icon-embed-xsmall.text-color-makidarkgrey {
    color: #050505;
  }

  .footer.background-dark.overflow-hidden.z-index-max {
    position: relative;
  }

  .footer4_linkbutton-text, .footer4_linkbutton-text.text-color-makibeigen3 {
    color: #888787;
  }

  .footer_para {
    color: #000000b3;
  }

  .footer_title {
    color: #000;
    text-transform: none;
    font-weight: 700;
  }

  .footer_title.header-f {
    font-size: 1rem;
  }

  .footer_copyrights-txt {
    color: #000;
    font-size: .85rem;
  }

  .section_footer {
    background-color: #ffffff4f;
    position: relative;
  }

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

  .footer_links-wrap.hide-tablet {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    font-family: Google Sans, sans-serif;
    font-weight: 500;
  }

  .signup_submit-button.footer {
    color: #000;
    background-color: #31d561;
    font-family: Google Sans, sans-serif;
    font-size: .9rem;
    font-weight: 600;
  }

  .footer_link {
    color: #000;
    font-size: .95rem;
    font-style: normal;
    font-weight: 400;
  }

  .signup_text-field.fff {
    background-color: #dce2ff;
    font-family: Google Sans, sans-serif;
    font-size: 1.1rem;
  }

  .bold-text {
    font-size: .95rem;
    font-weight: 500;
  }

  .image-52 {
    margin-top: 20px;
    display: block;
  }

  .text-block-128 {
    letter-spacing: 0;
    font-family: Big Zubo, Georgia, sans-serif;
    font-size: 4rem;
    text-decoration: none;
  }

  .text-block-129 {
    text-align: center;
    letter-spacing: 5px;
    margin-top: -6%;
    font-family: Big Zubo, Georgia, sans-serif;
    font-size: 2rem;
  }

  .div-block-23 {
    justify-content: center;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .text-block-130 {
    text-transform: uppercase;
    font-family: Google Sans, sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
  }

  .logo-big-block---t3 {
    height: 100%;
    min-height: 100%;
  }

  .container-regular---t3 {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .topbar-main-block._01 {
    background-image: none;
    max-width: none;
    height: auto;
  }

  .topbar-contact-block---t3 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .detail-block---t3 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .topbar-text---t3 {
    line-height: 30px;
  }

  .container---t3 {
    max-width: 100%;
  }

  .navbar-no-shadow-container---t03 {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-text---t3 {
    line-height: 30px;
  }

  .paragraph-5 {
    font-family: Google Sans, sans-serif;
    font-size: 1.4rem;
  }

  .section-eyes {
    background-color: #0000;
  }

  .eye-1 {
    background-color: #759fe2e6;
  }

  .active-wite-dott.d-1 {
    cursor: auto;
  }

  .hero_tag-wrap {
    justify-content: center;
    align-items: center;
  }

  .hero-tag_text-2.now-booking {
    font-family: Google Sans, sans-serif;
    font-size: .95rem;
  }

  .hero__meta {
    text-align: center;
    flex-flow: row;
    display: block;
  }

  .nav_container {
    width: 100%;
  }

  .navigation_item.is-about {
    letter-spacing: .5px;
    font-family: Google Sans, sans-serif;
    font-size: 1.4em;
  }

  .navigation_item.is-about:hover {
    color: #5739fb;
    letter-spacing: .5px;
    font-family: Google Sans, sans-serif;
    font-size: 1.4em;
  }

  .navigation_item.is-sayhi {
    letter-spacing: .5px;
    font-family: Google Sans, sans-serif;
    font-size: 1.4em;
  }

  .navigation_item.is-sayhi:hover {
    color: #5739fb;
  }

  .navigation_item.is-serious {
    letter-spacing: .5px;
    font-family: Google Sans, sans-serif;
    font-size: 1.4em;
  }

  .navigation_item.is-serious:hover {
    color: #5739fb;
  }

  .navigation_item_text {
    font-weight: 500;
  }

  .animation_circle {
    letter-spacing: .5px;
    font-family: Google Sans, sans-serif;
    font-size: 1.4em;
  }

  .div-block-24, .div-block-25 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .span-blue {
    color: #5739fb;
  }

  .form-title-wrap {
    justify-content: center;
    align-items: center;
  }

  .success {
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .form-section-title-5 {
    font-size: 32px;
  }

  .os-btn-text-2 {
    font-size: .88rem;
  }

  .contact-wrapper-3 {
    margin-bottom: 0%;
  }

  .hero-section-2 {
    cursor: auto;
    min-height: auto;
    margin-top: 10vh;
    margin-bottom: 0;
  }

  .hero-2 {
    grid-row-gap: 3vh;
    margin-top: 5%;
    margin-bottom: 10%;
  }

  .image-54 {
    padding-bottom: 10px;
  }

  .paragraph-11 {
    color: #353535;
    margin-top: 10px;
    font-size: 22px;
    line-height: 29px;
  }

  .contact-left-3 {
    margin-top: 3%;
  }

  .project_image {
    width: 88%;
  }

  .paragraph-12 {
    margin-top: 20px;
    margin-left: 12%;
    margin-right: 12%;
    font-family: Google Sans, sans-serif;
    font-size: 1.2rem;
    line-height: 1.25;
  }

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

  .hero-section-3 {
    cursor: auto;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .text-block-141 {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: Google Sans, sans-serif;
    font-size: 3vh;
  }

  .hero-3 {
    grid-row-gap: 3vh;
    margin-top: 7%;
    margin-bottom: 10%;
  }

  .image-55 {
    padding-bottom: 10px;
  }

  .grid_item.grid_item_50 {
    width: 84%;
  }

  .heading-style-h2-7.skills-header.background-header.custom-text {
    text-transform: none;
    font-family: Google Sans, sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .text-block-142 {
    font-size: 1.2rem;
  }

  .div-block-27 {
    margin-left: 0%;
  }

  .os-btn-text-3 {
    font-size: .88rem;
  }

  .image-56 {
    max-width: none;
    padding-bottom: 10px;
    position: absolute;
    inset: auto auto 0% 0%;
  }
}

@media screen and (min-width: 1920px) {
  .navbar_component {
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .navbar_container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr max-content 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: grid;
  }

  .section-hero {
    justify-content: center;
    align-items: center;
    height: auto;
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .section-hero.contact-main {
    margin-top: 5%;
  }

  .ultra-gradient-wrapper.pointer-events-off {
    height: auto;
  }

  .header_component {
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .switch.align-center.custom-cursor {
    z-index: 60;
    justify-content: flex-start;
    position: relative;
    top: 0%;
    left: auto;
    right: 0%;
  }

  .heading {
    font-size: 2.6rem;
    font-weight: 500;
  }

  .scramble-text.text-size-xl.text-weight-light {
    margin-top: .125rem;
    font-size: 1.2rem;
    line-height: 150%;
  }

  .button-54 {
    background-color: #94ee94;
  }

  .button-54.custom-cursor {
    background-color: #94ee94;
    margin-top: 0;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button-54.custom-cursor.main-btn {
    color: #000;
    background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
    margin-bottom: 0%;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button_text-5 {
    padding-top: .25em;
  }

  .button_text-5.custom-cursor {
    color: #353535;
    margin-bottom: 0;
    padding-top: .5em;
    padding-bottom: .25em;
    font-size: 1.1em;
    font-weight: 700;
  }

  .button_arrow-2 {
    padding-top: 0;
  }

  .button_arrow-2.custom-cursor {
    color: #353535;
  }

  .marquee-horizontal {
    height: 55px;
  }

  .marquee-text {
    font-size: 1.1rem;
  }

  .padding-layout {
    font-size: 1rem;
  }

  .text-block-126 {
    margin-bottom: 0%;
    padding-top: 5px;
    padding-bottom: 10px;
    font-size: 1.2em;
  }

  .past-projects-titleblock {
    grid-column-gap: 0%;
    grid-row-gap: 0%;
    justify-content: center;
    align-items: center;
  }

  .past-projects-titleblock.how-we_help-titleblock {
    flex-flow: row;
  }

  .card_text {
    margin-bottom: 0;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 1.15em;
  }

  .card_text.heading-servicecard {
    margin-bottom: 0;
    font-size: 2.5rem;
  }

  .about__block-meta-2 {
    width: 100%;
    margin-bottom: 2rem;
  }

  .card {
    transition: color .2s;
  }

  .top-card {
    margin-top: 10%;
    padding-bottom: 40px;
  }

  .service-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
    display: grid;
  }

  .pricing_bottom {
    margin-bottom: 10%;
  }

  .services-wrapper {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .heading-style-h2.custom-text {
    text-transform: none;
    margin-bottom: 0;
    margin-right: 40px;
    font-size: 3.4rem;
    font-style: normal;
  }

  .card-text.check-list {
    font-size: .9em;
  }

  .container-3.is-cards {
    min-height: 100%;
    padding-top: 0;
  }

  .text-span-11 {
    color: #5739fb;
  }

  .loading-lottie {
    width: 8vw;
    height: 10vw;
  }

  .learn-more {
    border-radius: 50px;
    width: 44%;
    margin-top: 0;
    padding: 22px 27px;
  }

  .flex-service-25 {
    width: auto;
  }

  .text-weight-semibold.card-text {
    font-size: 1.1em;
  }

  .section-6 {
    background-image: none;
    height: auto;
  }

  .logo-wrapper {
    background-color: #f5f5f5;
  }

  .container-large-2 {
    max-width: 100rem;
  }

  .work_tag-wrapper {
    background-color: #5739fb;
    font-size: 1.7rem;
  }

  .buttone-text-block {
    margin: 10px;
    font-size: 1.4rem;
  }

  .padding-section-large {
    padding-top: 0;
  }

  .button-text-wrapper {
    font-size: 1em;
  }

  .heading-19.custom-text {
    margin-top: 0%;
  }

  .gallery__lottie {
    height: 80%;
  }

  .button-background {
    color: #dcff7d;
    border-color: #dcff7d;
  }

  .work-button {
    border-width: 3px;
    border-color: #5739fb;
  }

  .button-wrapper, .button-text-5 {
    color: #dcff7d;
  }

  .work_project-title {
    font-size: 2rem;
  }

  .button-arrow {
    color: #dcff7d;
    width: 21px;
  }

  .text-size-tiny {
    font-size: 1.2rem;
  }

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

  .work_card-hover {
    background-color: #242323;
  }

  .text-block-124 {
    letter-spacing: .5px;
    margin-top: 10px;
  }

  .optimism-cta-2 {
    background-color: #0000;
  }

  .body-display {
    color: #353535;
    font-size: 26px;
  }

  .button-text-4 {
    color: #353535;
    letter-spacing: 2.2px;
    font-family: Inconsolata, monospace;
    font-size: 22px;
    font-weight: 700;
  }

  .heading-4 {
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 700;
  }

  .os-btn-text {
    font-size: 1.1rem;
  }

  .os-footer-text {
    padding-top: 0;
    font-size: 22px;
    font-style: normal;
  }

  .os-btn-menu {
    float: right;
    position: relative;
  }

  .os-btn-menu.back-home {
    z-index: 10;
    z-index: 500;
    inset: 15% 15% auto auto;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    position: absolute;
    inset: 10% 15% auto auto;
  }

  .orbix-social {
    padding-top: 25px;
  }

  .button-56 {
    background-color: #94ee94;
  }

  .button-56.custom-cursor {
    background-color: #94ee94;
    margin-top: 0;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button-56.custom-cursor.main-btn {
    color: #000;
    background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .contact-wrapper-2 {
    margin-top: 0%;
  }

  .hero__title {
    margin-right: 0;
  }

  .hero-section {
    cursor: auto;
    place-items: center stretch;
    min-height: auto;
  }

  .contact-text-area.input-cursor {
    color: #141414;
    font-size: 1.25rem;
  }

  .heading-17 {
    margin-top: 55px;
  }

  .hero {
    grid-row-gap: 0vh;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0%;
    margin-bottom: 10%;
  }

  .div-block-8 {
    flex-flow: column;
    padding-bottom: 0;
  }

  .form-block-2 {
    margin-bottom: 15%;
    padding-left: 21%;
    padding-right: 21%;
  }

  .contact-field-label {
    font-size: 24px;
  }

  .contact-left-2 {
    margin-top: 2%;
  }

  .contact-paragraph.smaller {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 21%;
    padding-right: 21%;
    font-size: 2rem;
  }

  .contact-paragraph.bigger {
    margin-top: 10px;
    font-size: 2rem;
  }

  .body-display-2 {
    color: #353535;
    font-size: 26px;
  }

  .heading-20 {
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 700;
  }

  .section_footer {
    background-color: #ffffff4f;
  }

  .signup_submit-button.footer {
    background-color: #31d561;
  }

  .logo-big-block---t3 {
    border: 0 solid #000;
    flex: none;
  }

  .topbar-main-block._01 {
    background-image: url('../images/background-Image-5_1background Image (5).webp');
    background-size: cover;
  }

  .topbar-and-nav-block---t3 {
    border: 0 solid #000;
    margin-left: -1px;
    margin-right: -1px;
  }

  .detail-block---t3 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .topbar-3-main-block---t3 {
    margin-left: auto;
    margin-right: auto;
  }

  .topbar---t3 {
    border: 0 solid #000;
  }

  .nav-button-wrapper---t3 {
    flex: none;
  }

  .container---t3 {
    margin-left: 0;
    margin-right: 0;
  }

  .active-wite-dott.d-1 {
    pointer-events: auto;
  }

  .hero_tag-wrap {
    font-size: .6rem;
  }

  .hero-tag_text-2.now-booking {
    font-size: 1.2rem;
  }

  .navigation_item.is-about {
    flex-flow: row;
    display: flex;
  }

  .navigation_item_text {
    font-size: .88em;
    font-weight: 500;
  }

  .div-block-24, .div-block-25 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .os-btn-text-2 {
    font-size: 1.1rem;
  }

  .contact-wrapper-3 {
    margin-top: 0%;
  }

  .hero-section-2 {
    cursor: auto;
    place-items: center stretch;
    min-height: auto;
  }

  .hero-2 {
    grid-row-gap: 0vh;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5%;
    margin-bottom: 10%;
  }

  .paragraph-12 {
    font-size: 1.3rem;
  }

  .grid-12 {
    margin-left: 10%;
    margin-right: 10%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .hero-section-3 {
    cursor: auto;
    place-items: center stretch;
    min-height: auto;
  }

  .hero-3 {
    grid-row-gap: 0vh;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5%;
    margin-bottom: 10%;
  }

  .grid_item.grid_item_50 {
    width: 80%;
  }

  .heading-style-h2-7.skills-header.background-header.custom-text {
    font-weight: 700;
  }

  .text-block-142 {
    font-size: 1.3rem;
    line-height: 35px;
  }

  .div-block-28 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .os-btn-text-3 {
    font-size: 1.1rem;
  }

  .image-56 {
    margin-bottom: 20px;
    margin-right: 20px;
    padding-bottom: 0;
    position: absolute;
  }
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .max-width-large {
    max-width: none;
    padding-left: 10%;
    padding-right: 10%;
  }

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

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

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

  .navbar_container {
    grid-auto-columns: 1fr;
  }

  .navbar16_links-wrapper {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .navbar_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

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

  .menu-icon {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .menu-icon_wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .menu-icon_line-middle-top {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0;
  }

  .menu-icon_line-middle-base {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .section-hero {
    margin-bottom: 15%;
  }

  .ultra-gradient-wrapper {
    justify-content: center;
    align-items: center;
    font-size: 1.3vh;
  }

  .shape-3 {
    width: 44em;
    height: 57em;
    position: absolute;
    inset: 23.2em -9.5em 0 auto;
  }

  .blending-group-wrapper {
    margin-left: -4em;
  }

  .shape-4 {
    top: 22em;
  }

  .header_component {
    margin-top: 10%;
    margin-bottom: 3%;
  }

  .menu-icon_line-bottom, .menu-icon_line-top {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar16_link-2 {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem 0;
    position: static;
  }

  .menu-icon_line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .navbar_menu {
    flex-direction: column;
    justify-content: center;
    position: absolute;
  }

  .switch {
    left: 0;
  }

  .switch.align-center.custom-cursor {
    margin-left: 40px;
  }

  .scramble-text {
    font-size: 2rem;
  }

  .scramble-text.text-size-xl.text-weight-light {
    font-size: 1rem;
  }

  .button-54 {
    border-width: 4px;
    padding-top: .75em;
    padding-bottom: .75em;
    padding-right: .4em;
    font-size: 1.3em;
  }

  .button-54.custom-cursor {
    margin-top: 0;
    padding-top: 1em;
    padding-bottom: .5em;
    padding-left: .4em;
  }

  .button-54.custom-cursor.main-btn {
    color: #000;
    background-color: #bbaffd;
    background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
    margin-bottom: 0%;
    padding-top: .68em;
  }

  .button_text-5 {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 10px;
    font-size: .66em;
  }

  .button_text-5.custom-cursor {
    padding-top: .5em;
    padding-bottom: .25em;
    font-family: Google Sans, sans-serif;
    font-size: .65em;
  }

  .button_arrow-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1em;
  }

  .button_arrow-2.custom-cursor {
    padding-top: 0;
    padding-bottom: 0;
  }

  .marquee-horizontal {
    height: 56px;
  }

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

  .about-text {
    margin-top: 32vh;
    margin-bottom: 15vh;
  }

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

  .text-size-large.text-color-gray800 {
    font-size: 1.6rem;
  }

  .text-block-126 {
    margin-top: 5px;
    font-size: .77em;
    font-style: normal;
    line-height: 1.2;
  }

  .past-projects-titleblock {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

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

  .card_text.heading-servicecard {
    font-size: 1.4em;
    line-height: 1.2;
  }

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

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

  .top-card {
    margin-top: 5%;
    padding-top: 25px;
  }

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

  .pricing_bottom {
    margin-bottom: 10%;
  }

  .heading-style-h2.custom-text {
    font-size: 3rem;
  }

  .card-text.check-list {
    text-align: left;
  }

  .learn-more {
    border-radius: 50px;
    padding: 17px 0;
    font-size: .77em;
    line-height: 17px;
  }

  .flex-service-25 {
    width: auto;
    margin-bottom: 30px;
  }

  .section-6 {
    background-image: none;
    height: auto;
    display: flex;
  }

  .logo-wrapper {
    width: 9em;
  }

  .buttone-text-block {
    font-size: .75em;
  }

  .icon-embed-xlarge.absolute {
    position: absolute;
  }

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

  .heading-19.custom-text {
    font-size: 1.4rem;
  }

  .gallery__lottie {
    height: 11rem;
  }

  .project_cta-new-webstie {
    height: 20rem;
  }

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

  .work_card-hover {
    padding: 1.25rem;
  }

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

  .large-circle-link {
    width: 180px;
    height: 180px;
    position: relative;
    left: 0;
  }

  .optimism-cta-2 {
    background-color: #0000;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .body-display {
    color: #484b50;
    width: auto;
  }

  .button-text-4 {
    font-size: 14px;
    transform: rotate(-15deg);
  }

  .small-width {
    max-width: none;
  }

  .div-block-22 {
    justify-content: center;
    align-items: center;
  }

  .stacked-content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .action-content {
    text-align: center;
    border-left-style: none;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 0;
  }

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

  .grid-container.is--background {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0%;
    display: grid;
  }

  .os-btn-text {
    font-size: .9rem;
  }

  .os-btn-menu {
    float: right;
    position: relative;
    inset: 0% 0% auto auto;
  }

  .os-btn-menu.back-home {
    display: block;
    top: 2%;
    right: 5%;
  }

  .orbix-social {
    padding-top: 25px;
  }

  .final-footer {
    position: relative;
  }

  .heading3 {
    font-size: 1.2rem;
  }

  .spacer-large {
    padding-top: 2.5rem;
  }

  .about-tone-wrapper {
    grid-column-gap: 3rem;
    grid-template-columns: 13rem auto;
  }

  .button-56 {
    border-width: 4px;
    padding-top: .75em;
    padding-bottom: .75em;
    padding-right: .4em;
    font-size: 1.3em;
  }

  .button-56.custom-cursor {
    margin-top: 0;
    padding-top: 1em;
    padding-bottom: .5em;
    padding-left: .4em;
  }

  .button-56.custom-cursor.main-btn {
    color: #000;
    background-color: #bbaffd;
    background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
    margin-bottom: 0%;
    padding-top: .68em;
  }

  .contact-wrapper-2 {
    flex-direction: column;
    margin-top: 2%;
    margin-bottom: 0%;
    margin-right: 0%;
  }

  .hero__title {
    margin-top: 0;
    font-size: 20vh;
  }

  .hero-section {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 0;
  }

  .contact-text-area.input-cursor {
    color: #0d0d0e;
    font-family: Google Sans, sans-serif;
  }

  .heading-17 {
    text-transform: none;
    font-family: Google Sans, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
  }

  .hero {
    margin-top: 0%;
    margin-bottom: 0%;
  }

  .div-block-8 {
    justify-content: center;
    align-items: center;
  }

  .form-block-2 {
    margin-top: 5%;
    margin-bottom: 15%;
  }

  .contact-field-label {
    color: #050505;
    margin-bottom: 10px;
    font-family: Google Sans, sans-serif;
    font-size: 18px;
  }

  .contact-left-2 {
    width: 100%;
    margin-top: 10%;
    margin-bottom: 0;
    margin-right: 0%;
  }

  .contact-paragraph.smaller {
    margin-top: 20px;
    margin-bottom: 60px;
    padding-left: 10%;
    padding-right: 10%;
    line-height: 1.3;
  }

  .contact-paragraph.bigger {
    margin-top: 0;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 10%;
    padding-right: 10%;
    font-size: 1.2rem;
  }

  .div-tonemaki-logo-full {
    z-index: 1000002;
    width: 11.1rem;
    position: relative;
  }

  .tonemaki-logo-full {
    background-color: #dad6c8;
  }

  .footer_top-wrapper {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

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

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

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

  .footer_bottom-wrapper-2 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: max-content;
    grid-auto-columns: max-content;
    grid-auto-flow: row;
    justify-content: center;
    place-items: center;
    display: grid;
  }

  .body-display-2 {
    color: #484b50;
    width: auto;
  }

  .footer_para {
    font-size: .72rem;
  }

  .footer_top {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .footer_title {
    color: #000;
    font-weight: 600;
  }

  .section_footer {
    justify-content: center;
    align-items: stretch;
    min-height: auto;
    margin-top: 10%;
  }

  .footer_para-wrap {
    max-width: 300px;
    margin-top: 0;
  }

  .footer_para-wrap.v2 {
    max-width: 280px;
  }

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

  .footer_wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .footer_tab-links {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    align-items: flex-start;
    display: flex;
  }

  .footer_link {
    font-family: Google Sans, sans-serif;
  }

  .div-block-23 {
    display: flex;
  }

  .logo-2 {
    object-fit: cover;
  }

  .logo-big-block---t3 {
    display: none;
  }

  .navbar-wrapper---t3 {
    justify-content: space-between;
    overflow: hidden;
  }

  .tw---t3 {
    background-color: #4ccef9;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding-bottom: 0;
    padding-right: 0;
    text-decoration: none;
    display: flex;
  }

  .topbar-main-block {
    position: relative;
  }

  .dropdown-link---t3 {
    color: #1d262d;
    font-weight: 500;
  }

  .in---t3 {
    background-color: #0072b1;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding-bottom: 0;
    padding-right: 0;
    text-decoration: none;
    display: flex;
  }

  .detail-block---t3 {
    display: none;
  }

  .navbar-no-shadow---t3 {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .navbar-brand---t3 {
    display: block;
  }

  .dropdown-list---t3.w--open {
    background-color: #fff;
    flex-direction: column;
    padding: 10px 0;
    position: relative;
    top: 0%;
    left: 0;
  }

  .contact-heading-res---t3 {
    color: #000;
    text-align: left;
    margin-top: 0;
    font-size: 24px;
  }

  .nav-link---t3 {
    color: #1d262d;
    width: 100%;
    padding: 14px 5px;
    display: block;
  }

  .topbar-nav-list-item {
    color: #1d262d;
    text-align: left;
    width: 100%;
  }

  .topbar---t3 {
    display: none;
  }

  .menu-button---t3 {
    padding: 12px;
  }

  .menu-button---t3.w--open {
    z-index: 30;
    color: #fff;
    background-color: #c8c8c800;
  }

  .yt---t3 {
    background-color: red;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding-bottom: 0;
    padding-right: 0;
    text-decoration: none;
    display: flex;
  }

  .contact-link-icon-res---t3 {
    color: #0a66c2;
  }

  .nav-button-wrapper---t3 {
    width: 100%;
    margin-left: 0;
  }

  .nav-menu---t3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #fff;
    flex-flow: column wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .social-icon---t3 {
    color: #fff;
  }

  .dropdown-toggle---t3 {
    color: #1d262d;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 5px;
  }

  .contact-link-block-res---t3 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    color: #6f7775;
    text-align: left;
    text-decoration: none;
    display: flex;
  }

  .topbar-btn {
    border: 1px solid #1d262d;
  }

  .dropdown---t3 {
    width: 100%;
  }

  .navbar-no-shadow-container---t03 {
    position: static;
  }

  .contact-block-res---t3 {
    margin-top: 20px;
    display: block;
  }

  .icon-3 {
    color: #1d262d;
  }

  .social-icon-block-res---t3 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-top: 30px;
    display: flex;
  }

  .contact-list-item-res---t3 {
    font-size: 16px;
    line-height: 30px;
  }

  .fb---t3 {
    background-color: #4661c5;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding-bottom: 0;
    padding-right: 0;
    text-decoration: none;
    display: flex;
  }

  .nav-menu-wrapper---t3 {
    z-index: 9999;
    background-color: #fff;
    width: 70%;
    height: 85vh;
    margin-top: 92px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: absolute;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: auto;
  }

  .hero-tag_text-2.now-booking {
    font-size: .95rem;
  }

  .navigation_item {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: 32px;
  }

  .navigation_item:hover {
    background-color: #fff;
  }

  .navigation_item.is-about {
    padding-left: 1em;
    padding-right: .5em;
  }

  .navigation_item.is-about:hover {
    color: #5739fb;
    background-color: #0000;
  }

  .navigation_item.is-sayhi {
    padding-left: .5em;
  }

  .navigation_item.is-sayhi:hover {
    color: #5739fb;
  }

  .navigation_item.is-serious {
    padding-left: .5em;
    padding-right: .5em;
  }

  .navigation_item.is-serious:hover {
    color: #5739fb;
    background-color: #0000;
  }

  .animation_scribble {
    width: 30%;
    inset: auto auto -1% 35%;
  }

  .navigation_right {
    z-index: 1;
    background-color: #f8eeec;
    border-bottom: 4px solid #222;
    flex-direction: column;
    flex: 0 auto;
    width: 100%;
    font-size: 2em;
  }

  .brand-2 {
    font-size: 1.5em;
  }

  .navigation_left {
    flex: 1;
  }

  .navigation_item_text {
    font-size: .4em;
  }

  .menu-button {
    align-self: center;
  }

  .menu-button.w--open {
    background-color: #ff6541;
    border-radius: 500px;
  }

  .animation_underline {
    width: 30%;
    bottom: 0%;
    left: 35%;
  }

  .final-footer-2 {
    background-color: #0000;
    position: relative;
  }

  .success {
    min-height: auto;
  }

  .os-btn-text-2 {
    font-size: .9rem;
  }

  .contact-wrapper-3 {
    flex-direction: column;
    margin-top: 2%;
    margin-bottom: 0%;
    margin-right: 0%;
  }

  .hero-section-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 0;
  }

  .hero-2 {
    margin-top: 12%;
    margin-bottom: 0%;
  }

  .contact-left-3 {
    width: 100%;
    margin-top: 5%;
    margin-bottom: 0;
    margin-right: 0%;
  }

  .project_image {
    text-align: center;
    border-width: 4px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .paragraph-12 {
    text-align: left;
    font-family: Google Sans, sans-serif;
  }

  .grid-12 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: left;
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: center;
    padding-right: 0%;
    display: grid;
  }

  .bold-text-4 {
    font-family: Google Sans, sans-serif;
  }

  .hero-section-3 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 0;
  }

  .hero-3 {
    margin-top: 12%;
    margin-bottom: 0%;
  }

  .image-55 {
    margin-bottom: 40px;
  }

  .grid_item.grid_item_50 {
    width: 100%;
  }

  .heading-style-h2-7.skills-header.background-header.custom-text {
    text-align: left;
    text-transform: none;
    margin-top: 10px;
    padding-top: 20px;
    font-family: Google Sans, sans-serif;
    font-weight: 500;
  }

  .text-block-142 {
    font-family: Google Sans, sans-serif;
  }

  .div-block-28 {
    display: block;
  }

  .bold-text-5 {
    font-family: Google Sans, sans-serif;
  }

  .os-btn-text-3 {
    font-size: .9rem;
  }

  .body {
    background-color: #0000;
  }

  .image-56 {
    display: none;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

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

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

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

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

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

  .navbar_component {
    min-height: 4rem;
  }

  .navbar_container {
    grid-template-columns: 1fr max-content;
  }

  .navbar16_menu-wrapper {
    padding-top: 4rem;
  }

  .navbar16_links-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .section-hero {
    margin-bottom: 21%;
  }

  .main-shapes-wrapper {
    filter: blur(80px);
  }

  .shape-3 {
    width: 30em;
    height: 100em;
  }

  .blending-group-wrapper {
    filter: blur(80px);
  }

  .header_component {
    margin-top: 10%;
  }

  .navbar16_link-2 {
    font-size: 1.5rem;
  }

  .footer_credit-text {
    order: 1;
    margin-top: 2rem;
  }

  .switch.align-center.custom-cursor {
    display: none;
  }

  .text-wrapper {
    font-family: Inconsolata, monospace;
  }

  .scramble-text {
    font-size: 1.5rem;
  }

  .scramble-text.text-size-xl.text-weight-light {
    font-family: Google Sans, sans-serif;
    font-size: 1.2rem;
  }

  .button-54 {
    font-size: 16px;
  }

  .button-54.custom-cursor {
    z-index: 10;
    margin-top: 0;
    position: relative;
  }

  .button-54.custom-cursor.main-btn {
    color: #000;
    background-color: #bbaffd;
    background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
    margin-top: 10px;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button_text-5 {
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: .75em;
  }

  .button_text-5.custom-cursor {
    color: #000;
    margin-bottom: 0;
    font-family: Google Sans, sans-serif;
    font-size: .9em;
    font-weight: 500;
  }

  .button_arrow-2 {
    padding-bottom: 5px;
  }

  .button_arrow-2.custom-cursor {
    padding-top: 5px;
  }

  .marquee-horizontal {
    height: 57px;
    margin-top: 10%;
  }

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

  .about-text {
    margin-top: 35vh;
  }

  .padding-global-9 {
    margin-top: 10%;
  }

  .padding-layout {
    text-align: center;
    margin-top: 33%;
    margin-bottom: 21%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-size-large {
    font-size: 1.75rem;
    line-height: 1.5;
  }

  .text-size-large.text-color-gray800 {
    text-align: center;
  }

  .grid {
    grid-template-columns: 100%;
  }

  .card {
    min-height: 21em;
    padding: 1em 2em;
  }

  .top-card {
    margin-top: 5%;
    padding-top: 25px;
  }

  .service-container {
    flex-flow: column;
    margin-bottom: 20px;
    display: block;
  }

  .pricing_bottom {
    margin-bottom: 10%;
  }

  .heading-style-h2.custom-text {
    margin-left: 20px;
    margin-right: 10px;
    font-size: 2.5rem;
  }

  .learn-more {
    width: 44%;
  }

  .flex-service-25 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    transition-property: none;
  }

  .section-6 {
    background-image: none;
    height: auto;
    margin-top: 40px;
  }

  .section {
    padding: 2em;
  }

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

  .icon-embed-xlarge.absolute {
    width: 5rem;
  }

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

  .paragraph-4 {
    font-size: 1.1rem;
  }

  .heading-19.custom-text {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.4rem;
  }

  .gallery__lottie {
    width: 180px;
  }

  .work-button {
    border-width: 2.6px;
    align-self: auto;
  }

  .project_cta-new-webstie {
    height: 22rem;
  }

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

  .heading-style-h1-3 {
    margin-right: 17%;
    font-size: 2rem;
  }

  .large-circle-link {
    width: 160px;
    height: 160px;
  }

  .optimism-cta-2 {
    background-color: #0000;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .body-display {
    font-size: 19px;
    line-height: 1.4em;
  }

  .button-text-4 {
    transform: rotate(-9deg);
  }

  .stacked-content {
    padding-left: 36px;
    padding-right: 36px;
  }

  .action-content {
    grid-row-gap: 33px;
  }

  .heading-4 {
    font-size: 2rem;
  }

  .grid-container {
    grid-row-gap: 4rem;
  }

  .grid-container.is--background {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 0%;
    display: grid;
  }

  .container-md-2 {
    position: relative;
  }

  .os-btn-menu.back-home {
    z-index: 500;
    display: block;
  }

  .final-footer {
    width: 100%;
    position: relative;
  }

  .heading1 {
    text-align: center;
  }

  .paragraph-tone {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 80vw;
    display: flex;
  }

  .heading2 {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5rem;
  }

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

  .heading3 {
    text-align: center;
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .spacer-large {
    padding-top: 2rem;
  }

  .about-tone-wrapper {
    flex-flow: column;
    grid-auto-flow: column;
    align-items: center;
    display: flex;
  }

  .tone-avatar-logo {
    width: 13rem;
  }

  .button-group-2.is-center {
    width: 90vw;
  }

  .button-56 {
    font-size: 16px;
  }

  .button-56.custom-cursor {
    z-index: 10;
    margin-top: 0;
    position: relative;
  }

  .button-56.custom-cursor.main-btn {
    color: #000;
    background-color: #bbaffd;
    background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
    margin-top: 10px;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .contact-wrapper-2 {
    margin-top: 5%;
  }

  .hero__title {
    margin-top: 40px;
  }

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

  .heading-17 {
    text-transform: none;
    font-family: Google Sans, sans-serif;
    font-size: 2rem;
    font-weight: 700;
  }

  .hero {
    margin-bottom: 0%;
  }

  .image-50 {
    margin-bottom: 10px;
  }

  .div-block-8 {
    display: flex;
  }

  .form-block-2 {
    margin-bottom: 15%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .contact-field-label {
    color: #1a1a1a;
    font-size: 18px;
  }

  .contact-left-2 {
    margin-top: 21%;
  }

  .contact-paragraph.smaller {
    margin-top: 10px;
    padding-left: 4%;
    padding-right: 4%;
    font-family: Google Sans, sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .contact-paragraph.bigger {
    margin-top: 20px;
    padding-left: 5%;
    padding-right: 5%;
    display: block;
  }

  .div-tonemaki-logo-full {
    width: 9rem;
    height: 2rem;
  }

  .tonemaki-logo-full {
    padding: .25rem;
  }

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

  .footer4_linkbutton-text {
    margin-top: 1rem;
  }

  .footer4_linkbutton-text.text-color-makibeigen3 {
    margin-top: 0;
  }

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

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

  .footer_bottom-wrapper-2 {
    padding-bottom: 1rem;
  }

  .body-display-2 {
    font-size: 19px;
    line-height: 1.4em;
  }

  .heading-20 {
    font-size: 2rem;
  }

  .footer_top {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

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

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

  .footer_tab-links {
    justify-content: space-between;
    width: 100%;
  }

  .navbar-brand---t3 {
    padding-left: 0;
  }

  .nav-link---t3 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-logo {
    padding-left: 0;
  }

  .nav-menu---t3 {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-menu-wrapper---t3 {
    width: 100%;
  }

  .hero-tag_text-2 {
    font-size: 14px;
  }

  .hero-tag_text-2.now-booking {
    font-size: .9rem;
  }

  .navigation_logo_text {
    font-size: 24px;
  }

  .final-footer-2 {
    background-color: #0000;
  }

  .form-section-title-5 {
    font-size: 27px;
    line-height: 35px;
  }

  .contact-wrapper-3 {
    margin-top: 5%;
  }

  .hero-section-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .hero-2 {
    margin-bottom: 0%;
  }

  .image-54 {
    margin-bottom: 10px;
  }

  .paragraph-11 {
    line-height: 29px;
  }

  .contact-left-3 {
    margin-top: 5%;
  }

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

  .bold-text-4 {
    margin-left: 5%;
    margin-right: 5%;
  }

  .hero-section-3 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .hero-3 {
    margin-bottom: 0%;
  }

  .image-55 {
    margin-bottom: 10px;
  }

  .grid_item.grid_item_50 {
    width: 60%;
  }

  .heading-style-h2-7.skills-header.background-header.custom-text {
    text-align: left;
    margin-bottom: 10px;
    padding-top: 20px;
    font-size: 1.6rem;
  }

  .text-block-142 {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .div-block-28 {
    width: 100%;
    display: block;
  }
}

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

  .max-width-large {
    padding: 2% 5% 10%;
  }

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

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

  .navbar_component {
    z-index: 50;
    width: auto;
    margin-top: 20px;
  }

  .navbar_container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1.5fr max-content;
  }

  .section-hero {
    height: auto;
    margin-top: 0%;
    margin-bottom: 50%;
    overflow: visible;
  }

  .shape-4 {
    top: 30.7em;
  }

  .header_component {
    margin-top: 21%;
  }

  .footer_bottom-wrapper {
    flex-direction: row-reverse;
    bottom: 1rem;
  }

  .footer_credit-text {
    margin-top: .5rem;
    font-size: .6rem;
  }

  .switch {
    left: 0;
  }

  .mobile-padding {
    padding-left: 5%;
    padding-right: 5%;
  }

  .heading {
    margin-top: 2.6rem;
    font-size: 2rem;
  }

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

  .scramble-text {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .scramble-text.text-size-xl.text-weight-light {
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height: 111%;
  }

  .button-54.custom-cursor {
    z-index: 20;
    background-color: #94ee94;
    margin-top: 0;
    margin-left: 0;
    padding: .25em 0;
    position: relative;
  }

  .button-54.custom-cursor.main-btn {
    color: #000;
    background-color: #bbaffd;
    background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
    margin-top: 1rem;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button_text-5 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px 5px 5px 15px;
    font-size: .65em;
    font-style: normal;
  }

  .button_text-5.custom-cursor {
    margin-bottom: 0;
    padding-left: 33px;
    padding-right: 10px;
    font-size: .8em;
    font-weight: 500;
  }

  .button_arrow-2 {
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: .8em;
    display: block;
  }

  .button_arrow-2.custom-cursor {
    padding-right: 10px;
  }

  .marquee-horizontal {
    height: 44px;
    margin-top: 0%;
    font-size: 1.2rem;
  }

  .track-horizontal-alt {
    font-size: 1.2rem;
  }

  .marquee-text {
    font-family: Inconsolata, monospace;
    font-size: .98rem;
  }

  .about-text {
    margin-top: 25vh;
    margin-left: 5%;
    margin-right: 5%;
    line-height: .88;
  }

  .padding-global-9 {
    margin-top: 5%;
    padding-left: 0%;
    padding-right: 0%;
    line-height: .88;
  }

  .padding-layout {
    text-align: center;
    margin-top: 25%;
    padding-left: 0;
    padding-right: 0;
    font-size: .74rem;
  }

  .text-size-large.text-color-gray800 {
    text-align: left;
    font-family: Google Sans, sans-serif;
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .text-block-126 {
    padding-left: 0;
    font-family: Inconsolata, monospace;
    font-size: .9em;
  }

  .past-projects-titleblock {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-left: 7px;
    margin-right: 0;
  }

  .past-projects-titleblock.how-we_help-titleblock {
    flex-flow: column;
    margin-left: 0;
  }

  .card_content {
    padding-top: 2em;
  }

  .card_text {
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-size: 1em;
  }

  .card_text.heading-servicecard {
    margin-top: .5em;
    margin-bottom: .125em;
    font-size: 1.5em;
    line-height: 1.1;
  }

  .grid {
    grid-column-gap: .8em;
    grid-row-gap: .8em;
    padding-top: 0;
  }

  .card {
    min-height: auto;
    padding: 1.45em;
  }

  .top-card {
    margin-top: 10%;
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-container {
    padding-left: 35px;
    padding-right: 35px;
  }

  .pricing_bottom {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    margin-bottom: 10%;
    padding: 20px;
  }

  .heading-style-h2.custom-text {
    text-align: left;
    text-align: center;
    margin-bottom: 0;
    margin-right: 0;
    font-size: 2.5rem;
    line-height: 44px;
  }

  .card-text.check-list {
    text-align: left;
    font-size: .9em;
  }

  .container-3 {
    padding-left: .8em;
    padding-right: .8em;
  }

  .container-3.is-cards {
    padding-top: 1em;
    padding-bottom: 0;
  }

  .text-span-11 {
    color: #5739fb;
  }

  .loading-lottie {
    width: 30vw;
    height: 30vw;
  }

  .learn-more {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .text-weight-semibold.card-text {
    font-family: Google Sans, sans-serif;
    font-size: 1.1em;
  }

  .section-6 {
    height: auto;
  }

  .logo-wrapper {
    width: 12em;
  }

  .section {
    padding-left: 1em;
    padding-right: 1em;
  }

  .buttone-text-block {
    color: #353535;
    padding: 10px;
    font-size: 1.1em;
    line-height: .9em;
  }

  .work_grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: column;
    width: 400%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .work_card-content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .padding-section-large {
    padding-top: 0;
  }

  .paragraph-4 {
    max-width: 100%;
  }

  .button-text-wrapper {
    font-size: .8rem;
  }

  .heading-19.custom-text {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.3rem;
  }

  .gallery__lottie {
    width: 150px;
    height: 177px;
    margin-left: -30px;
    margin-right: 10px;
  }

  .work-button {
    color: #353535;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button-text-5 {
    font-size: .8rem;
  }

  .work_project-title {
    color: #f5f5f5;
  }

  .project_cta-new-webstie {
    height: 25rem;
  }

  .project_cta-new-webstie.draggable-window {
    width: 300px;
    height: auto;
  }

  .work_card-border_glow {
    border-radius: 8px;
  }

  .work_card-border_glow.float {
    width: 300px;
  }

  .work_card-glow-background._4 {
    top: 200px;
  }

  .work_card-glow-background._3 {
    top: 140px;
  }

  .work_card-glow-background._2 {
    top: 80px;
  }

  .work_thumbnail-img-wrapper {
    border-radius: 6px;
  }

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

  .work_scroll-wrapper {
    overflow: scroll;
  }

  .work_card-hover {
    background-color: #353535;
    border-radius: 8px;
    padding: 1rem;
  }

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

  .large-circle-link.click {
    z-index: 100;
  }

  .optimism-cta-2 {
    background-color: #0000;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .body-display {
    color: #353535;
  }

  .button-text-4 {
    transform: rotate(-9deg);
  }

  .stacked-content {
    grid-row-gap: 36px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .action-content {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .grid-container {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .grid-container.is--background {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .os-btn-text {
    padding-top: 2px;
    font-size: .85rem;
  }

  .os-footer-text {
    font-size: 19px;
  }

  .container-md-2 {
    margin-top: 40px;
  }

  .os-btn-menu {
    padding: 14px 26px;
    font-size: 10px;
  }

  .os-btn-menu.back-home {
    margin-top: 20px;
    display: block;
  }

  .os-footer-menu {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    text-align: left;
    flex-flow: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .final-footer {
    width: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: visible;
  }

  .os-footer-text-btm {
    font-size: .88rem;
  }

  .heading1 {
    text-align: center;
    font-size: 3rem;
    line-height: 3rem;
  }

  .button-group-2 {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .contact-text-field.input-cursor {
    color: #161616;
    font-size: .9rem;
  }

  .button-56.custom-cursor {
    z-index: 20;
    background-color: #94ee94;
    margin-top: 0;
    margin-left: 0;
    padding: .25em 0;
    position: relative;
  }

  .button-56.custom-cursor.main-btn {
    color: #000;
    background-color: #bbaffd;
    background-image: linear-gradient(188deg, #e7e1e1, #5739fb);
    margin-top: 0;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .button-56.custom-cursor.main-btn.contact-page-button {
    background-image: linear-gradient(188deg, #e7e1e1, #9c8aef 91%, #5739fb);
    margin-top: 20px;
  }

  .contact-wrapper-2 {
    margin-top: 0%;
    margin-bottom: 0%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .lottie-eye.demo-eye.big-eye {
    margin-left: 0%;
  }

  .hero__title {
    margin-top: 37px;
    margin-bottom: 0;
  }

  .hero-section {
    flex-direction: column;
    min-height: auto;
    margin-top: 1vh;
    margin-bottom: 15%;
    display: flex;
  }

  .contact-text-area.input-cursor {
    color: #0c0c0c;
    margin-bottom: 40px;
    font-size: .9rem;
  }

  .heading-17 {
    text-align: center;
    padding-right: 0;
    font-size: 1.6rem;
    line-height: 32px;
  }

  .hero {
    grid-row-gap: 4vh;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    margin-bottom: 0%;
    font-size: .7rem;
    position: static;
    inset: 0%;
  }

  .image-50 {
    margin-top: 0;
    padding-left: 4%;
    padding-right: 4%;
  }

  .div-block-8 {
    margin-top: 10px;
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 5px;
  }

  .form-block-2 {
    text-align: left;
    margin-bottom: 25%;
    padding-left: 5%;
    padding-right: 0%;
  }

  .contact-name-wrapper {
    margin-bottom: 20px;
  }

  .contact-field-label {
    margin-bottom: 6px;
  }

  .contact-top-wrapper {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .contact-left-2 {
    margin-top: 33%;
    margin-bottom: 15%;
  }

  .contact-paragraph {
    width: auto;
  }

  .contact-paragraph.smaller {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    padding-top: 0;
    padding-left: 2%;
    padding-right: 2%;
    font-family: Google Sans, sans-serif;
    font-size: 1.2rem;
  }

  .contact-paragraph.bigger {
    margin-top: 20px;
  }

  .image-51 {
    margin-left: 20px;
  }

  .div-tonemaki-logo-full {
    display: flex;
  }

  .tonemaki-logo-full {
    flex-flow: row;
  }

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

  .tonemaki-logo-dotlottie.hiddendesktop-vismobile-logo {
    display: none;
  }

  .footer4_linkbutton-text.text-color-makibeigen3 {
    text-wrap: BALANCE;
    text-align: center;
  }

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

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

  .footer_bottom-wrapper-2 {
    display: flex;
  }

  .body-display-2 {
    color: #353535;
  }

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

  .footer_title.padding-bottom {
    padding-bottom: 20px;
  }

  .brand {
    padding-left: 0;
  }

  .footer_para-wrap.v2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .div-block-3 {
    width: 100%;
    max-width: 306px;
  }

  .footer_links-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .footer_links {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .footer_wrap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .footer_tab-links {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .form {
    height: auto;
  }

  .footer_link {
    font-size: .75rem;
  }

  .logo-2 {
    flex: none;
  }

  .navbar-no-shadow---t3 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-button-wrapper---t3 {
    width: auto;
  }

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

  .contact-link-block-res---t3 {
    text-align: left;
  }

  .txt-block {
    font-size: 2rem;
    line-height: 1;
  }

  .active-wite-dott.d-1 {
    width: 9px;
    height: 9px;
  }

  .active-dotted-wrap-2 {
    justify-content: center;
    align-items: center;
    width: 14px;
    min-width: 14px;
    height: 14px;
    min-height: 14px;
  }

  .hero-tag_text-2 {
    font-size: 12px;
  }

  .hero-tag_text-2.now-booking {
    font-size: 1rem;
  }

  .cercle {
    width: 14px;
    min-width: 14px;
    height: 14px;
    min-height: 14px;
  }

  .navigation_item {
    align-self: stretch;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 24px;
    display: block;
  }

  .navigation_logo {
    height: auto;
  }

  .animation_scribble {
    width: 50%;
    inset: auto 0% -10% 25%;
  }

  .navigation_right {
    border-bottom: .1em solid #181c52;
    flex-direction: column;
    font-size: 6em;
  }

  .brand-2 {
    flex: 1;
    font-size: 2em;
  }

  .navigation_item_text {
    font-size: .6em;
  }

  .navigation_logo_text {
    font-size: 20px;
  }

  .animation_underline {
    width: 50%;
    inset: auto 0% -6% 25%;
  }

  .final-footer-2 {
    background-color: #0000;
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .os-footer-text-btm-2 {
    font-size: .9rem;
  }

  .success {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .form-section-title-5 {
    text-align: center;
    font-size: 2.2em;
    line-height: 1.3em;
  }

  .os-btn-text-2 {
    padding-top: 2px;
    font-size: .85rem;
  }

  .contact-wrapper-3 {
    margin-top: 7%;
    margin-bottom: 0%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-section-2 {
    flex-direction: column;
    min-height: auto;
    margin-top: 4vh;
    margin-bottom: 25%;
    display: flex;
  }

  .hero-2 {
    grid-row-gap: 4vh;
    justify-content: center;
    align-items: center;
    margin-top: 25%;
    margin-bottom: 25%;
    font-size: .7rem;
    position: static;
    inset: 0%;
  }

  .image-54 {
    margin-top: 0;
    padding-left: 4%;
    padding-right: 4%;
  }

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

  .contact-left-3 {
    margin-top: 5%;
  }

  .project_image {
    width: 75%;
  }

  .paragraph-12 {
    text-align: left;
    margin-left: 5%;
    margin-right: 5%;
  }

  .grid-12 {
    grid-template-rows: auto;
    padding-right: 0%;
  }

  .bold-text-4 {
    text-align: left;
    margin-left: 0%;
    margin-right: 0%;
    font-size: 2.7vh;
  }

  .hero-section-3 {
    flex-direction: column;
    min-height: auto;
    margin-top: 4vh;
    margin-bottom: 20%;
    display: flex;
  }

  .text-block-141 {
    text-align: center;
    margin-top: 10px;
    margin-left: auto;
    margin-right: 1%;
    font-size: 3vh;
    line-height: 1.25;
  }

  .hero-3 {
    grid-row-gap: 4vh;
    justify-content: center;
    align-items: center;
    margin-top: 15%;
    margin-bottom: 25%;
    font-size: .7rem;
    position: static;
    inset: 0%;
  }

  .image-55 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 4%;
    padding-right: 4%;
  }

  .grid_item, .grid_item.grid_item_50 {
    width: 100%;
  }

  .heading-style-h2-7.skills-header.background-header.custom-text {
    text-align: left;
    margin-bottom: 10px;
    padding-top: 20px;
    font-size: 1.6rem;
  }

  .text-block-142 {
    font-size: 1rem;
  }

  .div-block-27 {
    margin-left: 7%;
    padding-right: 5%;
  }

  .div-block-27.second {
    margin-top: 20px;
    margin-right: 5%;
    padding-right: 0%;
  }

  .bold-text-5 {
    margin-left: 0%;
    font-size: 2.7vh;
  }

  .os-btn-text-3 {
    padding-top: 2px;
    font-size: .85rem;
  }

  .bold-text-6 {
    font-style: normal;
  }
}

#w-node-_56eab2d3-9df6-7718-76ca-4c5e06e021f0-0284012d, #w-node-_56eab2d3-9df6-7718-76ca-4c5e06e02216-0284012d, #w-node-_56eab2d3-9df6-7718-76ca-4c5e06e0223c-0284012d, #w-node-_56eab2d3-9df6-7718-76ca-4c5e06e02262-0284012d, #w-node-e1b4ecac-9bad-0c4c-4e1c-cf96cdc30604-0284012d, #w-node-e1b4ecac-9bad-0c4c-4e1c-cf96cdc3061b-0284012d, #w-node-e1b4ecac-9bad-0c4c-4e1c-cf96cdc3062f-0284012d, #w-node-e1b4ecac-9bad-0c4c-4e1c-cf96cdc30643-0284012d, #w-node-e1b4ecac-9bad-0c4c-4e1c-cf96cdc3065a-0284012d, #w-node-e1b4ecac-9bad-0c4c-4e1c-cf96cdc3068d-0284012d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d6155828-1892-f5dd-b943-7d8e8532bd76-0284012d {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-d6155828-1892-f5dd-b943-7d8e8532bd78-0284012d {
  grid-area: 1 / 2 / 2 / 5;
}

#w-node-_1065bf94-34bb-2db0-0f65-74afcb3a8d75-76b6df86, #w-node-_6f037f01-f8a4-eb4a-8541-7e44634d7d63-0341daf2 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_6f037f01-f8a4-eb4a-8541-7e44634d7d8c-0341daf2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_08a43a9e-6981-379c-1598-5694414a0a62-6f2f160d {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

@media screen and (min-width: 1440px) {
  #toggleStyleButton.w-node-_082357dd-7e54-a08e-5649-42486b2979ac-0284012d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-d6155828-1892-f5dd-b943-7d8e8532bd78-0284012d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-d6155828-1892-f5dd-b943-7d8e8532bd81-0284012d {
    justify-self: center;
  }

  #w-node-_1065bf94-34bb-2db0-0f65-74afcb3a8d75-76b6df86, #w-node-_6f037f01-f8a4-eb4a-8541-7e44634d7d63-0341daf2, #w-node-_08a43a9e-6981-379c-1598-5694414a0a62-6f2f160d {
    grid-column: span 6 / span 6;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a6a25f43-6537-d496-f11b-5b94fd474dea-0284012d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1065bf94-34bb-2db0-0f65-74afcb3a8d75-76b6df86, #w-node-_6f037f01-f8a4-eb4a-8541-7e44634d7d63-0341daf2 {
    grid-column: span 4 / span 4;
  }

  #w-node-_6f037f01-f8a4-eb4a-8541-7e44634d7da8-0341daf2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a6a25f43-6537-d496-f11b-5b94fd474dea-0341daf2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_08a43a9e-6981-379c-1598-5694414a0a62-6f2f160d {
    grid-column: span 4 / span 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d6155828-1892-f5dd-b943-7d8e8532bd81-0284012d {
    justify-self: center;
  }

  #w-node-a6a25f43-6537-d496-f11b-5b94fd474dc0-0284012d, #w-node-a6a25f43-6537-d496-f11b-5b94fd474dea-0284012d, #w-node-a6a25f43-6537-d496-f11b-5b94fd474dc0-0341daf2, #w-node-a6a25f43-6537-d496-f11b-5b94fd474dea-0341daf2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Panchang variable';
  src: url('../fonts/Panchang-Variable.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Big Zubo';
  src: url('../fonts/Big-Zubo.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}