/* LabShare landing page - reproduction of labshareapp.com */
:root {
  --black: #000;
  --brand: #209498;
  --brand-800: #185257;
  --brand-400: #3dc2c4;
  --brand-200: #a2edea;
  --brand-300: #6bdddb;
  --brand-100: #d0f7f4;
  --brand-50: #f1fcfb;
  --white: #fff;
  --black-50: #f6f6f6;
  --black-100: #e7e7e7;
  --black-200: #d1d1d1;
  --black-300: #b0b0b0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  line-height: 23px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

/* Webflow framework: layout containers */
.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before,
.w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

h1,
h2,
h3 {
  margin: 0;
}

p {
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.5rem;
}

/* ---------- Navigation ---------- */
/* Webflow framework navbar classes */
.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}
.w-nav:before,
.w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}
.w-nav:after {
  clear: both;
}
.w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333;
}
.w-nav-menu {
  float: right;
  position: relative;
}
.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}
.w-nav-button:focus {
  outline: 0;
}
.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}
.w-dropdown {
  display: inline-block;
  position: relative;
}
.w-dropdown-toggle {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}
.w-dropdown-toggle:focus {
  outline: 0;
}
.w-dropdown-link {
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
  display: block;
}
.w-dropdown-list {
  position: absolute;
  display: none;
  min-width: 100%;
}
.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898ec;
  color: #fff;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

.navigation-bar {
  z-index: auto;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  position: fixed;
  inset: 0 0 auto;
}

.logo-brand-container {
  justify-content: center;
  align-items: stretch;
  width: 80%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.brand-m {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 50vw;
  height: auto;
  margin-right: 20svw;
  padding-right: 0;
  display: flex;
}

.brand-m.w--current {
  width: auto;
  margin-right: 20svw;
}

.logo-nav {
  width: 15svw;
  max-width: none;
  height: auto;
  font-size: 1.2rem;
}

.nav-menu-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle-2 {
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
}

.text-block-3 {
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.dropdown-caret {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  color: #222;
  pointer-events: none;
}

.dropdown[data-open] .dropdown-caret {
  transform: translateY(-50%) rotate(180deg);
}

.navigation-dropdown {
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 5px #0003;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  min-width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 0.5rem 0;
  z-index: 10;
}

.dropdown[data-open] .navigation-dropdown {
  display: block;
}

.dropdown-list {
  color: #222;
  padding: 0.25rem 1.25rem;
  display: block;
  font-size: 1rem;
  white-space: nowrap;
}

.dropdown-list:hover {
  color: var(--brand);
}

.link {
  color: var(--black);
  white-space: nowrap;
  padding: 1.25rem;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1;
}

.nav-button-section {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-left: 2rem;
  display: flex;
}

.sign-up-nav {
  border: 0.1rem solid var(--brand);
  background-color: var(--white);
  color: var(--brand);
  letter-spacing: 1px;
  text-transform: capitalize;
  white-space: nowrap;
  border-radius: 100rem;
  padding: 0.75em 1.25em;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: background-color 0.2s, color 0.2s, border 0.2s;
}

.sign-up-nav:hover {
  background-color: var(--black-300);
  color: var(--brand);
}

.demo-button-nav {
  border: 0.1rem solid var(--brand);
  background-color: var(--brand);
  color: var(--white);
  white-space: nowrap;
  border-radius: 100rem;
  padding: 0.75em 1.25em;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-block;
}

.demo-button-nav:hover {
  background-color: var(--brand);
  color: var(--black);
}

.demo-button-nav:active {
  background-color: var(--brand-800);
  color: var(--white);
}

.menu-button {
  display: none;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  background: transparent;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  background-color: var(--black);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  width: 1em;
  height: 0.12em;
  left: 0;
}

.menu-icon::before {
  transform: translateY(-0.4em);
}

.menu-icon::after {
  transform: translateY(0.4em);
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  transform: rotate(-45deg);
}

/* ---------- Layout ---------- */
.main {
  margin-top: 5.9rem;
}

.container {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  place-items: center stretch;
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  display: flex;
}

.section {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 3rem;
  display: flex;
}

.color-section {
  background-color: var(--brand-50);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 3rem;
  display: block;
}

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

.div-block {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-63 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

/* ---------- Headings ---------- */
b,
strong {
  font-weight: 700;
}

.heading-1 {
  width: 100%;
  color: var(--black);
  text-align: left;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.heading-1.cta-header {
  color: var(--white);
  text-align: center;
  margin-top: 0;
  line-height: 1.4;
}

.heading-2 {
  width: auto;
  color: var(--black);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 2rem;
  font-family: "Nunito", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.heading-2 strong {
  font-weight: 700;
}

.heading-3 {
  text-align: center;
  white-space: normal;
  word-break: normal;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.heading-3.is-white {
  color: var(--white);
  text-align: left;
  white-space: nowrap;
  justify-content: flex-start;
}

.cell .heading-3 {
  text-align: center;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero-background {
  background-image: linear-gradient(#fcfcfc8c, #fcfcfc8c),
    url(https://cdn.prod.website-files.com/696f4d57fadfc53b10a5d29e/696f4eea9f7768e2a57bb7e8_researcher.avif);
  background-position: 0 0, 50%;
  background-size: auto, auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 33rem;
  max-height: 33rem;
  margin-top: 0;
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
  overflow: hidden;
}

.hero-block {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-flow: column;
  place-content: start flex-start;
  place-items: flex-start start;
  padding-top: 0;
  display: flex;
}

.hero-paragraph {
  text-align: left;
  width: 60%;
  margin-bottom: 1rem;
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.2rem;
}

.hero-paragraph.cta-paragraph {
  width: 90%;
  color: var(--white);
  text-align: center;
}

/* ---------- Collaboration ---------- */
.icon-block {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  place-items: center;
  padding-bottom: 1.5rem;
  display: grid;
}

.image-20 {
  width: 23rem;
  max-width: none;
}

.image-23 {
  width: 12rem;
  max-width: none;
}

/* ---------- Product ---------- */
.wf-layout-layout {
  display: grid;
}
.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}
.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.product {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  display: grid;
  width: 100%;
}

.product-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-columns: 1fr 1fr;
  padding: 1.25rem;
}

.cell {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  border-top: 1px #d1d1d1;
  border-bottom: 0.5px #d1d1d1;
  border-left: 0.5px #d1d1d1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
  font-family: "Nunito", sans-serif;
  display: flex;
}

.cell-2 {
  pointer-events: none;
  background-color: #209498;
  background-image: linear-gradient(351deg, #3dc2c4, #f1fcfb);
  border-top: 0.5px #d1d1d1;
  border-bottom: 0.5px #d1d1d1;
  border-right: 0.5px #d1d1d1;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  box-shadow: 1px 1px 8px 3px #0003;
  overflow: hidden;
}

.image {
  box-sizing: border-box;
  vertical-align: baseline;
  object-fit: fill;
  flex: 0 auto;
  align-self: auto;
  width: 100%;
  max-width: none;
  height: 100%;
  overflow: visible;
  border-radius: 3px;
}

.paragraph {
  max-width: 80%;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

/* ---------- How it works ---------- */
.heading-subheader {
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 80%;
  font-family: "Nunito", sans-serif;
  display: flex;
}

.div-block-42 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
  width: 100%;
}

.card-2 {
  background-color: #209498;
  border-radius: 20px;
  flex-flow: column;
  grid-row-gap: 1.25em;
  margin: 0;
  padding: 2rem 2.2rem 2.5rem;
  display: flex;
}

.number-text {
  color: var(--white);
  text-align: right;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 24px;
}

.divider {
  border: 1px solid var(--white);
  height: 0;
  margin-bottom: 0;
  font-size: 0;
  line-height: 0;
}

.white-paragraph {
  color: #fff;
  text-align: left;
  width: 100%;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.5rem;
}

/* ---------- Why love / rely ---------- */
.div-block-62,
.div-block-64 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  display: grid;
  width: 100%;
}

.card-7 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white);
  border: 1px solid #e7e7e7;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.card-8 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--brand-50);
  border: 1px solid #e7e7e7;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.image-24 {
  width: 5svw;
  height: auto;
}

.image-24.why-love {
  background-color: #d0f7f4;
  border-radius: 3rem;
  padding: 1rem;
}

.why-love {
  background-color: #d0f7f4;
  border-radius: 3rem;
  padding: 1rem;
}

.image-25 {
  width: 5svw;
  height: auto;
}

.image-25.why-love {
  background-color: var(--white);
  border-radius: 3rem;
  padding: 1rem;
}

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

.paragraph-4,
.paragraph-5 {
  max-width: 80%;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
}

/* ---------- CTA ---------- */
.cta-container {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cta-div-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--brand);
  border-radius: 1rem;
  padding: 4rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}

.div-block-65 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.sign-up-2 {
  color: #209498;
  background-color: #fff;
  border: 0.1rem solid #209498;
  border-radius: 100rem;
  padding: 0.75em 1.25em;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.sign-up-2:hover {
  color: #000;
}

.sign-up-2:active {
  color: #fff;
  background-color: #185257;
}

.sign-up-2.cta-button-2 {
  border-color: var(--white);
  text-align: center;
  padding-left: 2.95em;
  padding-right: 2.95em;
}

.demo-button-nav.cta-button-1 {
  border-color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
  background-image: url(https://cdn.prod.website-files.com/696f4d57fadfc53b10a5d29e/69f642d28b7e75c0ed2f9e3b_Footer%20Background%20Image.avif);
  background-size: cover;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  max-width: 80%;
  display: flex;
  margin: 0 auto;
}

.div-block-67 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.div-block-66 {
  flex-flow: column;
  align-items: flex-start;
  width: 40%;
  display: flex;
}

.footer-brand {
  align-self: flex-start;
}

.white-paragraph-2 {
  color: #fff;
  text-align: left;
  width: 80%;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  line-height: 1.5rem;
  margin-top: 1rem;
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.image-19 {
  border: 0 solid #000;
  border-radius: 20px;
  width: 35px;
  max-width: 35px;
  height: 35px;
  object-fit: fill;
  background-color: #fff;
}

.div-block-68 {
  grid-column-gap: 10rem;
  grid-row-gap: 10rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  display: grid;
}

.div-block-foot {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footer-block-two {
  color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-title {
  color: #fff;
  text-transform: capitalize;
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.div-block-26 {
  white-space: nowrap;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 15px;
  display: flex;
}

.footer-link-two {
  color: #fff;
  margin-top: 15px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.footer-link-two:hover {
  color: #1a1b1fbf;
}

.divider-2 {
  border: 1px solid #fff;
  height: 0;
  margin-bottom: 4em;
  font-size: 0;
  line-height: 0;
}

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

.footer-copyright {
  color: #fff;
}

.div-block-29 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.footer-link {
  text-decoration: none;
}

/* ---------- Responsive: min-width 1440px ---------- */
@media screen and (min-width: 1440px) {
  .container {
    max-width: none;
  }
  .main {
    margin-top: 5.4rem;
  }
  .color-section {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .navigation-bar {
    background-color: var(--white);
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .brand-m,
  .brand-m.w--current {
    width: 47svw;
    margin-right: 22svw;
  }
  .nav-menu-2 {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1;
    display: flex;
  }
  .logo-brand-container {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    background-color: var(--white);
    justify-content: center;
    align-items: stretch;
    width: auto;
    max-width: 80%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    position: static;
  }
  .logo-nav {
    width: 15svw;
    max-width: none;
    height: auto;
  }
  .container---legal,
  .container---contact {
    max-width: none;
  }
  .container---contact {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: none;
    margin-top: 0;
  }
  .section---legal {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 5.8em;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: block;
  }
  .product {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  .heading-about {
    justify-content: center;
    align-items: flex-start;
    width: 65%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.5;
    display: flex;
  }
  .paragraph-about {
    text-align: center;
    width: 50%;
    font-family: "Nunito", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
  }
  .hero-paragraph {
    justify-content: center;
    align-items: baseline;
    width: 60%;
    margin-bottom: 1rem;
    font-family: "Nunito", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
  }
  .heading-2 {
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 2rem;
    line-height: 1.5;
    display: flex;
  }
  .section {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 3rem;
    display: block;
  }
  .div-block {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    justify-content: center;
    align-items: center;
  }
  .section---legal {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 5.8em;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: block;
  }
  .container---legal,
  .container---contact {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: none;
    margin-top: 0;
  }
  .container---legal {
    margin-top: 2em;
  }
  .div-block-60 {
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .contact-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 0;
    padding-bottom: 0;
  }
  .contact-form-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: var(--black-50);
    border-radius: 1rem;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    margin: 0;
    padding: 2.5rem;
    font-family: "Nunito", sans-serif;
    font-size: 1.1rem;
    line-height: 1;
  }
  .field-wrapper {
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    flex-flow: column;
    flex: none;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }
  .field-organizer {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }
  .section---empty-blog {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 5.8em;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: block;
  }
  .empty-container {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20rem;
  }
  .collection-list-wrapper {
    margin-top: 18rem;
  }
}

/* ---------- Responsive: min-width 1440px ---------- */
@media screen and (min-width: 1440px) {
  .sign-up-nav {
    background-color: var(--white);
    white-space: nowrap;
    border-style: solid;
    border-width: 0.1rem;
    border-radius: 8rem;
  }
  .sign-up-nav:hover {
    background-color: var(--black-100);
    color: var(--black);
  }
  .sign-up-nav:active {
    background-color: var(--brand-800);
    color: var(--white);
  }
  .heading-1 {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
  }
  .heading-1.hero-heading-about {
    justify-content: center;
    align-items: flex-start;
  }
  .heading-1.cta-header {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
  }
  .heading-2 {
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 2rem;
    line-height: 1.5;
    display: flex;
  }
  .heading-3.is-white {
    text-align: left;
    justify-content: flex-start;
    align-items: baseline;
  }
  .filler-text {
    padding: 2rem;
  }
  .nav-button-section {
    justify-content: flex-start;
    align-items: center;
    margin-left: 2rem;
  }
  .logo-nav {
    width: 15svw;
    max-width: none;
    height: auto;
  }
  .demo-button-nav {
    border: 0.1rem solid var(--brand);
    white-space: nowrap;
    border-radius: 100rem;
    margin-top: 0;
  }
  .hero-background {
    padding-top: 8em;
  }
  .container {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: none;
    margin-top: 2rem;
  }
  .hero-block {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .product {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  .section {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 3rem;
    display: block;
  }
  .paragraph {
    font-family: "Nunito", sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .card-2 {
    justify-content: flex-start;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
  }
  .div-block-43 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    justify-content: center;
    align-items: center;
  }
  .divider {
    background-color: var(--white);
    width: 100%;
    height: 0.125rem;
    color: var(--white);
    border-width: 0;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    line-height: 1px;
  }
  .heading-subheader {
    grid-column-gap: 0.5em;
    grid-row-gap: 0.5em;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    min-width: auto;
    padding-bottom: 0;
  }
  .card-4 {
    background-color: var(--white);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  .link-block {
    justify-content: center;
    align-items: center;
  }
  .footer-brand {
    flex: 0 auto;
    order: 0;
    display: block;
    overflow: visible;
  }
  .footer-title {
    font-size: 1.2rem;
    font-weight: 600;
  }
  .div-block-26 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    white-space: nowrap;
  }
  .footer-container {
    width: 80%;
    max-width: none;
  }
  .footer-block-two {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
  .image-24 {
    width: 4.5svw;
  }
  .image-24.why-love {
    width: 5svw;
  }
  .image-25 {
    width: 4.5svw;
  }
  .image-25.why-love {
    width: 5svw;
  }
  .paragraph-4 {
    font-family: "Nunito", sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .paragraph-5 {
    font-family: "Nunito", sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .cta-div-block {
    padding-left: 3.8rem;
    padding-right: 3.8rem;
  }
}

/* ---------- Responsive: max-width 991px ---------- */
@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
  .w-container {
    max-width: 728px;
  }
  .heading-1 {
    width: 100%;
    font-size: 2.2rem;
  }
  .heading-2 {
    text-align: center;
    width: auto;
    padding-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .nav-button-section {
    grid-column-gap: 1.6rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    margin-left: 0;
  }
  .logo-nav {
    width: 28svw;
  }
  .brand-m {
    margin-left: 2rem;
    margin-right: 16rem;
    display: flex;
  }
  .brand-m.w--current {
    margin-left: 1.25rem;
    margin-right: 28rem;
  }
  .demo-button-nav {
    width: auto;
    padding: 1em 1em 1em 1.5em;
    font-size: 1.1rem;
  }
  .demo-button-nav.cta-button-1 {
    padding-left: 1.2em;
    padding-right: 1.2em;
  }
  .cta-div-block {
    width: 80%;
    padding-left: 3.8rem;
    padding-right: 3.8rem;
  }
  .hero-background {
    width: 100vw;
    padding-top: 6em;
    padding-bottom: 6em;
  }
  .container {
    width: 80%;
    max-width: 728px;
  }
  .product {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    flex-flow: column;
    display: flex;
  }
  .section {
    padding-top: 0;
    padding-bottom: 0;
  }
  .cell-2 {
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    border-radius: 0;
  }
  .product-card {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding: 0;
    grid-template-columns: 1fr;
  }
  .image {
    width: 70vw;
    height: auto;
    box-shadow: 1px 1px 4px #0003;
  }
  .white-paragraph {
    font-size: 1rem;
  }
  .card-2 {
    padding: 1.9rem;
  }
  .div-block-42 {
    grid-template-columns: 1fr 1fr;
  }
  .divider {
    margin-bottom: 2.1em;
  }
  .heading-subheader {
    width: 80%;
  }
  .white-paragraph-2 {
    width: 90%;
    font-size: 0.9rem;
  }
  .footer-link-two {
    font-size: 0.9rem;
  }
  .footer-title {
    white-space: nowrap;
    font-size: 1.1rem;
  }
  .image-19 {
    width: 2.8rem;
    max-width: none;
  }
  .brand-m {
    margin-left: 2rem;
    margin-right: 16rem;
  }
  .nav-menu-2 {
    background-color: var(--white);
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  /* Mobile nav: collapse */
  .menu-button {
    flex: 0 auto;
    padding: 1.125rem;
    font-size: 7svw;
    display: block;
  }
  .menu-button.w--open {
    background-color: var(--white);
  }
  .nav-menu-2 {
    background-color: var(--white);
    flex-flow: column;
    align-items: flex-start;
    display: none;
  }
  .nav-menu-2.open {
    display: flex;
  }
  .dropdown-toggle-2 {
    vertical-align: baseline;
    justify-content: flex-start;
    align-items: stretch;
    padding-right: 0;
    font-family: "Nunito", sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
  }
  .text-block-3 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
  }
  .dropdown-caret {
    right: 0;
  }
  .navigation-dropdown {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 1rem;
  }
  .dropdown-list {
    padding: 0.5rem 0;
    line-height: 1.5rem;
  }
  .link {
    padding: 0.75rem 0;
    font-size: 1.2rem;
  }
  .logo-brand-container {
    z-index: auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    flex: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    width: auto;
    max-width: none;
    margin-right: 0;
    padding-right: 0;
    display: flex;
    position: static;
    inset: 0 0 auto;
  }
}

/* ---------- Responsive: max-width 767px ---------- */
@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
  .heading-1 {
    text-align: center;
    font-size: 2rem;
  }
  .heading-2 {
    font-size: 1.8rem;
  }
  .nav-button-section {
    margin-left: 0;
  }
  .logo-nav {
    width: 32svw;
  }
  .hero-background {
    background-image: linear-gradient(#ffffff82, #ffffff82),
      url(https://cdn.prod.website-files.com/696f4d57fadfc53b10a5d29e/696f4eea9f7768e2a57bb7e8_researcher.avif);
    background-position: 0 0, 54% 45%;
  }
  .container {
    width: 90%;
  }
  .hero-block {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }
  .product {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }
  .cell {
    padding: 0;
  }
  .section {
    width: 100%;
  }
  .image {
    width: 80vw;
    box-shadow: 1px 1px 6px #0003;
  }
  .white-paragraph {
    font-size: 0.9rem;
  }
  .card-2 {
    padding: 1.9rem;
  }
  .white-paragraph-2 {
    width: 100%;
  }
  .footer-copyright {
    font-size: 1.1rem;
  }
  .footer-bottom {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .footer-social-link {
    margin-left: 0;
  }
  .footer-social-block-two {
    grid-column-gap: 1rem;
    margin-left: 0;
  }
  .footer-container {
    width: 100%;
  }
  .brand-m {
    width: 60vw;
    margin-left: 1.5rem;
    margin-right: 7rem;
  }
  .brand-m.w--current {
    margin-left: 1rem;
    margin-right: 17rem;
  }
  .logo-brand-container {
    width: auto;
    max-width: none;
  }
  .menu-button {
    font-size: 8svw;
  }
  .nav-menu-2 {
    flex-flow: column;
    flex: 0 auto;
    width: 100vw;
  }
  .color-section {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .color-section.cta-section {
    padding-top: 2rem;
  }
  .hero-paragraph {
    text-align: center;
  }
  .hero-paragraph.cta-paragraph {
    font-size: 1.2rem;
  }
  .card-7,
  .card-8 {
    padding: 1.5rem;
  }
  .why-love {
    width: 8svw;
  }
  .div-block-62,
  .div-block-64 {
    flex-flow: column;
    display: flex;
  }
  .div-block-65 {
    flex-flow: row;
    align-self: center;
  }
  .sign-up-2 {
    font-size: 1rem;
  }
  .sign-up-2.cta-button-2 {
    padding-left: 3.4em;
    padding-right: 3.4em;
  }
  .main {
    margin-top: 7.5rem;
  }
  .div-block-68 {
    place-items: start stretch;
  }
  .image-20 {
    width: 20rem;
  }
  .image-23 {
    width: 12rem;
  }
  .icon-block {
    grid-template-columns: 1fr;
  }
}

/* ---------- Responsive: max-width 479px ---------- */
@media screen and (max-width: 479px) {
  .heading-1 {
    width: 100%;
    font-size: 1.6rem;
  }
  .heading-1.cta-header {
    font-size: 1.9rem;
  }
  .cta-div-block {
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 2.5rem;
  }
  .heading-2 {
    padding-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .heading-3 {
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    width: 80svw;
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  .heading-3.is-white {
    flex-flow: row;
    justify-content: flex-start;
    align-self: flex-start;
  }
  .nav-button-section {
    grid-column-gap: 0.8rem;
    margin-left: 0;
  }
  .logo-nav {
    width: 40svw;
    max-width: 150px;
  }
  .brand-m {
    width: 50vw;
    height: auto;
    margin-left: 1.5rem;
    margin-right: 5.2rem;
    padding-left: 0;
  }
  .brand-m.w--current {
    margin-right: 8rem;
  }
  .logo-brand-container {
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
    display: flex;
    position: relative;
  }
  .dropdown-toggle-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-left: -1.25rem;
    padding-right: 3px;
    display: flex;
  }
  .menu-button {
    margin-right: 0;
    font-size: 12svw;
    position: relative;
  }
  .demo-button-nav {
    padding-left: 1.25em;
    padding-right: 1.25em;
    font-size: 1rem;
  }
  .container {
    margin-top: 0;
    margin-bottom: 0;
  }
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .image {
    width: 80vw;
    display: block;
  }
  .paragraph {
    max-width: none;
    line-height: 1.5rem;
  }
  .white-paragraph {
    font-size: 1rem;
  }
  .card-2 {
    width: 80%;
    height: 16rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .divider {
    border-radius: 0;
    width: 100%;
  }
  .heading-subheader {
    width: 80%;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer-social-block-two {
    grid-column-gap: 1.25rem;
  }
  .footer-container {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }
  .why-love {
    width: 20svw;
  }
}

/* =========================================== */
/* About Page                                  */
/* =========================================== */
.hero--about {
  background-image: url(https://cdn.prod.website-files.com/696f4d57fadfc53b10a5d29e/697141b57f851bcc269f55d0_bg_dot2%202.avif),
    linear-gradient(to bottom, var(--brand-50), var(--brand-50));
  background-position: 50%, 0 0;
  background-repeat: repeat, repeat;
  background-size: cover, auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 33rem;
  max-height: 33rem;
  margin-top: 0;
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
}

.heading-1.hero-heading-about {
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

.hero-paragraph.is-about {
  text-align: center;
}

.heading-about {
  width: 70%;
  color: var(--black);
  text-align: center;
  vertical-align: baseline;
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding-bottom: 2rem;
  font-family: "Nunito", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.paragraph-about {
  text-align: center;
  width: 50%;
  max-width: 80%;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}

.faq-container-w-margin {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  max-width: none;
  display: flex;
}

.div-block-43 {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.faq-item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.faq-question {
  background-color: var(--black-50);
  border-radius: 0.5rem;
  order: 0;
  justify-content: space-between;
  padding: 1rem;
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
}

.faq-q_style {
  white-space: normal;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-answer {
  text-align: left;
  width: 98%;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.paragraph-3 {
  text-align: left;
  width: 100%;
  padding-left: 1rem;
  font-size: 1rem;
  line-height: 1.6rem;
}

/* =========================================== */
/* Contact Page                                */
/* =========================================== */
.section---legal {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 6.2em;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.container---legal,
.container---contact {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center stretch;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  display: flex;
}

/* min-width 1440px overrides for contact/legal pages (must come after base rules) */
@media screen and (min-width: 1440px) {
  .section---legal {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 5.8em;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: block;
  }
  .container---legal {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: none;
    margin-top: 2em;
  }
  .div-block-60 {
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .info-heading {
    justify-content: flex-start;
    align-items: flex-start;
    width: 80%;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.5;
    display: flex;
  }
  .container---contact {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: none;
    margin-top: 0;
  }
}

.contact-wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 60svw;
  padding-bottom: 0;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .contact-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 0;
    padding-bottom: 0;
    display: flex;
  }
}

.heading-subheader {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 80%;
  min-width: auto;
  max-width: none;
  padding-bottom: 0;
  font-family: "Nunito", sans-serif;
  display: flex;
}

.mini-subheading {
  flex-flow: column;
  max-width: 100%;
  margin-top: 1rem;
  padding-bottom: 1rem;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  display: flex;
}

.mini-subheading.is-contact {
  text-align: center;
}

.form-block {
  background-color: var(--white);
  border-radius: 0.5rem;
  flex-flow: column;
  width: 100%;
  padding: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  display: flex;
}

.contact-form-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--black-50);
  border-radius: 0.5rem;
  flex-flow: column;
  align-items: stretch;
  padding: 2.5rem;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .contact-form-wrapper {
    border-radius: 1rem;
  }
}

.field-wrapper {
  flex: none;
}

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

.field-label-2,
.field-label-3 {
  margin-bottom: 5px;
  font-weight: 700;
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
}

.text-field {
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 0.25rem;
  display: block;
  box-sizing: border-box;
}

.text-field:focus {
  border-color: #3898ec;
  outline: 0;
}

.textarea {
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  min-height: 120px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 0.25rem;
  display: block;
  box-sizing: border-box;
  font-family: inherit;
  resize: vertical;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0.75rem;
  padding-bottom: 2rem;
}

.submission-success {
  background-color: var(--brand-100);
  width: 100%;
  max-width: 100%;
  color: var(--black);
  text-align: center;
  border-radius: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.2rem 1.5rem;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  display: none;
}

.error-message {
  background-color: #ffdede;
  border-radius: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1;
  display: none;
}

/* =========================================== */
/* Legal Pages (Privacy & Terms)               */
/* =========================================== */
.info-heading {
  width: 80%;
  color: var(--black);
  text-align: left;
  vertical-align: baseline;
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
}

.paragraph---general {
  text-align: left;
  width: 80%;
  max-width: none;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.div-block-60 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

/* min-width 1440px overrides for legal page elements (must come after base rules) */
@media screen and (min-width: 1440px) {
  .div-block-60 {
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .info-heading {
    justify-content: flex-start;
    align-items: flex-start;
    width: 80%;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.5;
    display: flex;
  }
}

.link-2 {
  color: var(--brand);
  text-decoration: none;
}

/* =========================================== */
/* Blog Page                                   */
/* =========================================== */
.section---empty-blog {
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 6.2em;
  margin-bottom: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.empty-container {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 90%;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20rem;
  display: flex;
}

.collection-list-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 18rem;
  display: block;
}

.filler-text {
  background-color: var(--white);
  color: var(--black);
  margin-top: 1rem;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  padding: 2rem;
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

/* ---------- Responsive: Legal/About pages ---------- */
@media screen and (max-width: 991px) {
  .heading-about {
    width: 65%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.5;
    display: flex;
  }
  .paragraph-about {
    width: 50%;
  }
  .faq-item {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: none;
    padding: 0;
  }
  .faq-q_style {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .section---legal,
  .section---empty-blog {
    margin-top: 6.1em;
  }
  .container---legal,
  .container---contact {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    width: 80%;
    max-width: none;
    display: grid;
  }
  .contact-wrapper {
    width: 100%;
  }
  .contact-form-wrapper {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
  }
  .info-heading {
    justify-content: flex-start;
    align-items: flex-start;
    width: 80%;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1.5;
    display: flex;
  }
  .empty-container {
    justify-content: flex-start;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .heading-about {
    flex-flow: column;
    width: 80%;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 1.5rem;
    display: block;
  }
  .paragraph-about {
    max-width: 80%;
    font-size: 1rem;
  }
  .faq-item {
    flex-flow: column;
  }
  .faq-q_style {
    font-size: 1rem;
  }
  .faq-answer {
    width: 95%;
    padding-left: 1rem;
  }
  .info-heading {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 1.5rem;
  }
  .paragraph---general {
    max-width: 80%;
    font-size: 1rem;
  }
  .contact-wrapper {
    width: 100%;
  }
  .container---legal,
  .container---contact {
    width: 90%;
  }
  .section---legal {
    width: 100%;
    margin-top: 5.8em;
    margin-bottom: 0;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .field-organizer {
    flex-flow: column;
  }
  .section---empty-blog {
    margin-top: 6.1em;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .empty-container {
    justify-content: center;
    align-items: center;
  }
  .collection-list-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .heading-about {
    width: 80%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .paragraph-about {
    width: 80%;
    max-width: none;
  }
  .info-heading {
    text-align: left;
    width: 80%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .paragraph---general {
    width: 80%;
    max-width: none;
  }
  .faq-container-w-margin {
    width: 100%;
  }
  .contact-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: center;
    align-items: center;
    width: 85svw;
  }
  .section---legal {
    margin-top: 6.6em;
    margin-bottom: 0;
    padding-top: 2em;
    padding-bottom: 2rem;
    display: flex;
  }
  .submission-success {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.3;
  }
  .section---empty-blog {
    width: 100%;
    margin-top: 5.8em;
    margin-bottom: 0;
  }
  .empty-container {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
    padding-bottom: 12rem;
    line-height: 1;
  }
  .collection-list-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
}
