:root {
  --black: #171717;
  --light-green: #6ce296;
  --dark-grey: #4e4e4e;
  --grey: #818181;
  --white: white;
  --border-gray: #c5c5c5;
  --light-gray: #f4f4f4;
  --light-blue: #57d8ff;
}

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

body {
  color: var(--black);
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Splinesans Variable, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Splinesans Variable, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Splinesans Variable, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Splinesans Variable, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Splinesans Variable, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Splinesans Variable, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

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

a.w--current {
  border-radius: .4375rem;
}

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 {
  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;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

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

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

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

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

.utility-component {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-form-block {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #f6f6f6;
  border-radius: .625rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 5rem;
  display: flex;
}

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

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-xlarge {
  margin: 4rem;
}

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

.margin-top {
  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.overflow-hidden {
  overflow: hidden;
}

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

.weight-medium {
  font-weight: 500;
}

.weight-medium.text-green {
  color: var(--light-green);
  text-transform: uppercase;
}

.text-size-medium {
  font-size: 1.25rem;
  font-weight: 400;
}

.text-size-medium.weight-medium {
  font-weight: 500;
}

.text-quote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.heading-style-h2 {
  color: var(--dark-grey);
  text-shadow: none;
  font-family: Splinesans Variable, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

.heading-style-h2.max-width-large {
  color: var(--dark-grey);
}

.heading-style-h2.text-white.max-width-medium {
  max-width: none;
}

.heading-style-h2.grey {
  color: var(--grey);
}

.styleguide-heading {
  z-index: 4;
  background-color: var(--black);
  color: #fff;
  border-radius: 0;
  justify-content: flex-start;
  align-self: stretch;
  margin-bottom: 2rem;
  padding: .5rem 1rem;
  font-size: 2rem;
  position: static;
  top: 0;
}

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

.heading-style-h6 {
  font-family: Splinesans Variable, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.styleguide-item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
  display: flex;
}

.icon-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.styleguide-empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.styleguide-icon-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.heading-style-h5 {
  color: var(--white);
  font-family: Splinesans Variable, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
}

.heading-style-h5.margin-bottom.margin-tiny {
  margin: 0 0 .5rem;
}

.heading-style-h5.green {
  color: var(--light-green);
}

.heading-style-h1 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
}

.heading-style-h1.weight-normal {
  color: var(--dark-grey);
}

.heading-style-h1.weight-normal.max-width-large {
  max-width: 50rem;
  font-weight: 400;
}

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

.button {
  grid-column-gap: .5rem;
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  text-transform: none;
  border-radius: 10rem;
  align-items: center;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  transition: transform .35s;
  display: flex;
}

.button:hover {
  transform: scale(1.05);
}

.button.is-alternate {
  border-style: solid;
  border-color: var(--white);
  background-color: var(--white);
  color: #000;
}

.button.is-newsletter {
  transition: color .35s, background-color .35s;
}

.button.is-newsletter:hover {
  border-color: var(--light-green);
  background-color: var(--light-green);
  color: var(--black);
  transform: none;
}

.button.is-form {
  transition: color .35s, background-color .35s;
}

.button.is-form:hover {
  border-color: var(--light-green);
  background-color: var(--light-green);
  color: var(--black);
  transform: none;
}

.button.sectors {
  justify-content: center;
  margin-right: 20px;
}

.button.sectors.w--current {
  border-radius: 10rem;
}

.button.sectors.transparent {
  border-color: var(--black);
  background-color: rgba(0, 0, 0, 0);
}

.button.sectors.transparent:hover {
  background-color: rgba(23, 23, 23, 0);
}

.button.green {
  background-color: var(--light-green);
}

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

.heading-style-h4 {
  font-family: Splinesans Variable, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

.text-italic {
  font-style: italic;
}

.icon-xxsmall {
  width: 1rem;
  height: 1rem;
}

.styleguide-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: start;
  align-items: start;
  justify-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.styleguide-item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.weight-light {
  font-weight: 300;
}

.text-size-regular {
  text-shadow: none;
  font-size: 1rem;
}

.text-size-regular.max-width-medium {
  color: var(--black);
  text-shadow: none;
  display: flex;
}

.text-size-regular.max-width-medium.text-gray {
  color: var(--black);
}

.text-size-regular.max-width-medium.text-white {
  max-width: none;
  color: var(--white);
}

.text-size-regular.max-width-medium.green {
  color: var(--light-green);
}

.text-size-regular.max-width-medium.white {
  color: var(--white);
}

.text-size-regular.text-allcaps {
  color: var(--dark-grey);
  text-shadow: none;
}

.text-size-regular.text-allcaps.text-white, .text-size-regular.text-allcaps.white {
  color: var(--white);
}

.text-size-regular.text-gray, .text-size-regular.green {
  color: var(--light-green);
}

.text-size-regular.space {
  margin-top: 40px;
}

.weight-xbold {
  font-weight: 800;
}

.text-right {
  width: 100%;
  text-align: right;
}

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

.heading-style-h3 {
  font-family: Splinesans Variable, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.icon-large {
  width: 5rem;
  height: 5rem;
}

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

.form-input:hover, .form-input:focus {
  border: 1px solid var(--black);
}

.form-input::-ms-input-placeholder {
  color: #7c7c7c;
}

.form-input::placeholder {
  color: #7c7c7c;
}

.form-input.is-newsletter {
  background-color: var(--white);
  border-style: none;
  border-top-width: 1px;
  border-top-color: #000;
  border-bottom-width: 1px;
  border-bottom-color: #000;
  border-right-width: 1px;
  border-right-color: #000;
}

.form-input.is-text-area {
  height: auto;
  min-height: 8rem;
  border-radius: .5rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.styleguide-button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  align-items: center;
  justify-items: start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  display: grid;
}

.styleguide-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.styleguide-color {
  padding-bottom: 8rem;
}

.styleguide-color.is-black {
  background-color: var(--black);
  color: var(--black);
}

.styleguide-color.is-white {
  background-color: var(--white);
}

.styleguide-color.is-gray {
  background-color: var(--grey);
}

.styleguide-color.is-light-gray {
  background-color: var(--light-gray);
}

.styleguide-color.is-green {
  background-color: var(--light-green);
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-shadow: none;
  flex-wrap: wrap;
  align-items: flex-end;
  display: flex;
}

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

.button-group.sectors {
  justify-content: flex-start;
  margin-top: 40px;
  margin-bottom: 0;
}

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

.background-white {
  background-color: var(--white);
}

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

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

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

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

.styleguide-header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.styleguide-subheading {
  z-index: 3;
  background-color: var(--light-gray);
  color: var(--black);
  margin-bottom: 2rem;
  padding: .5rem 1rem;
  font-size: 2rem;
  position: static;
  top: 2rem;
}

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

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

.styleguide-colors {
  flex-direction: column;
  display: flex;
}

.text-size-small {
  font-size: .875rem;
}

.icon-small {
  width: 2rem;
  height: 2rem;
}

.styleguide-typography {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.rich-text h2, .rich-text h3, .rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text h5, .rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.rich-text p {
  margin-bottom: 1rem;
}

.rich-text a {
  text-decoration: underline;
}

.rich-text figcaption {
  border-left: 2px solid var(--black);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.icon-medium {
  width: 3rem;
  height: 3rem;
}

.text-size-large {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.padding-global {
  border-top: 0 rgba(255, 255, 255, 0);
  border-bottom: 0 rgba(255, 255, 255, 0);
  padding-left: 3%;
  padding-right: 3%;
}

.padding-global._1 {
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, .9) 36%, #fff);
  background-position: 0 0;
  border-top: 0 rgba(0, 0, 0, 0);
  border-bottom: 0 rgba(23, 23, 23, 0);
  margin-top: 0;
  margin-bottom: 0;
  position: static;
}

.padding-global.footer {
  background-image: linear-gradient(#000 8%, rgba(0, 0, 0, .8) 67%, rgba(0, 0, 0, .6)), url('../images/22-Converted.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  padding-top: 40px;
  padding-bottom: 0;
}

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

.text-span {
  text-transform: none;
}

.button-secondary-small {
  grid-column-gap: .5rem;
  border: 1px solid var(--grey);
  color: var(--black);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10rem;
  align-items: center;
  padding: .25rem 1.25rem;
  transition: transform .35s;
  display: flex;
}

.button-secondary-small:hover {
  transform: scale(1.05);
}

.button-secondary-small.is-alternate {
  border-color: var(--white);
  color: var(--white);
}

.button-secondary {
  grid-column-gap: .5rem;
  border: 1px solid var(--grey);
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10rem;
  align-items: center;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  transition: transform .35s;
  display: flex;
}

.button-secondary:hover {
  transform: scale(1.05);
}

.button-secondary.is-alternate {
  border-color: var(--white);
  color: var(--white);
}

.button-small {
  grid-column-gap: .5rem;
  border: 1.5px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 10rem;
  align-items: center;
  padding: .25rem 1rem;
  transition: transform .35s;
  display: flex;
}

.button-small:hover {
  transform: scale(1.05);
}

.button-small.is-alternate {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
}

.button-link {
  grid-column-gap: .5rem;
  border: 1px none var(--black);
  color: var(--black);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.styleguide-logo {
  width: 270px;
}

.background-light-gray {
  background-color: var(--light-gray);
}

.button-wrapper {
  justify-content: flex-start;
  display: flex;
}

.button-arrow {
  width: 1.4rem;
  color: var(--grey);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  display: flex;
}

.button-arrow.is-white {
  color: var(--light-green);
}

.button-arrow.is-1-7rem {
  width: 1.7rem;
  color: var(--light-green);
}

.button-arrow.is-1-7rem.text-white {
  color: var(--white);
}

.utility-button {
  grid-column-gap: .5rem;
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  padding: .25rem 1rem;
  transition: background-color .35s;
  display: flex;
}

.utility-button:hover {
  border-color: var(--light-green);
  background-color: var(--light-green);
  color: var(--black);
}

.navbar {
  width: 100%;
  height: 60px;
  background-color: var(--light-green);
  opacity: 1;
  color: var(--black);
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-clip: border-box;
  border-bottom: 0 rgba(197, 197, 197, 0);
  align-items: center;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navbar-container {
  width: 100%;
  height: 100%;
  max-width: 90rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.navbar-logo-link-wrapper {
  width: 180px;
  overflow: hidden;
}

.navbar-logo-link-wrapper.w--current {
  border-radius: 0;
}

.navbar-logo {
  width: 100%;
  transition: opacity .3s ease-in-out;
}

.navbar-logo:hover {
  opacity: .7;
  mix-blend-mode: normal;
}

.navbar-menu {
  align-items: center;
  display: flex;
  position: static;
  overflow: hidden;
}

.navbar-menu-button {
  padding: 0;
}

.styleguide-label {
  color: #1d1d1d;
  white-space: nowrap;
  cursor: context-menu;
  background-color: rgba(0, 0, 0, 0);
  padding: .25rem .5rem .25rem 0;
  font-size: .75rem;
  display: inline-block;
}

.empty-box {
  z-index: -1;
  height: 3rem;
  min-width: 3rem;
  background-color: #f6f6f6;
  position: relative;
}

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

.styleguide-spacing {
  border: 1px dashed #d3d3d3;
}

.section-padding-small {
  flex: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section-padding-medium {
  text-shadow: 0 0 rgba(0, 0, 0, 0), 0 .1px .2px rgba(0, 0, 0, .1), 0 .9px 1.9px rgba(0, 0, 0, .114), 0 5.1px 10.9px rgba(0, 0, 0, .125);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

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

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

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

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

.padding-top.padding-xhuge {
  padding: 0;
}

.padding-top.padding-xxlarge {
  margin-top: 4.1rem;
  padding: 0;
}

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

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

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

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

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

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

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

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

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

.margin-0 {
  margin: 0;
}

.margin-tiny {
  margin: .25rem;
}

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

.margin-large {
  margin: 3rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.hide {
  display: none;
}

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

.button-link-wrapper {
  height: 1.875rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.button-text-item {
  min-height: 1.875rem;
  color: var(--light-green);
  text-transform: none;
  text-shadow: none;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  display: flex;
}

.button-text-item.text-black {
  color: var(--black);
}

.button-text-item.text-green {
  color: var(--light-green);
}

.button-text-item.is-1-5rem {
  font-size: 1.5rem;
}

.button-text-item.is-1-5rem.text-white {
  color: var(--white);
}

.button-text-item.black {
  color: var(--black);
  font-weight: 500;
}

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

.navbar-button {
  grid-column-gap: .5rem;
  border: 1px none var(--black);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0);
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: .875rem;
  display: flex;
}

.navbar-button.is-contact {
  padding-right: 0;
}

.navbar-text-item {
  min-height: 1.875rem;
  color: var(--white);
  text-transform: none;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
}

.navbar-link-wrapper {
  height: 1.875rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.navbar-link-wrapper.idioma {
  width: 1.875rem;
  background-color: var(--white);
  color: var(--light-green);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  border: 1.5px solid #fff;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  margin-right: 4px;
}

.navbar-link-wrapper.idioma.en {
  width: 1.8rem;
  height: 1.8rem;
  background-color: rgba(255, 255, 255, 0);
  background-image: url('../images/gb.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.navbar-link-wrapper.idioma.en.w--current {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 3px;
  justify-content: center;
}

.navbar-link-wrapper.idioma.es {
  width: 1.8rem;
  height: 1.8rem;
  background-image: url('../images/es.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: rgba(255, 255, 255, 0);
}

.text-gray {
  color: var(--light-gray);
}

.hero-header-content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 0%;
  display: grid;
}

.hero-header-content-left {
  overflow: hidden;
}

.hero-header-content-right {
  margin-top: 3.5rem;
}

.hero-header-image-wrapper {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-header-image.parallax {
  display: none;
}

.label {
  background-color: var(--light-green);
  color: var(--white);
  border-radius: 10rem;
  margin-bottom: 1rem;
  padding: .25rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  display: inline-block;
}

.h1-gray-span {
  color: var(--light-green);
}

.stats-component {
  grid-column-gap: 3.5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  display: grid;
  overflow: hidden;
}

.stats-item {
  width: 100%;
  height: 100%;
  grid-row-gap: 3rem;
  border-left: 1.5px solid var(--light-green);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 1rem;
  display: flex;
}

.h2-gray-span {
  color: var(--light-green);
  text-shadow: none;
}

.section-services.background-black {
  background-image: linear-gradient(rgba(0, 0, 0, .81), rgba(0, 0, 0, .81)), url('../images/24-Converted.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.section-services.background-black._2 {
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, .7) 10%, rgba(0, 0, 0, .9) 50%, #000), url('../images/graphic-1.png');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.tagline-wrapper {
  grid-column-gap: .5rem;
  text-shadow: none;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  margin-bottom: 5rem;
  padding-top: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.tagline-wrapper._1rem-margin {
  margin-bottom: 1rem;
}

.tagline-wrapper._3rem-margin {
  margin-bottom: 3rem;
}

.tagline-icon {
  width: .75rem;
  height: auto;
  color: var(--light-green);
}

.services-component {
  margin-top: 5rem;
}

.service-accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.service-title {
  border-top: 1px solid var(--light-green);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  overflow: hidden;
}

.accordion-icon {
  width: 1.5rem;
  color: var(--white);
  align-self: auto;
  margin-left: 1.5rem;
  display: flex;
}

.service-description {
  overflow: hidden;
}

.service-description.border-bottom {
  border-bottom: 1px solid var(--light-green);
}

.heading-wrapper {
  overflow: hidden;
}

.section-marquee-text {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.section-marquee-text.background-black {
  background-color: rgba(23, 23, 23, 0);
}

.marquee-component {
  white-space: nowrap;
  flex-direction: column;
  display: flex;
}

.marquee-text-top {
  color: var(--grey);
  font-size: 10rem;
}

.marquee-text-bottom {
  color: var(--grey);
  align-self: flex-end;
  font-size: 10rem;
}

.section-portfolio {
  overflow: hidden;
}

.testimonial-component {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 5rem;
  padding-bottom: 7rem;
  position: relative;
}

.testimonial-mask {
  width: 33.33%;
  overflow: visible;
}

.testimonial-slide {
  padding-right: 2rem;
}

.testimonial-content {
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--border-gray);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: .75rem;
  padding-left: 1.5rem;
  display: flex;
}

.testimonial-logo-wrapper {
  margin-bottom: 3rem;
}

.testimonial-logo {
  max-height: 3rem;
}

.client-details {
  border-left: 1px solid var(--grey);
  flex-direction: column;
  padding-left: 1rem;
  display: flex;
}

.testimonial-arrow {
  width: 3rem;
  height: 3rem;
  background-color: var(--light-green);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  transition: transform .35s;
  display: flex;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.testimonial-arrow:hover {
  transform: translate(5px);
}

.testimonial-arrow.is-left {
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.testimonial-arrow.is-left:hover {
  transform: translate(-5px);
}

.testimonial-arrow-icon {
  width: 1rem;
  height: 1rem;
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-navigation {
  height: 1.5rem;
  font-size: .5rem;
  top: auto;
  bottom: 3%;
  left: 0%;
  right: 0%;
}

.tagline-title-wrapper {
  grid-column-gap: .5rem;
  align-items: center;
  display: flex;
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background-color: var(--light-green);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.horizontal-line.is-top {
  background-color: var(--light-green);
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.about-component {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.about-image-wrapper {
  height: 70vh;
  border-radius: .5rem;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
}

.services-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-blog {
  display: none;
}

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

.blog-component {
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}

.blog-list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.blog-image-wrapper {
  width: 100%;
  border-radius: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blog-tagline-wrapper {
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.blog-category-wrapper {
  background-color: var(--light-green);
  border-radius: 10rem;
  margin-right: 1rem;
  padding: .25rem .75rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-category-wrapper.w--current {
  border-bottom: 2px solid #000;
}

.section-newsletter {
  position: relative;
}

.newsletter-component {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  justify-items: center;
  display: grid;
}

.newsletter-content {
  flex: 1;
}

.newsletter-form-block {
  width: 100%;
  max-width: 30vw;
  margin-bottom: 0;
}

.newsletter-form {
  width: 100%;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
}

.signup-form-wrapper {
  width: 100%;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white);
  border-radius: 3rem 10rem 10rem 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  padding: .25rem .25rem .25rem 0;
  display: grid;
}

.success-message {
  background-color: var(--light-gray);
  border-radius: .5rem;
  padding: 1.5rem;
}

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

.error-message {
  border-radius: .5rem;
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.error-text {
  color: #e23939;
}

.corner-shape-left {
  width: 15rem;
  height: 17rem;
  border-bottom: 2px solid #6ce296;
  border-right: 2px solid #6ce296;
  border-bottom-right-radius: 4rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.corner-shape-right {
  width: 10rem;
  height: 15rem;
  border-top: 2px solid var(--light-green);
  border-left: 2px solid var(--light-green);
  opacity: 1;
  border-top-left-radius: 4rem;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.section-footer {
  position: relative;
}

.section-footer.background-black {
  background-color: #000;
}

.footer-top-wrapper {
  z-index: 5;
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  align-items: start;
  position: relative;
}

.footer-left-wrapper {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.footer-logo-link-wrapper {
  width: 180px;
  padding-left: 0;
}

.footer-logo-link-wrapper.w--current {
  width: 180px;
}

.footer-menu-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr 1fr;
  justify-content: stretch;
  align-items: start;
  justify-items: stretch;
}

.footer-link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  justify-content: space-between;
  align-items: flex-start;
  justify-items: start;
  display: flex;
}

.footer-link {
  color: var(--light-green);
  text-align: left;
  padding-top: .25rem;
  padding-bottom: 0;
  font-size: .875rem;
  text-decoration: none;
  transition: color .35s;
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-credit-text {
  color: var(--light-green);
  font-size: .875rem;
  text-decoration: none;
}

.footer-bottom-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}

.footer-logo {
  transition: opacity .2s;
}

.footer-logo:hover {
  opacity: .7;
}

.dv, .webflow {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
}

.corner-shape-right-top {
  width: 10rem;
  height: 5rem;
  border-bottom: 2px solid var(--light-green);
  border-left: 2px solid var(--light-green);
  border-bottom-left-radius: 4rem;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.text-span-6 {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
}

.service-title-wrapper {
  grid-column-gap: .5rem;
  align-items: center;
  display: flex;
}

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

.team-list {
  grid-column-gap: 1rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.team-item {
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--border-gray);
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 1rem;
  padding-left: 1rem;
  display: flex;
}

.team-image-wrapper {
  width: 100%;
  border-radius: .5rem;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .5rem;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.tabs-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  margin-bottom: 3rem;
  display: grid;
}

.tab-link {
  border: 1px solid var(--border-gray);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  transition: background-color .35s, border-color .35s;
}

.tab-link:hover {
  border-color: var(--light-green);
  background-color: rgba(108, 226, 150, .15);
}

.tab-link.w--current {
  border-color: var(--light-green);
  background-color: var(--light-green);
  border-radius: 10rem;
  font-weight: 500;
}

.section-featured-client-header {
  overflow: hidden;
}

.footer-address {
  color: var(--light-green);
  padding-top: .25rem;
  padding-bottom: .25rem;
  font-size: .875rem;
  text-decoration: none;
}

.section-featured-client-case-study {
  position: relative;
}

.section-80vh {
  max-height: 60rem;
  min-height: 80vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 5%;
  padding-bottom: 10%;
  display: flex;
}

.case-study-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.image-overlay {
  z-index: 1;
  background-color: rgba(0, 0, 0, .7);
  background-image: linear-gradient(rgba(0, 0, 0, .47), rgba(255, 255, 255, 0) 50%);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.case-study-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.case-study-content-wrapper {
  width: 70%;
  border-left: 1px solid var(--light-green);
  padding-left: 1rem;
  overflow: hidden;
}

.category-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  margin-bottom: 3rem;
  display: flex;
}

.category-tab {
  border: 1px solid var(--border-gray);
  color: var(--black);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  transition: background-color .35s, border-color .35s;
}

.category-tab:hover {
  border-color: var(--border-gray);
  background-color: rgba(23, 23, 23, .06);
}

.category-tab.w--current {
  border-color: var(--black);
  background-color: var(--black);
  color: var(--light-green);
  border-radius: 10rem;
  font-weight: 500;
}

.client-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.team-tabs {
  margin-top: 5rem;
}

.client-content {
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: .5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.5rem 2rem 2rem;
  transition: transform .35s;
  display: flex;
}

.client-content:hover {
  transform: scale(1.03);
}

.client-content.is-light-gray {
  background-color: var(--light-gray);
}

.category-tab-content {
  overflow: visible;
}

.hero-header-content-center {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.client-hero-header-image {
  height: 80vh;
  position: relative;
}

.client-hero-header-content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 5%;
  display: grid;
}

.section-client-content {
  overflow: hidden;
}

.client-content-component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.client-content-image-wrapper {
  overflow: hidden;
}

.client-content-image {
  width: 100%;
  height: 85vh;
  max-height: 60rem;
  object-fit: cover;
}

.client-content-wrapper {
  max-width: none;
  flex-direction: column;
  justify-content: space-between;
  margin: 5%;
  display: flex;
}

.client-details-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.client-description-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.client-logo {
  max-height: 3rem;
}

.blog-item-link-wrapper {
  width: 100%;
}

.featured-blog-component {
  position: relative;
}

.featured-blog-item {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-bottom: 5rem;
  display: grid;
}

.featured-blog-image-wrapper {
  width: 100%;
  border-radius: .5rem;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

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

.blog-author-wrapper {
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.blog-author-image-wrapper {
  margin-right: 1rem;
}

.blog-author-image {
  width: 3rem;
  height: 3rem;
  min-height: 3rem;
  min-width: 3rem;
  object-fit: cover;
  border-radius: 100%;
}

.blog-read-time-wrapper {
  display: flex;
}

.blog-posts-table {
  margin-top: 3rem;
}

.blog-hero-header-image {
  height: 60vh;
  position: relative;
}

.blog-header-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.blog-header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blog-hero-header-content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 5%;
  display: grid;
}

.section-contact-details.background-black {
  background-color: #000;
}

.contact-details-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.contact-item {
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--light-green);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 1rem;
  display: flex;
}

.section-form {
  overflow: hidden;
}

.form-component {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

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

.form-field-2col {
  grid-column-gap: 4rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-field-wrapper {
  position: relative;
}

.field-label {
  color: var(--grey);
  text-transform: none;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
}

.text-span-7 {
  color: var(--light-green);
}

.license-wrapper {
  width: 100%;
  min-height: 80dvh;
  grid-row-gap: 4rem;
  background-color: var(--light-gray);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.licenses-list {
  width: 100%;
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: grid;
}

.list-item {
  flex-direction: column;
  align-items: stretch;
  transition: transform .35s;
  display: flex;
}

.list-item:hover {
  transform: translate(0, -1rem);
}

.license-image-wrapper {
  width: 100%;
  border-radius: .625rem;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.license-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.text-span-2 {
  text-decoration: underline;
}

.image-reveal-overlay {
  width: 100%;
  height: 0%;
  background-color: #fff;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.changelog-wrapper {
  width: 100%;
  grid-row-gap: 4rem;
  background-color: #f6f6f6;
  border-radius: .625rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.changelog-header-content-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 5%;
  display: flex;
}

.div-block {
  width: 100%;
  position: relative;
}

.card-button-icon-inner-wrapper {
  flex-direction: column;
  display: flex;
  position: relative;
}

.display-m {
  width: auto;
  color: var(--white);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2em;
}

.card-content {
  width: 50%;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.card {
  max-height: 287px;
  max-width: 450px;
  background-color: var(--light-green);
  color: #fff;
  border: 1px #000;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card-button-icon-outer-wrapper {
  overflow: hidden;
}

.display-2xs {
  color: var(--white);
  letter-spacing: -.01em;
  text-shadow: 0 0 rgba(0, 0, 0, 0), 0 .1px .2px rgba(0, 0, 0, .1), 0 .9px 1.9px rgba(0, 0, 0, .114), 0 5.1px 10.9px rgba(0, 0, 0, .125);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2em;
}

.card-image {
  width: auto;
  height: 287px;
  border-radius: .25rem;
}

.card-title {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  overflow: hidden;
}

.card-button-icon {
  width: 1.25rem;
}

.card-button-icon.card-button-icon-absolute {
  position: absolute;
  top: 100%;
}

.card-button {
  width: 4rem;
  height: 4rem;
  background-color: var(--white);
  border-radius: 50rem;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
  box-shadow: 0 2px 1px rgba(0, 0, 0, .1);
}

.text-span-8, .text-span-9, .text-span-10, .text-span-11 {
  color: var(--white);
}

.text-span-12 {
  color: var(--white);
  font-weight: 500;
  line-height: 1;
}

.text-span-12.en {
  color: var(--white);
  font-weight: 500;
}

.text-span-13 {
  color: var(--light-green);
  text-transform: none;
}

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

.link {
  color: var(--light-green);
  font-size: .875rem;
}

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

.background-video {
  width: 100%;
  height: 100%;
  background-image: url('../images/dots.png');
  background-position: 0 0;
  background-size: 15px;
  align-items: flex-end;
  display: flex;
}

.marquee_wrapper {
  width: 100%;
  height: 2.5rem;
  aspect-ratio: auto;
  opacity: 1;
  background-color: #000;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
  top: 25%;
  overflow: hidden;
}

.marquee_wrapper._2 {
  background-color: #000;
}

.hide-2 {
  display: none;
}

.marquee {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  opacity: .7;
  color: #fff;
  text-transform: uppercase;
  mix-blend-mode: normal;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  display: flex;
}

.marquee._2 {
  opacity: 1;
  overflow: hidden;
}

.marquee_text {
  opacity: 1;
  color: var(--light-green);
  letter-spacing: 2px;
  font-family: Splinesans Variable, sans-serif;
  font-size: 25px;
  font-weight: 300;
  display: inline-block;
  overflow: hidden;
}

.marquee_text._2 {
  color: var(--light-green);
}

.text-span-14 {
  font-weight: 600;
}

.html-embed {
  display: block;
}

.sec-sectors {
  border-top: 1px solid var(--light-green);
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
}

.sec-sectors.final {
  display: block;
  position: -webkit-sticky;
  position: sticky;
}

.bold-text-2 {
  color: var(--light-green);
  font-weight: 400;
}

.button-wrapper-wa {
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
}

.button-whatsapp {
  grid-column-gap: .5rem;
  border: 1.5px solid var(--light-green);
  color: var(--white);
  text-align: center;
  text-transform: none;
  background-color: rgba(23, 23, 23, 0);
  border-radius: 0;
  align-items: center;
  padding: .5rem 1.5rem;
  font-size: .875rem;
  transition: transform .35s;
  display: none;
}

.button-whatsapp:hover {
  transform: scale(1.05);
}

.button-whatsapp.is-alternate {
  border-style: solid;
  border-color: var(--white);
  background-color: var(--white);
  color: #000;
}

.button-whatsapp.is-newsletter {
  transition: color .35s, background-color .35s;
}

.button-whatsapp.is-newsletter:hover {
  border-color: var(--light-green);
  background-color: var(--light-green);
  color: var(--black);
  transform: none;
}

.button-whatsapp.is-form {
  transition: color .35s, background-color .35s;
}

.button-whatsapp.is-form:hover {
  border-color: var(--light-green);
  background-color: var(--light-green);
  color: var(--black);
  transform: none;
}

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

.div-lottie-hero {
  width: 100%;
  height: 100%;
  padding-top: 58px;
  overflow: hidden;
}

.lottie-animation {
  width: 100vw;
  height: auto;
  overflow: hidden;
}

.lottie-animation._2 {
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: rotate(180deg);
}

.lottie-animation._1 {
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.bold-text-3 {
  font-weight: 600;
}

.text-span-15, .text-span-16, .text-span-17, .text-span-18, .text-span-19, .text-span-20, .text-span-21, .text-span-22, .text-span-23, .text-span-24, .text-span-25, .text-span-26, .text-span-27, .text-span-28, .text-span-29, .text-span-30 {
  color: var(--light-green);
}

.image {
  width: 100%;
}

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

.div-contact {
  width: 100%;
  height: 100%;
  border-left: 1px solid var(--light-green);
  padding-left: 1rem;
}

.text-span-31 {
  color: var(--light-green);
}

.div-block-3 {
  margin-left: 20px;
  display: flex;
}

.background-video-2 {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  display: block;
  position: static;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-187 {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(rgba(44, 30, 17, .75), rgba(0, 0, 0, .55) 50%, rgba(0, 0, 0, .55));
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-187._2 {
  opacity: .4;
  background-image: url('../images/dots.png');
  background-position: 0 0;
  background-size: 15px;
}

.image-157 {
  width: 458px;
}

.text-block-24 {
  color: var(--black);
  text-align: center;
  letter-spacing: .05em;
  margin-bottom: 2px;
  font-family: Satoshi, sans-serif;
  font-size: 10px;
  font-weight: 500;
  display: block;
}

.div-block-189 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.column-35 {
  text-align: right;
  justify-content: flex-end;
  padding-left: 2px;
  padding-right: 2px;
  display: flex;
}

.column-36 {
  padding-left: 2px;
  padding-right: 2px;
}

.container-12 {
  height: 100%;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 0%;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.button-4 {
  width: 170px;
  height: 37px;
  background-color: var(--light-green);
  color: #000;
  text-align: center;
  border-radius: 20px;
  margin-top: 40px;
  font-family: Splinesans Variable, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  transition: color .4s ease-in-out, background-color .4s ease-in-out;
}

.button-4:hover {
  background-color: var(--black);
  color: var(--light-green);
  font-weight: 400;
}

.text-span-32 {
  color: var(--light-green);
  font-weight: 700;
}

.text-block-26 {
  width: 100%;
  color: #fff;
  text-align: right;
  letter-spacing: 1px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
}

.text-block-26._2 {
  color: var(--light-green);
  font-family: Exo, sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.text-block-26._1 {
  color: #dac3a2;
  font-family: Exo, sans-serif;
  font-size: 28px;
  font-weight: 200;
}

.columns-15 {
  width: 31.4683%;
  margin-top: 20px;
}

.section-intro-2 {
  width: 100%;
  height: auto;
  object-fit: fill;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.div-top-logo {
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.columns-14 {
  flex-direction: row;
  margin-top: 0;
  display: flex;
}

.div-block-185 {
  width: 100%;
  height: auto;
  padding-top: 0;
  padding-bottom: 30px;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.div-lottie-home {
  width: 100%;
  height: 100%;
  padding-top: 0;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.div-lottie-home._2 {
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-lottie-home._1 {
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.div-lotties {
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.background-video-start {
  width: 100%;
  height: 100%;
  background-image: url('../images/dots.png');
  background-position: 0 0;
  background-size: 15px;
  background-attachment: scroll;
  align-items: flex-end;
  display: flex;
}

.background-video-3 {
  width: 100vw;
  height: 100vh;
}

.back-video {
  width: 100%;
  height: 100%;
  background-image: url('../images/dots.png');
  background-position: 0 0;
  background-size: 15px;
  align-items: flex-end;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-190 {
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, .7)), url('../images/dots.png');
  background-position: 0 0, 0 0;
  background-size: auto, 15px;
}

.heading {
  color: var(--light-green);
  letter-spacing: 1px;
  margin-top: 2rem;
  font-weight: 300;
}

.text-span-33 {
  font-weight: 500;
}

.link-4 {
  font-family: Splinesans Variable, sans-serif;
  font-weight: 600;
}

.columns-16 {
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
  display: flex;
}

.column-38 {
  padding-left: 0;
  padding-right: 0;
}

.column-38._1 {
  padding-right: 0;
}

.subtitle {
  letter-spacing: 3px;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.subtitle.gold {
  color: #dac3a2;
}

.subtitle.gold._2 {
  border: 1.5px solid var(--light-green);
  color: #666;
  background-color: rgba(0, 0, 0, 0);
  margin-right: 20px;
  padding: 7px 7px 7px 10px;
  text-decoration: none;
  transition: letter-spacing .25s ease-in-out;
}

.subtitle.gold._2:hover {
  letter-spacing: 4px;
}

.link-22 {
  color: var(--light-green);
  font-family: Satoshi, sans-serif;
  text-decoration: none;
  transition: letter-spacing .4s ease-in-out;
}

.link-22.w--current {
  transition: letter-spacing .4s ease-in-out;
}

.link-23 {
  color: var(--light-green);
  font-family: Satoshi, sans-serif;
  text-decoration: none;
  transition: letter-spacing .4s ease-in-out;
}

.white-text-2 {
  color: var(--light-green);
  text-align: justify;
  text-transform: none;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3em;
}

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

.margin-15.white-text {
  color: var(--light-green);
  text-transform: uppercase;
  margin-top: 0;
  font-size: 17px;
  font-weight: 600;
}

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

.cookie-button {
  width: 135px;
  height: 40px;
  color: #fff;
  letter-spacing: 3px;
  background-color: #619e9b;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: background-color .3s ease-in-out;
  display: flex;
}

.cookie-button:hover {
  background-color: #2eaf7e;
  border-bottom-style: solid;
  border-bottom-color: #203492;
}

.cookie-button._1 {
  background-color: var(--light-green);
  color: var(--black);
  border-radius: 2px;
  font-weight: 400;
}

.cookie-button._1:hover {
  background-color: var(--white);
  color: var(--black);
}

.cookie-button._2 {
  border: 1px solid var(--light-green);
  color: var(--light-green);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 2px;
  font-weight: 400;
}

.cookie-button._2:hover {
  background-color: rgba(0, 0, 0, 0);
}

.button-wrapper-3 {
  justify-content: flex-start;
  display: flex;
}

.link-33 {
  color: var(--light-green);
  padding-left: 0;
  padding-right: 0;
  font-size: 13px;
  font-weight: 700;
}

.right-floating-cookie-2 {
  z-index: 9998;
  width: 460px;
  background-color: var(--black);
  opacity: .9;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  mix-blend-mode: normal;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 30px;
  left: 30px;
  right: auto;
}

.text-span-34, .text-span-35 {
  color: var(--light-green);
}

.body-display {
  width: 100%;
  color: #111729;
  text-align: left;
  white-space: normal;
  font-size: 17px;
  font-style: normal;
  line-height: 1.6em;
}

.body-display.disclaimer {
  color: var(--black);
  text-shadow: none;
  margin-bottom: 20px;
  font-family: Satoshi, sans-serif;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5em;
}

.body-display.disclaimer.white {
  color: var(--white);
  margin-bottom: 30px;
  font-family: Satoshi, sans-serif;
}

.text-span-36 {
  font-weight: 600;
}

.italic-text-4 {
  color: var(--black);
  text-shadow: none;
  font-style: normal;
  font-weight: 600;
}

.text-span-37, .text-span-38 {
  text-shadow: none;
  font-weight: 600;
}

.text-span-39, .text-span-40, .text-span-41, .text-span-42 {
  font-weight: 600;
}

.link-17, .link-16, .link-18, .link-20, .link-19, .link-21 {
  color: var(--light-green);
}

.bold-text-4, .bold-text-5 {
  color: var(--light-green);
  text-transform: uppercase;
}

.div-block-8 {
  width: 90px;
  flex-direction: row;
  justify-content: space-between;
  margin-right: 20px;
  display: block;
}

.text-span-43, .text-span-44 {
  text-transform: uppercase;
}

.text-span-45, .text-span-46 {
  text-transform: uppercase;
  text-shadow: none;
}

.grid-2 {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}

.div-sectors {
  width: auto;
  height: 220px;
  background-image: url('../images/TM-electricty-generation.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: .5rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  display: flex;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 1px .4px rgba(0, 0, 0, .03), 0 2px .8px rgba(0, 0, 0, .04), 0 3.4px 1.6px rgba(0, 0, 0, .043), 0 5.4px 2.9px rgba(0, 0, 0, .047), 0 8.9px 5.3px rgba(0, 0, 0, .047), 0 15.4px 10.4px rgba(0, 0, 0, .05), 0 30.6px 22.8px rgba(0, 0, 0, .055);
}

.div-sectors:hover {
  border: 0 rgba(0, 0, 0, 0);
}

.div-sectors._1 {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 35%, #000 90%), url('../images/TM-electricty-generation.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  transition: opacity .2s;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 .1px .2px rgba(0, 0, 0, .1), 0 .9px 1.9px rgba(0, 0, 0, .114), 0 5.1px 10.9px rgba(0, 0, 0, .125);
}

.div-sectors._1:hover {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 35%, #000 90%), url('../images/TM-electricty-generation.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.div-sectors._2 {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 35%, #000 90%), url('../images/TM-industrial-oils.webp');
  transition: box-shadow .2s;
}

.div-sectors._2:hover {
  box-shadow: none;
}

.div-sectors._3 {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 35%, #000 90%), url('../images/TM-plastic-recycling.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.div-sectors._4 {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 35%, #000 90%), url('../images/TM-sustainable-agro.webp');
}

.div-sectors._5 {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 35%, #000 90%), url('../images/TM-photovoltaic-energy.jpg');
}

.div-sectors._6 {
  background-image: linear-gradient(rgba(255, 255, 255, 0) 35%, #000 90%), url('../images/TM-future-gas-stations.webp');
}

.text-sector-btt {
  width: auto;
  color: var(--white);
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
}

.text-span-47, .text-span-48, .text-span-49, .text-span-50, .text-span-51, .text-span-52, .text-span-53, .text-span-54, .text-span-55, .text-span-56, .text-span-57, .text-span-58, .text-span-59, .text-span-60, .text-span-61, .text-span-62, .text-span-63, .text-span-64, .text-span-65, .text-span-66, .text-span-67, .text-span-68, .text-span-69, .text-span-70, .text-span-71, .text-span-72, .text-span-73, .text-span-74, .text-span-75, .text-span-76, .text-span-77, .text-span-78, .text-span-79, .text-span-80, .text-span-81, .text-span-82, .text-span-83, .text-span-84 {
  color: var(--light-green);
}

.italic-text-5 {
  font-style: normal;
}

@media screen and (min-width: 1280px) {
  .right-floating-cookie-2 {
    width: 540px;
  }
}

@media screen and (min-width: 1440px) {
  .button-text-item {
    font-weight: 500;
  }

  .image-overlay {
    -webkit-text-fill-color: inherit;
    background-color: rgba(0, 0, 0, .55);
    background-clip: border-box;
  }

  .marquee_wrapper {
    justify-content: space-between;
  }

  .marquee {
    justify-content: center;
  }

  .div-block-2 {
    max-height: 60rem;
    min-height: 80px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-right: 0;
    display: flex;
  }

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

  .cookie-button {
    font-size: 16px;
  }

  .right-floating-cookie-2 {
    width: 540px;
  }
}

@media screen and (min-width: 1920px) {
  .grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .background-video-2 {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .div-block-189 {
    justify-content: center;
    margin-bottom: 207px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .column-34 {
    align-items: flex-start;
    display: flex;
  }

  .column-33 {
    height: 100px;
  }

  .button-4 {
    flex: none;
    display: block;
  }

  .columns-14 {
    margin-top: 0;
  }

  .white-text-2 {
    text-align: left;
    font-weight: 500;
  }

  .cookie-button {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 16px;
  }

  .right-floating-cookie-2 {
    width: 540px;
    justify-content: flex-start;
  }
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

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

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

  .weight-medium.text-green {
    text-transform: uppercase;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .styleguide-icon-list {
    grid-auto-flow: row;
  }

  .heading-style-h1 {
    font-size: 6.5vw;
  }

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

  .heading-style-h3 {
    font-size: 2.25rem;
  }

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

  .navbar-container {
    align-items: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

  .navbar-menu {
    background-color: var(--white);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    padding: 1rem 5% 2rem;
    position: absolute;
    overflow: auto;
  }

  .navbar-menu.is-page-height-tablet {
    background-color: var(--light-green);
    border-bottom: 0 rgba(0, 0, 0, 0);
    padding-top: 3rem;
    padding-bottom: 3rem;
    transition: height .5s;
  }

  .navbar-menu-button {
    width: 3rem;
    height: 3rem;
    border-radius: 10rem;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .navbar-menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .menu-icon {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-line-top {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    color: var(--white);
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-line-middle {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .menu-line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-line-bottom {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    padding-bottom: 0;
    padding-right: 0;
  }

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

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

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

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

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

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

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

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .hide-tablet {
    display: none;
  }

  .button-text-item.black {
    font-size: 1rem;
  }

  .navbar-button {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 1rem;
    display: flex;
  }

  .navbar-button.w--current {
    justify-content: center;
    padding-top: 0;
  }

  .navbar-button.is-contact {
    padding-bottom: 1rem;
    padding-right: 1rem;
  }

  .navbar-text-item {
    min-height: auto;
    color: rgba(108, 226, 150, 0);
    font-size: 1.5rem;
    display: flex;
  }

  .navbar-link-wrapper {
    height: 2.8rem;
  }

  .navbar-link-wrapper.idioma {
    width: 2.8rem;
    justify-content: center;
  }

  .navbar-link-wrapper.idioma.en {
    width: 1.8rem;
    justify-content: center;
    padding-left: 0;
  }

  .hero-header-content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    padding-top: 10%;
  }

  .hero-header-content-right {
    margin-top: 0;
  }

  .hero-header-image-wrapper {
    height: 60vh;
  }

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

  .h2-gray-span {
    text-shadow: none;
  }

  .tagline-wrapper {
    margin-bottom: 4rem;
  }

  .services-component {
    margin-top: 3.5rem;
  }

  .section-marquee-text {
    padding-top: 1.5rem;
  }

  .marquee-component {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .marquee-text-top, .marquee-text-bottom {
    font-size: 4rem;
  }

  .testimonial-component {
    margin-top: 3.5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-mask {
    width: 50%;
  }

  .testimonial-slide {
    width: 411px;
  }

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

  .about-image-wrapper {
    height: 50vh;
  }

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

  .blog-component {
    margin-top: 3.5rem;
  }

  .blog-list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-component {
    z-index: 4;
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    position: relative;
  }

  .newsletter-content {
    margin-right: 0;
  }

  .newsletter-form-block {
    max-width: 60vw;
  }

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

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

  .section-80vh {
    max-height: none;
    min-height: 60vh;
  }

  .image-overlay {
    background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(255, 255, 255, 0) 49%);
  }

  .client-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

  .client-hero-header-image {
    height: 60vh;
  }

  .client-hero-header-content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    padding-top: 10%;
  }

  .client-content-component {
    min-height: auto;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    padding-top: 4rem;
  }

  .client-content-image {
    height: 60vh;
    max-height: none;
  }

  .client-content-wrapper {
    max-width: none;
    grid-row-gap: 3rem;
    margin: 0% 3%;
  }

  .client-details-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }

  .featured-blog-image-wrapper {
    padding-top: 100%;
  }

  .featured-blog-content {
    padding-left: 2rem;
  }

  .blog-hero-header-image {
    height: 60vh;
  }

  .blog-hero-header-content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    padding-top: 10%;
  }

  .contact-details-grid {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .form-field-2col {
    grid-column-gap: 2rem;
  }

  .license-wrapper {
    padding-bottom: 10%;
    padding-left: 5%;
  }

  .licenses-list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .changelog-wrapper {
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 5%;
  }

  .changelog-header-content-wrapper {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    padding-top: 10%;
  }

  .display-m {
    font-size: 1.5rem;
  }

  .card {
    max-width: 411px;
    border-color: #313131;
  }

  .card-image {
    transform: translate(50%);
  }

  .marquee_wrapper {
    display: none;
  }

  .sec-sectors {
    min-height: auto;
    position: relative;
    top: 0;
  }

  .sec-sectors.final {
    position: relative;
  }

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

  .lottie-animation-2 {
    display: none;
  }

  .grid-contact {
    grid-row-gap: 50px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .div-block-3 {
    justify-content: space-around;
    margin-top: 40px;
    margin-left: 0;
  }

  .text-block-24 {
    width: 99.9999%;
    margin-bottom: 0;
  }

  .columns-14 {
    flex-direction: row;
  }

  .div-block-185 {
    padding-bottom: 40px;
  }

  .right-floating-cookie-2 {
    opacity: 1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    mix-blend-mode: normal;
    display: flex;
    position: fixed;
  }

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

  .text-sector-btt {
    font-size: 1.5rem;
  }
}

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

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

  .utility-form-block {
    padding: 3rem;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-xlarge {
    margin: 2.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;
  }

  .text-quote {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

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

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

  .heading-style-h1 {
    font-size: 6.5vw;
  }

  .button {
    padding: .25rem 1rem;
  }

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

  .text-size-regular, .text-size-regular.max-width-medium.text-gray {
    font-size: 1.2rem;
  }

  .text-size-regular.max-width-medium.green {
    text-align: left;
    justify-content: flex-start;
  }

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

  .text-size-large {
    font-size: 1.125rem;
  }

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

  .navbar {
    height: auto;
    min-height: 4rem;
  }

  .navbar-logo-link-wrapper {
    padding-left: 0;
  }

  .navbar-menu.is-page-height-tablet {
    padding-bottom: 3rem;
  }

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

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

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

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

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

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

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

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

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

  .margin-large {
    margin: 2rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .button-text-item.black {
    font-size: .9rem;
  }

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

  .hero-header-content-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
    padding-top: 15%;
  }

  .stats-component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .tagline-wrapper {
    margin-bottom: 3rem;
  }

  .service-title {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .accordion-icon {
    width: 1.75rem;
  }

  .marquee-component {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial-component {
    padding-bottom: 6rem;
  }

  .testimonial-mask {
    width: 80%;
  }

  .testimonial-slide {
    padding-right: 1.5rem;
  }

  .testimonial-content {
    padding: 1.5rem;
  }

  .testimonial-arrow.is-left {
    top: auto;
    bottom: 0%;
    left: 0%;
    right: auto;
  }

  .about-component, .blog-list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .newsletter-component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .newsletter-content {
    margin-right: 0;
  }

  .newsletter-form-block {
    max-width: 80vw;
  }

  .footer-top-wrapper {
    grid-row-gap: 3rem;
  }

  .footer-menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .footer-link-list {
    align-items: flex-start;
  }

  .footer-link {
    text-align: left;
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer-credit-text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }

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

  .team-image-wrapper {
    height: 100%;
  }

  .section-80vh {
    max-height: none;
  }

  .client-list {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .client-content {
    padding: 1.5rem;
  }

  .client-hero-header-content-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
    padding-top: 15%;
  }

  .client-content-component {
    padding-top: 4rem;
  }

  .client-details-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .featured-blog-item {
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 0;
    padding-bottom: 3rem;
  }

  .featured-blog-image-wrapper {
    padding-top: 66%;
  }

  .featured-blog-content {
    padding: 0;
  }

  .blog-hero-header-content-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
    padding-top: 15%;
  }

  .contact-details-grid {
    height: 83.1365%;
    grid-row-gap: 3rem;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    align-content: stretch;
  }

  .contact-item {
    flex-direction: column;
    justify-content: space-between;
  }

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

  .license-wrapper {
    min-height: 70dvh;
  }

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

  .license-image-wrapper {
    height: 100%;
  }

  .changelog-header-content-wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
    padding-top: 15%;
  }

  .display-m {
    font-size: 1.5rem;
  }

  .card-button-icon {
    width: 1rem;
  }

  .card-button {
    width: 3rem;
    height: 3rem;
  }

  .link {
    font-size: 1rem;
  }

  .marquee_wrapper {
    display: none;
  }

  .sec-sectors {
    position: relative;
    top: 0;
  }

  .button-whatsapp {
    padding: .25rem 1rem;
  }

  .link-2 {
    font-size: .9rem;
  }

  .link-3 {
    font-size: 1rem;
  }

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

  .image-157 {
    width: 384px;
  }

  .text-block-24 {
    font-size: 9px;
    line-height: 14px;
  }

  .div-block-189 {
    margin-bottom: 60px;
  }

  .column-34 {
    height: 50.0001%;
    flex-direction: row;
    justify-content: center;
    display: flex;
  }

  .column-33 {
    justify-content: center;
    display: flex;
  }

  .columns-15 {
    display: flex;
  }

  .div-top-logo {
    width: 100%;
  }

  .columns-14 {
    flex-direction: row;
    display: flex;
  }

  .div-block-185 {
    padding-bottom: 10px;
    display: block;
  }

  .div-lotties {
    display: none;
  }

  .cookie-content {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .right-floating-cookie-2 {
    max-width: 90vw;
    opacity: 1;
    mix-blend-mode: normal;
    bottom: 10px;
    left: 20px;
    right: 10px;
  }

  .div-block-8 {
    margin-top: 1.5rem;
  }

  .div-sectors._1, .div-sectors._2, .div-sectors._3, .div-sectors._4, .div-sectors._5, .div-sectors._6 {
    height: 180px;
  }

  .text-sector-btt {
    font-size: 1.1rem;
  }
}

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

  h2 {
    text-transform: none;
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: .875rem;
  }

  .utility-component {
    padding: 3%;
  }

  .utility-form-block {
    padding: 1.5rem;
  }

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

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

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

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

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

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

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

  .button.sectors {
    margin-right: 0;
  }

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

  .heading-style-h3 {
    font-size: 1.3rem;
  }

  .form-input.is-text-area {
    min-height: 11rem;
  }

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

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

  .button-arrow.is-1-7rem {
    width: 1.4rem;
  }

  .navbar {
    padding-left: 3%;
    padding-right: 3%;
  }

  .navbar-container {
    padding-top: .25rem;
    padding-bottom: .25rem;
  }

  .navbar-logo-link-wrapper {
    width: 160px;
  }

  .navbar-menu.is-page-height-tablet {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

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

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

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

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

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

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

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

  .hide-mobile-portrait {
    display: none;
  }

  .button-text-item.is-1-5rem {
    font-size: 1rem;
  }

  .navbar-button {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: .5rem;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-button.w--current {
    padding-bottom: 1rem;
  }

  .navbar-button.is-contact {
    padding-right: 0;
  }

  .navbar-text-item {
    font-size: 1.5rem;
  }

  .hero-header-content-wrapper {
    grid-template-columns: 1fr;
    padding-top: 20%;
    padding-bottom: 10%;
  }

  .hero-header-image-wrapper {
    height: 50vh;
  }

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

  .tagline-wrapper {
    margin-bottom: 3rem;
    padding-bottom: .5rem;
  }

  .tagline-wrapper._3rem-margin {
    margin-bottom: 2rem;
  }

  .marquee-component {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .marquee-text-top, .marquee-text-bottom {
    font-size: 3rem;
  }

  .testimonial-mask {
    width: 100%;
  }

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

  .newsletter-form-block {
    max-width: 100vw;
  }

  .signup-form-wrapper {
    grid-row-gap: .75rem;
    flex-direction: row;
    grid-template-columns: 1fr;
    display: flex;
  }

  .corner-shape-left {
    width: 10rem;
    height: 5.7rem;
    border-bottom-color: rgba(108, 226, 150, .31);
    border-right-color: rgba(108, 226, 150, .31);
    border-bottom-right-radius: 2rem;
  }

  .corner-shape-right {
    width: 8rem;
    height: 8.3rem;
    border-top-left-radius: 2rem;
  }

  .footer-top-wrapper {
    grid-row-gap: 48px;
  }

  .footer-menu-wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: 2.5rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .footer-link-list {
    align-items: stretch;
  }

  .footer-bottom {
    padding-bottom: 0;
  }

  .footer-bottom-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .corner-shape-right-top {
    width: 8rem;
    height: 3rem;
    border-bottom-left-radius: 2rem;
  }

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

  .team-image-wrapper {
    height: 40vh;
    padding-top: 0%;
  }

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

  .section-80vh {
    min-height: 70vh;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .image-overlay {
    background-color: rgba(0, 0, 0, .65);
  }

  .case-study-content-wrapper {
    width: 80%;
  }

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

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

  .client-hero-header-image {
    height: 50vh;
  }

  .client-hero-header-content-wrapper {
    grid-template-columns: 1fr;
    padding-top: 20%;
    padding-bottom: 10%;
  }

  .client-content-component {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .client-content-image {
    height: 50vh;
  }

  .client-content-wrapper {
    margin-left: 5%;
    margin-right: 5%;
  }

  .client-details-wrapper {
    grid-row-gap: 1.5rem;
  }

  .featured-blog-item {
    overflow: hidden;
  }

  .blog-hero-header-image {
    height: 50vh;
  }

  .blog-hero-header-content-wrapper {
    grid-template-columns: 1fr;
    padding-top: 20%;
    padding-bottom: 10%;
  }

  .contact-details-grid {
    overflow: hidden;
  }

  .section-form {
    padding-top: 3%;
  }

  .contact-form, .form-field-2col {
    grid-row-gap: 1.5rem;
  }

  .license-wrapper {
    min-height: 80dvh;
    justify-content: center;
    padding-bottom: 5%;
  }

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

  .license-image-wrapper {
    padding-top: 90%;
  }

  .changelog-wrapper {
    text-align: center;
    justify-content: center;
    padding-bottom: 10%;
    padding-left: 3%;
    padding-right: 3%;
  }

  .changelog-header-content-wrapper {
    grid-template-columns: 1fr;
    padding-top: 20%;
    padding-bottom: 10%;
  }

  .display-m {
    font-size: 1rem;
  }

  .card-content {
    padding: 1rem;
  }

  .card {
    max-width: 90vw;
  }

  .marquee_wrapper._2 {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .hide-2 {
    display: none;
  }

  .marquee {
    display: flex;
    overflow: hidden;
  }

  .sec-sectors {
    height: 20%;
  }

  .grid {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
  }

  .lottie-animation._1 {
    height: auto;
  }

  .div-block-189 {
    margin-bottom: 180px;
    display: block;
  }

  .container-12 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-block-26._2, .text-block-26._1 {
    font-size: 23px;
  }

  .div-top-logo {
    width: 100%;
  }

  .columns-14 {
    flex-direction: column;
  }

  .div-block-185 {
    display: block;
  }

  .div-lottie-home._2 {
    width: 100vw;
  }

  .div-lottie-home._1 {
    width: 100vw;
    height: auto;
    display: flex;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .div-lotties {
    display: flex;
  }

  .heading {
    text-align: center;
  }

  .white-text-2 {
    text-align: center;
    flex-direction: column;
    display: flex;
  }

  .margin-15.white-text {
    text-align: center;
    justify-content: center;
    display: flex;
  }

  .cookie-content.mobile-vertical {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .cookie-button {
    width: 155px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .button-wrapper-3 {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
  }

  .link-33 {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .right-floating-cookie-2 {
    width: 100%;
    height: auto;
    max-width: none;
    opacity: .9;
    mix-blend-mode: normal;
    border-radius: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 0;
    display: flex;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .div-block-8 {
    margin-bottom: 20px;
    margin-right: 0;
  }

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

  .div-sectors._1 {
    height: 180px;
  }

  .text-sector-btt {
    font-size: 1.1rem;
  }
}

#w-node-_9ed194b7-de02-05d8-f1f9-5874d340751d-bfaf3bc1 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ab86d68f-561a-9947-0ccb-b0b9e547a7fc-e547a7f6 {
  align-self: stretch;
}

#w-node-ab86d68f-561a-9947-0ccb-b0b9e547a803-e547a7f6, #w-node-ce044149-d5ae-8422-92c6-d6fef3d7baae-e547a7f6 {
  align-self: stretch;
  justify-self: start;
}

#w-node-ab86d68f-561a-9947-0ccb-b0b9e547a811-e547a7f6 {
  align-self: stretch;
  justify-self: end;
}

#w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-bfaf3bd7, #w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-bfaf3be0 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_26f59051-b0d7-de4e-5cd1-fcf03a4bd602-bfaf3be0, #w-node-_38321577-c4a3-12c9-1f88-aba214114cab-bfaf3be0, #w-node-d5d5a358-4819-5fe2-09a6-ffc4b94ab774-bfaf3be0, #w-node-_13d2f1b6-5700-374f-5c50-8cfe02329f37-bfaf3be0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-bfaf3c2a, #w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-bfaf3c43 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-bfaf3c44 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-bfaf3c44 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86220-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86225-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86234-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623a-bfaf3c44 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86244-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86249-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86253-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86258-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86294-bfaf3c44 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d7-bfaf3c44 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86310-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86315-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86320-bfaf3c44 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86350-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8636a-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86389-bfaf3c44 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86393-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8638e-bfaf3c44, #w-node-_69697395-c964-230e-7019-6949a42c6a9a-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863da-bfaf3c44 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86407-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86415-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86420-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc86438-bfaf3c44, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864d0-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea71-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea73-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea74-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea76-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea78-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea79-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea7b-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea7d-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea7e-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea80-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea82-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea83-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea85-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea87-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea88-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea8a-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea8c-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea8d-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea8f-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea91-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea92-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea94-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea95-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea97-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea98-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea9a-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea9b-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea9d-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fea9e-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaa0-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaa1-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaa3-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaa4-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaa6-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaac-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaae-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaaf-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feab1-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feab3-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feab4-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feab6-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feab8-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feab9-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feabb-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feabd-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feabe-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feac0-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feac2-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feac3-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feac5-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaca-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feacd-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feacf-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4fead2-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4fead7-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feadc-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feae1-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feae6-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaeb-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaed-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaee-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaf0-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaf1-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaf3-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaf4-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaf6-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaf7-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaf9-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feafa-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feafc-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feafd-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feaff-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb00-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb02-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb03-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb05-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb06-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb08-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb09-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb0b-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb0c-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb0e-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb0f-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb11-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb12-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb14-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb15-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb17-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb18-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb1a-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb1b-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb1d-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb1e-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb20-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb21-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb23-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb24-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb26-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb27-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb29-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb2a-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb2c-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb2d-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb32-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb35-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb37-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb3a-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb3f-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb44-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb49-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb4e-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb53-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb55-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb56-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb58-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb59-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb5b-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb5c-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb5e-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb5f-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb61-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb62-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb64-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb65-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb67-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb68-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb6a-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb6b-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb6d-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb6e-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb70-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb71-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb73-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb74-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb76-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb77-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb79-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb7a-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb7c-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb7d-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb7f-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb80-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb82-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb83-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb85-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb86-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb88-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb89-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb8b-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb8c-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb8e-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb8f-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb91-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb92-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb94-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb95-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb9a-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb9c-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feb9d-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feba1-bfaf3c44, #w-node-d2094e8f-ced3-180f-efa9-c25f1f4feba3-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feba4-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feba8-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4feba9-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4febad-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4febae-bfaf3c44 {
  justify-self: start;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4febb2-bfaf3c44 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d2094e8f-ced3-180f-efa9-c25f1f4febb3-bfaf3c44 {
  justify-self: start;
}

#w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-f271cb77 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_9ed194b7-de02-05d8-f1f9-5874d340751d-01e12e18 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_8d4f5975-c929-1bba-d629-df9f4d4112dc-4d4112d6 {
  align-self: stretch;
}

#w-node-_8d4f5975-c929-1bba-d629-df9f4d4112f0-4d4112d6 {
  align-self: stretch;
  justify-self: start;
}

#w-node-_8d4f5975-c929-1bba-d629-df9f4d411300-4d4112d6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
  justify-self: start;
}

#w-node-_8d4f5975-c929-1bba-d629-df9f4d41130d-4d4112d6 {
  align-self: stretch;
  justify-self: end;
}

#w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-531fe951, #w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-33d4231b, #w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-9893b7fc, #w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-e245e881 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_26f59051-b0d7-de4e-5cd1-fcf03a4bd602-e245e881, #w-node-_38321577-c4a3-12c9-1f88-aba214114cab-e245e881, #w-node-d5d5a358-4819-5fe2-09a6-ffc4b94ab774-e245e881, #w-node-_13d2f1b6-5700-374f-5c50-8cfe02329f37-e245e881 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_015477aa-12e2-fec9-6f76-b4a1b9cdd192-9bad70e4 {
  grid-area: 1 / 1 / 2 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-_9ed194b7-de02-05d8-f1f9-5874d340751d-bfaf3bc1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-ab86d68f-561a-9947-0ccb-b0b9e547a803-e547a7f6 {
    justify-self: start;
  }

  #w-node-ce044149-d5ae-8422-92c6-d6fef3d7baae-e547a7f6 {
    justify-self: center;
  }

  #w-node-ab86d68f-561a-9947-0ccb-b0b9e547a811-e547a7f6 {
    justify-self: end;
  }

  #w-node-_9ed194b7-de02-05d8-f1f9-5874d340751d-01e12e18 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8d4f5975-c929-1bba-d629-df9f4d4112f0-4d4112d6 {
    justify-self: start;
  }

  #w-node-_8d4f5975-c929-1bba-d629-df9f4d411300-4d4112d6 {
    justify-self: center;
  }

  #w-node-_8d4f5975-c929-1bba-d629-df9f4d41130d-4d4112d6 {
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ab86d68f-561a-9947-0ccb-b0b9e547a802-e547a7f6 {
    justify-self: auto;
  }

  #w-node-ab86d68f-561a-9947-0ccb-b0b9e547a803-e547a7f6, #w-node-ce044149-d5ae-8422-92c6-d6fef3d7baae-e547a7f6 {
    justify-self: start;
  }

  #w-node-ab86d68f-561a-9947-0ccb-b0b9e547a811-e547a7f6 {
    justify-self: end;
  }

  #w-node-_8d4f5975-c929-1bba-d629-df9f4d4112ef-4d4112d6 {
    justify-self: auto;
  }

  #w-node-_8d4f5975-c929-1bba-d629-df9f4d4112f0-4d4112d6, #w-node-_8d4f5975-c929-1bba-d629-df9f4d411300-4d4112d6 {
    justify-self: start;
  }

  #w-node-_8d4f5975-c929-1bba-d629-df9f4d41130d-4d4112d6 {
    justify-self: end;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ab86d68f-561a-9947-0ccb-b0b9e547a811-e547a7f6, #w-node-_8d4f5975-c929-1bba-d629-df9f4d41130d-4d4112d6 {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Splinesans Variable';
  src: url('../fonts/SplineSans-Variable.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}