html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  line-height: 1.75;
}

.wavy-underline {
  /* Required to position the underline relative to this element */
  position: relative; 
  /* This can be inline or inline-block */
  display: inline-block;
}

.wavy-underline::after {
  /* Create the pseudo-element */
  content: ''; 

  /* Position it absolutely underneath the text */
  position: absolute;
  left: 0;
  right: 0; /* Or width: 100% */

  /* This replaces 'text-underline-offset' */
  bottom: -20px; 

  /* This replaces 'text-decoration-thickness' */
  height: 50px; 

  /* This creates the wavy line using a repeating SVG background image */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3e%3cpath fill='none' stroke='%23bbf7d0' stroke-width='2' d='M0 2 C5 4 5 0 10 2 C15 4 15 0 20 2'/%3e%3c/svg%3e");
  background-size: 100px 80; /* Controls the wave frequency and thickness */
  background-repeat: repeat-x;
}

.wavy-underline-copy {
  /* Required to position the underline relative to this element */
  position: relative; 
  /* This can be inline or inline-block */
  display: inline-block;
  font-family: 'Cal Sans', sans-serif;
}

.wavy-underline-copy::after {
  /* Create the pseudo-element */
  content: ''; 

  /* Position it absolutely underneath the text */
  position: absolute;
  left: 0;
  right: 0; /* Or width: 100% */

  /* This replaces 'text-underline-offset' */
  bottom: -10px; 

  /* This replaces 'text-decoration-thickness' */
  height: 20px; 

  /* This creates the wavy line using a repeating SVG background image */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3e%3cpath fill='none' stroke='%23bbf7d0' stroke-width='2' d='M0 2 C5 4 5 0 10 2 C15 4 15 0 20 2'/%3e%3c/svg%3e");
  background-size: 20px 10px; /* Controls the wave frequency and thickness */
  background-repeat: repeat-x;
}

.threadi-p {
  font-family: 'Cal Sans', sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #bbf7d0;
  text-decoration-style: wavy;
}

.content-wrapper {
  flex: 1;
}

* {
  box-sizing: border-box;
}

.full-width-bar {
  padding: 10px;
  background-color: #434343;
}

.full-width-bar-secondary {
  padding: 10px;
  background-color: #434343;
}

.full-width-feat {
  margin-top: 60px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(67, 67, 67, 1) 55%, rgba(67, 67, 67, 1) 100%);
}

.full-width-feat-alt {
  margin-top: 60px;
  background: #ff5c35;
  background: linear-gradient(90deg, rgb(255, 156, 133, 1) 0%, rgb(255, 189, 174, 1) 55%, rgb(254, 244, 234, 1) 100%);
}

h1 {
  font-weight: 400;
  font-style: normal;
  font-family: 'Cal Sans', sans-serif;
}

h1 a,
h1 a:visited {
  text-decoration: none;
  color: inherit;
}

.modern-button {
  display: inline-block;
  /* Allows setting width and height */
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  color: #333;
  /* Dark text */
  background-color: #f4f4f4;
  /* Light background */
  border: 1px solid #ccc;
  /* Subtle border */
  border-radius: 5px;
  /* Slightly rounded corners */
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* Smooth hover effect */
}

.modern-button:hover {
  background-color: #ddd;
  /* Slightly darker on hover */
}

.modern-button:focus {
  outline: none;
  /* Remove default focus outline */
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  /* Subtle focus effect */
}

.modern-button.primary {
  background-color: #E3E4E6;
  /* Primary color */
  color: #434343;
  border-color: #E3E4E6;
}

.modern-button.primary:hover {
  background-color: #31e981;
  border-color: #31e981;
}

#team-member-profile {
  font-size: 19px;
  color: white;
}

#hs-section {
  font-size: 18px;
}

.team-img {
  width: 55%;
  float: left;
  margin-left: 75px;
  padding-bottom: 40px;
}

.hs-certs-img {
  width: 70%;
  float: right;
  padding-bottom: 0px;
}

.feat-img {
  width: 90%;
  float: right;
}

.feat-txt {
  padding-right: 75px;
  padding-bottom: 10px;
}

.feat-subhead {
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 10px;
}

table {
  margin: auto;
  width: 700px;
}

td,
th {
  padding: 8px;
}

.table-first-col {
  background-color: #808080;
}

.feat-hr {
  border: 3px solid white;
  width: 85%;
  float: left;
  margin-top: -5px;
  border-radius: 2px;
}

body {
  background-color: white;
  color: #434343;
  font-family: 'IBM Plex Serif', serif;
}

footer {
  background-color: #6aa84f;
  /*background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(106,168,79,1) 35%, rgba(62,125,34,1) 65%, rgba(62,125,34,1) 100%);*/
  margin-top: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
}

footer a {
  text-decoration: none;
  color: white;
}

footer a:visited {
  text-decoration: none;
}

.end-tag-symbol {
  font-family: 'Source Code Pro', monospace;
}

.footer-content {
  padding-top: 30px;
}

.width-restrict {
  max-width: 925px;
  margin: auto;
}

.width-restrict--blog-post {
  max-width: 750px;
  margin: auto;
}

#content-intro {
  font-size: 20px;
  text-align: justify;
  text-align-last: center;
}

#process-section {
  font-size: 20px;
  text-align: justify;
  text-align-last: center;
}

#content-sign-off {
  font-size: 20px;
  text-align: justify;
  text-align-last: center;
}

/*
.hero-above-fold {
  width: 100%;
  background: rgb(106,168,79);
  background: rgb(62,125,34);
  background: linear-gradient(180deg, rgba(62,125,34,1) 0%, rgba(62,125,34,1) 50%, rgba(106,168,79,1) 75%, rgba(255,255,255,1) 100%);
  background: rgb(49,233,129);
  background: linear-gradient(90deg, rgba(62,125,34,1) 0%, rgba(62,125,34,1) 45%, rgba(255,255,255,1) 100%);
  background-color: white;
  padding-bottom: 275px;
  background-image: url("assets/thread_bg.png");
  background-position: top -100% left 70%;
  background-repeat: no-repeat;
}
*/

.row-above-fold {
  padding-top: 40px;
  max-width: 950px;
  margin: auto;
  padding-bottom: 5px;
}

.row-above-fold--blog-post {
  max-width: 750px;
  margin: auto;
  padding-bottom: 5px;
}

.row {
  padding-top: 10px;
  max-width: 1150px;
  margin: auto;
  padding-bottom: 10px;
}

.col-L {
  float: left;
  width: 50%;
  padding: 10px;
}

.col-L--blog-post {
  margin: auto;
  width: 100%;
}

.col-R {
  float: right;
  width: 50%;
  padding: 10px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.row-above-fold:after {
  content: "";
  display: table;
  clear: both;
}

h2 {
  font-size: 38px;
  text-align: left;
  font-weight: normal;
  margin: auto;
  font-family: 'Space Mono', monospace;
}

h3.feat-heading {
  font-size: 28px;
  margin-top: 10px;
  margin-bottom: 10px;
}

h3.process-heading {
  text-align: center;
  font-size: 28px;
  padding-top: 10px;
}

.copy {
  margin-top: 50px;
  font-size: 18px;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-form-cta {
  font-family: 'IBM Plex Serif', serif;
}

.contact-form {
  margin-top: 50px;
  margin-bottom: 50px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'IBM Plex Serif', serif;
}

.contact-form textarea {
  height: 200px;
  font-style: normal;
  line-height: 1.75;
}

.contact-form label {
  font-weight: bold;
}

.contact-form button {
  font-weight: bold;
  color: #E3E4E6;
  background-color: #434343;
  width: 100px;
}

.contact-form button:hover {
  cursor: pointer;
}

.collapsible {
  background-color: #434343;
  color: #E3E4E6;
  cursor: pointer;
  padding: 10px;
  width: 200px;
  border: none;
  display: block;
  border-radius: 20px;
  text-align: center;
  outline: none;
  margin: auto;
  margin-top: 40px;
  font-size: 18px;
}

.active,
.collapsible:hover {
  background-color: #93B5F0;
  color: #434343;
}

.hs-meeting {
  background-color: #31e981;
  color: #434343;
  cursor: pointer;
  padding: 10px;
  width: 200px;
  border: none;
  float: left;
  border-radius: 20px;
  text-align: center;
  outline: none;
  margin-bottom: 30px;
  font-size: 18px;
  font-family: 'Space Mono', monospace;
}

.hs-meeting-wide {
  background-color: #31e981;
  color: #434343;
  cursor: pointer;
  padding: 10px;
  width: 275px;
  border: none;
  float: left;
  border-radius: 20px;
  text-align: center;
  outline: none;
  margin-bottom: 30px;
  margin-top: 20px;
  font-size: 18px;
  font-family: 'Space Mono', monospace;
}

.active,
.hs-meeting:hover,
.hs-meeting-wide:hover {
  background-color: white;
  color: black;
}

.hs-meeting a:link,
.hs-meeting-wide a:link {
  color: #434343;
  text-decoration: none;
}

#hs-callout a:link {
  color: #ff5c35;
}

#hs-callout-L a:hover {
  color: #ff5c35;
}

#hs-callout-L a:visited {
  color: #ff5c35;
}

.hs-callout-grey a:link,
.hs-callout-grey a:hover,
.hs-callout-grey a:visited {
  color: #434343;
}

.hs-meeting a:hover,
.hs-meeting-wide a:hover {
  text-decoration: none;
  color: black;
}

.hs-meeting a:visited:hover,
.hs-meeting-wide a:visited:hover {
  text-decoration: none;
  color: black;
}

.hs-meeting a:visited,
.hs-meeting-wide a:visited {
  text-decoration: none;
  color: #434343;
}

.hs-callout a:link,
.hs-callout a:visited {
  color: #ff5c35;
}


.form-content {
  margin-top: 30px;
  overflow: hidden;
  padding: 0 18px;
  max-height: 0;
  transition: max-height 1s ease-out;
  font-family: 'IBM Plex Serif', serif;
}

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

ul {
  list-style-position: inside;
  list-style-type: square;
}

li {
  margin-right: 60px;
}

.no-dot {
  list-style-type: none;
}

#hero-sub-heading {
  font-size: 20px;
  color: #434343;
  padding-top: 15px;
  font-family: 'Space Mono', monospace;
}

#hs-section-L {
  float: left;
}

h4 {
  margin-right: 45px;
}

.footer-col-R {
  text-align: right;
}

#header-logo {
  width: 45%;
}

#header-logo--blog-post {
  width: 25%;
  padding-top: 5px;
}

#thanks-logo {
  width: 25%;
  padding-top: 40px;
  margin: auto;
  display: block;
}

#hs-install-logo {
  width: 150px;
  padding-top: 40px;
  margin: auto;
  display: block;
}

#hr-above-fold {
  border-radius: 2px;
  float: left;
  width: 95%;
  margin-top: 25px;
  height: 5px;
  border: none;
  color: #6aa84f;
  background-color: #6aa84f;
}

#hr-above-fold--blog-post {
  border-radius: 2px;
  margin: auto;
  width: 100%;
  margin-top: 15px;
  height: 5px;
  border: none;
  color: #6aa84f;
  background-color: #6aa84f;
}

@media screen and (max-width: 1130px) {
  .hero-above-fold {
    background-size: cover;
    padding-bottom: 175px;
  }

  .hero-above-fold--blog-post {
    background-size: cover;
    padding-bottom: 175px;
  }
}

/* SMALL SCREEN CONDITIONALS */
@media screen and (max-width: 600px) {
  
  .wavy-underline {
    /* Required to position the underline relative to this element */
    position: relative; 
    /* This can be inline or inline-block */
    display: inline-block;
  }

  .wavy-underline::after {
    /* Create the pseudo-element */
    content: ''; 

    /* Position it absolutely underneath the text */
    position: absolute;
    left: 0;
    right: 0; /* Or width: 100% */

    /* This replaces 'text-underline-offset' */
    bottom: -10px; 

    /* This replaces 'text-decoration-thickness' */
    height: 25px; 

    /* This creates the wavy line using a repeating SVG background image */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3e%3cpath fill='none' stroke='%23bbf7d0' stroke-width='2' d='M0 2 C5 4 5 0 10 2 C15 4 15 0 20 2'/%3e%3c/svg%3e");
    background-size: 80px 60; /* Controls the wave frequency and thickness */
    background-repeat: repeat-x;
  }

  .width-restrict--blog-post {
    padding-left: 10px;
    padding-right: 10px;
  }

  h1 {
    font-weight: 400;
    font-style: normal;
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.5rem !important;
  }

  #hs-features-list {
    font-size: 16px;
    padding-left: 15px;
    padding-right: 0px;
    margin: 0px auto;
    text-align: left;
  }

  ​ .row-above-fold {
    padding-top: 20px;
    padding-bottom: 5px;
  }

  #header-logo {
    width: 50%;
  }

  #header-logo--blog-post {
    width: 40%;
    padding-top: 5px;
  }

  #hr-above-fold {
    width: 100%;
  }

  .col-L {
    width: 100%;
  }

  .col-R {
    width: 100%;
  }

  .footer-col-L {
    text-align: center;
  }

  .footer-col-R {
    text-align: center;
  }

  footer {
    margin-top: 60px;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .disappear-small-screen {
    display: none !important;
  }

  .copy {
    font-size: 16px;
  }

  .team-img {
    width: 60%;
    float: left;
    padding-bottom: 0px;
  }

  .hs-certs-img {
    width: 60%;
    float: right;
    padding-bottom: 0px;
  }

  .feat-img {
    display: none;
  }

  .feat-txt {
    padding-right: 0px;
    width: 100%;
    font-size: 17px;
  }

  .feat-hr {
    width: 100%;
    float: none;
    border-radius: 2px;
  }

  .hs-meeting,
  .hs-meeting-wide {
    width: 100%;
    border: none;
    border-radius: 20px;
    text-align: center;
    font-size: 15px;
    outline: none;
  }

  .full-width-feat {
    background: rgb(67, 67, 67);
  }

  .full-width-feat-alt {
    background: rgb(255, 189, 174, 1);
  }

  .hero-above-fold {
    padding-bottom: 0px;
    background-size: cover;
  }

  .hero-above-fold--blog-post {
    padding-bottom: 0px;
    background-size: cover;
  }

  #content-intro,
  #process-section,
  #content-sign-off {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 17px;
  }

  #hero-sub-heading {
    font-size: 18px;
  }

  #thanks-logo {
    width: 75%;
  }

  #hs-section {
    font-size: 17px;
    text-align: center;
    float: none;
  }

  h3.feat-heading,
  h5.feat-subhead,
  .feat-txt {
    text-align: center;
  }

  h2 {
    font-size: 26px;
  }

  table {
    margin: 10px;
    width: 95%;
  }

  .process-heading {
    font-size: 20px;
  }

  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form textarea,
  .contact-form button,
  .contact-form label {
    margin-left: 15px;
    margin-right: 15px;
    width: 95%;
  }

  .collapsible {
    width: 150px;
    margin-left: 32%;
    font-size: 16px;
  }
}
