@font-face {
  font-family: Pixelifysans Variablefont Wght;
  src: url('../fonts/PixelifySans-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Hankengrotesk Variablefont Wght;
  src: url('../fonts/HankenGrotesk-VariableFont_wght.ttf') format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Arimo Variablefont Wght;
  src: url('../fonts/Arimo-VariableFont_wght.ttf') format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --fonts--heading: "Hankengrotesk Variablefont Wght", Arial, sans-serif;
  --colors--black: #121212;
  --fonts--text: "Arimo Variablefont Wght", "Times New Roman", sans-serif;
  --margins--screen-margins: 40px;
  --colors--neon: #cefe48;
  --colors--true-black: black;
  --colors--white: white;
  --colors--gray-dark: #bac4d4;
  --border-radius--rounded: 5px;
  --border-radius--circular: 120px;
  --colors--transparent: transparent;
  --colors--green: #2a4242;
  --colors--gray: #ececec;
  --margins--section-spacing: 120px;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  overflow-x: hidden;
}

h1 {
  font-family: var(--fonts--heading);
  color: var(--colors--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 47px;
  font-weight: 700;
  line-height: 90%;
}

h2 {
  font-family: var(--fonts--heading);
  color: var(--colors--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 87%;
}

h3 {
  font-family: var(--fonts--text);
  color: var(--colors--black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  font-family: var(--fonts--text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  font-family: var(--fonts--text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  font-family: var(--fonts--text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

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

ul, ol {
  font-family: var(--fonts--text);
  color: var(--colors--black);
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 40px;
  font-size: 16px;
}

blockquote {
  font-family: var(--fonts--text);
  border-left: 5px solid #e2e2e2;
  margin-bottom: 0;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.body-wrapper {
  width: 100vw;
  min-height: 100vh;
}

.section {
  padding: 80px var(--margins--screen-margins);
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.hero {
  min-height: 95vh;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.section-about {
  background-color: var(--colors--black);
}

.section.section-user-journey {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.section.section-pricing {
  background-color: var(--colors--black);
}

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

.section.footer {
  background-color: var(--colors--neon);
  padding-top: 0;
  padding-bottom: 0;
}

.container {
  z-index: 3;
  flex-flow: column;
  width: 100%;
  max-width: 1750px;
  position: relative;
}

.container.hero {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.container.container-about {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  display: flex;
}

.container.container-user-journey {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container.container-pricing {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  display: flex;
}

.container.container-contact {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  display: flex;
}

.container.footer {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  height: 500px;
  display: flex;
}

.container.first {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  display: flex;
}

.top-bar {
  background-color: var(--colors--neon);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5vh;
  display: flex;
}

.top-bar-text-div {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-secondary {
  font-family: var(--fonts--text);
  color: var(--colors--true-black);
  font-size: 16px;
  line-height: 110%;
  text-decoration: none;
}

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

.underline {
  text-decoration: underline;
}

.arrow-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.arrow-link:hover {
  filter: invert(30%);
}

.link-arrow {
  height: 14px;
}

.hero-decor {
  width: 160px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.hero-content-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-written-content-div {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 55%;
  display: flex;
}

.hero-img-div {
  width: 43%;
}

.hero-img {
  width: 100%;
}

.primary-paragraph {
  font-family: var(--fonts--text);
  color: var(--colors--black);
  font-size: 20px;
  line-height: 100%;
}

.primary-paragraph.white {
  color: var(--colors--white);
}

.hero-heading-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 511px;
  position: relative;
}

.main-heading-trust {
  background-color: var(--colors--gray-dark);
  padding-left: 5px;
  padding-right: 5px;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: rotate(-5deg);
}

.btn-container {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.btn-container:hover {
  filter: brightness(80%);
}

.btn-arrow-div {
  background-color: var(--colors--black);
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
}

.btn-arrow-div.neon {
  background-color: var(--colors--neon);
}

.btn-arrow {
  height: 60%;
}

.hero-clients-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-clients-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.hero-client-img {
  height: 43px;
}

.about-written-content-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.about-price-content-wrapepr {
  grid-column-gap: 2%;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.neon {
  color: var(--colors--neon);
}

.about-written-content-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.about-written-content-heading-div {
  width: 1050px;
}

.about-price-card {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  border-radius: var(--border-radius--rounded);
  background-color: var(--colors--white);
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 32%;
  padding: 24px 22px;
  display: flex;
  position: relative;
}

.about-price-content-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.about-price-pricing-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.about-price-pricing-wrapper.flex-right-aligned {
  justify-content: flex-end;
  align-items: center;
}

.caption {
  font-family: var(--fonts--text);
  color: var(--colors--black);
  font-size: 12px;
  line-height: 99%;
}

.caption.footer-legal-list {
  margin-top: 5px;
  margin-bottom: 0;
  padding-left: 20px;
}

.about-price-arrow-div {
  border-radius: var(--border-radius--circular);
  background-color: var(--colors--neon);
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  display: flex;
  position: absolute;
  inset: -6% -6% auto auto;
}

.user-journey-heading-div {
  max-width: 430px;
  margin-left: 10px;
  margin-right: 10px;
}

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

.user-journey-wrapper {
  width: 100%;
}

.user-journey-img {
  width: 98%;
}

.journey-pixel-img {
  width: 160px;
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(0, -50%);
}

.journey-laptop-imgs-div {
  flex-flow: column;
  width: 150px;
  margin-right: 10px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: translate(0, -50%);
}

.pricing-heading-div {
  max-width: 450px;
}

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

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

.pricing-tabs-menu {
  border-radius: var(--border-radius--circular);
  background-color: var(--colors--white);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
  overflow: hidden;
}

.pricing-tabs-content-wrapper {
  width: 100%;
  margin-top: 70px;
}

.pricing-tabs-link {
  border-radius: var(--border-radius--circular);
  background-color: var(--colors--transparent);
}

.pricing-tabs-link.w--current {
  background-color: var(--colors--neon);
}

.pricing-tabs-content-container {
  grid-column-gap: 2%;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.pricing-tabs-card {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  border-radius: var(--border-radius--rounded);
  background-color: var(--colors--white);
  flex-flow: column;
  width: 48%;
  padding: 22px 18px 18px;
  display: flex;
}

.pricing-tab-heading-div {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.green {
  color: var(--colors--green);
}

.pricing-tab-content-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.pricing-tab-price-container {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  display: flex;
}

.pricing-tab-content-div {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.pricing-tab-monthly-price-div {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.huge-heading {
  font-size: 90px;
}

.huge-heading.talk-heading {
  font-size: 80px;
}

.gray {
  color: var(--colors--gray);
}

.gray.cut {
  text-decoration: line-through;
}

.pricing-tab-discount-wrapper {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  display: flex;
}

.pricing-tab-discount-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-radius: var(--border-radius--rounded);
  background-color: var(--colors--neon);
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  display: flex;
}

.pricing-tab-discount-icon {
  height: 20px;
}

.card-btn {
  border: 1px solid var(--colors--neon);
  border-radius: var(--border-radius--circular);
  background-color: var(--colors--black);
  font-family: var(--fonts--text);
  color: var(--colors--white);
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  transition: all .2s;
}

.card-btn:hover {
  border-color: var(--colors--black);
  background-color: var(--colors--neon);
  color: var(--colors--black);
}

.card-btn.neon {
  background-color: var(--colors--neon);
  color: var(--colors--black);
}

.card-btn.neon:hover {
  background-color: var(--colors--white);
}

.pricing-tab-points-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.pricing-tab-point-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing-tab-point-icon {
  height: 10px;
}

.pricing-tab-price-and-discount-container {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.contact-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.contact-form-wrapper {
  width: 50%;
}

.contact-lets-talk-wrapper {
  background-color: var(--colors--gray);
  width: 40%;
}

.contact-lets-talk-heading-div {
  background-color: var(--colors--black);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
}

.contact-lets-talk-content-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 15px;
  display: flex;
}

.contact-lets-talk-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-lets-talk-icon-div {
  border-radius: var(--border-radius--circular);
  background-color: var(--colors--black);
  justify-content: center;
  align-items: center;
  padding: 10px;
  display: flex;
}

.contact-lets-talk-icon-div.neon {
  background-color: var(--colors--neon);
}

.contact-lets-talk-link-div {
  color: var(--colors--black);
}

.contact-form-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.contact-form-field {
  background-color: var(--colors--transparent);
  font-family: var(--fonts--text);
  color: var(--colors--gray-dark);
  border: 0 solid #000;
  border-bottom-width: 3px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0;
  font-size: 20px;
  line-height: 95%;
}

.contact-form-field.textarea {
  min-height: 150px;
}

.contact-form-btns-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.contact-decor-img {
  width: 100%;
  position: absolute;
  inset: 120px 0% auto;
}

.bottom-white-bar {
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.footer-decor {
  height: 100%;
}

.footer-content-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 50%;
  margin-top: 28px;
  margin-bottom: 18px;
  display: flex;
}

.footer-about-lyoko-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 40%;
  margin-top: 28px;
  margin-bottom: 18px;
  display: flex;
}

.footer-links-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-logo-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.footer-links-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.footer-about-addresses-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  display: flex;
}

.footer-about-address-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.footer-about-country-div {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-about-country-flag {
  width: 35px;
}

.footer-about-country-address-div {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-about-contact-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.footer-about-contact-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-radius: var(--border-radius--rounded);
  background-color: var(--colors--black);
  flex-flow: column;
  max-width: 360px;
  padding: 15px 25px;
  display: flex;
}

.legal-main-wrapper {
  flex-flow: column;
  display: flex;
}

.all-rich-text h1, .all-rich-text h2, .all-rich-text h3, .all-rich-text h4, .all-rich-text h5, .all-rich-text h6 {
  margin-bottom: 30px;
}

.all-rich-text p {
  font-family: var(--fonts--text);
  color: var(--colors--black);
  margin-bottom: 30px;
  font-size: 16px;
}

.all-rich-text blockquote, .all-rich-text ol, .all-rich-text ul {
  margin-bottom: 30px;
}

.all-rich-text a {
  cursor: pointer;
  transition: all .2s;
}

.all-rich-text a:hover {
  color: #535353;
}

.homeclients-main-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  display: flex;
}

.carousel-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.logo-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  will-change: transform;
  justify-content: space-around;
  align-items: center;
  min-width: 340%;
  display: flex;
}

.carousel-img {
  filter: saturate(0%);
  height: 46px;
}

.carousel-img.bigger {
  height: 46px;
}

.cut {
  text-decoration: line-through;
}

@media screen and (min-width: 1280px) {
  body {
    --fonts--heading: "Hankengrotesk Variablefont Wght", Arial, sans-serif;
    --colors--black: #121212;
    --fonts--text: "Arimo Variablefont Wght", "Times New Roman", sans-serif;
    --margins--screen-margins: 60px;
    --colors--neon: #cefe48;
    --colors--true-black: black;
    --colors--white: white;
    --colors--gray-dark: #bac4d4;
    --border-radius--rounded: 5px;
    --border-radius--circular: 120px;
    --colors--transparent: transparent;
    --colors--green: #2a4242;
    --colors--gray: #ececec;
    --margins--section-spacing: 120px;
  }

  h1 {
    font-size: 60px;
    line-height: 92%;
  }

  h2 {
    font-size: 46px;
  }

  .primary-paragraph {
    font-size: 22px;
  }

  .hero-heading-div {
    width: 651px;
  }

  .btn-arrow-div {
    width: 70px;
    height: 70px;
  }

  .hero-client-img {
    height: 46px;
  }

  .about-written-content-heading-div {
    width: 1180px;
  }

  .user-journey-heading-div {
    max-width: 550px;
  }

  .pricing-heading-div {
    max-width: 520px;
  }

  .pricing-tabs-card {
    width: 32%;
  }

  .pricing-tab-price-container {
    height: auto;
  }

  .huge-heading {
    font-size: 100px;
  }

  .huge-heading.talk-heading {
    font-size: 70px;
  }

  .contact-form-field {
    font-size: 22px;
  }

  .logo-container {
    min-width: 300%;
  }

  .carousel-img.bigger {
    height: 51px;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 52px;
  }

  .primary-paragraph {
    font-size: 24px;
  }

  .hero-heading-div {
    width: 733px;
  }

  .hero-client-img {
    height: 50px;
  }

  .about-written-content-heading-div {
    width: 1270px;
  }

  .pricing-heading-div {
    max-width: 630px;
  }

  .pricing-tabs-card {
    width: 32%;
  }

  .huge-heading {
    font-size: 120px;
  }

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

  .logo-container {
    min-width: 280%;
  }

  .cut {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  body {
    --fonts--heading: "Hankengrotesk Variablefont Wght", Arial, sans-serif;
    --colors--black: #121212;
    --fonts--text: "Arimo Variablefont Wght", "Times New Roman", sans-serif;
    --margins--screen-margins: 20px;
    --colors--neon: #cefe48;
    --colors--true-black: black;
    --colors--white: white;
    --colors--gray-dark: #bac4d4;
    --border-radius--rounded: 5px;
    --border-radius--circular: 120px;
    --colors--transparent: transparent;
    --colors--green: #2a4242;
    --colors--gray: #ececec;
    --margins--section-spacing: 90px;
  }

  h1 {
    font-size: 40px;
  }

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

  .section.hero {
    height: auto;
    min-height: 95vh;
  }

  .section.footer {
    padding: 40px 0 20px;
  }

  .container.hero {
    min-height: 700px;
  }

  .container.footer {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    height: auto;
  }

  .hero-img-div {
    width: 40%;
  }

  .hero-heading-div {
    width: 440px;
  }

  .hero-clients-container {
    flex-flow: wrap;
  }

  .about-price-content-wrapepr {
    grid-column-gap: 4%;
  }

  .about-price-card {
    width: 48%;
  }

  .journey-pixel-img {
    transform: translate(0, -25%);
  }

  .journey-laptop-imgs-div {
    transform: translate(0, -20%);
  }

  .journey-laptop-img.tab-hidden {
    display: none;
  }

  .pricing-tabs-content-container {
    grid-column-gap: 20px;
  }

  .pricing-tabs-card {
    width: 48%;
  }

  .huge-heading.talk-heading {
    font-size: 70px;
  }

  .footer-decor {
    width: 120px;
    height: 100%;
    display: none;
  }

  .footer-content-wrapper, .footer-about-lyoko-wrapper {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-links-wrapper {
    justify-content: space-between;
    align-items: flex-start;
    max-width: 660px;
  }

  .footer-logo-container {
    max-width: 530px;
  }

  .homeclients-main-wrapper {
    padding-top: 0;
  }

  .logo-container {
    min-width: 360%;
  }
}

@media screen and (max-width: 767px) {
  body {
    --fonts--heading: "Hankengrotesk Variablefont Wght", Arial, sans-serif;
    --colors--black: #121212;
    --fonts--text: "Arimo Variablefont Wght", "Times New Roman", sans-serif;
    --margins--screen-margins: 10px;
    --colors--neon: #cefe48;
    --colors--true-black: black;
    --colors--white: white;
    --colors--gray-dark: #bac4d4;
    --border-radius--rounded: 5px;
    --border-radius--circular: 120px;
    --colors--transparent: transparent;
    --colors--green: #2a4242;
    --colors--gray: #ececec;
    --margins--section-spacing: 60px;
  }

  h2 {
    font-size: 34px;
  }

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

  .section.section-user-journey {
    padding-top: 120px;
  }

  .container.hero {
    grid-column-gap: 120px;
    grid-row-gap: 120px;
    min-height: auto;
  }

  .container.container-user-journey {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .top-bar {
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .top-bar-text-div {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .hero-content-wrapper {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
    flex-flow: column;
  }

  .hero-written-content-div {
    width: 100%;
  }

  .hero-img-div {
    width: 100%;
    max-width: 500px;
  }

  .hero-clients-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .hero-client-img {
    height: 46px;
  }

  .about-written-content-wrapper {
    flex-flow: column;
  }

  .about-price-content-wrapepr {
    grid-row-gap: 25px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .about-written-content-container {
    max-width: 480px;
  }

  .about-written-content-heading-div {
    width: 100%;
    max-width: 460px;
  }

  .about-price-card {
    width: 100%;
    max-width: 420px;
  }

  .journey-pixel-img {
    width: 105px;
  }

  .journey-laptop-imgs-div {
    width: 100px;
  }

  .pricing-heading-div {
    max-width: 500px;
  }

  .pricing-tabs-content-container {
    grid-column-gap: 2%;
    grid-row-gap: 15px;
  }

  .pricing-tabs-card {
    width: 100%;
    max-width: 420px;
  }

  .pricing-tab-price-container {
    height: auto;
  }

  .huge-heading {
    font-size: 60px;
  }

  .contact-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .contact-form-wrapper {
    width: 100%;
  }

  .contact-lets-talk-wrapper {
    width: 100%;
    max-width: 420px;
  }

  .homeclients-main-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .logo-container {
    min-width: 280%;
  }

  .carousel-img {
    height: 40px;
  }

  .carousel-img.bigger {
    height: 42px;
  }
}

@media screen and (max-width: 479px) {
  .hero-decor {
    width: 105px;
  }

  .hero-img-div {
    width: 90%;
  }

  .hero-heading-div {
    width: 100%;
    margin-bottom: 50px;
  }

  .main-heading-trust {
    inset: auto auto -45px 0%;
  }

  .hero-clients-wrapper {
    margin-top: -30px;
  }

  .hero-client-img {
    height: 38px;
  }

  .about-price-card {
    width: 95%;
  }

  .pricing-tabs-content-container {
    grid-row-gap: 20px;
  }

  .huge-heading.talk-heading {
    font-size: 60px;
  }

  .footer-links-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo-container {
    min-width: 320%;
  }

  .carousel-img {
    height: 42px;
  }
}


@font-face {
  font-family: 'Pixelifysans Variablefont Wght';
  src: url('../fonts/PixelifySans-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hankengrotesk Variablefont Wght';
  src: url('../fonts/HankenGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Arimo Variablefont Wght';
  src: url('../fonts/Arimo-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}