/* Hide H1 Branding Homepage */

.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

/* Post Archive Settings */

.archive-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media screen and (max-width: 990px) {
  .archive-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 779px) {
  .archive-post-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.archive-post-grid .post-container {
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
  box-shadow: 0px 2px 10px rgb(27 58 82 / 25%);
  background-color: #fff;
  color: unset;
}

.archive-post-grid .post-container:hover {
  color: unset;
}

.archive-post-grid .post-header {
  aspect-ratio: 10/6;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 0;
}

.archive-post-grid .post-gradient {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0.75rem 1.25rem;
}

.archive-post-grid .post-date span {
  color: #dbe9f3;
  text-transform: uppercase;
}

.archive-post-grid .post-title h3 {
  color: white;
  font-size: 1.5rem;
}

.archive-post-grid .post-footer {
  padding: 1.25rem;
}

.archive-post-grid .post-excerpt {
  min-height: 5rem;
  margin-bottom: 1rem;
}

.archive-post-grid .post-excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-author {
  display: flex;
  align-items: center;
}

.post-author-avatar img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  max-width: inherit;
}

.post-author-name {
  padding: 0 1rem;
  font-style: normal !important;
}

.post-author-name-full {
  font-size: 85%;
  line-height: 1;
  margin-bottom: 4px;
}

.post-author-title {
  font-size: 70%;
  line-height: 1;
  margin-bottom: 2px;
}

.post-author-company {
  font-size: 70%;
  line-height: 1;
}

.post-testimonial {
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 20px;
}

.post-testimonial:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  vertical-align: -0.4em;
  margin-left: 0;
  quotes: "“" "”";
  font-style: normal;
}

/* Author Archive Styles */

.author-bio {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-bio img {
  border-radius: 100%;
  height: 140px;
  width: 140px;
  margin-bottom: 1.5rem;
}

.author-name {
  margin-bottom: 0.5rem;
}

.author-role {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.author-description {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  text-align: center;
}

.archive.author .archive-title {
  margin-bottom: 3rem;
}

/* Blockquote Styles */

blockquote {
  background-color: #f9f9f9;
  border-left: 0.5rem solid #bde8f0;
  padding: .5rem 1rem .5rem 1rem;
  margin: 0 0 1rem !important;
}

blockquote p {
  font-size: 16px;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
}

blockquote p:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  vertical-align: -0.4em;
  margin-left: 0;
  margin-right: 4px;
  quotes: "“" "”";
  font-style: normal;
}

/* Featured Post Styles */

.featured-post-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background-color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.25rem;
  box-shadow: 0px 2px 10px rgb(27 58 82 / 25%);
}

.featured-post-grid .featured-tag {
  color: #6695b4;
  margin-bottom: 0;
}

.featured-post-grid .post-title {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.featured-post-grid .post-excerpt {
  font-size: 1.5rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #3b4045;
  font-weight: 400;
}

.featured-post-grid .post-author {
  color: #3b4045 !important;
}

.featured-post-grid .post-image img {
  border-radius: 3px;
}

/* Use Case Post Styles */

.use-case-grid {
  margin-bottom: 2rem;
}

.use-case-grid .post-title {
  grid-column: span 3 / span 3;
  text-align: center;
}

.use-case-grid .post-meta {
  color: #3b4045;
}

/* Single Post Styles */

.single-post .site-content .ast-container {
  background: white;
  padding: 3rem;
  box-shadow: 0px 2px 10px rgb(27 58 82 / 25%);
  border-radius: 0.25rem;
  margin-bottom: 3rem;
}

.post-header {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 3rem;
}

.post-title h1 {
  font-size: 2.3rem;
}

.post-date span {
  color: #6695b4;
  text-transform: uppercase;
}

.post-meta {
  grid-column: span 2 / span 2;
}

@media screen and (max-width: 779px) {
  .post-meta {
    grid-column: span 3 / span 3;
  }
}

.post-image {
  grid-column: span 1 / span 1;
  border-radius: 3px;
}

@media screen and (max-width: 779px) {
  .post-image {
    grid-row-start: 1;
    grid-column: span 3 / span 3;
  }
}

span.note {
  display: block;
  position: relative;
  border: 2px solid #a7c0d1;
  padding: 71px 15px 15px 15px;
}

span.note::before {
  content: "Note";
  display: block;
  position: absolute;
  color: white;
  background-color: #a7c0d1;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 15px 12px 45px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  line-height: 26px;
  background-image: url(../callout-note.html);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 20px center;
}

span.warning {
  display: block;
  position: relative;
  border: 2px solid #f9543f;
  padding: 71px 15px 15px 15px;
}

span.warning::before {
  content: "Warning";
  display: block;
  position: absolute;
  color: white;
  background-color: #f9543f;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 15px 12px 45px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  line-height: 26px;
  background-image: url(../callout-warning.html);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 20px center;
}

/* CPT TEMPLATES */

.single-use-cases .entry-header,
.single-use-cases .post-navigation,
.single-press-release .entry-header,
.single-press-release .post-navigation,
.single-customer-stories .entry-header,
.single-customer-stories .post-navigation,
.single-videos .entry-header,
.single-videos .post-navigation {
  display: none !important;
}

article.type-use-cases,
article.type-customer-stories,
article.type-customer-solution {
  margin-bottom: 0;
}

.press-release .post-meta {
  grid-column: span 3 / span 3;
}

/* Features Widget Styles */

.sow-features-feature h6 {
  margin: 0 !important;
}

/* Sub Menu Styles */

#ast-desktop-header .main-header-menu .sub-menu {
  margin-top: -8px !important;
  width: 335px;
  border-top: none !important;
  border: 1px solid rgba(0,0,0,.15) !important;
  border-radius: 0.25rem !important;
}

body:not(.ast-header-break-point) .sub-menu a {
  color: #1b3a52 !important;
}

body:not(.ast-header-break-point) .sub-menu a:hover {
  color: #6695b4 !important;
}

.main-header-menu .sub-menu .menu-link {
  padding: 0.65em 1em;
}

/*  Menu Descriptions */

.menu-item-description {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

/* Accordions */

.sow-accordion-panel-border {
  margin-left: 40px;
  border-left: 2px solid #4400FF;
}

/* Reset Link Styles */

.ast-single-post .entry-content a,
.ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
  text-decoration: none;
  font-weight: 700;
}

/* Reset List Styles */

.site-content .widget ul {
  margin-left: 1.2em;
  margin-bottom: 1em;
  list-style-type: disc;
}

.sow-slider-images {
  margin-left: 0 !important;
}

.single-use-cases .site-content ul {
  padding-inline-start: 20px;
}

.single-use-cases .site-content .widget ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
  padding-inline-start: 20px;
}

.checkmarks ul li {
  font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  list-style-type: none !important;
  position: relative;
}

.checkmarks ul li:before {
  color: #689f38;
  font-weight: bold;
  content: "✓";
  position: absolute;
  left: -18px;
}

/* Reset Feature Styles */

.so-widget-sow-features h5 {
  margin-top: 0px !important;
  margin-bottom: 0.25rem !important;
}

.icon-spacing .sow-icon-container {
  margin-bottom: 16px !important;
}

/* Reset Footer Styles */

footer h2.widget-title {
  margin-bottom: 8px;
}

.ast-footer-copyright {
  font-weight: 400;
}

footer a {
  font-weight: 400 !important;
  color: #ffffff !important;
}

footer a:hover {
  color: #4400FF !important;
}

footer h2.widget-title {
  color: #ffffff !important;
}

.site-below-footer-inner-wrap {
  padding-top: 10px;
  /* 	border-top: 2px solid #eceff1; */
}

.easy-notification-bar-message {
  font-weight: 700;
  padding: 4px;
}

.easy-notification-bar-message a {
  text-decoration: none !important;
  color: #009ad4 !important;
}

.easy-notification-bar-message a:hover {
  text-decoration: none;
  color: #00b9ff;
}

#menu-item-174 {
  cursor: pointer;
}

/* Search Results */

.search-headline {
  font-size: 2.778em;
  font-weight: 700;
  font-family: 'Roboto',sans-serif;
  margin-bottom: 1.5em;
}

.search-grid a,
.search-grid a h3 {
  transition: all .2s linear;
  color: #1b3a52;
}

.search-grid a:hover,
.search-grid a:hover h3 {
  color: #00b9ff;
}

/* Add container padding to blog on tablet */

@media screen and (max-width: 1350px) {
  .type-post .site-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Prevent Hero Widgets from over indexing the header */

.site-header {
  z-index: 101;
}

/* Header Padding */

#masthead .ast-container {
  padding-left: 16px;
  padding-right: 16px;
}

/* Nested Lists */

article .textwidget ul li ul {
  margin-bottom: 0px !important;
}

article .textwidget ul li ul li {
  list-style: circle;
}

/* FigCaptions */

.wp-caption-text {
  text-align: right;
}

.wp-caption .wp-caption-text {
  margin: 0;
  font-size: small;
  color: #7b858a;
}

/* Notehub Authentication Styles */

.ast-builder-menu-3 {
  display: none;
  font-weight: 600;
  font-size: 1.125rem;
}

.ast-header-button-1[data-section="section-hb-button-1"] {
  display: none;
}

.menu-item.menu-item-9756 {
  display: none;
}

.notehub-name {
  position: relative;
}

.notehub-name a {
  color: white;
}

.ast-builder-menu-3 .notehub-name:before {
  background-position: center;
  content: "";
  position: absolute;
  background-image: url(../user-solid.html);
  height: 22px;
  width: 22px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-color: var(--ast-global-color-5);
  border-radius: 100%;
  left: -12px;
}

/* Inline Buttons */

@media screen and (min-width: 781px) {
  .inline-buttons .panel-grid-cell {
    display: flex;
    justify-content: center;
  }

  .inline-buttons .widget_sow-button:not(:last-child) {
    margin-right: 12px !important;
  }
}

/************************** Custom Mobile Menu ******************************/

#ast-mobile-header {
  position: relative;
}

#ast-mobile-header .ast-main-header-wrap {
  z-index: 2;
}

#ast-mobile-header .ast-mobile-header-content {
  max-height: unset !important;
  overflow-y: visible !important;
  display: block;
  position: absolute;
  top: -100vh;
  z-index: 1;
  opacity: 0;
  transition: .3s ease-in-out;
}

.ast-main-header-nav-open #ast-mobile-header .ast-mobile-header-content {
  display: block;
  width: 100vw;
  top: 73px;
  opacity: 1;
  border-top: 2px solid var(--ast-global-color-0);
}

.easy-notification-bar {
  position: relative;
  z-index: 999 !important;
}

.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 2;
}

.ast-button-wrap .menu-toggle:focus {
  outline: unset;
}

.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle span {
  position: absolute;
  width: 30px;
  height: 5px;
  border-radius: 2px;
  background: var(--ast-global-color-5);
  left: 10px;
  transition: 0.4s;
}

.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle span:nth-child(2) {
  transform: translateY(-12px);
  width: 25px;
  left: 10px;
}

.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle span:nth-child(3) {
  transform: translateY(12px);
  width: 15px;
  left: 10px;
}

.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle.toggled span:nth-child(1) {
  transform: translateX(60px);
}

.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle.toggled span:nth-child(2) {
  width: 40px;
  left: 5px;
  transform: translateX(0) rotate(45deg);
  transition-delay: 0.2s;
}

.ast-mobile-header-wrap .ast-button-wrap .menu-toggle.main-header-menu-toggle.toggled span:nth-child(3) {
  width: 40px;
  left: 5px;
  transform: translateX(0) rotate(-45deg);
  transition-delay: 0.3s;
}

.ast-builder-menu-mobile .main-navigation > .main-header-menu .menu-item .menu-link {
  font-size: 16px;
  /*     font-weight: 600; */
}

.ast-builder-menu-mobile .main-navigation > .main-header-menu .menu-item .menu-link ~ .sub-menu {
  display: none !important;
}

.ast-builder-menu-mobile .main-navigation > .main-header-menu .menu-item .menu-link.toggled ~ .sub-menu {
  display: block !important;
}

.ast-hfb-header .ast-builder-menu-mobile .main-navigation .main-header-menu,
.ast-hfb-header .ast-builder-menu-mobile .main-navigation .main-header-menu,
.ast-hfb-header .ast-mobile-header-content .ast-builder-menu-mobile .main-navigation .main-header-menu,
.ast-hfb-header .ast-mobile-popup-content .ast-builder-menu-mobile .main-navigation .main-header-menu {
  border-top-width: 1px;
  border-color: var(--ast-global-color-0);
  background-color: rgba(0, 0, 0, 0.9);
}

.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .ast-menu-toggle {
  display: none;
}

.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children .menu-link {
  position: relative;
}

.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .menu-link::after {
  position: absolute;
  content: "\2303";
  display: inline-flex;
  height: 100%;
  width: 48px;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 10px;
  font-size: 24px;
  transition: 0.3s ease-in-out;
}

.ast-builder-menu-mobile .main-navigation .menu-item.menu-item-has-children > .menu-link.toggled::after {
  transform: scaleY(-1) translateY(5px);
}

.ast-header-break-point .main-navigation ul .menu-item .menu-link .icon-arrow {
  display: none !important;
}

.ast-builder-menu-mobile .main-navigation > .main-header-menu > .menu-item > .menu-link {
  text-transform: uppercase;
}

.ast-builder-menu-mobile .main-navigation > .main-header-menu > .menu-item > .sub-menu > .menu-item > .menu-link {
  padding-left: 4%;
  text-transform: uppercase;
}

.ast-builder-menu-mobile .main-navigation > .main-header-menu > .menu-item > .sub-menu > .menu-item > .sub-menu > .menu-item > .menu-link {
  padding-left: 7%;
}

.ast-builder-menu-mobile .menu-item-description {
  line-height: 1;
  padding-bottom: 16px;
  color: var(--ast-global-color-8);
  margin-top: -8px;
  text-transform: lowercase;
}

#ast-hf-mobile-menu > .menu-item > ul > .menu-item > ul > .menu-item {
  position: relative;
}

#ast-hf-mobile-menu > .menu-item > ul > .menu-item > ul > .menu-item::before {
  position: absolute;
  left: 4%;
  top: 0px;
  content: "";
  display: block;
  width: 10px;
  height: calc(100% - 3px);
  background-color: var(--ast-global-color-0);
  z-index: 1;
}

@media screen and (max-width: 576px) {
  #ast-hf-mobile-menu > .menu-item > ul > .menu-item > ul > .menu-item::before {
    width: 4px;
  }
}

/*** Footer Email Form Stylings ***/
.footer-form form.hs-form div,
.footer-form form.hs-form div.actions {
    display: inline-block;
    box-sizing: border-box;
		position: relative;
		position: absolute;
    right: 0;
    margin: 2px;
}

.footer-form form.hs-form div:first-of-type {
    width: 200px;
		margin-right: 55px;
}

/*.footer-form form.hs-form div.actions {
    width: 20%;
}*/

.footer-form .hs-input {
		height: 50px;
		width: 100%;
		border-radius: 5px;
}

.footer-form .hs-button.primary.large {
		height: 50px;
		width: 100px;
		color: #000000;
		background-color: #f7c23e;
		border-radius: 5px;
		margin-left: 5px;
}

.footer-form ul.no-list.hs-error-msgs.inputs-list {
		display: none;
}

.footer-form .submitted-message {
		color: #ffffff;
}

/* form footer mobile */
.footer-form-mobile form.hs-form div,
.footer-form-mobile form.hs-form div.actions {
    display: inline-block;
    box-sizing: border-box;
}

.footer-form-mobile form.hs-form div:first-of-type {
    width: 200px;
}

/*.footer-form form.hs-form div.actions {
    width: 20%;
}*/

.footer-form-mobile .hs-input {
		height: 50px;
		width: 100%;
		border-radius: 5px;
}

.footer-form-mobile .hs-button.primary.large {
		height: 50px;
		width: 100px;
		color: #000000;
		background-color: #f7c23e;
		border-radius: 5px;
		margin-top: 5px;
		margin-left: 5px;
}

.footer-form-mobile ul.no-list.hs-error-msgs.inputs-list {
		display: none;
}

.footer-form-mobile .submitted-message {
		color: #ffffff;
}