* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Global values
   -------------------------------------------------- */

:root {
  --default-transition: all 0.5s ease;

  --primary-font: 'Roboto', Helvetica, sans-serif;
  --emphasis-font: "BioRhyme", serif;

  --brand-gray: #3D3D3D;
  --brand-blue: #0D6587;
  --brand-orange: #E35007;

  --top-color: #EBF4F9;
  --bottom-color: #EBF4F9;

  --body-bg: #EBF4F9;
  --text-color: var(--brand-gray);
  --font-size-base: 18px;

  --radius-small: 5px;
  --radius-large: 9px;

  body {
    margin: 0;
    line-height: 1.5;
    background-color: var(--body-bg);
  }
}

button, .button {
  display: block;
  background-color: var(--brand-orange);
  font-size: 1.125em;
  font-weight: 500;
  width: 100%;
  text-align: center;
  color: white;
  font-family: var(--primary-font);
  border-radius: 10em;
  padding: .75em 3em;
  text-decoration: none;

  &:hover {
    color: white;
    cursor: pointer;
    background-color: color-mix(in srgb, var(--brand-orange) 95%, black);
  }
}

.hp-base {
  font-family: var(--primary-font);
  font-size: var(--font-size-base);
  color: #4a4a4a;

  h1 {
    font-family: var(--emphasis-font);
    font-size: 4em;
    font-weight: 700;
    margin: .5em 0 0;
    text-align: center;
    line-height: 1.2em;
    color: var(--brand-blue);

    &+h1 {
      margin-top: 0;
    }
  }

  h2 {
    font-family: var(--emphasis-font);
    font-size: 2em;
    font-weight: 500;
    line-height: 1.25em;
    margin: .75em 0 0;
    position: relative;
    color: var(--brand-orange);

    &+h2 {
      margin-top: 0;
    }

    &+h1 {
      margin-top: 0;
      font-size: 2.5em;
    }
  }

  h3 {
    font-size: 2.375em;
    font-weight: 700;
    font-family: var(--emphasis-font);
    color: var(--brand-blue);
    margin: 0;

    &+p {
      margin-top: .5em;
    }
  }

  h4 {
    font-size: 1.125em;
    font-family: var(--emphasis-font);
    color: var(--brand-orange);
    text-transform: uppercase;
    margin: 0;

    &+p {
      margin-top: .5em;
    }
  }

  p {
    font-size: 1em;
    font-weight: 300;
    margin: 1em auto 1em;
    text-align: center;

    &.emphasis {
      color: black;
      font-weight: 700;
      font-family: var(--emphasis-font);
      margin-top: 0;
      font-size: 1.5em;
    }

    &:has(.breadcrumb) {
      text-align: left;
    }
  }

  section p {
    max-width: 80em;
  }

  a,
  a:link,
  a:visited {
    color: white;
    text-decoration: underline;

    &:hover {
      color: #ff681d;

      &.button {
        color: white;
      }
    }

    &.anchor {
      display: block;
      position: relative;
      top: -100px;
      /* visibility: hidden; */
    }

    &.button {
      text-decoration: none;
    }

    &.breadcrumb {
      font-size: .888889rem;
      font-family: var(--emphasis-font);
      color: var(--brand-orange);
      text-decoration: underline;

      &:hover {
        text-decoration: none;
      }
    }
  }

  #mainContent {
    padding: 0;
  }
}

.hp-tag {
  h2 {
    color: white;
    margin: 0;
  }

  p {
    margin: 0;
  }
}

.background-color {
  background-image: linear-gradient(to bottom, var(--top-color) 0%, var(--top-color) 50%, var(--bottom-color) 50.1%);
}

.notch {
  position: relative;

  &:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: -1.4142em;
    left: 50%;
    transform: translateX(-50%);
    width: 3em;
    height: 1.4142em;
    background-color: var(--bottom-color);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}

.left {
  text-align: left;

  p {
    text-align: left;
  }
}

.right {
  text-align: right;

  p {
    text-align: right;
  }
}

.center {
  text-align: center;

  p {
    text-align: center;
  }
}

header.nav {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #156586;
  overflow: visible;
  z-index: 10;
  height: 4em;

  img {
    width: 2.5em;
    height: auto;
    max-width: 12vw;
    position: absolute;
    top: .6em;
    left: .6em;
  }

  div.hp-tag {
    display: block;

    h2 {
      font-size: 1.25em;
      top: .75em;
      left: 3em;
    }

    p {
      display : none;
    }
  }

  nav {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: auto;

    button {
      background: none;
      margin: 0;
      padding: 0;
      border-width: 0;
      font-size: .5em;
      text-transform: uppercase;
      position: absolute;
      top: 0;
      right: .5em;
      width: auto;

      &:hover {
        background-color: transparent;
        color: var(--brand-orange);
      }

      span {
        display: block;
        font-size: 5em;
        line-height: 1em;
        margin: 0;
        padding: 0;
      }
    }
    
    ul {
      display: block;
      list-style-type: none;
      margin: 0;
      padding: 0 1em .5em 1em;
      background-color: var(--brand-blue);
      position: absolute;
      top: -20em;
      left: 0;
      transition: top 0.3s ease-in-out;
      width: 100vw;
      z-index: 1;

      li {
        padding: .75em 0;
        border-bottom: solid .5px white;

        &:last-child {
          border-width: 0;
        }

        a, a:visited, a:link {
          text-decoration: none;

          &:hover {
            text-decoration: underline;
          }
        }
      }
    }

    &.expanded {
      button {
        span {
          font-size: 4em;
          padding: .125em .175em;
        }
      }
      ul {
        top: 3.75em;
      }
    }
  }

  .get-started {
    position: fixed;
    bottom: -5em;
    width: 100vw;
    left: 0;
    z-index: 10;

    h4 {
      background-color: #ff681d;
      font-family: var(--primary-font);
      font-size: 1em;
      color: white;
      text-transform: uppercase;
      display: none;
      align-content: center;
      justify-content: center;
      align-items: center;
      height: 10em;
      padding: 0 1.5em;
      margin: 0;
      z-index: 999;
      position: relative;
      cursor: pointer;

      &:after {
        display: none;
      }
    }

    ul {
      margin: 0;
      padding: 8px;
      background-color: #e35108;
      color: white;
      list-style-type: none;
      text-align: left;
      position: relative;
      top: -5em;
      z-index: 998;
      display: flex;
      flex-direction: row;
      justify-content: center;

      li {

        a,
        a:link,
        a:visited {
          color: white;
          text-decoration: none;
          text-transform: uppercase;
          font-size: 16px;
          background-position: left center;
          background-repeat: no-repeat;
          padding-left: 56px;
          min-height: 48px;
          display: flex;
          justify-content: left;
          align-content: center;
          align-items: center;

          &:hover {
            text-decoration: underline;
            color: white;
          }

          &.demo {
            background-image: url('/assets/img/orange-conversation.svg');
          }
        }
      }
    }
  }
}

.image-set {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2em 2em 2em 4em;
  margin: 0;

  &>img {
    width: 100%;
    height: auto;
    margin: 0;
  }
}

.tabs {
  list-style-type: none;
  padding-left: 0;
  display: none;
}

.content-tabs {
  .tab-pane {
    img {
      max-width: 70vw;
    }
  }
}


.hp-base {
  section:has(> :last-child.notch) + section > :first-child {
    padding-top: 3em;
  }

  section {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    &:first-child {
      margin-top: 4em;
    }

    &.meet {
      margin-top: 8em;
    }

    .image-icon-list-wrapper {
      width: 100%;
      padding: 2em;

      &.dark {
        .image-icon-list {
          aside.callouts {
            div.callout {
              h3 {
                font-family: var(--primary-font);
              }
            }
          }
        }
      }

      &.light {
        .image-icon-list {
          &>img {
            order: 1;
          }

          aside.callouts {
            order: 0;

            div.callout {
              h3 {
                font-family: var(--emphasis-font);
                color: var(--brand-orange);
                font-size: 1.75rem;
              }

              &>img {
                height: 120px;
                width: 120px;
              }
            }
          }
        }
      }

      h2 {
        text-align: center;
      }

      .image-icon-list {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: 2em;

        &>img {
          width: 100%;
          height: auto;
          max-width: 510px;
          margin-bottom: 5em;
          margin-left: .5em;
        }

        aside.callouts {
          display: flex;
          flex-direction: column;
          margin-top: 1em;

          div.callout {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 1em;

            &>img {
              width: 70px;
              height: 70px;
              margin: 0 1.5em 1em 1.5em;
            }

            &>div {
              display: flex;
              flex-direction: column;
              align-items: center;
              justify-content: flex-start;
              max-width: 35em;

              h3 {
                margin-bottom: 0;
                font-weight: 700;
                color: var(--brand-gray);
                font-size: 1em;
                text-align: left;
                text-align: center;
              }

              p {
                font-size: 1em;
                text-align: left;
                margin-top: 0;
                line-height: 1.66667em;
              }
            }
          }
        }
      }
    }

    .color-block {
      width: 100%;
      padding: 0 1em;
      min-height: 2em;

      a {
        &.button {
          display: inline-block;
          width: auto;
        }
      }
    }

    .icon-list-set-wrapper {
      width: 100%;

      &.large {
        .icon-list-item {
          margin-bottom: 3em;
          padding-bottom: 3em;
          border-bottom: solid .5px var(--brand-blue);

          &:last-child {
            border-bottom-width: 0;
            padding-bottom: 0;
          }

          aside {
            width: auto;
            border-right-width: 0;

            img {
              max-width: 100%;
            }
          }

          div {
            h4 {
              color: var(--brand-blue);
              font-size: 2rem;
              font-family: var(--emphasis-font);
              margin-bottom: .5em;
            }

            a {
              color: var(--brand-orange);
              font-weight: 700;
              font-family: var(--emphasis-font);

              &:after {
                content: " »";
              }
            }
          }
        }
      }

      .icon-list-item {
        display: flex;
        flex-direction: column;
        padding-top: 2em;
        margin: 0 auto 2em;
        width: 90vw;
        max-width: 80em;

        aside {
          flex-shrink: 0;

          h3 {
            font-size: 1rem;
            text-transform: uppercase;
            color: var(--brand-blue);
            font-family: var(--primary-font);
            margin-top: 1em;
          }
        }

        div {
          text-align: left;
          h4 {
            font-size: 1.333333rem;
            margin: 0;
            color: var(--brand-orange);
            font-family: var(--primary-font);
            text-transform: none;
          }

          p {
            text-align: left;
            font-size: 1rem;
            margin: 0;

            a {
              &.button {
                display: inline-block;
                width: auto;
              }
            }
          }
        }
      }
    }

    .callout-cta-set {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 4em;

      &.light {
        .callout-cta {
          background-color: transparent;

          h2, h3, h4, p {
            color: white;
          }

          h2, h3, h4 {
            font-family: var(--primary-font);
          }
          
          h4 {
            &+p {
              border-color: white;
            }
          }
        }
      }

      &.blank {
        .callout-cta {
          background-color: transparent;
        }
      }

      .callout-cta {
        background-color: var(--body-bg);
        padding: 4em 1em 3em;
        text-align: center;
        margin: 2em .5em;
        position: relative;

        img {
          position: absolute;
          top: 0;
          left: 50%;
          transform: translateX(-50%) translateY(-50%);
          height: 110px;
          width: 110px;
        }

        a, a:link, a:visited {
          color: var(--brand-orange);
          text-decoration: underline;
        }

        h2 {
          font-size: 2.5rem;
          color: var(--brand-orange);
          margin: 0;
          font-weight: 700;
        }

        h3 {
          font-size: 1.875rem;
          color: var(--brand-gray);
          margin: 0 0 1em 0;
          font-weight: 700;
        }

        h4 {
          text-transform: uppercase;
          color: var(--brand-blue);
          font-family: var(--primary-font);

          &+p {
            padding-top: 1em;
            margin-top: .5em;
            border-top: solid .25px var(--brand-gray);
          }
        }
      }
    }


    .bullets-2-col {
      display: flex;
      flex-direction: column;
      justify-content: center;

      ul {
        li {
          max-width: 22em;
          font-size: 1.75em;
          font-weight: 300;
          text-align: left;
          margin-bottom: 1em;
        }
      }
    }

    &.start {
      max-width: 1080px;
    }

    .responsive-image {
      display: flex;
      width: 100%;
      justify-content: center;

      img {
        width: 100%;
        height: auto;
        margin-top: 4em;

        &.small-screen-image {
          display: block;
          max-width: 185px;
        }

        &.large-screen-image {
          display: none;
        }
      }
    }

    .full-width-image-wrapper {
      width: 100%;

      .full-width-image {
        width: 90vw;
        margin: 0 auto 2em;
        max-width: 80em;
      }
    }

    .accordian-wrapper {
      text-align: left;
      width: 100%;
      padding: 0 1em;

      h3 {
        margin: 1.5em 0;
      }

      .accordian-item {
        margin: 3em auto;
        padding-bottom: 2em;
        border-bottom: solid .5px var(--brand-blue);

        &.expanded {
          .accordian-headline:after {
            transform: rotate(45deg);
            transition: all 0.3s ease-in-out;
          }

          p {
            max-height: 7em;
            transition: max-height .3s ease-in-out;
          }
        }

        .accordian-headline {
          font-family: var(--base-font);
          font-size: 1.33333rem;
          text-transform: none;
          position: relative;
          cursor: pointer;
          padding-right: 2em;

          &:after {
            content: "+";
            position: absolute;
            top: -.375em;
            right: 0;
            font-size: 2em;
            color: var(--brand-blue);
            transform: rotate(0deg);
            transition: all 0.3s ease-in-out;
          }
        }

        p {
          display: block;
          max-height: 0;
          height: auto;
          overflow: hidden;
          font-size: 1.33333rem;
          text-align: left;
          margin: 1em 0 0 0;
          transition: max-height .3s ease-in-out;
        }
      }
    }

    &.contact {
      #lead-form-container {
        text-align: center;
      }

      .multi-column {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: stretch;
        align-items: stretch;
      }

      input[type='email'] {
        border-radius: 5px;
        background-color: #f4f4f2;
        box-shadow: inset 1px 1px 4px 0 rgba(166, 166, 166, 0.5);
        padding: 1.33333em;
        color: #565758;
        border-width: 0;
        font-size: 1.25em;
        min-width: 90vw;

        &:focus {
          box-shadow: inset 1px 1px 4px 0 rgba(166, 166, 166, 0.5),
            0px 0px 5px 2px rgba(151, 197, 67, 0.6);
        }
      }

      input[type='button'],
      input[type='submit'] {
        border-radius: 5px;
        background-color: #97c543;
        padding: 1.3333em;
        margin: 1em;
        color: white;
        border-width: 0;
        text-transform: uppercase;
        text-align: center;
        cursor: pointer;
        font-size: 1.25em;
      }

      .success-message {
        font-size: 1em;
        margin-top: 2em;
      }
    }
  }
}

.blog {
  text-align: left;
  font-size: 1.125rem;

  section, p {
    text-align: left;
    font-weight: 500;
  }

  #mainContent {
    section:first-child {
      text-align: center;
    }

    hr {
      background-color: var(--brand-blue);
      height: .5px;
      margin: 4em 0;
      border-width: 0;
    }

    h3 {
      color: var(--brand-orange);
      margin-bottom: .75em;
    }

    h4 {
      color: var(--brand-blue);
      font-size: 2em;
      text-transform: none;
      margin: .5em 0;
    }

    img {
      background-color: #C6EE56;
      border-radius: 10px;
    }

    .read-more {
      color: var(--brand-orange);
      font-family: var(--emphasis-font);
      font-size: .888889em;
      font-weight: 600;
    }

    .blog-post-list {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 2em;
      margin-bottom: 10em;

      .blog-post-summary {
        border-radius: 5px;
        border: solid black .5px;

        img {
          border-top-left-radius: 5px;
          border-top-right-radius: 5px;
          border-bottom-left-radius: 0px;
          border-bottom-right-radius: 0px;
          max-width: 100%;
          height: auto;
        }

        .post-info {
          margin: 1.5em;

          h4 {
            color: var(--brand-orange);
            font-size: 1.33333em;
            font-family: var(--base-font);
            margin-bottom: 0;
          }

          .post-date {
            font-size: .88889em;
          }

          p:has(.read-more) {
            margin: 2em 0;
          }
        }
      }
    }

    .stay-updated {
      display: block;
      grid-template-columns: 1fr 3fr 1fr;
      margin-top: 2em;

      h3 {
        grid-area: 1 / 1 / 2 / 2;
        font-size: 1.125rem;
        text-transform: uppercase;
        margin: 0;

        &+p {
          grid-area: 2 / 1 / 3 / 2;
          font-size: 2.25rem;
          color: var(--brand-blue);
          margin: 0;
          font-family: var(--emphasis-font);
          font-weight: 700;
        }
      }

      input[type="email"] {
        grid-area: 1 / 2 / 3 / 3;
        width: 100%;
        font-size: 1.125em;
        max-height: 4em;
        padding: 1em;
        line-height: 2em;
        border-radius: 10px;
        box-shadow: 0 4px 4px 0 rgba(195, 195, 195, 0.25) inset;
        border: 1px solid #ABABAB;
      }

      input[type="submit"] {
        grid-area: 1 / 3 / 3 / 4;
        border-width: 0;
        margin: .5em 0;
        max-height: 3em;
        padding: .5em;
      }

      p {
        grid-area: 3 / 1 / 4 / 4;
        width: 100%;
      }
    }

    .blog-article {
      display: grid;
      grid-template-columns: 1fr;
      grid-column-gap: 2em;
      padding-bottom: 8em;
      margin-bottom: 8em;

      .blog-home {
        grid-area: 1 / 1 / 2 / 2;
        margin-bottom: 3em;
        margin-top: 0;
        width: 100%;

        a {
          color: var(--brand-orange);
          font-family: var(--emphasis-font);
        }
      }

      .hero-image {
        grid-area: 2 / 1 / 3 / 2;
      }

      h3 {
        grid-area: 3 / 1 / 4 / 2;
        margin-top: 1.5em;
        margin-bottom: .25em;
        color: var(--brand-blue);
        font-size: 2em;
        line-height: 1.33333em;
      }

      figure {
        margin: 1em 0;
        width: 100%;
      }

      .post-date {
        grid-area: 4 / 1 / 5 / 2;
        margin-top: 0;
        margin-bottom: 1.5em;
        width: 100%;
      }

      article {
        grid-area: 5 / 1 / 6 / 2;

        h4 {
          color: var(--brand-orange);
          font-size: 1.5rem;
          line-height: 1.66667em;
          font-family: var(--base-font);
          margin-bottom: 1em;
        }

        hr {
          margin: 2.5em 0;
        }

        ul, ol {
          padding-left: 1.5em;
        }

        img {
          background-color: #EBF4F9;
          border-radius: var(--radius-small);
        }

        .lead-form {
          h2 {
            color: var(--brand-blue);
            font-size: 1.5rem;
            font-family: var(--base-font);
            font-weight: 700;
          }
        }
      }

      aside {
        grid-area: 6 / 1 / 7 / 2;

        h4 {
          font-family: var(--base-font);
          font-size: 1.5rem;
          color: var(--brand-orange);
          line-height: 1em;
          margin-top: .666667em;
        }

        ul {
          padding-left: 1.25em;

          li {
            margin-bottom: 1.5em;
            font-weight: 400;
          }
        }

        .stay-updated {
          display: flex;
          flex-direction: column;
          text-align: center;
          align-items: center;
          justify-content: flex-start;
          padding: 0 1em;

          h4 {
            color: var(--brand-blue);
            font-family: var(--emphasis-font);
            text-transform: uppercase;
          }

          button {
            border-width: 0;
            margin: 1em 0 .5em;
          }

          p {
            text-align: center;
            margin-top: 0;
          }
        }
      }
    }
  }
}

footer#main {
  background-color: #156586;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 34vw;

  &>a {
    line-height: 0;
    margin: 2em 0 1em;

    &>img {
      width: 6em;
      height: 6em;
    }
  }

  &>div {
    p {
      color: white;
      font-size: 1.125em;
      text-align: center;
      margin: 0;

      &:nth-of-type(1) {
        font-weight: 700;
      }
    }
  }
}

footer#pathIllustration {
  position: fixed;
  left: 0;
  bottom: 0;
  /* width: 100%; */
  width: 100vw;
  height: 35vw;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;

  #bc,
  #wc {
    position: absolute;
    width: 100vw;
    opacity: 0.75;
  }

  #bc {
    height: auto;
    bottom: 17vw;
  }

  #wc {
    height: auto;
    bottom: 18vw;
  }

  #path {
    width: 100vw;
    position: absolute;
    bottom: 0;
    /* z-index: 5; */
  }
}

@media (max-width: 719px) {
  .hp-base {
    .sm-screen {
      display: initial !important;
    }

    .md-screen,
    .lg-screen {
      display: none;
    }
  }
}

@media (min-width: 480px) {
  .hp-base {
    section {
      &.contact {
        input[type='email'] {
          min-width: 20em;
        }
      }
    }
  }
}

@media (min-width: 720px) {
  .hp-base {
    font-size: 16px;
    background-position: initial;

    #mainContent {
      padding: 0;
    }

    h2 {
      &+h1 {
        font-size: 4em;
      }
    }

    section {
      &:first-child {
        margin-top: 10em;
      }
    }
  }

  @media (max-width: 1079px) {
    .hp-base {
      .md-screen {
        display: initial !important;
      }

      .sm-screen,
      .lg-screen {
        display: none;
      }
    }
  }

  header.nav {
    position: fixed;
    width: 100%;
    overflow: visible;
    border-top: solid 2px white;
    display: flex;
    justify-content: space-between;
    align-content: center;
    z-index: 2;

    .hp-tag {
      margin-right: auto;

      h2 {
        font-size: 1.5em;
        left: 14vw;
        top: .6em;
      }
    }

    nav {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      font-size: 0.75em;
      text-transform: uppercase;

      button {
        top: -.5em;
        right: 1.25em;
        font-size: .75em;
      }

      ul {
        margin: 0;
        padding: 0;
        list-style-type: none;

        &:has(a.button) {
          margin-top: 1.5em;
          right: 5em;
        }

        li {
          display: inline-block;

          &.active {
            a,
            a:link,
            a:visited,
            a:active {
              border-color: white;
            }
          }

          a,
          a:link,
          a:visited,
          a:active {
            color: white;
            text-decoration: none;
            padding: .7em 0;
            margin: 0 .7em;
            min-height: 4em;
            border-bottom: solid transparent 1px;

            &:hover {
              text-decoration: underline;
            }

            &.button {
              margin: 0;
              padding: .5em 1.5em;
              display: flex;
              justify-content: center;
              align-items: center;
              font-size: 1.5em;
              font-weight: 700;
              min-height: 0;
            }
          }
        }
      }

      &.expanded {
        ul {
          top: 4.75em;
        }
      }
    }

    .get-started {
      margin-right: 4em;
      margin-left: 1em;
      position: relative;
      width: auto;
      bottom: auto;
      left: auto;

      &.active {
        ul {
          top: 0;
        }
      }

      h4 {
        display: flex;
        font-size: 1.25em;
        height: 7.8vw;
        cursor: auto;
        min-width: 10.5em;
      }

      ul {
        padding: 1.08vw;
        display: block;
        top: 0;

        li {
          &:first-child {

            a,
            a:link,
            a:visited {
              border-width: 0;
              padding-right: inherit;
              margin-right: inherit;
            }
          }

          a,
          a:link,
          a:visited {
            font-size: 0.75em;
            padding-left: 4em;
            height: 4em;
          }
        }
      }
    }
  }

  .image-set {
    flex-wrap: nowrap;

    img {
      max-width: 30em;
    }
  }

  .content-tabs {
    display: flex;
    flex-direction: row;
    padding: 2em calc((100vw - 80em) / 2) 4em;

    .tabs {
      list-style-type: none;
      display: flex;
      flex-direction: column;
      margin: 0;
      padding: 0;
      overflow: visible;

      li {
        list-style-type: none;
        padding: 0 1.5em;
        --tab-height: 5em;
        height: var(--tab-height);
        position: relative;
        top: 0;
        left: 0;
        width: 13em;
        margin-right: 2em;
        font-weight: 700;
        text-align: left;
        border-bottom: solid .5px var(--brand-gray);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out, color 0.3s ease-in-out, width 0.3s ease-in-out, margin-right 0.3s ease-in-out, left 0.3s ease-in-out, padding-left 0.3s ease-in-out, top 0.3s ease-in-out;

        &:after {
          content: '';
          position: absolute;
          right: calc(var(--tab-height) * -.1);
          top: 50%;
          transform: translateY(-50%);
          width: 0;
          height: 0;
          transition: all 0.3s ease-in-out;
          border-top: calc(var(--tab-height) * .5) solid transparent;
          border-bottom: calc(var(--tab-height) * .5) solid transparent;
          border-left: calc(var(--tab-height) * .1) solid transparent;
        }

        &:hover {
          cursor: pointer;
        }

        &:last-child {
          border-bottom-width: 0;
        }

        &.active, &:hover {
          top: -1px;
          padding-top: 1px;
          left: -1em;
          width: 15em;
          margin-right: 0;
          padding-left: 2.5em;
          background-color: var(--brand-blue);
          color: white;
          position: relative;
          
          &::after {
            border-left-color: var(--brand-blue);
          }
        }
      }
    }

    .tab-content {
      display: grid;
      grid-template-columns: 1fr;

      .tab-pane {
        display: flex;
        grid-area: 1 / 1 / 2 / 2;
        opacity: 0;
        flex-direction: row;
        align-items: flex-start;
        padding-left: 2em;
        transition: opacity 0.3s ease-in-out;

        &.active {
          opacity: 1;
        }

        img {
          width: 50%;
          height: auto;
          flex-shrink: 0;
          margin: 0 2em 0 1em;
          transform: rotate(5deg);
        }

        .text-content {
          margin-top: 7em;

          h4, h5, h6 {
            margin-top: 0;
          }

          h4 {
            font-weight: 700;
            font-family: var(--base-font);
            text-transform: none;
            font-size: 1.5rem;
          }

          h5 {
            text-transform: uppercase;
            color: var(--brand-blue);
            margin-bottom: 0;
          }
        }
      }
    }
  }

  .hp-base section {
    &.meet {
      margin-top: 8em;
    }

    .icon-list-set-wrapper {
      .icon-list-item {
        flex-direction: row;

        aside {
          width: 15em;
          padding-right: 2em;
          margin-right: 3em;
          border-right: solid .5px var(--brand-blue);
          flex-shrink: 0;
        }
      }

      &.large {
        .icon-list-item {
          aside {
            width: 22em;
          }
        }
      }
    }

    .image-icon-list-wrapper {
      &.dark {
        .image-icon-list {
          aside.callouts {
            div.callout {
              &>img {
                margin: 0 1.5em 1em 2.5em;
                height: 80px;
                width: 80px;
              }

              h3 {
                text-align: left;
              }
            }
          }
        }
      }

      &.light {
        .image-icon-list {
          aside.callouts {
            div.callout {
              &>img {
                height: 150px;
                width: 150px;
                margin-left: 0;
              }
            }
          }
        }
      }

      .image-icon-list {
        &>img {
          margin-left: 2em;
        }

        aside.callouts {
          div.callout {
            flex-direction: row;
            align-items: flex-start;

            &>div {
              align-items: flex-start;
              justify-content: flex-start;
              max-width: 30em;

              p {
                font-size: 1.125em;
              }
            }
          }
        }
      }
    }

    .callout-cta-set {
      flex-direction: row;
      padding: 4em calc((100vw - 80em) / 2) 0;

      .callout-cta {
        &:first-child {
          margin-left: 0;
        }

        &:last-child {
          margin-right: 0;
        }
      }
    }

    .bullets-2-col {
      flex-direction: row;
      justify-content: space-between;

      ul {
        &:nth-of-type(1) {
          margin-right: 2em;
        }

        li {
          max-width: 500px;
          font-size: 1.125em;
        }
      }
    }

    .responsive-image {
      max-width: 1080px;
      margin: auto;
      justify-content: flex-end;

      img {
        align-self: flex-end;

        &.small-screen-image {
          display: none;
        }

        &.large-screen-image {
          display: initial;
          max-width: 915px;
        }
      }

      &.contact {
        .multi-column {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-content: stretch;
          align-items: stretch;
        }

        input[type='email'] {
          border-radius: 5px;
          background-color: #f4f4f2;
          box-shadow: inset 1px 1px 4px 0 rgba(166, 166, 166, 0.5);
          padding: 1.33333em;
          color: #565758;
          border-width: 0;

          &:focus {
            box-shadow: inset 1px 1px 4px 0 rgba(166, 166, 166, 0.5),
              0px 0px 5px 2px rgba(151, 197, 67, 0.6);
          }
        }

        input[type='button'],
        input[type='submit'], button {
          border-radius: 5px;
          background-color: #97c543;
          padding: 1.3333em;
          margin: 1em;
          color: white;
          border-width: 0;
          text-transform: uppercase;
          text-align: center;
          cursor: pointer;
        }
      }
    }
  }
  
  footer#pathIllustration {
    #bc {
      bottom: 6vw;
    }

    #wc {
      bottom: 6vw;
    }
    #path {
      bottom: -12vw;
    }
  }

  .blog {
    #mainContent {
      .blog-post-list {
        grid-template-columns: 1fr 1fr;
        grid-gap: 2em;
      }

      .stay-updated {
        display: grid;

        input[type="email"] {
          width: auto;
        }

        input[type="submit"] {
          margin: .5em 1em;
        }
      }

      .blog-article {
        display: grid;
        grid-template-columns: 3fr 1fr;

        .blog-home {
          grid-area: 1 / 1 / 2 / 3;
        }

        .hero-image {
          grid-area: 2 / 1 / 3 / 3;
        }

        h3 {
          grid-area: 3 / 1 / 4 / 3;
        }

        .post-date {
          grid-area: 4 / 1 / 5 / 3;
        }

        article {
          grid-area: 5 / 1 / 6 / 2;
        }

        aside {
          grid-area: 5 / 2 / 6 / 3;
        }
      }
    }
  }
}


@media (min-width: 900px) {
  .content-tabs {
    .tabs {
      li {
        width: 18em;

        &.active, &:hover {
          width: 20em;
        }
      }
    }
  }
}

@media (min-width: 1080px) {
  .hp-base {
    .sm-screen,
    .md-screen {
      display: none;
    }

    .lg-screen {
      display: initial !important;
    }
  }

  header.nav {
    height: 5.43em;

    nav {
      button {
        display: none;
      }

      ul {
        position: relative;
        right: 21em;
        margin-top: 2.85em;
        top: auto;
        left: auto;
        width: auto;
        background-color: transparent;

        li {
          padding: 0;
          border-bottom-width: 0;
        }

      }
    }

    img {
      width: 100%;
      max-width: 8.125em;
      margin-top: 0;
      margin-left: 1em;
    }

    div.hp-tag {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
      margin-left: 10.75em;
      color: white;
      position: absolute;

      h2 {
        font-size: 2em;
        top: auto;
        left: auto;
      }

      p {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 0;
      }
    }

    .get-started {
      margin-right: 2em;

      h4 {
        height: 4.25em;
      }

      ul {
        padding: 1em;
      }
    }
  }

  .image-set {
    flex-wrap: nowrap;
  }
  
  .content-tabs {
    .tabs {
      li {
        width: 24em;

        &.active, &:hover {
          width: 26em;
        }
      }
    }
  }

  .hp-base section {
    &.meet {
      margin-top: 8em;
    }
  }

  footer#main {
    height: 7.5em;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 18vw;
    padding: 0 0 0 2em;
    position: relative;
    z-index: 10;

    &>a {
      margin: 1em;

      &>img {
        width: 4.25em;
        height: 4.25em;
      }
    }

    &>div {
      p {
        text-align: left;
      }
    }
  }
  
  footer#pathIllustration {

    #bc {
      bottom: 5vw;
    }

    #wc {
      bottom: 6vw;
    }

    #path {
      bottom: -13vw;
    }
  }

  .blog {
    #mainContent {
      .blog-post-list {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .stay-updated {
        display: grid;

        input[type="email"] {
          width: auto;
        }

        input[type="submit"] {
          margin: .5em 1em;
        }
      }
    }
  }
}

@media (min-width: 1300px) {
  .hp-base {
    section {
      .color-block, .accordian-wrapper {
        padding: 0 calc((100vw - 80em) / 2);
      }
    }
  }
}

@media (min-width: 1440px) {
  footer#pathIllustration {

    #bc {
    }

    #wc {
    }

    #path {
    }
  }
}

@media (min-width: 1680px) {
  footer#pathIllustration {

    #bc {
      bottom: 4vw;
    }

    #wc {
      bottom: 5vw;
    }

    #path {
      bottom: -14vw;
    }
  }
}

@media (min-width: 1680px) {
  footer#pathIllustration {

    #bc {
      bottom: 2vw;
    }

    #wc {
      bottom: 4vw;
    }

    #path {
      bottom: -15vw;
    }
  }
}