/*
* Copyright (c) 2023 Rafael da Silva Rocha.
* See /LICENSE and /COPYING for more information.
*
* Based on theme by Nikolai Bain originally available at Webflow.
* 
*/

html {
  scroll-behavior: smooth;
}
body {
  background-color: #fff;
  font-family: Inter, sans-serif;
  color: #1d1d1d;
  font-size: 16px;
  line-height: 20px;
}
h1 {
  margin-top: 0px;
  margin-bottom: 24px;
  font-size: 45px;
  line-height: 1.25em;
  font-weight: 500;
}
h2 {
  margin-top: 0px;
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.2em;
  font-weight: 500;
}
h3 {
  margin-top: 0px;
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.4em;
  font-weight: 500;
}
h4 {
  margin-top: 0px;
  margin-bottom: 12px;
  color: #33383f;
  font-size: 22px;
  line-height: 1.4em;
  font-weight: 600;
}
h5 {
  margin-top: 0px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
h6 {
  margin-top: 0px;
  margin-bottom: 5px;
  color: #99a4af;
  font-size: 13px;
  line-height: 1.5em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
p {
  margin-bottom: 16px;
  opacity: 0.9;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 400;
}
a {
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
  /*color: #333;*/
  color: #626a72;
  text-decoration: none;
}
ul {
  margin-top: 0px;
  margin-bottom: 16px;
  padding-left: 20px;
}
li {
  margin-bottom: 8px;
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.4em;
}
img {
  display: inline-block;
  max-width: 100%;
}
label {
  display: block;
  margin-bottom: 6px;
  color: #626a72;
  font-size: 15px;
  font-weight: 400;
}
em {
  font-style: italic;
  letter-spacing: -0.5px;
}
blockquote {
  margin-bottom: 16px;
  padding: 10px 20px;
  border-left: 5px solid rgba(255, 1, 1, 0.15);
  color: #33383f;
  font-size: 18px;
  line-height: 1.4em;
}
figcaption {
  margin-top: 12px;
  text-align: center;
}

/** STRUCTURAL */
.logo-div {
  display: block;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}
/** nav */
.nav-container {
  left: 0px;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 70px;
  max-width: 1230px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav-link {
  margin-right: 4px;
  margin-left: 4px;
  padding: 6px 8px;
  background-color: transparent;
  -webkit-transition: background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: background-color 200ms ease, transform 200ms ease, color 200ms ease;
  transition: background-color 200ms ease, transform 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  color: #626a72;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}
.nav-link:hover {
  opacity: 0.75;
}
.nav-link.cta-button:hover {
  opacity: 1;
}
.nav-link:active {
  color: #626a72;
}
.nav-link.w--current {
  color: #1d1d1d;
}
.nav-link.cta-span {
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 8px;
  /*background-color: #1d1d1d;*/
  background-color: #eee;
  box-shadow: 0 2px 0 0 #f5f6f7;
  -webkit-transition: box-shadow 200ms ease, background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, background-color 200ms ease, transform 200ms ease, color 200ms ease;
  transition: box-shadow 200ms ease, background-color 200ms ease, transform 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  color: #333;
  cursor: default;
  opacity: 0.7;
}
.nav-link.cta-button {
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 8px;
  background-color: #1d1d1d;
  /*box-shadow: 0 2px 0 0 #f5f6f7;*/
  -webkit-transition: box-shadow 200ms ease, background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, background-color 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, background-color 200ms ease, transform 200ms ease, color 200ms ease;
  transition: box-shadow 200ms ease, background-color 200ms ease, transform 200ms ease, color 200ms ease, -webkit-transform 200ms ease;
  color: #fff;
}
.nav-link.cta-button:hover {
  background-color: #2a2a2a;
}
.nav-link.cta-button:active {
  background-color: #626a72;
  box-shadow: 0 0 0 0 #e7ecf0;
  -webkit-transform: translate(0px, 1px);
  -ms-transform: translate(0px, 1px);
  transform: translate(0px, 1px);
}
.nav-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.nav-cta-button-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav-bar {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 200;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #f5f6f7;
  background-color: #fff;
}
.nav-logo {
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}
.nav-logo:hover {
  opacity: 0.75;
}
.nav-menu {
  margin-right: 6px;
  text-align: right;
}

/** page wrapper */
.page-wrapper {
  position: relative;
  width: 100%;
  min-height: 90vh;
}
.page-wrapper.light-grey {
  background-color: #f5f6f7;
}

/** hero grid */
.hero-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 1.4fr 1fr;
  grid-template-columns: 1.4fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.hero-illustration {
  margin-right: auto;
  margin-left: auto;
  mix-blend-mode: multiply;
}

/** section */
.section-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}
.section.light-color-gradient {
  padding-top: 50px;
  padding-bottom: 80px;
}
.section.light-grey {
  position: relative;
  background-color: #f5f6f7;
}
.section.small {
  padding-top: 40px;
  padding-bottom: 40px;
}

/** container */
.container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1230px;
  min-height: 30px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.w-layout-grid { /** FEATURED and FOOTER */
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
/** contact email box */
.text-box {
  position: relative;
  max-width: 650px;
}
.text-box.center-align {
  margin-right: auto;
  margin-left: auto;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: center;
}
.text-box._550px {
  max-width: 550px;
}
.text-box._500px {
  max-width: 500px;
}
.text-box.centered {
  margin-right: auto;
  margin-left: auto;
}

/** COMMON */
.hidden {
  display: none;
}
/** headings */
.heading {
  display: block;
  font-weight: 600;
}
.heading.h1 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.25em;
}
.heading.h1.small-margin {
  margin-bottom: 6px;
}
.heading.h2 {
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1.3em;
}
.heading.h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.4em;
}
.heading.h4 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.45em;
}
.heading.h5 {
  margin-bottom: 12px;
  color: #33383f;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.heading.h6 {
  color: #626a72;
  font-size: 13px;
  line-height: 1.5em;
  font-weight: 500;
}
.heading.large-h1 {
  margin-bottom: 18px;
  font-size: 54px;
  line-height: 1.2em;
}
.heading.large-h1 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.25em;
}
.heading.large-h1 {
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1.15em;
}
.heading.large-h1 {
  margin-bottom: 16px;
  font-size: 46px;
}
.heading.large-h1 {
  font-size: 64px;
}
/** button */
.button {
  margin-bottom: 8px;
  padding: 8px 28px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 9px;
  background-color: #1d1d1d;
  box-shadow: 0 2px 0 0 rgba(32, 32, 32, 0.05);
  -webkit-transition: box-shadow 200ms ease, border-color 200ms ease, color 200ms ease, background-color 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, border-color 200ms ease, color 200ms ease, background-color 200ms ease, -webkit-transform 200ms ease;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease, color 200ms ease, background-color 200ms ease;
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease, color 200ms ease, background-color 200ms ease, -webkit-transform 200ms ease;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
.button:hover {
  background-color: #33383f;
}
.button:active {
  background-color: #626a72;
  box-shadow: 0 0 0 0 rgba(32, 32, 32, 0);
  -webkit-transform: translate(0px, 2px);
  -ms-transform: translate(0px, 2px);
  transform: translate(0px, 2px);
}
.button.outline {
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #495158;
  color: #1d1d1d;
}
.button.outline:hover {
  background-color: #e7ecf0;
}
.button.outline:active {
  background-color: #495158;
  color: #fff;
}
.button.light {
  /*background-color: #f5f6f7;*/
  background-color: #e5e6e7;
  box-shadow: none;
  /*color: #626a72;*/
  color: #333;
}
.button.light:hover {
  /*background-color: #e7ecf0;
  color: #626a72;*/
  background-color: #d5d6d7;
  color: #111;
}
.button.light:active {
  background-color: #cbd5df;
  color: #33383f;
}
.button.light.mobile-hidden {
  box-shadow: inset 0 0 0 1px #e7ecf0;
}
.button.disabled {
  background-color: #f5f6f7;
  box-shadow: none;
  opacity: 0.7;
  color: #cbd5df;
}
.button.disabled:active {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.button.dark {
  background-color: #495158;
}
.button.dark:hover {
  background-color: #33383f;
}
.button.dark:active {
  background-color: #99a4af;
}
.button.white {
  background-color: #fff;
  color: #1d1d1d;
  font-weight: 500;
}
.button.white:hover {
  background-color: #e7ecf0;
}
.button.white:active {
  background-color: #cbd5df;
}

/** paragraph */
.paragraph.small {
  margin-bottom: 6px;
  opacity: 0.75;
  font-size: 14px;
  line-height: 1.4em;
}
.paragraph.large {
  font-size: 20px;
  line-height: 1.5em;
}
.paragraph.medium {
  font-size: 18px;
}
.paragraph.small {
  opacity: 0.75;
  font-size: 14px;
  line-height: 1.4em;
}
/** spacer */
.spacer {
  height: 48px;
  background-color: #e7ecf0;
}
.spacer._16 {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-color: transparent;
}
.visible-spacer {
  display: inline-block;
  margin-bottom: 24px;
  border-radius: 2px;
  background-color: #e7ecf0;
}

/** FOOTER */
.footer-logo {
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  margin-bottom: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  -webkit-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
  color: #626a72;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
}
.footer-link:hover {
  opacity: 1;
  color: #1d1d1d;
}
.footer-link.w--current {
  opacity: 1;
}
.footer-links-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer {
  position: relative;
  z-index: 0;
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #f5f6f7;
}
.footer-header {
  color: #99a4af;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.footer-container {
  display: block;
  width: 100%;
  max-width: 1230px;
  margin-right: auto;
  margin-left: auto;
  padding: 40px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer-grid {
  -ms-grid-columns: 3fr 1fr 1fr 0.8fr;
  grid-template-columns: 3fr 1fr 1fr 0.8fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}
.footer-logo-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 650px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

