:root {
  --primary: #3a4443;
  --neutral-1: #1c211c;
  --white: white;
  --secondary: #ffbb6e;
  --tertiary: #8cbce8;
  --neutral-2: #424f40;
  --neutral-3: #7f8e7d;
  --neutral-4: #bec6bd;
  --neutral-5: #eef1ef;
}

.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: #333;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

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

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.4em;
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.1;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.1;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.1;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.1;
}

p {
  margin-bottom: 10px;
  font-size: 1em;
}

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

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

.section.bg-primary {
  background-color: var(--primary);
}

.section.bg-secondary {
  background-color: #0382cb;
}

.section.no-padding-bottom {
  padding-bottom: 0;
}

.section.bg-secondary-copy {
  background-color: var(--neutral-1);
  background-image: url('../images/mondosfondo.png');
  background-position: 50%;
  background-size: cover;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container.tight {
  max-width: 800px;
}

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

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-tertiary {
  background-color: var(--tertiary);
}

.bg-neutral-1 {
  background-color: var(--neutral-1);
}

.bg-neutral-2 {
  background-color: var(--neutral-2);
}

.bg-neutral-3 {
  background-color: var(--neutral-3);
}

.bg-neutral-4 {
  background-color: var(--neutral-4);
}

.bg-neutral-5 {
  background-color: var(--neutral-5);
}

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

.text-neutral-1 {
  color: var(--neutral-1);
}

.text-neutral-4 {
  color: var(--neutral-4);
}

.text-neutral-5 {
  color: var(--neutral-5);
}

.text-small {
  font-size: .8em;
}

.text-large {
  font-size: 1.2em;
}

.text-small-caps {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 700;
}

.text-page-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 600;
  line-height: 1.1;
}

.text-page-subtitle {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 500;
  line-height: 1.1;
}

.text-section-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.1;
}

.text-section-title.text-neutral-1 {
  color: var(--neutral-1);
}

.text-section-subtitle {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.6em;
  line-height: 1.6;
}

.text-section-subtitle.text-center.reveal {
  color: var(--neutral-5);
}

.section-title {
  width: 70%;
  max-width: 500px;
  margin-bottom: 20px;
}

.section-title.location-center {
  margin-left: auto;
  margin-right: auto;
}

.section-title.location-center.text-center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section-title.location-center.text-center.reveal {
  width: 80%;
}

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

.section-title.full-width {
  width: auto;
}

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

.grid-1-2.tools {
  align-items: center;
}

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

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

.hero-wrap {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.hero-content-wrap {
  text-align: center;
  max-width: 530px;
}

.hero-title {
  color: var(--primary);
  letter-spacing: .02em;
  font-size: 2em;
  font-weight: 500;
}

.hero-subtitle {
  color: var(--neutral-2);
  margin-top: 20px;
  font-size: 1.2em;
}

.hero-image {
  border-radius: 0%;
  width: 350px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 48px;
}

.feature-title {
  color: var(--neutral-1);
  margin-top: 10px;
  font-size: 1.6em;
}

.feature-text {
  color: var(--neutral-2);
  font-weight: 500;
  line-height: 2.2;
}

.section-marker {
  background-color: #0382cb;
  width: 42px;
  height: 8px;
  margin-bottom: 20px;
}

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

.reveal {
  border-radius: 20px;
}

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

.contact-links-wrap {
  justify-content: center;
  display: flex;
}

.contact-link-wrap {
  color: var(--neutral-1);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 8px;
  padding: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
}

.contact-link-wrap:hover {
  opacity: .6;
}

.contact-link-text {
  color: var(--neutral-4);
}

.animated-arrow-wrap {
  border: 2px solid var(--primary);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 90px;
  display: flex;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}

.animated-arrow-icon {
  width: 30px;
}

.previous-client-wrap {
  border: 1px solid var(--neutral-5);
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.previous-client-wrap.reveal {
  background-image: linear-gradient(#00000080, #00000080);
}

.previous-client-logotype {
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.square-helper {
  justify-content: center;
  align-items: center;
  height: 0;
  margin-bottom: 100%;
  display: flex;
}

.tools-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.tool-wrap {
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.tool-icon {
  width: 24px;
  margin-right: 8px;
}

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

.work-example-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 320px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.work-example-image {
  object-fit: none;
  object-position: 30% 20%;
  min-width: 100%;
  max-width: none;
  min-height: 100%;
}

.work-example-title-wrap {
  background-image: linear-gradient(to top, #00000080 15%, #0000);
  padding: 30px 12px 26px;
  position: absolute;
  inset: auto 0% 0%;
}

.hero-hello-text {
  color: var(--primary);
  font-size: 64px;
  font-weight: 500;
  position: absolute;
}

.single-item-form-text-field {
  background-color: #0000;
  border: 0 #000;
  border-radius: 8px;
  margin: 6px 0 6px 6px;
  font-size: 12px;
}

.footer-logotype {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.social-icons-wrap {
  display: flex;
}

.social-icons-wrap.space-top {
  margin-top: 10px;
}

.light-link {
  color: #fff;
  text-decoration: underline;
}

.footer-link {
  opacity: .8;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-link:hover {
  opacity: 1;
}

.footer-form {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  align-items: center;
  display: flex;
}

.footer-content-wrap {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form-button {
  letter-spacing: .4px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 11px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: opacity .2s;
}

.form-button:hover {
  opacity: .8;
}

.form-button.small {
  border-radius: 10px;
  padding: 5px 10px;
  font-size: 11px;
}

.form-button.small.single-item-form-button {
  background-color: var(--primary);
  color: #fff;
  margin: 6px;
  font-weight: 400;
}

.footer-logotype-wrap {
  text-align: center;
  margin-top: 32px;
}

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

.social-icon-wrap {
  opacity: .6;
  width: 32px;
  height: 32px;
  margin-right: 20px;
  transition: opacity .2s;
}

.social-icon-wrap:hover {
  opacity: 1;
}

.social-icon-wrap.last {
  margin-right: 0;
}

.social-icon {
  width: 100%;
}

.footer-link-wrap {
  margin-top: 10px;
}

.form-block {
  width: 100%;
}

.hero-logotype {
  width: 64px;
  height: 64px;
  margin-top: 40px;
  position: absolute;
  top: 0;
}

.small-section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.small-section.bg-white {
  background-color: #fff;
}

.medium-width-content {
  direction: ltr;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  position: relative;
}

.no-space-top {
  margin-top: 0;
}

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

.margin-header {
  margin-right: 30px;
  position: sticky;
  top: 110px;
}

.section-title-2 {
  max-width: 600px;
  margin-bottom: 32px;
}

.section-subheading {
  opacity: .8;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

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

.code-span {
  color: #000;
  background-color: #faf8f0;
  border-radius: 4px;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 14px;
}

.text-large {
  font-weight: 500;
}

.subheading-small {
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
}

.style-guide-marker {
  margin-bottom: 30px;
  font-size: 10px;
}

.style-guide-color-grid {
  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;
  display: grid;
}

.style-guide-color-block {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  width: 100px;
  height: 80px;
  position: relative;
  overflow: hidden;
}

.grid-1-2-text {
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  justify-content: space-between;
}

.no-space-bottom {
  margin-bottom: 0;
}

.button {
  background-color: var(--primary);
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 400;
  transition: opacity .2s, transform .2s, box-shadow .2s;
}

.button:hover {
  opacity: .9;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px #0000001a;
}

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

.text-field {
  background-color: #52503b05;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 0;
}

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

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

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

.image {
  text-align: center;
  width: 64px;
  max-width: 100%;
  margin-top: 40px;
}

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

.hero-image-copy {
  background-image: linear-gradient(#195492, #fff);
  border-radius: 0%;
  width: 350px;
  margin-bottom: 20px;
}

.image-2 {
  text-align: center;
  width: 64px;
  margin-top: 40px;
}

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

.section-4 {
  text-align: center;
  margin-top: 40px;
}

.image-3 {
  text-align: center;
  width: 64px;
}

.section-5 {
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
  margin-top: 310px;
  display: flex;
}

.text-block {
  color: var(--neutral-3);
}

.text-section-title-copy {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.1;
}

.text-section-title-copy.text-neutral-1 {
  color: var(--neutral-1);
}

.text-section-title-copy.text-neutral-1-copy {
  color: var(--white);
}

.section-5-copy {
  flex-flow: column wrap;
  flex: 0 auto;
  place-content: center;
  align-items: stretch;
  margin-top: 70px;
  display: flex;
}

.previous-client-logotype-copy {
  width: 25px;
  height: auto;
  margin-top: -80px;
  margin-left: -40px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.previous-client-logotype-2 {
  width: 25px;
  height: auto;
  margin-top: -80px;
  margin-left: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.work-example-image2 {
  object-fit: none;
  object-position: 30% 20%;
  min-width: 100%;
  max-width: none;
  min-height: 100%;
}

.work-example-image3 {
  object-fit: none;
  object-position: 0% 0%;
  min-width: 100%;
  max-width: none;
  min-height: 100%;
}

.background-video {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .section-title {
    width: auto;
    max-width: 75%;
  }

  .grid-1-2.tools {
    align-items: center;
  }

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

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

  .animated-arrow-wrap {
    margin-bottom: 20px;
  }

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

  .work-example-wrap {
    height: 200px;
  }

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

  .small-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .small-section.bg-white {
    padding-top: 170px;
  }

  .medium-width-content {
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .section-title {
    max-width: 100%;
  }

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

  .previous-client-logotype {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
  }

  .tools-wrap {
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .medium-width-content {
    max-width: none;
  }

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

  .margin-header {
    margin-right: 0;
    position: static;
  }

  .grid-1-2-2, .style-guide-color-grid, .grid-1-2-text {
    grid-template-columns: 1fr;
  }

  .previous-client-logotype-copy {
    width: 25px;
    height: auto;
    margin-top: -62px;
    margin-left: -33px;
  }

  .previous-client-logotype-2 {
    width: 25px;
    height: auto;
    margin-top: -61px;
    margin-left: 9px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

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

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

  .hero-wrap {
    height: 90vh;
  }

  .contact-links-wrap {
    flex-direction: column;
    align-items: center;
  }

  .image-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .social-icon-wrap {
    margin-right: 10px;
  }

  .small-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .small-section.bg-white {
    padding-top: 140px;
  }

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

  .previous-client-logotype-copy {
    width: 25px;
    height: auto;
    margin-top: -64px;
    margin-left: -33px;
  }

  .previous-client-logotype-2 {
    width: 25px;
    height: auto;
    margin-top: -63px;
    margin-left: 10px;
  }
}

#w-node-_85c7c48b-9aa8-f67f-c90a-9ef04ae8d3c2-1e2e2359 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_85c7c48b-9aa8-f67f-c90a-9ef04ae8d3e1-1e2e2359 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_85c7c48b-9aa8-f67f-c90a-9ef04ae8d3f1-1e2e2359 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_84631e89-9f67-adde-787c-7cf4697447c7-1ed1be84, #w-node-_84631e89-9f67-adde-787c-7cf4697447cb-1ed1be84, #w-node-_63b7dbe0-5d7f-ed23-6b33-422b76844b85-1ed1be84, #w-node-_63b7dbe0-5d7f-ed23-6b33-422b76844b89-1ed1be84, #w-node-_3901260d-2cb2-a1d7-22e9-a40cb68a106d-1ed1be84, #w-node-_3901260d-2cb2-a1d7-22e9-a40cb68a1071-1ed1be84 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_10cc05d1-acb3-b027-8f9e-49b41ccc44ae-7ed1be81, #w-node-_3ca710d4-998c-2f87-a3b5-9b9b969b09f1-7ed1be81 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7ec9111e-2ff7-e852-034b-9354999ad793-7ed1be81 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_5eab15d1-328a-39a7-4942-2cd4f8726ea5-7ed1be81 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_89c246cc-b675-178a-baa4-bd031ce6e3fd-7ed1be81, #w-node-_89c246cc-b675-178a-baa4-bd031ce6e401-7ed1be81 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_194214ea-2b4f-3bcf-5196-9b638c34608f-8fd1be7c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_194214ea-2b4f-3bcf-5196-9b638c346093-8fd1be7c {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: end;
}

@media screen and (max-width: 767px) {
  #w-node-_85c7c48b-9aa8-f67f-c90a-9ef04ae8d3e1-1e2e2359, #w-node-_85c7c48b-9aa8-f67f-c90a-9ef04ae8d3f1-1e2e2359 {
    grid-column: span 1 / span 1;
  }

  #w-node-_84631e89-9f67-adde-787c-7cf4697447c7-1ed1be84, #w-node-_63b7dbe0-5d7f-ed23-6b33-422b76844b85-1ed1be84, #w-node-_3901260d-2cb2-a1d7-22e9-a40cb68a106d-1ed1be84, #w-node-_10cc05d1-acb3-b027-8f9e-49b41ccc44ae-7ed1be81, #w-node-_7ec9111e-2ff7-e852-034b-9354999ad793-7ed1be81, #w-node-_89c246cc-b675-178a-baa4-bd031ce6e3fd-7ed1be81 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_194214ea-2b4f-3bcf-5196-9b638c34608f-8fd1be7c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_194214ea-2b4f-3bcf-5196-9b638c346093-8fd1be7c {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: end;
  }
}


