* {
  font-family: "Poppins", sans-serif;
  margin: 0px;
}

img {
  box-sizing: border-box;
  max-width: 100%;
}

.content-body>*:not(section):not(div) {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
}


/* h1,
h2,
h3 {
  font-family: "IBM Plex Sans", sans-serif;
} */

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

p+p {
  margin-bottom: 5px;
}

p.emphasis {
  margin: 60px auto;
  max-width: min(700px, max(60%, calc(100% - max(0px, 100vw - 600px) / 2)));
}

p.emphasis.light {
  color: #555;
  font-style: italic;
}

h1 {
  /* color: #081F12; */
  font-weight: 300;
  font-size: calc(max(42px, .05 * 100vw));
  margin-bottom: 0.3em;
  margin-top: 0.5em;
}

h2 {

  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: calc(max(38px, 30px + .01 * 100vw));
}


h3 {
  font-size: calc(max(28px, 20px + .008 * 100vw));
  font-weight: 300;
  margin-bottom: 0.3em;
  margin-top: 0.5em;
}

a {
  text-decoration: none;
  color: inherit;
}

a.fancy {
  background: linear-gradient(45deg, #67E3AB, #1D804F);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}


/* underline */
/* underline */
/* underline */
a.fancy::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -2px;
  left: 0;
  background-image: linear-gradient(to right, #21A366, #67E3AB);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

a.fancy:hover::after,
a.fancy:focus::after {
  visibility: visible;
  transform: scaleX(1);
}

/* telephone icon */
/* telephone icon */
/* telephone icon */
/* telephone icon */
a.fancy.telephone::before {
  content: '🕻';
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.3s ease !important;
}

a.fancy.telephone:hover::before,
a.fancy.telephone:focus::before {
  opacity: 1;
}

.gradient-text {
  color: #fff;
  background: linear-gradient(45deg, #8133C4, #33C481);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin: 20px 0;
  white-space: nowrap;
}

.hero-subtext {
  max-width: min(65%, 900px);
  padding: 60px 0px;

}

.product-logo.long {
  max-width: min(80%, calc(200px + 0.15 * 100vw));
  margin: 0 auto;
}

.product-logo {
  max-width: min(60%, calc(100px + 0.1 * 100vw));
  margin: 0 auto;
}



div.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
  column-gap: 30px;
}

button {
  border-radius: 100px;
  width: 240px;
  height: 60px;
  padding: 10px 20px;
  font-size: 20px;
  text-align: center;
  border: none;
  color: white;
  cursor: pointer;
  background-color: #3498db;
  transition: transform 0.3s ease;
}

div:has(button) {
  margin: 30px 0;
}

/* Pseudo-element for the color fill effect */
button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: brightness(1.15) blur(1px);
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: inherit;
  z-index: -1;
}

button:hover {
  transform: scale(1.05);
}

button:hover::before {
  transform: scale(1);
}


.colortheme1 {
  background-color: #5860F8;
}

.colortheme2 {
  background-color: #33C481;
}

.colortheme3 {
  background-color: #5860F8;
}

.colortheme4 {
  background-color: #DDF5EB;
  color: #333;
}

.colortheme5 {
  background-color: #042416;
  color: white;
}

.colortheme6 {
  background-color: #eee;
}

.colortheme7 {
  background-color: white;
  border: 1px solid #1D804F;
}


section {
  padding: 60px min(60px, max(20px, calc(100vw - 400px)* 0.1));
  margin: 80px auto;
  justify-items: center;
}

section.toptight {
  margin-top: 0px;
  padding-top: 0px;
}

section:has(.watermark) {
  position: relative;
}

section .watermark {
  fill: #21A366;
}

section .watermark {
  position: absolute;
  height: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  pointer-events: none;
}

/* section img.watermark:first-child {
  position: absolute;
  height: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  pointer-events: none;
} */


section.rounded {
  border-radius: 50px;
  margin: 40px min(40px, max(10px, calc(100vw - 400px)* 0.08));
  /* margin: 40px min(40px, max(10px, calc(100vw - 400px)* 0.08)); */
}

/* SECTION QUOTE */
/* SECTION QUOTE */
/* SECTION QUOTE */
/* SECTION QUOTE */
/* SECTION QUOTE */
section.quote {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  text-align: left;
  justify-self: center;

}


section.quote:has(.top) {
  display: block;
  padding-left: 250px;
  padding-top: 130px
}

@media (max-width: 650px) {
  section.quote:has(.top) {
    padding-left: 60px;
  }
}

/* @media (min-width: 800px) { */
section.quote .left {
  flex: 0 0 30%;
  align-self: flex-end;
  padding-top: 50px;
  margin: 0 60px;
  box-sizing: border-box;
}

section.quote .right {
  flex: 1;
  min-width: 250px;
  box-sizing: border-box;
}

/* } */

section.quote .maintext {
  position: inherit;
  z-index: 1;
}

section.quote .maintext h3 {
  font-weight: 500;
}

section.quote .author p {
  font-size: 24px;
  margin-left: 70px;
  position: relative;
}

section.quote .author p:first-child::before {
  content: "—";
  position: absolute;
  left: -25px;
  top: 0;
}

section.quote::after {
  content: '“';
  position: absolute;
  left: 70px;
  top: 0;
  font-size: 550px;
  font-weight: 500;
  font-family: 'Times New Roman', Times, serif;
  color: #21a36624;
  /* filter: brightness(1.2) hue-rotate(40deg); */
  /* z-index: inherit; */
  line-height: 0.9;
}

/* SECTION CASE STUDY */
/* SECTION CASE STUDY */
/* SECTION CASE STUDY */
/* SECTION CASE STUDY */
/* SECTION CASE STUDY */
section.case {
  position: relative;
}

section.case::before {
  font-size: 40px;
  content: "CASE STUDY";
  white-space: nowrap;
  position: absolute;
  top: 60px;
  right: 0;
  background-color: #09472B;
  padding: 5px 40px;
  color: white;
  text-align: right;
  box-sizing: border-box;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
}

section.case .title {
  display: flex;
  box-sizing: border-box;
  text-align: left;
  margin-right: 260px;
}

@media (max-width: 850px) {
  section.case .title {
    margin-top: 100px;
    margin-right: 0px;
  }
}


section.case .title img {
  height: 80px;
  margin-right: 30px;
}

section.case .title h3 {
  font-weight: 500;
  margin: 0;
}

section.case .title p {
  margin: 0;
}

section.case .main {
  margin: 40px min(40px, max(10px, calc(100vw - 400px)* 0.15));


  display: flex;
  flex-wrap: wrap;
  column-gap: 80px;
  row-gap: 20px;
  text-align: left;
}

section.case .main .blurb {
  flex: 1 1 40%;
}

section.case .main .cards {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

section.case .main .cards .card {
  display: grid;
  grid-template-columns: 130px auto;
  width: 300px;
  gap: 20px;
  background-color: white;
  border-radius: 10px;
  padding: 10px 20px;
  color: #667;
}

section.case .main .cards .card :first-child {
  font-size: 60px;
  max-height: 80px;
  text-align: right;
  line-height: 1;
  justify-self: center;
  align-self: center;
  grid-column: 1;
}

section.case .main .cards .card :last-child {
  grid-column: 2;
}

section.case .screenshots {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  box-sizing: border-box;
  max-width: 100%;
  justify-content: center;
}

section.case .screenshots>* {
  /* flex: 0 1 300px; */
  min-width: 300px;
  max-width: calc(50% - 10px);
}

section.case .screenshots:has(> :only-child)> :only-child {
  max-width: none;
}

section.case .screenshots img {
  max-height: 400px;
  display: flex;
  position: relative;
  width: auto;
  height: auto;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}

section.case .screenshots img[data-caption]::after {
  content: attr(data-caption);
  /* position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: red;
  padding: 5px;
  font-size: 104px;
  width: 100%;
  text-align: center;
  box-sizing: border-box; */
  z-index: 99;


  /* content: attr(tooltip); */
  position: absolute;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  right: -5px;
  bottom: 100%;
  transform: translateY(-10px);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  visibility: hidden;
  max-width: 300px;
  word-wrap: break-word;
}

section.case .screenshots video {

  max-height: 400px;
  height: auto;
  width: auto;
  cursor: pointer;
  object-fit: cover;

  display: block;
  margin: 0 auto;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}

.spacer40 {
  display: inline-block;
  width: 40px;
}

.content-body p {
  font-size: 20px;
}

.content-body p:has(+ ul) {
  margin-bottom: 0;
}

.content-body li {
  line-height: 1.7em;
}

.content-body ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}


.content-body img {
  max-width: min(90%, 700px);
  display: block;
}


table.shaded {
  border-collapse: collapse;
  width: auto;
  margin: 10px auto;
}


table.shaded th,
table.shaded td {
  padding: 4px 8px;
  text-align: left;
}

table.shaded tr {
  min-height: 30px;
  line-height: 1.8;
}

table.shaded th {
  text-align: center;
  background-color: transparent;
  font-weight: bold;
}

table.shaded tr:nth-child(even) {
  background-color: rgba(163, 245, 208, 0.05);

}

table.shaded tr:nth-child(odd):not(:has(th)) {
  background-color: rgba(163, 245, 208, 0.2);

}

table.shaded tr:nth-child(even) td:not(:first-child) {
  border-left: 1px solid rgba(150, 150, 150, 0.3);
}

table.shaded tr:nth-child(even) td:not(:last-child) {
  border-right: 1px solid rgba(150, 150, 150, 0.3);
}

table.shaded tr:not(:has(th)):hover {
  background-color: rgba(163, 245, 208, 0.35);
}



/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */
/* FOOTER */

/* STRUCTURE */
/* STRUCTURE */
/* STRUCTURE */
/* STRUCTURE */
/* STRUCTURE */



.footer__group {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.content-footer .info {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding-bottom: 20px;
}


@media (max-width: 650px) {
  .content-footer .info {
    flex-wrap: wrap;
  }
}

.nav__item {
  max-width: 400px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.nav__title {
  grid-row: 1;
}

.nav__ul {
  grid-row: 2;
  margin-right: 30px;
}

/* STYLING */
/* STYLING */
/* STYLING */
/* STYLING */

.nav__item {
  padding-top: 15px;
  margin-right: 30px;
}

.nav__item:not(:has(h2)) {
  font-size: 1.5em;
}

.content-footer .footer__logo {
  padding: 15px 40px 15px 15px;
}

.content-footer .footer__logo img {
  max-width: 110px;
  height: auto;
  align-self: flex-start;
  object-fit: contain;
}

.content-footer .footer__logo.product img {
  max-width: none;
  width: 200px;
}

.content-footer .footer__logo .child-product {
  width: 200px;
  padding: 20px 20px 5px 20px;
  margin: 0 0 0 28px;
  border-left: 1px solid white;
}

.content-footer .footer__logo .child-product a {
  text-align: left;
}

.content-footer .footer__logo .child-product img {
  width: auto;
  max-height: 50px;
}

.content-footer .footer__logo .child-product p {
  font-size: 0.9em;
  margin-bottom: 0px;
}

.content-footer h2 {
  margin-bottom: 0.3em;
  font-weight: 500;
  text-align: left;
  font-weight: 500;
  color: #fff;
  font-size: 24px;
}

.content-footer address {
  margin-top: 0.3em;
  font-style: normal;
  line-height: 1.3em;
}

.emailimage {
  height: 1.09em;
  display: inline-block;
}
.content-footer .emailimage {
  display: inline-block;
  height: 1.09em;
  margin-top: 6px;
  margin-bottom: -6px;
  margin-left: 1px;
  max-width: 200px;
}

.content-footer a {
  position: relative;
}

.content-footer a.active:after,
.content-footer a:hover:after {
  width: 100%;
}

.content-footer a:not(:has(img)):after {
  background: #fff;
  bottom: -2px;
  left: 0px;
  content: "";
  display: block;
  height: 0.1px;
  padding-bottom: 1px;
  position: absolute;
  transition: .3s ease-in;
  width: 0;
}

.content-footer ul {
  list-style: none;
  padding-left: 0;
}


.content-footer li {
  line-height: 2em;
  text-wrap: nowrap;
}


.content-footer a {
  text-decoration: none;
}

.content-footer .legal {
  font-size: 0.9em;
  margin-top: 20px;
}

.content-footer .legal p {
  margin-bottom: 0px;
}