/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  outline: none;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 30px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
* Spin
*/
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition:
    top 0.1s 0.25s ease-in,
    opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition:
    bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition:
    top 0.1s ease-out,
    opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition:
    bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.show-on-mobile-only {
  display: none;
}

@media only screen and (max-width: 700px) {
  .hide-on-mobile {
    display: none !important;
  }
  .show-on-mobile-only {
    display: block !important;
  }
}

@media only screen and (max-width: 1023px) {
  .hide-below-tablet {
    display: none !important;
  }
}

.hidden {
  display: none;
}

.block-center {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.top-margin {
  margin-top: 48px !important;
}

.bottom-margin {
  margin-bottom: 48px !important;
}

.jellyfish-logo {
  display: block;
  width: 160px;
  height: 30px;
  background: url("../img/jf-logo-blue.55169432c75b.png") no-repeat left 0 center;
  background-size: 160px 30px;
}
.hero-dark .jellyfish-logo,
footer .jellyfish-logo {
  background: url("../img/jf-logo-white.48a1367be545.png") no-repeat left 0 center;
  background-size: 160px 30px;
}

#logo-external-embed {
  display: none;
}

html {
  background: #f0f2f5;
  height: 100%;
}

body {
  font-family: 'Source Sans Pro', 'Segoe UI', 'Droid Sans', Tahoma, Arial, sans-serif;
  margin: 0;
}
body section#hero {
  margin: 0 auto;
  max-width: 1400px;
}
body section#content section > article {
  margin: 0 auto;
  max-width: 1400px;
}

.top a {
  color: #1890ff;
}

.hero-light #top {
  color: #222;
  min-height: 100%;
  margin-bottom: -114px;
  border: 1px solid transparent;
}

.hero-light #hero {
  padding: 0 72px;
}
@media only screen and (max-width: 700px) {
  .hero-light #hero {
    height: auto;
    padding: 40px 20px;
  }
}
.hero-dark.landing-2019q4 #top {
  background-image: url("../img/public/jellyfish-bg-dark-2019q4.102c80498f92.jpg");
}

.hero-dark .top {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  height: 650px;
  width: 100%;
}
@media only screen and (max-width: 700px) {
  .hero-dark .top {
    height: auto;
    padding-bottom: 40px;
  }
}
.hero-dark .top a {
  color: white;
}

.hero-dark #hero {
  height: 560px;
  padding: 0 72px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .hero-dark #hero {
    height: auto;
    padding: 0 24px;
  }
}
.hero-dark #hero .tagline {
  margin-bottom: 33px;
  font-size: 60px;
  font-weight: 800;
  line-height: 66px;
  max-width: 700px;
}
@media only screen and (max-width: 700px) {
  .hero-dark #hero .tagline {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 18px;
  }
}
.hero-dark #hero .tagline-text {
  font-size: 19px;
  max-width: 680px;
}
.hero-dark #hero .links li {
  min-width: 126px;
}

.logo-header {
  text-align: center;
  margin: 64px 0;
}

header.legacy {
  background: white;
  padding: 24px 72px;
}
.hero-dark header.legacy {
  background: transparent;
}
.hero-light header.legacy {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
@media only screen and (max-width: 700px) {
  header.legacy {
    padding: 40px 20px 0;
  }
}
.links {
  margin: 0;
  padding: 0;
}
.links li {
  display: inline-block;
  text-transform: uppercase;
  margin: 0 10px;
  text-align: center;
}
.links li a {
  display: block;
  padding: 11px 20px 12px;
  text-decoration: none;
}
.links li a:hover {
  background: #4189bb;
  color: white !important;
  transition: all 0.5s ease-out;
}
.hero-dark #top .links li a:hover,
footer .links li a:hover {
  background: white;
  color: #4189bb !important;
  transition: all 0.5s ease-out;
}
.links li.bordered {
  border: 1px solid #4189bb;
}
.hero-dark .links li.bordered,
footer .links li.bordered {
  border: 1px solid white;
}
.links li:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 700px) {
  nav {
    position: relative;
    top: -34px;
    right: -14px;
  }
}

@media only screen and (max-width: 700px) {
  nav .links li {
    display: block;
    text-align: right;
    margin: 0 5px;
  }
}

#content {
  color: #545454;
  padding: 56px 72px;
}
@media only screen and (max-width: 700px) {
  #content {
    padding: 30px 20px;
  }
}
.no-content #content {
  padding: 0 !important;
}

#content {
  padding: 0;
  max-width: none;
}
#content > section {
  clear: both;
}
#content > section > article {
  margin: 0 auto;
  max-width: 1400px;
}
#content > section.bottom-c2a > article {
  max-width: 800px;
}
#content section.padded {
  padding: 48px 72px;
}
#content section.padded.narrower > * {
  margin: 0 auto;
  max-width: 1100px;
}
#content section.padded.narrowest > * {
  margin: 0 auto;
  max-width: 650px;
}
@media only screen and (max-width: 700px) {
  #content section.padded {
    padding: 24px;
  }
}
#content section.padded.horizontal-only {
  padding: 0 72px;
}
@media only screen and (max-width: 700px) {
  #content section.padded.horizontal-only {
    padding: 0 24px;
  }
}
#content section.padded.horizontal-and-top-only {
  padding: 48px 72px 0;
}
@media only screen and (max-width: 700px) {
  #content section.padded.horizontal-and-top-only {
    padding: 24px 24px 0;
  }
}
#content section.bottom-bordered {
  background: linear-gradient(
    to bottom,
    white 0% calc(100% - 4px),
    #eeeeee calc(100% - 4px) calc(100% - 2px),
    white calc(100% - 2px) 100%
  );
}
#content section.blue {
  background: #f2f6f7;
}
#content .split {
  display: flex;
  justify-content: space-between;
  align-content: space-between;
}
#content .split > .fifty-percent {
  width: calc(50% - 2.5%);
}
#content .split > .forty-percent {
  width: calc(40% - 2.5%);
}
@media only screen and (min-width: 1024px) {
  #content .split > .forty-percent {
    max-width: 400px;
  }
}
#content .split > .sixty-percent {
  width: calc(60% - 2.5%);
}
@media only screen and (max-width: 1024px) {
  #content .split {
    flex-wrap: wrap;
  }
  #content .split.wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  #content .split > .fifty-percent,
  #content .split > .forty-percent,
  #content .split > .sixty-percent {
    margin-bottom: 40px;
    width: 100%;
  }
}
#content .section-title,
#content .section-subtitle {
  color: #0161a9;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2em;
}
#content .section-title {
  margin: 50px 0 86px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #content .section-title {
    margin: 50px 0 66px;
  }
  #content .section-title:not(.always-centered) {
    text-align: left;
  }
}
@media only screen and (max-width: 700px) {
  #content .section-title {
    font-size: 28px;
    font-weight: 600;
    margin: 24px 0;
  }
  #content .section-title:not(.always-centered):not(.mobile-centered) {
    text-align: left;
  }
}
#content .section-subtitle {
  margin: 0 0 16px;
  text-align: center;
}
#content .section-subtitle:not(.always-centered) {
  text-align: left;
}
@media only screen and (max-width: 700px) {
  #content .section-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin: 12px 0;
  }
  #content .section-subtitle.mobile-centered {
    text-align: center;
  }
}
#content .question-blue {
  color: #0161a9;
  font-weight: bold;
  line-height: 1.2em;
  font-size: 36px;
  margin-bottom: 16px;
}
#content .question-followup {
  color: #222426;
  font-weight: 100;
  font-size: 22px;
  margin-bottom: 12px;
}
#content .paragraphs {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}
#content .paragraphs p {
  margin-bottom: 12px;
}
#content .paragraphs li {
  margin-top: 6px;
  margin-bottom: 6px;
}
#content .paragraphs a,
#content .paragraphs a:visited {
  color: #4a90e2;
  text-decoration: none;
}
#content .motto {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.2em;
  margin: 50px 0 50px;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  #content .motto {
    font-size: 15px;
  }
}
#content .customers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 27px 72px;
}
@media only screen and (max-width: 700px) {
  #content .customers {
    padding: 24px;
  }
}
#content .customers img {
  width: 140px;
  height: auto;
  object-fit: contain;
  padding: 0 36px;
}
@media only screen and (max-width: 700px) {
  #content .customers img {
    width: 80px;
    padding: 0 12px;
  }
}
#content .integrations {
  display: flex;
  justify-content: space-around;
}
#content .integrations .integration-column > .integration:first-child {
  margin-bottom: 36px;
}
#content .integrations .integration {
  text-align: center;
  font-size: 17px;
}
@media only screen and (max-width: 700px) {
  #content .integrations .integration {
    font-size: 16px;
  }
}
#content .integrations img {
  display: block;
  height: 60px;
  width: auto;
  margin: 0 auto 8px;
}
#content .integrations-grid {
  text-align: center;
}
#content .integrations-grid .integration {
  display: inline-block;
  margin: 20px;
  width: 100px;
  vertical-align: top;
}
@media only screen and (max-width: 700px) {
  #content .integrations-grid .integration {
    margin: 10px;
  }
}
#content .integrations-grid .integration img {
  display: block;
  margin: 0 auto;
  width: 90px;
}
#content .integrations-grid .integration span {
  display: block;
  font-size: 17px;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  #content .integrations-grid .integration span {
    font-size: 16px;
  }
}
#content .vertical-center {
  top: 50%;
  transform: translateY(-50%);
  position: relative;
}
#content .tileset {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.resources #content .tileset {
  max-width: 900px;
}
.resources #content .tileset .tile {
  max-width: 250px;
}
.security #content .tileset {
  max-width: 1200px;
}
@media only screen and (max-width: 1024px) {
  .security #content .tileset {
    justify-content: center;
  }
}
.security #content .tileset .tile {
  max-width: 340px;
}
.security #content .tileset .tile h3 {
  font-size: 25px;
  line-height: 28px;
  height: 50px;
}
.security #content .tileset .tile p {
  font-size: 17px;
  line-height: 25px;
}
@media only screen and (max-width: 1024px) {
  #content .tileset {
    flex-wrap: wrap;
  }
  #content .tileset .tile {
    width: 40%;
    max-width: none;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 700px) {
  #content .tileset .tile {
    width: 300px;
    max-width: none;
    margin-bottom: 20px;
  }
}
#content article.tile {
  background: white;
  box-shadow: 0px 2px 33px 0 #d1d7da;
  color: black;
  display: inline-block;
  margin: 0 12px 20px;
  height: 412px;
  padding: 12px;
  position: relative;
  text-align: left;
  max-width: 20%;
}
#content article.tile .tile-number {
  color: #b7d0de;
  font-weight: bold;
  font-size: 18px;
  margin: 12px 0 0 12px;
}
#content article.tile .tile-number + h3 {
  margin-top: 8px;
}
#content article.tile img {
  display: block;
  width: 100%;
  max-width: 271px;
  background-color: #f1f5f7;
  margin: 0 auto;
}
#content article.tile h3 {
  font-size: 20px;
  line-height: 25px;
  margin: 20px 12px;
}
#content article.tile .blue {
  color: #0161a9;
}
#content article.tile .paragraphs {
  margin: 12px;
  font-size: 14px;
  line-height: 18px;
}
#content article.tile a {
  color: #0095d9;
  display: block;
  font-size: 15px;
  line-height: 19px;
  position: absolute;
  bottom: 26px;
  left: 29px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
#content article.tile a i {
  margin-left: 30px;
}

a.buttonlink {
  background-color: #0095d9;
  border-radius: 3px;
  border: 1px solid #4a90e2;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
  padding: 16px 36px;
  text-decoration: none;
  text-transform: uppercase;
}
a.buttonlink.white {
  background-color: #ffffff;
  border: none;
  color: #0094d6;
}
@media only screen and (max-width: 700px) {
  a.buttonlink {
    padding: 16px 36px;
  }
}
.illustration {
  text-align: center;
}
.illustration img {
  max-width: 100%;
}

.map-embed {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 33px 0 #d1d7da;
  display: block;
  margin: 0 auto;
  padding: 15px;
  max-width: 815px;
}
.map-embed iframe {
  display: inline-block;
  filter: grayscale(100%) brightness(85%) sepia(73%) hue-rotate(175deg) saturate(33%);
  margin-right: 15px;
}
.map-embed .addresses {
  display: inline-block;
  font-size: 15px;
  line-height: 19px;
  margin: 30px 0 30px;
  color: #0061a9;
  vertical-align: top;
}
.map-embed .addresses a,
.map-embed .addresses a:visited {
  color: #0061a9;
  text-decoration: none;
}
.map-embed .addresses a:hover {
  text-decoration: underline;
}

body.login-form ::placeholder {
  color: transparent;
}

body.login-form :-ms-input-placeholder {
  color: transparent;
}

body.login-form ::-ms-input-placeholder {
  color: transparent;
}

.has-error .help-block {
  color: #ff3900;
}

.has-error input {
  border-color: #ff3900 !important;
}

.centered-form {
  box-sizing: border-box;
  background-color: white;
  padding: 96px 64px;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 440px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  form {
    display: flex;
    flex-direction: column;
    gap: 16px;

    .alert {
      font-size: 14px;
      border: 1px solid #b7eb8f;
      background-color: #b7eb8f44;
      border-radius: 4px;
      padding: 8px 16px;

      &.alert-danger {
        border-color: #ffccc7;
        background-color: #ffccc744;
      }

      .dismiss {
        float: right;
        border-radius: 2px;

        &:focus {
          box-shadow: 0 0 0 2px rgba(115, 25, 242, 0.2);
          outline: none;
        }
      }

      a {
        color: rgba(0, 0, 0, 0.8);
      }
    }

    h2 {
      font-weight: 600;
      margin: 0 0 32px;
    }

    fieldset {
      display: flex;
      flex-direction: column;
      gap: 16px;
      border: none;
      padding: 0;
      margin: 0;

      .form-group {
        .control-label {
          display: none;
        }

        input {
          width: 100%;
          padding: 8px;
          box-sizing: border-box;
          font-size: 16px;
          font-family: 'Source Sans Pro', 'Segoe UI', 'Droid Sans', Tahoma, Arial, sans-serif;
          border: 1px solid rgba(0, 0, 0, 0.15);
          border-radius: 4px;
          outline: none;
          transition: all 150ms ease;

          &:focus {
            border-color: #7319f2;
            box-shadow: 0 0 0 1px #7319f2;
            outline: none;
          }

          &::placeholder {
            color: rgba(0, 0, 0, 0.5);
          }
        }

        &.has-error {
          input {
            &:focus {
              box-shadow: 0 0 0 2px #ff390044;
            }
          }

          .help-block {
            margin-top: 4px;
            font-size: 14px;
          }
        }
      }

      button {
        border: none;
        background: #7319f2;
        border-radius: 4px;
        width: 100%;
        color: white;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
        font-family: 'Source Sans Pro', 'Segoe UI', 'Droid Sans', Tahoma, Arial, sans-serif;
        font-size: 16px;
        padding: 8px 0;
        cursor: pointer;
      }

      a.btn {
        position: relative;
        text-align: center;
        text-decoration: none;
        padding: 12px 0;
        border: 1px solid #dedde2;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
        border-radius: 4px;
        color: black;

        &:focus {
          outline: 3px solid #c7a3fa;
          outline-offset: 2px;
        }

        .google-login-logo {
          position: absolute;
          width: 32px;
          left: 6px;
          top: 6px;
        }
      }

      button:focus {
        outline: 3px solid #c7a3fa;
        outline-offset: 2px;
      }

      input + .btn,
      .form-group + .btn {
        margin-top: 16px;
      }
    }

    .form-link {
      text-align: right;
      text-decoration: none;
      font-size: 14px;
      border-radius: 2px;

      &:focus {
        box-shadow: 0 0 0 2px rgba(115, 25, 242, 0.2);
        outline: none;
      }
    }

    .button-spaced {
      display: block;
      text-align: center;
      text-decoration: none;
      padding: 8px 0;
    }
  }
}

img.product-visual {
  border-radius: 12px;
  width: 100%;
}
img.product-visual.drop-shadowed {
  box-shadow: 0 2px 33px 0 rgba(118, 118, 118, 0.25);
}

img.drop-shadowed {
  box-shadow: 0 4px 20px 0 #afbabf;
  width: 100%;
}

.caption-container {
  position: relative;
}

.caption-bottomleft {
  bottom: 16px;
  color: white;
  left: 20px;
  position: absolute;
  text-transform: uppercase;
}

img.emp-icon {
  width: 150px;
  position: relative;
  left: -20px;
}

.face-grid {
  text-align: center;
}
.face-grid .face {
  display: inline-block;
  margin: 40px;
}
@media only screen and (max-width: 700px) {
  .face-grid .face {
    margin: 10px;
  }
}
.face-grid .face .circle-crop {
  border-radius: 50%;
  height: 140px;
  overflow: hidden;
  position: relative;
  width: 140px;
}
.face-grid .face img {
  display: inline;
  margin: 0 auto;
  width: 100%;
}
.face-grid .face strong {
  color: #010101;
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-top: 12px;
  text-align: center;
  text-transform: uppercase;
}
.face-grid .face span {
  color: #010101;
  display: block;
  font-size: 14px;
  text-align: center;
}

.question.question-label {
  color: #0094d6;
  font-weight: bold;
  line-height: 1.5em;
}

.question {
  font-size: 35px;
  font-weight: 200;
  line-height: 1.2em;
}
@media only screen and (max-width: 700px) {
  .question {
    font-size: 28px;
  }
}
h1 {
  font-size: 65px;
  line-height: 1.05em;
  margin: 0;
  margin-bottom: 20px;
}
@media only screen and (max-width: 700px) {
  h1 {
    font-size: 28px;
  }
}
.landing .paragraphs {
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}

.company .paragraphs {
  font-size: 28px;
  font-weight: 100;
  line-height: 38px;
}
@media only screen and (max-width: 700px) {
  .company .paragraphs {
    font-size: 20px;
    line-height: 28px;
  }
}
.paragraphs p {
  margin-top: 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 700px) {
  .paragraphs p {
    margin-bottom: 30px;
  }
}
footer {
  position: absolute;
  bottom: 0;
  padding: 24px 72px;
  font-size: 12px;
}
@media only screen and (max-width: 700px) {
  footer {
    padding: 24px 32px;
  }
}
footer .jellyfish-logo {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 50px;
}
footer #address-footer {
  margin-bottom: 20px;
}
footer a {
  color: white;
}

.flex-spread {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
}

.clearfix:after {
  clear: both;
  content: ' ';
  display: table;
}

.terms-of-service {
  width: 75rem;
  margin: auto;
}
.terms-of-service .title {
  margin: auto;
  text-align: center;
  text-decoration: underline;
}

.privacy-policy {
  width: 75rem;
  margin: auto;
}
.privacy-policy .title {
  margin: auto;
  text-align: center;
  text-decoration: underline;
}
.privacy-policy h3 {
  text-decoration: underline;
}
.privacy-policy h4 {
  font-style: italic;
  text-decoration: underline;
}
.privacy-policy .jellyfish-title {
  text-decoration: none !important;
}

.customer-quote {
  padding: 40px 0;
}

.landing-carousel,
.customer-quote {
  background-color: #f2f6f7;
  clear: both;
  position: relative;
}
.landing-carousel .owl-stage,
.customer-quote .owl-stage {
  display: flex;
  align-items: center;
}
.landing-carousel .owl-theme .owl-dots .owl-dot span,
.customer-quote .owl-theme .owl-dots .owl-dot span {
  background-color: white;
  box-shadow: 0px 0px 2px #e0e3e4;
  height: 12px;
  width: 12px;
}
.landing-carousel .owl-theme .owl-dots .owl-dot.active span.active,
.landing-carousel .owl-theme .owl-dots .owl-dot.active span:focus,
.landing-carousel .owl-theme .owl-dots .owl-dot.active span:hover,
.landing-carousel .owl-theme .owl-dots .owl-dot.active,
.landing-carousel .owl-theme .owl-dots .owl-dot:focus,
.landing-carousel .owl-theme .owl-dots .owl-dot:hover,
.customer-quote .owl-theme .owl-dots .owl-dot.active span.active,
.customer-quote .owl-theme .owl-dots .owl-dot.active span:focus,
.customer-quote .owl-theme .owl-dots .owl-dot.active span:hover,
.customer-quote .owl-theme .owl-dots .owl-dot.active,
.customer-quote .owl-theme .owl-dots .owl-dot:focus,
.customer-quote .owl-theme .owl-dots .owl-dot:hover {
  outline: none;
}
.landing-carousel .owl-theme .owl-dots .owl-dot.active span.active span,
.landing-carousel .owl-theme .owl-dots .owl-dot.active span:focus span,
.landing-carousel .owl-theme .owl-dots .owl-dot.active span:hover span,
.landing-carousel .owl-theme .owl-dots .owl-dot.active span,
.landing-carousel .owl-theme .owl-dots .owl-dot:focus span,
.landing-carousel .owl-theme .owl-dots .owl-dot:hover span,
.customer-quote .owl-theme .owl-dots .owl-dot.active span.active span,
.customer-quote .owl-theme .owl-dots .owl-dot.active span:focus span,
.customer-quote .owl-theme .owl-dots .owl-dot.active span:hover span,
.customer-quote .owl-theme .owl-dots .owl-dot.active span,
.customer-quote .owl-theme .owl-dots .owl-dot:focus span,
.customer-quote .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #0061a9;
}
.landing-carousel .carousel-nav-prev,
.landing-carousel .carousel-nav-next,
.customer-quote .carousel-nav-prev,
.customer-quote .carousel-nav-next {
  cursor: pointer;
  font-size: 24px;
  padding: 32px;
  position: absolute;
  top: calc(50% - 56px);
  z-index: 100;
}
@media only screen and (max-width: 1024px) {
  .landing-carousel .carousel-nav-prev,
  .landing-carousel .carousel-nav-next,
  .customer-quote .carousel-nav-prev,
  .customer-quote .carousel-nav-next {
    display: none;
  }
}
.landing-carousel .carousel-nav-prev,
.customer-quote .carousel-nav-prev {
  left: 32px;
}
.landing-carousel .carousel-nav-next,
.customer-quote .carousel-nav-next {
  right: 32px;
}
.landing-carousel__quote,
.customer-quote__quote {
  margin: 0 auto 45px;
  max-width: 768px;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .landing-carousel__quote,
  .customer-quote__quote {
    margin: 32px auto 48px;
  }
}
@media screen and (min-width: 768px) {
  .landing-carousel__quote,
  .customer-quote__quote {
    margin: 32px auto 48px;
  }
}
.landing-carousel__quote-author,
.customer-quote__quote-author {
  font-weight: 600;
}
.landing-carousel__quote-logo,
.customer-quote__quote-logo {
  height: auto;
  margin: 14px auto 28px;
  max-width: 215px;
}
.landing-carousel__quote-text,
.customer-quote__quote-text {
  color: #0061a9;
  margin: 0;
  font-size: 20px;
}
@media screen and (min-width: 480px) {
  .landing-carousel__quote-text,
  .customer-quote__quote-text {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .landing-carousel__quote-text,
  .customer-quote__quote-text {
    font-size: 36px;
  }
}
.landing-form__container--header {
  padding-top: 33px;
}

.landing-form__thank-you {
  color: #0094d6;
  margin-bottom: 0;
  margin-top: 0;
}

.landing-form input {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 5px;
  font-size: 14px;
  padding: 15px 24px;
}
@media only screen and (max-width: 700px) {
  .landing-form input {
    padding: 15px 15px;
  }
}
.landing-form input,
.landing-form input::placeholder {
  color: #ffffff;
}
.landing-form input:active,
.landing-form input:focus {
  box-shadow: none;
  outline: none;
}

.landing-form .email {
  min-width: 450px;
  position: relative;
  top: 1px;
  margin-right: 10px;
  margin-bottom: 4px;
}
@media only screen and (max-width: 1024px) {
  .landing-form .email {
    margin-right: 4px;
    min-width: 250px;
  }
}
@media only screen and (max-width: 700px) {
  .landing-form .email {
    margin-right: 4px;
    min-width: auto;
  }
}
.landing-form .submit {
  background-color: #ffffff;
  border: none;
  color: #0094d6;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: -1px;
  padding: 16px 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media only screen and (max-width: 700px) {
  .landing-form .submit {
    padding: 16px 10px;
  }
}
.landing-form--footer {
  margin-top: -40px;
}
@media only screen and (max-width: 700px) {
  .landing-form--footer {
    margin-top: 0px;
  }
}
.landing-form--footer input {
  border-color: #333333;
}
.landing-form--footer input,
.landing-form--footer input::placeholder {
  color: #333333;
}
.landing-form--footer .submit {
  background-color: #0094d6;
  color: #ffffff;
}

.case-study.hero-dark #top {
  background-color: #4189bb;
}

.case-study.hero-dark #hero {
  height: 733px;
  padding: 0 9%;
  display: flex;
  align-items: center;
}
.case-study.hero-dark #hero > div {
  margin-bottom: 142px;
}
@media only screen and (max-width: 700px) {
  .case-study.hero-dark #hero {
    height: auto;
    padding: 0 24px;
  }
}
.case-study.hero-dark #hero .tagline-label {
  font-size: 15px;
  text-transform: uppercase;
  padding-left: 3px;
}
.case-study.hero-dark #hero .tagline {
  max-width: 815px;
}

@media only screen and (max-width: 1024px) {
  .case-study .split.collapse-sidebar-above > .sixty-percent {
    order: 2;
  }
  .case-study .split.collapse-sidebar-above > .forty-percent {
    order: 1;
  }
}

.case-study #content {
  padding-top: 40px;
}

.case-study .customer-info {
  color: #0161a9;
}
.case-study .customer-info .logo {
  display: block;
  height: 52px;
}
.case-study .customer-info .industry {
  border-top: 1px solid #0161a9;
  margin-top: 4px;
}
@media only screen and (max-width: 1024px) {
  .case-study .customer-info .industry {
    border-top: none;
  }
}
.case-study .customer-info .industry,
.case-study .customer-info .location {
  padding-top: 12px;
  font-size: 17px;
  line-height: 22px;
}
.case-study .customer-info .industry strong,
.case-study .customer-info .location strong {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}
@media only screen and (min-width: 700px) and (max-width: 1024px) {
  .case-study .customer-info {
    display: flex;
    justify-content: space-between;
    align-content: space-between;
  }
  .case-study .customer-info .logo,
  .case-study .customer-info .industry,
  .case-study .customer-info .location {
    padding-top: 0;
  }
}
.case-study .customer-quote {
  color: #0161a9;
  border-top: 1px solid #0161a9;
  padding: 8px;
  font-size: 17px;
  line-height: 22px;
  margin-right: -16px;
  margin-top: 4px;
}
@media only screen and (max-width: 1024px) {
  .case-study .customer-quote {
    border-bottom: 1px solid #0161a9;
    margin-right: 0;
  }
}
.case-study .customer-quote q {
  display: block;
  font-weight: bold;
  font-size: 24px;
  line-height: 31px;
  margin-top: 6px;
  margin-bottom: 16px;
}
.case-study .customer-quote strong {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
}

.case-study #footer-c2a {
  margin-top: 40px;
}

.scroll-disabled {
  overflow-y: hidden;
}

.header {
  box-sizing: border-box;
  padding: 40px 24px;
  position: relative;
  z-index: 500;
}
.header.expanded {
  background-color: #4189bb;
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  overflow: scroll;
}
.header.expanded nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 1s ease;
  transition-property: opacity, transform;
}
.header nav {
  position: absolute;
  left: 24px;
  top: 120px;
  width: calc(100% - 48px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}
@media screen and (min-width: 700px) {
  .header {
    padding: 40px 72px 0 72px;
  }
  .header nav {
    left: 72px;
    top: 140px;
    width: calc(100% - 144px);
  }
}
@media screen and (min-width: 1024px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header .navigation-toggle {
    display: none;
  }
  .header nav {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .header nav .primary-nav {
    display: flex;
  }
  .header nav .primary-nav > li {
    border-bottom: none;
    margin-right: 10px;
    position: relative;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1040px) {
  .header nav .primary-nav > li {
    margin-right: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .header nav .primary-nav > li:last-child {
    margin-right: 0;
  }
  .header nav .primary-nav > li > a,
  .header nav .primary-nav > li > .child-nav-title {
    border-radius: 2px;
    padding: 10px;
  }
  .header nav .primary-nav > li > a:not(.landing-cta):hover,
  .header nav .primary-nav > li > .child-nav-title:not(.landing-cta):hover {
    background-color: rgba(0, 0, 0, 0.5);
    filter: contrast(0.9);
    transition: filter 0.15s ease background-color 0.15s ease;
  }
  body.hero-light .header nav .primary-nav > li > a:not(.landing-cta):hover,
  body.hero-light .header nav .primary-nav > li > .child-nav-title:not(.landing-cta):hover {
    background-color: rgba(0, 0, 0, 0.15);
  }
  body.hero-light .header nav .primary-nav > li > a,
  body.hero-light .header nav .primary-nav > li > .child-nav-title {
    color: #4189bb;
  }
  .header nav .primary-nav > li.is-active .child-nav-title {
    background-color: rgba(0, 0, 0, 0.5);
    filter: contrast(0.9);
    transition: filter 0.15s ease background-color 0.15s ease;
  }
  body.hero-light .header nav .primary-nav > li.is-active .child-nav-title {
    background-color: rgba(0, 0, 0, 0.15);
  }
  .header nav .primary-nav > li .nav-expanded-icon {
    font-size: 12px;
    margin-left: 5px;
    position: relative;
    top: -1px;
  }
  .header nav .primary-nav > li:hover > a:not(.landing-cta),
  .header nav .primary-nav > li:hover > span {
    opacity: 1;
  }
  .header nav .primary-nav .child-nav {
    background-color: #ffffff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    border-radius: 2px;
    padding: 10px;
    min-width: 240px;
    position: absolute;
    left: 0;
    top: 32px;
  }
  .header nav .primary-nav .child-nav > li {
    font-size: 14px;
    padding: 0 0 10px;
    text-transform: none;
  }
  .header nav .primary-nav .child-nav > li:last-child {
    padding-bottom: 0;
  }
  .header nav .primary-nav .child-nav > li a {
    color: #4189bb;
    display: block;
  }
  .header nav .primary-nav .landing-cta {
    border: 1px solid #ffffff;
    border-radius: 1px;
    padding: 10px;
  }
}
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.primary-nav,
.primary-nav ul,
.footer-nav,
.footer-nav ul {
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
}

.primary-nav a,
.footer-nav a {
  text-decoration: none;
}

.primary-nav {
  text-transform: uppercase;
}
.primary-nav .child-nav {
  display: none;
  margin-bottom: 20px;
  margin-top: 20px;
  padding-left: 20px;
}
.primary-nav .child-nav li {
  padding: 16px 0;
}
.primary-nav .child-nav li:last-child {
  padding-bottom: 0;
}
.primary-nav > li {
  border-bottom: 1px solid #ffffff;
  padding: 15px 0;
}
.primary-nav > li.is-active .nav-expanded-icon {
  transform: rotate(180deg);
  transition: transform 0.15s ease;
}
.primary-nav li {
  cursor: pointer;
}
.primary-nav li:hover > a {
  opacity: 0.75;
  transition: opacity 0.15s ease;
}
.primary-nav li .child-nav-title:hover {
  opacity: 0.75;
  transition: opacity 0.15s ease;
}
.primary-nav .nav-expanded-icon {
  margin-left: 20px;
  transition: transform 0.15s ease;
}

.footer {
  background-image: url("../img/public/jellyfish-footer-bg.c7095dd9fb98.jpg");
  background-size: cover;
}

.footer-nav {
  display: flex;
}
.footer-nav > li {
  margin-right: 30px;
}
.footer-nav > li:last-child {
  margin-right: 0;
}
.footer-nav > li > span,
.footer-nav > li > a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-nav .landing-cta {
  border-radius: 1px;
  border: 1px solid #ffffff;
  padding: 10px;
}
.footer-nav .child-nav {
  font-size: 14px;
  font-weight: 300;
  max-width: 130px;
}
.footer-nav .child-nav > li {
  padding-top: 10px;
}

.lightweight {
  font-weight: 300;
}

.footer-border {
  border-top: solid white 1px;
  opacity: 0.49;
  margin-top: 96px;
}

.copyright {
  font-size: 0.875rem;
}

.indent {
  margin: 16px;
}
.indent a {
  margin-left: 1.1rem;
}
