/*
Theme Name: My Twenty Twenty One Child Theme
Theme URI: https://example.com
Description: A child theme for Twenty Twenty One.
Author: Your Name
Author URI: https://example.com/
Template: twentytwentyone
Version: 1.600008
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
:root {
  /* Font Family */
  --global--font-primary: var(--font-headings, "SpaceGrotesk", Helvetica, sans-serif);
  --global--font-secondary: var(--font-base, "Inter", Helvetica, sans-serif);
  --pagination--font-family: var(--font-base, "Inter", Helvetica, sans-serif);
  --global--color-secondary: #427001;
  --button--border-width: 1px;
  --responsive--aligndefault-width: 900px;
  --button--color-background: #fff;
  --button--font-weight:600;
  --button--font-family:"Inter", helvetica, sans-serif;
  --form--border-color: #000;
  --form--border-width: 1px;
  --form--border-radius: 4px;
  --pale-blue: #F6FBFE;
  --bright-blue: #68E2FD;
  --sky-blue: #CFF1FC;
  --navy-blue: #1C4975;
  --dk-blue: #052D52;
  --graphite:#222222;
  --black: #000000;
  --inaccessible-gray: #D9D9D9;
  --white: #ffffff;
  --dk-green: #427001;
  --bright-green:#82CC17;
  --orange: #FFB100;
  --heading--font-size-h1:50px;
  --heading--font-size-h2:50px;
  --body--font-size:16px;
  --body--font-size-lg:18px;
  --body--line-height:24px;
  --wp--preset--font-size--normal:16px;
  --global--font-size-base:16px;
  --holder-max-width:1330px;
  --btype: "Inter", helvetica, sans-serif;
  --htype: "SpaceGrotesk", helvetica, sans-serif;
  --radius-sm:8px;
  --blue-gradient: linear-gradient(221deg, rgba(104, 226, 253, 0.85) -27.6%, #2F7697 17.52%, #0E3D61 60.42%);
}

@font-face {
  font-family: Inter;
  src: url(assets/fonts/Inter-VariableFont_slnt,wght.ttf);
}
@font-face {
  font-family: SpaceGrotesk;
  src: url(assets/fonts/SpaceGrotesk-VariableFont_wght.ttf);
}
h1 .accent,
.h1 .accent, h2 .accent, .h2 .accent, h3 .accent, .h3 .accent, h4 .accent, .h4 .accent, h5 .accent, .h5 .accent {
  color: var(--blue);
}


h1, .h1, h2, .h2, h3, .h3 {
  font-family: var(--htype);
  font-weight: 500;
  font-size: 50px;
  line-height: 64px;
}
@media only screen and (max-width: 768px) {
  h1, .h1, h2, .h2, h3, .h3 {
    font-size: 25px;
    line-height: 30px;
  }
}

h3, .h3 {
  font-family: var(--htype);
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
}
@media only screen and (max-width: 768px) {
  h3, .h3 {
    font-size: 25px;
    line-height: 1.4em;
  }
}

h4, .h4 {
  font-family: var(--htype);
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
}
@media only screen and (max-width: 768px) {
  h4, .h4 {
    font-size: 20px;
    line-height: 1.4em;
  }
}

h5, .h5 {
  font-family: var(--dtype);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
@media only screen and (max-width: 768px) {
  h5, .h5 {
    font-size: 18px;
    line-height: 1.2em;
  }
}

a {
  color: var(--dk-green);
  text-decoration: none;
}
a:visited {
  color: var(--dk-green);
}
a:hover {
  color: var(--green);
}

body {
  font-family: var(--btype);
  font-weight: 400;
  background-color: white;
  font-size: var(--body--font-size);
  line-height: var(--body--line-height);
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 16px;
    overflow-x: hidden;
  }
}

@media only screen and (max-width: 768px) {
  :root .has-large-font-size, :root p.has-large-font-size {
    font-size: 16px !important;
  }
}

html {
  scroll-padding-top: 100px;
  scroll-margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
}

.card {
  background: var(--white);
}

a:hover {
  text-decoration: underline;
}

a:visited, a:focus {
  background-color: inherit;
  text-decoration: inherit;
}
a:visited img, a:focus img {
  border: inherit;
}

.site a:visited img, .site a:focus img {
  outline: inherit !important;
}

.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
  color: inherit !important;
  background-color: inherit !important;
  text-decoration: inherit !important;
}
.site a:focus:not(.wp-block-button__link):not(.wp-block-file__button) img {
  outline: inherit !important;
}

.space-top-s {
  margin-top: 50px;
}
.space-top-m {
  margin-top: 100px;
}
.space-top-l {
  margin-top: 150px;
}
.space-top-xl {
  margin-top: 200px;
}
.space-bottom-s {
  margin-bottom: 50px;
}
.space-bottom-m {
  margin-bottom: 100px;
}
.space-bottom-l {
  margin-bottom: 150px;
}
.space-bottom-xl {
  margin-bottom: 200px;
}

.mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .mobile {
    display: block;
  }
}

.desktop {
  display: block;
}
@media only screen and (max-width: 767px) {
  .desktop {
    display: none;
  }
}

.small p {
  font-size: var(--body--font-size);
}

.site-main {
  padding-top: 0;
  background-color: var(--white);
}
header.entry-header.alignwide {
  margin-left: 0;
}

p {
  margin-top: var(--global--spacing-vertical);
  margin-bottom: var(--global--spacing-vertical);
}

article {
  padding: 0 5vw 0px;
}
@media only screen and (max-width: 768px) {
  article {
    padding: 0px 20px 0px;
  }
}

article:first-child {
  padding: 180px 5vw 0px;
}
@media only screen and (max-width: 768px) {
  article:first-child {
    padding: 100px 20px 0px;
  }
}

section {
  box-sizing: border-box;
  padding: 5vw;
  display: flex;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}
section.fit {
  min-height: 50px;
}
section .container {
  position: relative;
  width: 1100px;
  max-width: 100%;
  margin: auto;
}
section .container.full {
  width: 100%;
}
section .section-head {
  text-transform: uppercase;
}

#landing h1, #landing h2, #landing h3 {
  margin: 0px;
}

.flex {
  display: flex;
  flex-flow: row;
  align-items: center;
}
.flex .col2 {
  display: flex;
}
.flex .col2 > div {
  flex: 0 50%;
  padding: 10px;
}

.fifty {
  width: 50%;
}

.strong {
  font-weight: bold;
}

.light {
  font-weight: 300;
}

.small {
  font-size: var(--body--font-size);
}

.upper {
  text-transform: uppercase;
}

.outline {
  border: 1px solid;
}

hr {
  margin: 0 4px;
}
hr.dotted {
  height: 3px;
  border: none;
  background-image: linear-gradient(to right, black 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 7px 1px;
  background-repeat: repeat-x;
}

.wp-block-code {
  background-color: #222222;
  color: var(--white);
  border: none;
}
.wp-block-code code {
  white-space: pre-wrap;
}

.wp-block-group__inner-container {
  width: 100%;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #fff !important;
  background: transparent !important;
  border-color: var(--button--color-background);
  border: none;
}

.site .button:focus:not(.has-background), input[type=submit]:focus:not(.has-background), input[type=reset]:focus:not(.has-background), .wp-block-search__button:focus:not(.has-background), .wp-block-button .wp-block-button__link:focus:not(.has-background) {
  color: white;
}

button, .button, .site .button, input.hs-button, .wp-block-button, a.more-link {
  color: var(--white);
  border: none;
  background-color: var(--dk-green);
  font-size: var(--body--font-size);
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: fit-content;
  padding: 15px 24px;
  border-radius: 8px;
}
button svg fill, .button svg fill, .site .button svg fill, input.hs-button svg fill, .wp-block-button svg fill, a.more-link svg fill {
  color: var(--white);
}
button:hover, .button:hover, .site .button:hover, input.hs-button:hover, .wp-block-button:hover, a.more-link:hover {
  background-color: var(--dk-green);
  color: var(--white);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
button:hover svg, .button:hover svg, .site .button:hover svg, input.hs-button:hover svg, .wp-block-button:hover svg, a.more-link:hover svg {
  fill: #fff;
}
button:hover a, button:hover a:visited, .button:hover a, .button:hover a:visited, .site .button:hover a, .site .button:hover a:visited, input.hs-button:hover a, input.hs-button:hover a:visited, .wp-block-button:hover a, .wp-block-button:hover a:visited, a.more-link:hover a, a.more-link:hover a:visited {
  color: inherit;
  background: none !important;
  border: none !important;
}
button:hover.github a svg path, .button:hover.github a svg path, .site .button:hover.github a svg path, input.hs-button:hover.github a svg path, .wp-block-button:hover.github a svg path, a.more-link:hover.github a svg path {
  fill: #fff;
}
button:hover.reddit a svg path, .button:hover.reddit a svg path, .site .button:hover.reddit a svg path, input.hs-button:hover.reddit a svg path, .wp-block-button:hover.reddit a svg path, a.more-link:hover.reddit a svg path {
  fill: #fff;
}
button:hover.slack a svg path, .button:hover.slack a svg path, .site .button:hover.slack a svg path, input.hs-button:hover.slack a svg path, .wp-block-button:hover.slack a svg path, a.more-link:hover.slack a svg path {
  fill: #fff;
}
button:hover.discourse a svg path, .button:hover.discourse a svg path, .site .button:hover.discourse a svg path, input.hs-button:hover.discourse a svg path, .wp-block-button:hover.discourse a svg path, a.more-link:hover.discourse a svg path {
  fill: #fff;
}
button:active, .button:active, .site .button:active, input.hs-button:active, .wp-block-button:active, a.more-link:active {
  background-color: var(--navy-blue);
}
button:focus, .button:focus, .site .button:focus, input.hs-button:focus, .wp-block-button:focus, a.more-link:focus {
  background: var(--dk-blue);
  outline: 2px solid var(--dk-green);
  outline-offset: 2px;
}
button.secondary, .button.secondary, .site .button.secondary, input.hs-button.secondary, .wp-block-button.secondary, a.more-link.secondary {
  background: none;
  color: var(--dk-green);
}
button.secondary:hover, .button.secondary:hover, .site .button.secondary:hover, input.hs-button.secondary:hover, .wp-block-button.secondary:hover, a.more-link.secondary:hover {
  color: var(--dk-green);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  button, .button, .site .button, input.hs-button, .wp-block-button, a.more-link {
    font-size: 14px;
    min-width: fit-content;
  }
}
button.github svg, .button.github svg, .site .button.github svg, input.hs-button.github svg, .wp-block-button.github svg, a.more-link.github svg {
  height: 25px;
  margin: -4px 0 -4px 12px;
}
button.github svg path, .button.github svg path, .site .button.github svg path, input.hs-button.github svg path, .wp-block-button.github svg path, a.more-link.github svg path {
  fill: white;
}
button.reddit svg, .button.reddit svg, .site .button.reddit svg, input.hs-button.reddit svg, .wp-block-button.reddit svg, a.more-link.reddit svg {
  height: 25px;
  margin: -4px 0 -4px 12px;
}
button.reddit svg path, .button.reddit svg path, .site .button.reddit svg path, input.hs-button.reddit svg path, .wp-block-button.reddit svg path, a.more-link.reddit svg path {
  fill: white;
}
button.slack svg, .button.slack svg, .site .button.slack svg, input.hs-button.slack svg, .wp-block-button.slack svg, a.more-link.slack svg {
  height: 25px;
  margin: -4px 0 -4px 12px;
}
button.slack svg path, .button.slack svg path, .site .button.slack svg path, input.hs-button.slack svg path, .wp-block-button.slack svg path, a.more-link.slack svg path {
  fill: white;
}
button.discourse svg, .button.discourse svg, .site .button.discourse svg, input.hs-button.discourse svg, .wp-block-button.discourse svg, a.more-link.discourse svg {
  height: 25px;
  margin: -4px 0 -4px 12px;
}
button.discourse svg path, .button.discourse svg path, .site .button.discourse svg path, input.hs-button.discourse svg path, .wp-block-button.discourse svg path, a.more-link.discourse svg path {
  fill: white;
}
button.button-sm, .button.button-sm, .site .button.button-sm, input.hs-button.button-sm, .wp-block-button.button-sm, a.more-link.button-sm {
  height: 33px;
  min-width: 166px;
}
@media only screen and (max-width: 900px) {
  button.button-sm, .button.button-sm, .site .button.button-sm, input.hs-button.button-sm, .wp-block-button.button-sm, a.more-link.button-sm {
    font-size: 14px;
    min-width: unset;
  }
}
button a, button a:visited, button .wp-block-button__link, .button a, .button a:visited, .button .wp-block-button__link, .site .button a, .site .button a:visited, .site .button .wp-block-button__link, input.hs-button a, input.hs-button a:visited, input.hs-button .wp-block-button__link, .wp-block-button a, .wp-block-button a:visited, .wp-block-button .wp-block-button__link, a.more-link a, a.more-link a:visited, a.more-link .wp-block-button__link {
  color: var(--green);
  text-decoration: none;
  border-radius: 0;
  border: none !important;
  font-size: unset;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

a.more-link {
  color: var(--white) !important;
}

/*
.wp-block-button.is-style-outline .wp-block-button__link:focus {
    color: var(--white) !important;
    background: transparent !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:focus:hover {
    color: var(--white) !important;
    background: transparent !important;
}

.site .button a:focus:hover:not(.wp-block-button__link):not(.wp-block-file__button) {
   // color: var(--white) !important;
    //background: transparent !important;
}

.site .button a:focus:not(.wp-block-button__link):not(.wp-block-file__button) {
   // color: var(--white) !important;
   // background: transparent !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color),
 {
	color:var(--white);

	span {
	color:var(--white);
	}
}

a.wp-block-button__link svg path {
    fill: white;
	}
*/
.arrow-link {
  padding: 0 0 0 50px;
}
.arrow-link a {
  font-weight: bold;
  line-height: 2em;
  position: relative;
}
.arrow-link a:before {
  content: "";
  width: 27px;
  height: 14px;
  display: inline-block;
  background-image: url(assets/img/arrow-link.svg);
  background-repeat: none;
  background-size: contain;
  margin-right: 23px;
  position: absolute;
  left: -50px;
  top: 4px;
}

.site .button:focus, input[type=submit]:focus, input[type=reset]:focus, .wp-block-search__button:focus, .wp-block-button .wp-block-button__link:focus {
  text-decoration: none;
}
.wp-block-buttons > .wp-block-button {
  padding: unset;
}

input[type=email].hs-input,
input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color], .site textarea, select, textarea {
  font-family: var(--btype);
  font-size: 16px;
  width: 360px;
  max-width: 100%;
  margin-bottom: 23px;
}

ul.inputs-list.multi-container {
  margin-top: 16px;
  list-style: none;
  padding: 0px;
  font-size: var(--body--font-size);
}
ul.inputs-list.multi-container li {
  margin-bottom: 8px;
  font-size: var(--body--font-size);
}

input[type=checkbox], input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  border: var(--form--border-width) solid var(--form--border-color);
  background: var(--global--color-white);
  margin-right: 12px;
}

ul.no-list.hs-error-msgs.inputs-list {
  font-size: 12px;
  list-style: none;
  padding: 0px 0px 10px 0px;
}

input {
  font-size: var(--body--font-size);
}

.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  display: flex;
  margin: 16px 0;
  transform-origin: left;
}

.Total_Soft_Poll_1_But_MDiv_2 {
  display: none;
}

#was-this-helpful {
  display: none;
  font-size: var(--body--font-size);
  text-align: center;
}

#wthf-title {
  padding: 0 0 10px 0;
  display: block;
}

.custom-shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.custom-shape-divider.bottom {
  bottom: 0;
}
.custom-shape-divider.top {
  top: 0;
  transform: rotate(0deg);
}

.custom-shape-divider svg {
  position: relative;
  display: block;
  width: calc(147% + 1.3px);
  height: 121px;
}

.wave-b .holder {
  padding-bottom: 100px;
}

.site-main > * {
  margin-top: calc(2 * var(--global--spacing-vertical));
  margin-bottom: calc(2 * var(--global--spacing-vertical));
}

.card {
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  /* Card shadow */
  box-shadow: 8px 6px 12px rgba(41, 38, 45, 0.08);
  border-radius: 10px;
  padding: 75px 15px 25px 15px;
}

.theme-gradient-blue {
  background: var(--dk-blue);
  background: var(--blue-gradient);
  color: var(--white);
}
.theme-gradient-blue .section_title::after {
  background: var(--bright-blue) !important;
}
.theme-gradient-blue a {
  color: var(--sky-blue);
}
.theme-gradient-blue .button.primary {
  background: var(--sky-blue);
  color: var(--dk-blue);
}
.theme-gradient-blue .button.primary a {
  color: var(--dk-blue);
}
.theme-gradient-blue .button.secondary {
  background: none;
  color: var(--sky-blue);
}
.theme-gradient-blue .button.secondary a {
  color: var(--sky-blue);
}

.theme-light-blue {
  background: var(--pale-blue);
  color: var(--black);
}
.theme-light-blue .section_title::after {
  background: var(--bright-blue) !important;
}
.theme-light-blue a {
  color: var(--bright-blue);
}
.theme-light-blue .button.primary {
  background: var(--dk-blue);
  color: var(--white);
}
.theme-light-blue .button.primary a {
  color: var(--white);
}
.theme-light-blue .button.secondary {
  background: none;
  color: var(sky-blue);
}
.theme-light-blue .button.secondary a {
  color: var(sky-blue);
}

#top-nav .logo {
  display: block;
  height: 64px;
  width: 190px;
  padding-top: 0px;
  margin-top: 11px;
}
#top-nav .logo svg {
  height: 100%;
  width: 100%;
}

#nav_items {
  margin: 11px 0;
  padding-right: 20px;
}
#nav_items a {
  color: var(--black);
}
#nav_items .button {
  display: inline-block;
  font-size: 16px;
  padding: 7px 15px;
  color: var(--white);
}
@media only screen and (max-width: 1260px) {
  #nav_items .button {
    font-size: 12px;
  }
}
#nav_items .button a {
  color: var(--white);
}
#nav_items .button.secondary {
  color: var(--dk-green);
  background-color: var(--white);
  margin: 0 5px 0 10px;
}
#nav_items .button.secondary a {
  color: var(--dk-green);
}
#nav_items .button.secondary:hover {
  text-decoration: underline;
}

.nav_item {
  cursor: pointer;
  padding: 20px;
  display: inline-block;
  font-size: 16px;
  margin: 0 -5px;
}
.nav_item .subnav {
  display: none;
  position: absolute;
  top: 48px;
  width: 300px;
  height: fit-content;
  padding: 35px 20px 10px 20px;
  background: white;
  border: 1px solid #D9D9D9;
  /* Card shadow */
  box-shadow: 8px 6px 12px rgba(41, 38, 45, 0.08);
  border-radius: 10px;
  flex-flow: column !important;
  left: -20px;
}
.nav_item .subnav .subnav_item {
  padding: 0px 16px;
  width: 250px;
  word-break: break-word;
}
.nav_item .subnav .subnav_item:nth-child(4) {
  border-right: none;
}
.nav_item .subnav .subnav_item:last-child {
  border-right: none;
}
.nav_item .subnav .subnav_item a {
  text-decoration: none;
  color: var(--black);
}
.nav_item .subnav .subnav_item a:hover {
  text-decoration: underline;
}
.nav_item .subnav .subnav_item a .title {
  font-size: var(--body--font-size);
}
.nav_item .subnav .subnav_item a .description {
  font-size: var(--body--font-size);
}
.nav_item .subnav .subnav_item a img {
  height: 78px;
  width: 78px;
  margin-bottom: 30px;
}
.nav_item .subnav .subnav_item a:hover {
  color: var(--green);
}
.nav_item:hover .subnav {
  display: flex;
}

#mobile-spacer {
  position: relative;
  width: 100%;
  height: 40px;
  background: white;
}

#mobile-nav-nm {
  width: 100%;
  height: 40px;
  background: white;
  position: relative;
  border-bottom: 1px solid #D9D9D9;
  z-index: 15;
}
#mobile-nav-nm.sticky {
  position: fixed;
  top: 0;
}
#mobile-nav-nm .logo {
  width: 100px;
  height: 30px;
  position: absolute;
  left: 10px;
  top: 1px;
}
#mobile-nav-nm .logo svg {
  width: 100%;
}
#mobile-nav-nm .close-btn {
  position: absolute;
  right: 20px;
  background-color: none;
  border: none;
  padding: 5px 0;
  height: 30px;
  box-sizing: border-box;
  top: 3px;
}
#mobile-nav-nm .close-btn .dropdown-icon.close svg {
  width: 23px;
  height: 25px;
  stroke: var(--black);
}

.mobile_nav_items {
  overflow-y: auto;
  height: calc(100vh - 40px);
  width: 100%;
  background-color: #fff;
  display: block;
  position: fixed;
  top: 40px;
  z-index: 15;
  padding: 20px;
}
.mobile_nav_items.off {
  display: none;
}
.mobile_nav_items .mobile_sub_nav {
  margin-bottom: 20px;
  font-size: var(--body--font-size);
}
.mobile_nav_items .mobile_sub_nav a {
  font-size: var(--body--font-size);
  color: var(--black);
}

#top-nav {
  width: 100%;
  padding: 0 0px;
  margin: auto;
  height: fit-content;
  transform: scale(1) !important;
  transform-origin: 0% 0%;
  display: flex;
  justify-content: space-between;
  z-index: 15;
  padding: 0 20px;
  position: absolute;
  background: var(--white);
  border-bottom: 1px solid #D9D9D9;
}
#top-nav.sticky {
  position: fixed;
  top: 0;
}
#top-nav:hover {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #top-nav {
    display: none;
  }
}

.nav_item {
  cursor: pointer;
  padding: 20px;
  display: inline-block;
  font-size: var(--body--font-size);
  position: relative;
}
@media only screen and (max-width: 1260px) {
  .nav_item {
    font-size: 12px;
    padding: 20px 10px;
  }
}

.nav_item .subnav .subnav_item {
  text-align: left;
  margin-bottom: 29px;
}

.nav_item .subnav .subnav_item a .title {
  font-size: var(--body--font-size);
  font-weight: 600;
}

.nav_item .subnav .subnav_item a .description {
  font-size: var(--body--font-size);
  display: none;
}

.nav_item .subnav .subnav_item a img {
  height: 50px;
  width: 50px;
  margin: auto;
  margin-bottom: 20px;
  display: none;
}

.nav_item .subnav .subnav_item {
  padding: 0px 20px;
  width: 250px;
}

#nav_items .nav_item .subnav {
  justify-content: center;
  flex-flow: row;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1000px) {
  #top-nav {
    display: none;
  }

  #mobile-nav-nm {
    display: block;
  }
}
@media only screen and (min-width: 1331px) {
  #mobile-nav-nm {
    display: none;
  }
}
#deepsparse {
  padding: 150px 5vw 5vw;
}
@media only screen and (max-width: 900px) {
  #deepsparse {
    padding: 100px 20px 5vw;
  }
}
#deepsparse .container {
  position: relative;
}
#deepsparse #engine {
  position: absolute;
  top: -120px;
  right: -78px;
  height: 394px;
  width: 394px;
  z-index: -1;
}
#deepsparse #engine video {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #deepsparse #engine {
    top: -40px;
    right: -60px;
    left: unset;
    height: 240px;
    width: 240px;
  }
}
#deepsparse .flex {
  flex-wrap: wrap;
  align-items: flex-start;
}
#deepsparse .info {
  width: 100%;
  margin-right: 30px;
}
#deepsparse .info .subhead {
  font-size: 2rem;
}
@media only screen and (max-width: 900px) {
  #deepsparse .info {
    width: 100%;
    margin-right: 0px;
  }
}
#deepsparse #models {
  display: flex;
  width: 100%;
}
#deepsparse #models .slides {
  width: 48%;
  max-height: 310px;
}
#deepsparse #models .slides img {
  width: 100%;
  height: auto;
}
#deepsparse #models .slides .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
#deepsparse #models .slides .videoWrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#deepsparse #models .slide-models {
  width: 48%;
  margin-left: 4%;
  display: flex;
  flex-wrap: wrap;
}
#deepsparse #models .slide-models .model {
  cursor: pointer;
  width: 48%;
  margin: 0px 1% 2% 1%;
  border: 1px solid var(--global--color-secondary);
  padding: 20px;
  box-sizing: border-box;
  opacity: 0.5;
  font-size: 14px;
}
#deepsparse #models .slide-models .model p {
  margin-top: 0;
  margin-bottom: 0;
}
#deepsparse #models .slide-models .model a, #deepsparse #models .slide-models .model a:visited {
  color: black;
  text-decoration: underline;
}
#deepsparse #models .slide-models .model:nth-child(4) {
  margin-bottom: 3px;
}
#deepsparse #models .slide-models .model:nth-child(3) {
  margin-bottom: 3px;
}
#deepsparse #models .slide-models .model.current {
  opacity: 1;
}
@media only screen and (min-width: 767px) {
  #deepsparse #models .slide-models .model:hover {
    opacity: 1;
    background: var(--global--color-secondary);
    color: white;
  }
  #deepsparse #models .slide-models .model:hover a, #deepsparse #models .slide-models .model:hover a:visited {
    color: white;
  }
}
@media only screen and (max-width: 900px) {
  #deepsparse #models {
    flex-flow: column;
  }
  #deepsparse #models .slide-models {
    width: 100%;
    margin: 0;
  }
  #deepsparse #models .slides {
    width: 100%;
    margin: 0 0 5vw 0;
  }
}
#deepsparse #models #captionholder {
  position: absolute;
  bottom: -22px;
}
#deepsparse #models .videocaption {
  display: none;
}
#deepsparse #models .videocaption.current {
  display: block;
}
@media only screen and (max-width: 900px) {
  #deepsparse #models .videocaption {
    bottom: 35%;
    left: 5vw;
  }
}
#deepsparse #models .videocaption-m {
  display: none;
  margin-bottom: 20px;
  text-align: left;
}
#deepsparse #models .videocaption-m.current {
  display: block;
}
#deepsparse .graph {
  width: 422px;
  height: auto;
  align-self: flex-start;
  margin-top: 22px;
  box-sizing: border-box;
  flex-grow: 1;
  text-align: center;
}
#deepsparse .graph img {
  width: 100%;
  height: auto;
  border: 1px solid;
  padding: 10px;
  max-height: 280px;
}
#deepsparse .graph .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
#deepsparse .graph .videoWrapper iframe, #deepsparse .graph .videoWrapper video, #deepsparse .graph .videoWrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 900px) {
  #deepsparse .graph {
    width: 100%;
    margin-top: 50px;
    padding-left: 0px;
  }
}
#deepsparse .description {
  margin-bottom: 24px;
}
#deepsparse h1 {
  margin: 20px 0px 0px;
}
#deepsparse .subhead {
  margin: 20px 0 0px;
}
#deepsparse .buttons {
  display: flex;
  margin: 45px -2% 0px;
  flex-wrap: wrap;
}
#deepsparse .buttons .button {
  flex: 1 0 45%;
  margin: 0 2% 10px;
  box-sizing: border-box;
  min-width: 200px;
}

#graph {
  background: white;
  margin: 0;
  color: black;
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 600;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
}
#graph .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 46px;
  background: none;
  border: none;
}
#graph .close-btn svg {
  fill: black;
}
#graph .close-btn:hover {
  background: var(--global--color-secondary);
}
#graph .close-btn:hover svg {
  fill: white;
}
#graph .graph_label {
  text-align: center;
  margin: 20px 0;
  color: black;
  display: block;
}
#graph.off {
  display: none;
}
#graph img {
  width: 90%;
  margin: auto;
  height: calc(90vh - 100px);
  display: block;
  cursor: zoom-out;
}
#graph iframe {
  width: 800px;
  margin: auto;
  height: 450px;
  display: block;
  max-width: 90%;
}

#ctas .ctas {
  display: flex;
  flex-flow: row;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
#ctas .ctas .cta {
  flex: 1 0 32%;
  display: flex;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 900px) {
  #ctas .ctas .cta {
    flex: 1 0 100%;
  }
  #ctas .ctas .cta .spacer {
    display: none;
  }
}
#ctas .ctas .cta > div.a {
  flex: 1 50%;
  padding: 10px;
}
@media only screen and (max-width: 900px) {
  #ctas .ctas .cta > div.a {
    flex: 1 0;
  }
}
#ctas .ctas .cta > div.b {
  flex: 1 50%;
  padding: 10px;
}
#ctas .ctas .cta > div.b .button.button-sm {
  font-size: 14px;
}
@media only screen and (max-width: 900px) {
  #ctas .ctas .cta > div.b {
    flex: 0 40%;
    display: flex;
    justify-content: flex-end;
  }
  #ctas .ctas .cta > div.b .button-sm {
    font-size: 14px;
  }
}
@media only screen and (max-width: 600px) {
  #ctas .ctas .cta > div.b .button.button-sm {
    font-size: 12px;
  }
}

#ctas2 .ctas {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}
#ctas2 .ctas .cta {
  flex: 1 0 32%;
  display: flex;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (max-width: 900px) {
  #ctas2 .ctas .cta {
    flex: 1 0 100%;
  }
  #ctas2 .ctas .cta .spacer {
    display: none;
  }
}
#ctas2 .ctas .cta > div.a {
  flex: 1 50%;
  padding: 10px 0px 10px 30px;
}
@media only screen and (max-width: 900px) {
  #ctas2 .ctas .cta > div.a {
    flex: 1 0;
  }
}
#ctas2 .ctas .cta > div.b {
  flex: 1 50%;
  padding: 10px;
  margin-bottom: -12px;
}
#ctas2 .ctas .cta > div.b .button.button-sm {
  font-size: 14px;
}
@media only screen and (max-width: 900px) {
  #ctas2 .ctas .cta > div.b {
    flex: 0 40%;
    display: none;
    justify-content: flex-end;
  }
  #ctas2 .ctas .cta > div.b .button-sm {
    font-size: 14px;
  }
}
@media only screen and (max-width: 600px) {
  #ctas2 .ctas .cta > div.b .button.button-sm {
    font-size: 12px;
  }
}

#components {
  display: flex;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
#components .version {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  margin-left: 20px;
}
@media only screen and (max-width: 768px) {
  #components .version {
    display: block;
    margin-left: unset;
  }
}
#components .components {
  display: flex;
  margin: 72px -2% 0;
  flex-wrap: wrap;
  justify-content: center;
}
#components .components .component {
  cursor: pointer;
  position: relative;
  padding: 58px 24px 118px;
  flex: 0 29%;
  margin: 0 2% 100px;
}
@media only screen and (max-width: 900px) {
  #components .components .component {
    flex: 0 96%;
  }
}
#components .components .component .buttons {
  position: absolute;
  bottom: -46px;
  transform: translate(-50%, 0px);
  left: 50%;
  box-sizing: content-box;
}
@media only screen and (max-width: 768px) {
  #components .components .component .buttons {
    width: 70%;
    box-sizing: border-box;
  }
}
#components .components .component .buttons .button {
  margin-bottom: 21px;
}
@media only screen and (max-width: 768px) {
  #components .components .component .buttons .button {
    width: 100%;
  }
}
#components .components .component a {
  text-decoration: none;
}
#components .components .component .icon {
  height: 78px;
  width: 78px;
  border: 1px solid;
  background: #fff;
  position: absolute;
  top: -20px;
  right: -20px;
}

#paths {
  padding: 0px 5vw;
  margin-top: 0px;
}
#paths h3 {
  margin: 0px 0px 20px;
}
#paths .illustration {
  margin: 40px 0px;
}
#paths .illustration #p-sparse-zoo, #paths .illustration #p-sparsify, #paths .illustration #p-dense {
  transition: opacity 0.25s;
}
#paths .paths {
  display: flex;
  margin: 0 -2%;
}
@media only screen and (max-width: 768px) {
  #paths .paths {
    flex-flow: column;
  }
}
#paths .paths .path {
  flex: 0 29%;
  margin: 0 2% 100px;
  cursor: pointer;
  border: var(--button--border-width) solid var(--global--color-secondary);
  padding: 25px 28px;
  box-sizing: border-box;
  border-radius: 8px;
}
@media only screen and (max-width: 900px) {
  #paths .paths .path {
    padding: 15px 18px;
  }
}
@media only screen and (max-width: 768px) {
  #paths .paths .path {
    margin: 0 2% 20px;
  }
}
#paths .paths .path:hover {
  background-color: var(--global--color-secondary);
  color: #fff;
}
#paths .paths .path:hover div {
  opacity: 1 !important;
}

#benefits {
  padding: 50px 0;
}
#benefits .holder .info, #benefits .holder .image {
  width: 50%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 50px;
}
#benefits .holder .info img, #benefits .holder .image img {
  max-width: 100%;
}
#benefits .holder .info video, #benefits .holder .image video {
  max-width: 100%;
}
#benefits .holder .info .benefit_info, #benefits .holder .image .benefit_info {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #benefits .holder .info, #benefits .holder .image {
    width: 100%;
    padding: 25px;
  }
}
@media only screen and (max-width: 768px) {
  #benefits .benefit {
    padding: 20px 0px;
  }
  #benefits .benefit .inner-holder {
    width: 100%;
    flex-flow: column-reverse;
  }
  #benefits .benefit .inner-holder .icon, #benefits .benefit .inner-holder .image {
    width: 100%;
    padding: 20px;
  }
  #benefits .benefit .inner-holder .info {
    width: 100%;
    padding: 20px;
  }
}

#choose {
  position: relative;
}
#choose h2 {
  margin: 0 0 50px;
}
#choose hr {
  margin: 50px 0 20px;
}
#choose #engine {
  position: absolute;
  top: -11px;
  left: 60%;
  height: 394px;
  width: 394px;
}
#choose #engine video {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  #choose #engine {
    top: 140px;
    right: 0;
    left: unset;
    height: 200px;
    width: 200px;
  }
}
#choose .signups {
  display: flex;
  margin: 0 -2%;
  flex-wrap: wrap;
}
#choose .signups .signup {
  flex: 0 46%;
  margin: 0 2%;
}
#choose .signups .signup label {
  display: none;
}
#choose .signups .signup ul.hs-error-msgs {
  list-style: none;
  padding: 0px;
}
#choose .signups .signup ul.hs-error-msgs li label {
  font-size: 12px;
  display: block;
}
#choose .signups .signup .label {
  margin: 20px 0 0px;
  text-transform: uppercase;
}
#choose .signups .signup input[type=text], #choose .signups .signup input[type=email] {
  margin: 20px 0;
  width: 100%;
  max-width: 500px;
}
@media only screen and (max-width: 900px) {
  #choose .signups .signup {
    flex: 0 96%;
  }
}

footer {
  background-color: var(--dk-blue);
  color: white;
  margin: 0 auto;
  padding: 0px 0 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: initial;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 20px 5vw 128px 5vw;
  }
}

footer.entry-footer {
  background-color: #fff;
}

.footer__main {
  color: white;
  width: 100%;
  padding: 0;
  flex-flow: column;
  align-items: flex-start;
}
.footer__main a {
  color: var(--white);
}
.footer__main .holder {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: var(--holder-max-width);
  margin: auto;
  padding: 20px 20px;
}
.footer__main .holder .logo {
  width: 30%;
}
.footer__main .holder .logo svg {
  fill: var(--white);
  height: 46px;
  width: 50px;
}
.footer__main .holder .subscribe {
  padding-right: 50px;
  font-size: var(--body--font-size);
  line-height: 1.4em;
  padding-bottom: 48px;
  width: 400px;
  max-width: 100%;
}
.footer__main .holder #footer_nav {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.footer__main .holder #footer_nav .nav_column {
  line-height: 1.8em;
  padding-right: 20px;
  width: 17%;
  font-weight: bold;
}
.footer__main .holder #footer_nav .nav_column h5 {
  margin-bottom: 16px;
}
.footer__main .holder #footer_nav .nav_column .subnav {
  font-weight: normal;
  font-size: var(--body--font-size);
}
.footer__main .holder #footer_nav .nav_column .subnav a {
  text-decoration: none;
}
.footer__main .holder #footer_nav .nav_column .subnav a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1200px) {
  .footer__main .holder #footer_nav .nav_column .subnav {
    font-size: 12px;
  }
}
@media only screen and (max-width: 900px) {
  .footer__main {
    flex-flow: column;
    align-items: flex-start;
  }
  .footer__main .holder {
    flex-flow: column;
  }
  .footer__main .holder .logo {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__main .holder #footer_nav {
    flex-flow: column;
  }
  .footer__main .holder #footer_nav .nav_column {
    width: 100%;
    margin-bottom: 20px;
  }
}

.footer__logo {
  width: 75px;
}

.policy {
  font-size: 12px;
  line-height: 1.8em;
}
@media only screen and (max-width: 900px) {
  .policy {
    font-size: 10px;
  }
}
.policy a {
  text-transform: uppercase;
}
.footer__social {
  margin: 20px 0;
}
.footer__social ul {
  max-width: 100%;
  padding: 0;
}
.footer__social ul li {
  display: inline-flex;
  margin-bottom: 0px;
  height: 23px;
  width: 23px;
  margin-right: 15px;
}
.footer__social ul li img {
  max-height: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .footer__social ul li {
    margin-left: 0px;
  }
}
.footer__social ul li:hover {
  background-color: var(--sky-blue);
}
@media only screen and (max-width: 900px) {
  .footer__social {
    margin-right: 0;
    margin-left: 0px;
    margin-top: 14px;
    flex-grow: 1;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .footer__social {
    width: 100%;
  }
}

.tab-group {
  display: flex;
  padding: 20px;
}
@media only screen and (max-width: 900px) {
  .tab-group {
    flex-flow: column;
  }
}
.tab-group .tab-content {
  border-left: 1px solid var(--inaccessible-gray);
  padding: 0 60px;
}
@media only screen and (max-width: 900px) {
  .tab-group .tab-content {
    border-top: 1px solid var(--inaccessible-gray);
    border-left: unset;
    padding: 60px 0;
  }
}
.tab-group .tab {
  padding-left: 0;
}
.tab-group .tab .tab-nav {
  width: 350px;
  max-width: 100%;
  padding-right: 20px;
}
.tab-group .tab .tab-nav ul {
  display: flex;
  flex-flow: column;
  list-style: none;
  padding: 0;
}
.tab-group .tab .tab-nav ul li {
  margin-bottom: 16px;
}
.tab-group .tab .tab-nav ul li.current-menu-item a {
  text-decoration: underline;
  color: #000;
}
.tab-group .tab .tab-nav ul li a {
  padding: 16px 16px 8px 0px;
  color: var(--global--color-secondary);
  text-decoration: none;
}
.tab-group .tab .tab-nav ul li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 900px) {
  .tab-group .tab .tab-nav ul li a {
    padding: 16px 16px 16px 0px;
  }
}

.site-main > article > .entry-footer {
  margin-top: var(--global--spacing-vertical);
  border-top: 0;
  padding: 0;
  border-bottom: 0;
}

.pagination, .comments-pagination {
  border-top: 0;
}

a.more-link {
  display: block;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  border: 1px solid var(--global--color-secondary);
  width: fit-content;
  margin-top: 20px;
  color: var(--global--color-secondary);
  border-radius: 4px;
}
a.more-link:hover {
  color: #fff;
  background-color: var(--global--color-secondary);
}

.wp-block-image figcaption {
  text-align: left;
  font-size: 14px;
}

td.has-text-align-center img {
  margin: auto;
}

#about-top .headline {
  font-size: 0px;
  text-transform: uppercase;
  padding-bottom: 40px;
}
#about-top .headline .sparse {
  display: block;
  width: 100%;
  font-size: 0px;
  padding-bottom: 40px;
}
#about-top .headline .sparse img {
  width: 100%;
  height: auto;
}
#about-top .about-text {
  padding: 40px 0 0 0;
  display: flex;
}
#about-top .about-text p {
  margin-bottom: 1em;
}
#about-top .about-text p:last-child {
  margin-bottom: 0;
}
#about-top .about-text .main {
  flex: 4.5;
  padding: 0 50px 0 0;
  line-height: 2em;
}
#about-top .about-text .inset {
  flex: 2;
  border: 1px solid;
  padding: 20px;
  height: fit-content;
  margin-top: 11px;
}
#about-top .about-text .inset hr {
  margin: 20px 0px;
}
@media only screen and (max-width: 768px) {
  #about-top .about-text {
    flex-flow: column;
  }
  #about-top .about-text .main {
    flex: 1;
    width: 100%;
  }
  #about-top .about-text .inset {
    margin-top: 40px;
    flex: 1;
    width: 100%;
  }
}

#team #team-members {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2%;
}
#team #team-members .team-member {
  flex: 0 0 29%;
  margin: 2%;
  padding-top: 15px;
}
#team #team-members .team-member img {
  width: 100%;
  height: auto;
  margin-bottom: 19px;
}
#team #team-members .team-member .description {
  margin-top: 28px;
}
@media only screen and (max-width: 768px) {
  #team #team-members .team-member .description {
    display: none;
  }
}
#team #team-members .team-member hr {
  margin: 10px -20px;
}
@media only screen and (max-width: 768px) {
  #team #team-members .team-member {
    flex: 0 0 46%;
  }
}

#investors {
  display: block;
}
#investors .section_title h3 {
  color: var(--white);
}
#investors .section_title::after {
  background-color: var(--sky-blue);
}
#investors #investor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#investors #investor-logos .investor {
  border: none;
  width: 24%;
  aspect-ratio: 16/9;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-right: 1%;
  background-color: var(--navy-blue);
}
#investors #investor-logos .investor a {
  width: 64%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #investors #investor-logos .investor {
    width: 48%;
  }
}
#investors #investor-logos .investor img {
  width: 100%;
  height: auto;
}

#technology p {
  margin-bottom: 1em;
}
#technology hr {
  margin: 40px 0;
}
#technology .illustration {
  margin: 40px 0;
}
#technology .illustration .figure-captions {
  padding-top: 20px;
  display: flex;
}
#technology .illustration .figure-captions .caption {
  flex: 1;
  padding: 0px 20px;
  font-style: oblique;
}

#careers hr {
  margin: 40px 0;
}
#careers p {
  margin-bottom: 1em;
}

ul.slick-dots {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 20px 0;
}
ul.slick-dots li {
  height: 16px;
  width: 16px;
  border-radius: 16px;
  font-size: 0px;
  overflow: hidden;
  border: 1px solid;
  cursor: pointer;
  background: white;
  display: inline-block;
  margin: 0px 5px;
}
ul.slick-dots li.slick-active {
  background: black;
}
ul.slick-dots li button {
  visibility: hidden;
}

.slick-slide img {
  display: block;
  max-width: 100%;
}

#columns2 {
  width: calc(100% - 350px);
}

.anchor-sections {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .anchor-sections {
    width: 90%;
  }
}

#anchors a.wp-block-button__link.wp-element-button svg path {
  fill: white;
}
#anchors .wp-block-group.is-style-twentytwentyone-border {
  border: 0;
  padding: 0px;
  margin: 0 0 60px;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: end;
  box-sizing: border-box;
}
#anchors .wp-block-group.is-style-twentytwentyone-border p {
  margin: 20px 0;
}
#anchors .wp-block-group.is-style-twentytwentyone-border.noshow {
  display: none;
}
#anchors.normal .wp-block-group.is-style-twentytwentyone-border {
  min-height: unset;
}
#anchors .wp-block-group .wp-block-group__inner-container {
  margin: 0 0 0 0;
}
#anchors .container form {
  width: 400px;
  max-width: 100%;
}
#anchors .container .wp-block-button {
  padding: 0 0;
}
#anchors .container .wp-block-button:hover a {
  color: white;
}
#anchors .container .wp-block-button a {
  padding: 10px;
}
#anchors .container .wp-block-column {
  display: flex;
  flex-flow: column;
}
#anchors .container .wp-block-column .wp-block-buttons {
  flex-grow: 1;
  align-content: flex-end;
}
@media only screen and (max-width: 767px) {
  #anchors .wp-block-button {
    width: 100%;
    margin-right: 0;
    padding: 0 0;
  }
}
#anchors h3 {
  text-transform: uppercase;
  border-bottom: 1px solid;
  padding-bottom: 20px;
  margin-bottom: 0px;
  margin-left: 0px;
}
#anchors h4 {
  margin-left: 0px;
}
#anchors .wp-block-code {
  margin-left: 0px;
}
#anchors #videos h5 {
  margin: 0;
}
#anchors #videos h5 a {
  color: black;
  text-decoration: none;
}
#anchors #videos p {
  margin: 0;
}
#anchors #videos p.subhead {
  margin: 20px 0px;
}
#anchors #videos img {
  object-fit: cover;
  width: 100%;
}
#anchors p.subhead {
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  margin: 20px 0px;
}

#anchor-nav {
  position: fixed;
  top: 0;
  height: fit-content;
  margin-top: 144px;
  right: 0px;
  width: 30%;
  max-width: 340px;
  padding: 30px;
  background: white;
  border: 1px solid black;
  border-right: 0px;
  box-sizing: border-box;
}
#anchor-nav #anchor-nav-title {
  font-size: 18px;
  margin-bottom: 4px;
}
#anchor-nav .anav a {
  text-decoration: none;
  font-size: 14px;
  border: none;
  line-height: 2em;
}
#anchor-nav .anav a:hover {
  border-bottom: 1px solid var(--dk-green);
}
#anchor-nav .anav.active a {
  border-bottom: 1px solid var(--dk-green);
}
#anchor-nav .anav.indent {
  margin-left: 15px;
}
#anchor-nav #anchor-nav-footer {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.4em;
}
#anchor-nav #anchor-nav-footer h1, #anchor-nav #anchor-nav-footer h2, #anchor-nav #anchor-nav-footer h3, #anchor-nav #anchor-nav-footer h4, #anchor-nav #anchor-nav-footer h5, #anchor-nav #anchor-nav-footer p {
  margin: 0;
  margin-top: 10px;
}
#anchor-nav #anchor-nav-footer a {
  text-decoration: none;
}
#anchor-nav #anchor-nav-footer a:hover {
  color: var(--global--color-secondary);
}
@media only screen and (max-width: 767px) {
  #anchor-nav {
    display: none;
  }
}

#banner {
  background-color: var(--dk-blue);
  padding: 17px 5vw;
  font-size: 16px;
  color: white;
}
#banner a, #banner a:visited, #banner a:hover {
  background: none;
  color: white;
  text-decoration: underline;
}
#banner p {
  margin: 0;
}

#content {
  margin-top: 86px;
}
@media only screen and (max-width: 1000px) {
  #content {
    margin-top: 0px;
  }
}

.site, .site-main {
  overflow-x: hidden;
}
.site .hide, .site-main .hide {
  display: none !important;
}
.site section, .site .section, .site-main section, .site-main .section {
  display: block;
  margin: auto;
  position: relative;
  width: 100%;
  height: unset;
  overflow-x: unset;
  overflow-y: unset;
  padding: 50px 20px;
}
.site section hr, .site .section hr, .site-main section hr, .site-main .section hr {
  margin: 42px 0 0px 0;
}
.site section .holder, .site section .wp-block-group .wp-block-group__inner-container, .site .section .holder, .site .section .wp-block-group .wp-block-group__inner-container, .site-main section .holder, .site-main section .wp-block-group .wp-block-group__inner-container, .site-main .section .holder, .site-main .section .wp-block-group .wp-block-group__inner-container {
  width: var(--holder-max-width);
  width: 96%;
  max-width: 96%;
  margin: auto;
  position: relative;
}
.site section .holder.flex, .site section .wp-block-group .wp-block-group__inner-container.flex, .site .section .holder.flex, .site .section .wp-block-group .wp-block-group__inner-container.flex, .site-main section .holder.flex, .site-main section .wp-block-group .wp-block-group__inner-container.flex, .site-main .section .holder.flex, .site-main .section .wp-block-group .wp-block-group__inner-container.flex {
  display: flex;
  flex-flow: row;
  gap: 20px;
}
.site section .holder.flex .left, .site section .wp-block-group .wp-block-group__inner-container.flex .left, .site .section .holder.flex .left, .site .section .wp-block-group .wp-block-group__inner-container.flex .left, .site-main section .holder.flex .left, .site-main section .wp-block-group .wp-block-group__inner-container.flex .left, .site-main .section .holder.flex .left, .site-main .section .wp-block-group .wp-block-group__inner-container.flex .left {
  width: 50%;
  padding: 0 5%;
}
.site section .holder.flex .right, .site section .wp-block-group .wp-block-group__inner-container.flex .right, .site .section .holder.flex .right, .site .section .wp-block-group .wp-block-group__inner-container.flex .right, .site-main section .holder.flex .right, .site-main section .wp-block-group .wp-block-group__inner-container.flex .right, .site-main .section .holder.flex .right, .site-main .section .wp-block-group .wp-block-group__inner-container.flex .right {
  width: 50%;
  padding: 0 5%;
}
@media only screen and (max-width: 767px) {
  .site section .holder.flex, .site section .wp-block-group .wp-block-group__inner-container.flex, .site .section .holder.flex, .site .section .wp-block-group .wp-block-group__inner-container.flex, .site-main section .holder.flex, .site-main section .wp-block-group .wp-block-group__inner-container.flex, .site-main .section .holder.flex, .site-main .section .wp-block-group .wp-block-group__inner-container.flex {
    flex-flow: column;
  }
  .site section .holder.flex .left, .site section .wp-block-group .wp-block-group__inner-container.flex .left, .site .section .holder.flex .left, .site .section .wp-block-group .wp-block-group__inner-container.flex .left, .site-main section .holder.flex .left, .site-main section .wp-block-group .wp-block-group__inner-container.flex .left, .site-main .section .holder.flex .left, .site-main .section .wp-block-group .wp-block-group__inner-container.flex .left {
    width: 100%;
    padding: 0 20px;
  }
  .site section .holder.flex .right, .site section .wp-block-group .wp-block-group__inner-container.flex .right, .site .section .holder.flex .right, .site .section .wp-block-group .wp-block-group__inner-container.flex .right, .site-main section .holder.flex .right, .site-main section .wp-block-group .wp-block-group__inner-container.flex .right, .site-main .section .holder.flex .right, .site-main .section .wp-block-group .wp-block-group__inner-container.flex .right {
    width: 100%;
    padding: 0 20px;
  }
}
.site section .holder img, .site section .wp-block-group .wp-block-group__inner-container img, .site .section .holder img, .site .section .wp-block-group .wp-block-group__inner-container img, .site-main section .holder img, .site-main section .wp-block-group .wp-block-group__inner-container img, .site-main .section .holder img, .site-main .section .wp-block-group .wp-block-group__inner-container img {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .site section .holder, .site section .wp-block-group .wp-block-group__inner-container, .site .section .holder, .site .section .wp-block-group .wp-block-group__inner-container, .site-main section .holder, .site-main section .wp-block-group .wp-block-group__inner-container, .site-main .section .holder, .site-main .section .wp-block-group .wp-block-group__inner-container {
    width: 100%;
    max-width: 100%;
  }
}
.site section.full, .site .section.full, .site-main section.full, .site-main .section.full {
  max-width: 100%;
}
.site section.full .holder, .site .section.full .holder, .site-main section.full .holder, .site-main .section.full .holder {
  max-width: var(--holder-max-width);
  margin-left: auto;
  margin-right: auto;
}
.site section.custom-shape-bottom, .site .section.custom-shape-bottom, .site-main section.custom-shape-bottom, .site-main .section.custom-shape-bottom {
  padding-bottom: 100px;
}
.site section.custom-shape-top, .site .section.custom-shape-top, .site-main section.custom-shape-top, .site-main .section.custom-shape-top {
  padding-top: 100px;
}
.site section.custom-shape-top .holder, .site .section.custom-shape-top .holder, .site-main section.custom-shape-top .holder, .site-main .section.custom-shape-top .holder {
  padding-top: 50px;
}
.site .section_title, .site-main .section_title {
  transform-origin: 0 0;
  text-align: center;
  padding-bottom: 60px;
}
.site .section_title .info, .site-main .section_title .info {
  width: 768px;
  margin: auto;
  margin-top: 20px;
  max-width: 100%;
}
.site .section_title::after, .site-main .section_title::after {
  display: block;
  height: 4px;
  width: 147px;
  background: var(--dk-green);
  content: "";
  margin-left: calc(50% - 74px);
  margin-top: 30px;
}
.site .section_title.tleft, .site-main .section_title.tleft {
  text-align: left;
}
.site .section_title.tleft::after, .site-main .section_title.tleft::after {
  margin-left: 0px;
}
@media only screen and (max-width: 768px) {
  .site .section_title, .site-main .section_title {
    padding-bottom: 30px;
  }
  .site .section_title::after, .site-main .section_title::after {
    margin-top: 20px;
  }
  .site .section_title.tleft, .site-main .section_title.tleft {
    text-align: center;
  }
  .site .section_title.tleft::after, .site-main .section_title.tleft::after {
    margin-left: calc(50% - 74px);
  }
}
.site .signups2, .site-main .signups2 {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
.site .signups2 .signup2, .site-main .signups2 .signup2 {
  width: 43.5%;
  padding: 0;
}
.site .signups2 .signup2 .actions, .site-main .signups2 .signup2 .actions {
  width: fit-content;
  margin: auto;
}
@media only screen and (max-width: 1000px) {
  .site .signups2, .site-main .signups2 {
    flex-flow: column;
  }
  .site .signups2 .signup2, .site-main .signups2 .signup2 {
    width: 100%;
    padding: 10px 0px;
  }
}
.site section#choose, .site-main section#choose {
  margin-top: 0;
  padding: 0 0vw;
}
.site section#choose .container, .site-main section#choose .container {
  width: 100%;
  max-width: unset;
  transform-origin: 0 0;
  margin: unset;
  margin-top: 10px;
}
.site section#choose .container .signups, .site-main section#choose .container .signups {
  display: flex;
  margin: unset;
  flex-wrap: unset;
  justify-content: space-evenly;
}
.site section#choose .container .signups .signup, .site-main section#choose .container .signups .signup {
  flex: unset;
  margin: unset;
  width: 550px;
}
@media only screen and (max-width: 1000px) {
  .site section#choose, .site-main section#choose {
    padding: 20px;
    transform: scale(1);
  }
  .site section#choose .container, .site-main section#choose .container {
    width: 100%;
    height: unset;
  }
  .site section#choose .container .signups, .site-main section#choose .container .signups {
    width: 100%;
    flex-flow: column;
  }
  .site section#choose .container .signups .signup, .site-main section#choose .container .signups .signup {
    flex: unset;
    margin: unset;
    width: 100%;
  }
}

#hero322 {
  display: block;
  background: var(--navy-blue);
  background: var(--blue-gradient);
  color: var(--white);
  padding: 0px !important;
}
#hero322.theme-white {
  background: var(--white);
  color: var(--black);
}
#hero322.theme-white a {
  color: var(--sky-blue);
}
#hero322.theme-white .holder .button, #hero322.theme-white .holder button {
  background-color: var(--dk-green);
  color: var(--white);
}
#hero322.theme-white .holder .button a, #hero322.theme-white .holder button a {
  color: var(--white);
}
#hero322.theme-white .holder .button.secondary, #hero322.theme-white .holder button.secondary {
  background: none;
  color: var(--black);
}
#hero322.theme-white .holder .button.secondary a, #hero322.theme-white .holder button.secondary a {
  color: var(--dk-green);
}
#hero322.theme-center {
  text-align: center;
}
#hero322.theme-center .holder {
  justify-content: center;
  background-image: url(assets/img/orbs-10623.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100% !important;
  max-width: 100% !important;
}
#hero322.theme-center .holder .info {
  padding-right: 0px;
  padding-bottom: 100px;
  width: 90%;
}
#hero322.theme-center .holder .image {
  display: none;
}
#hero322 .holder {
  display: flex;
  padding: 92px 20px;
  background-size: cover;
  background-position: right;
  background-image: url(assets/img/neural-path-medium.svg);
}
#hero322 .holder .info {
  width: 50%;
  margin: auto;
  padding-right: 88px;
  box-size: border-box;
  margin-top: -4px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
#hero322 .holder a {
  color: var(--sky-blue);
}
#hero322 .holder .button, #hero322 .holder button {
  background-color: var(--sky-blue);
  color: var(--navy-blue);
}
#hero322 .holder .button a, #hero322 .holder button a {
  color: var(--navy-blue);
}
#hero322 .holder .button.secondary, #hero322 .holder button.secondary {
  background: none;
  color: var(--sky-blue);
}
#hero322 .holder .button.secondary a, #hero322 .holder button.secondary a {
  color: var(--sky-blue);
}
#hero322 .holder .image {
  width: 50%;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}
#hero322 .holder .image .image_slide {
  background: white;
}
#hero322 .holder .image h4 {
  margin-bottom: 20px;
  text-align: center;
}
#hero322 .holder .image img {
  width: 100%;
  height: auto;
}
#hero322 .holder .image #header_image_caption {
  margin-top: 10px;
  font-size: 0.8em;
}
#hero322 .holder .image #header_image_caption p {
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  #hero322 .holder {
    display: flex;
    transform: scale(1);
    width: 100%;
    height: fit-content;
    padding: 50px 20px 40px;
    flex-flow: column-reverse;
    gap: 50px;
  }
  #hero322 .holder .info {
    width: 100%;
    font-size: 18px;
    margin-bottom: 18px;
    padding-right: 0px;
  }
  #hero322 .holder .image {
    width: 100%;
  }
}

.info_image {
  display: block;
  background-color: var(--pale-blue);
}
.info_image .holder {
  display: flex;
}
.info_image .holder .info {
  width: 50%;
  padding: 0 40px;
  box-size: border-box;
  margin-top: -4px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.info_image .holder .image {
  width: 50%;
  padding: 0 40px;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
}
.info_image .holder .image h4 {
  margin-bottom: 20px;
  text-align: left;
}
.info_image .holder .image img {
  width: 100%;
  height: auto;
}
.info_image .holder .image #header_image_caption {
  margin-top: 10px;
  font-size: 0.8em;
}
.info_image .holder .image #header_image_caption p {
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .info_image .holder {
    display: block;
    transform: scale(1);
    width: 100%;
    height: fit-content;
    flex-flow: column;
  }
  .info_image .holder .info {
    width: 100%;
    font-size: 18px;
    margin-bottom: 18px;
    padding: 0px;
  }
  .info_image .holder .image {
    width: 100%;
    padding: 0px;
  }
}

#howitworks .holder {
  display: flex;
  width: 100%;
}
#howitworks .holder .step {
  width: 20%;
  text-align: center;
}
#howitworks .holder .step img {
  height: 175px;
  width: 175px;
  margin: auto;
  margin-bottom: 15px;
}
#howitworks .holder .step h3 {
  margin-bottom: 15px;
}
#howitworks .holder .spacer {
  width: 10%;
  height: 110px;
}
#howitworks .holder .spacer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
@media only screen and (max-width: 1000px) {
  #howitworks .holder .step {
    font-size: 18px;
  }
  #howitworks .holder .step img {
    height: 125px;
    width: 125px;
    margin: auto;
    margin-bottom: 15px;
  }
  #howitworks .holder .spacer {
    height: 77px;
  }
}
@media only screen and (max-width: 768px) {
  #howitworks .holder {
    flex-flow: column;
  }
  #howitworks .holder .step {
    width: 100%;
  }
  #howitworks .holder .spacer {
    width: 100%;
    height: 76px;
    margin-bottom: 20px;
  }
}

#benefits322 .holder {
  display: flex;
}
#benefits322 .holder .info {
  width: 33.3%;
  font-size: 21px;
  padding-right: 60px;
  box-sizing: border-box;
}
#benefits322 .holder .info h3 {
  font-size: 27px;
  margin-bottom: 21px;
}
#benefits322 .holder img {
  width: 128px;
  height: auto;
  margin-bottom: 32px;
}

section#white_paper322 {
  display: block;
  margin-top: 72px;
}
section#white_paper322 .holder {
  border: 1px solid #000;
  padding: 50px;
  box-sizing: border-box;
  transform-origin: 0 0;
  display: flex;
  align-items: center;
}
section#white_paper322 .holder .info {
  width: 50%;
  font-size: 36px;
  height: fit-content;
}
section#white_paper322 .holder .info h3 {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 50px;
}
section#white_paper322 .holder .info .button {
  margin-top: 50px;
}
section#white_paper322 .holder .image {
  width: 50%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
section#white_paper322 .holder .image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1330px) {
  section#white_paper322 .holder {
    width: 100%;
    height: unset;
    flex-flow: column-reverse;
    padding: 20px;
    margin-top: 36px;
  }
  section#white_paper322 .holder .info {
    width: 100%;
    font-size: 18px;
  }
  section#white_paper322 .holder .info h3 {
    font-size: 30px;
    margin-bottom: 18px;
  }
  section#white_paper322 .holder .image {
    width: 100%;
    object-fit: contain;
    margin-bottom: 18px;
  }
  section#white_paper322 .holder .image img {
    width: 100%;
    height: auto;
  }
}

.formpanel {
  background-color: var(--pale-blue);
  background-image: url(assets/img/neural-path-light.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.formpanel .holder {
  align-items: flex-start;
}
.formpanel textarea {
  padding: 12px;
}
.formpanel ul {
  margin-bottom: 23px;
}

#press {
  display: block;
}
#press hr {
  margin: 40px 0 40px;
}
#press #press-logos {
  width: 900px;
  max-width: 100%;
  margin: auto;
}
#press #press-logos .press-entry {
  border: none;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  margin-bottom: 10px;
  margin-right: 1%;
}
#press #press-logos .press-entry h2, #press #press-logos .press-entry h3 {
  font-weight: normal;
  margin-bottom: 20px;
  max-width: 100%;
  line-height: 1.1em;
  text-align: left;
}
#press #press-logos .press-entry h4 {
  text-align: left;
}
#press #press-logos .press-entry a {
  text-decoration: none;
  color: black;
}
#press #press-logos .press-entry a h2, #press #press-logos .press-entry a h3 {
  font-weight: normal;
  margin-bottom: 20px;
  max-width: 100%;
  line-height: 1.1em;
  text-align: left;
}
#press #press-logos .press-entry h2 {
  width: 945px;
  max-width: 100%;
  margin: auto;
  margin-bottom: 60px;
}
#press #press-logos .press-entry img {
  margin-top: 20px;
  width: 100px;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  #press #press-logos .press-entry {
    width: 48%;
  }
  #press #press-logos .press-entry h2, #press #press-logos .press-entry h3 {
    text-align: center;
  }
  #press #press-logos .press-entry h4 {
    text-align: center;
    line-height: 1.2em;
    margin-bottom: 20px;
  }
  #press #press-logos .press-entry img {
    margin: 20px auto 20px auto;
  }
}

#blog-home .holder {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
#blog-home .holder .blog-home-entry {
  width: calc(50% - 20px);
  text-align: left;
  padding: 0 0 20px 0;
  overflow: hidden;
}
#blog-home .holder .blog-home-entry .blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--blue-gradient);
}
#blog-home .holder .blog-home-entry .blog-thumb img {
  height: 100%;
  max-width: 100%;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#blog-home .holder .blog-home-entry a {
  text-decoration: none;
  color: var(--black);
}
#blog-home .holder .blog-home-entry .info {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  #blog-home .holder .blog-home-entry {
    width: 100%;
  }
  #blog-home .holder .blog-home-entry .info {
    font-size: 12px;
    line-height: 1.4em;
  }
}
@media only screen and (max-width: 767px) {
  #blog-home .holder {
    flex-flow: column;
  }
}

#graphs322 {
  background-color: var(--dk-blue);
  background: var(--blue-gradient);
  color: var(--white);
}
#graphs322 .section_title::after {
  background-color: var(--bright-blue) !important;
}
#graphs322.theme-white {
  background: var(--white);
  color: var(--black);
}
#graphs322.theme-white a {
  color: var(--sky-blue);
}
#graphs322.theme-white .holder .button, #graphs322.theme-white .holder button {
  background-color: var(--bright-green);
  color: var(--white);
}
#graphs322.theme-white .holder .button a, #graphs322.theme-white .holder button a {
  color: var(--white);
}
#graphs322.theme-white .holder .button.secondary, #graphs322.theme-white .holder button.secondary {
  background: none;
  color: var(--black);
}
#graphs322.theme-white .holder .button.secondary a, #graphs322.theme-white .holder button.secondary a {
  color: var(--bright-green);
}
#graphs322.theme-paleblue {
  background: var(--pale-blue);
  color: var(--black);
}
#graphs322.theme-paleblue a {
  color: var(--sky-blue);
}
#graphs322.theme-paleblue .holder .button, #graphs322.theme-paleblue .holder button {
  background-color: var(--bright-green);
  color: var(--white);
}
#graphs322.theme-paleblue .holder .button a, #graphs322.theme-paleblue .holder button a {
  color: var(--white);
}
#graphs322.theme-paleblue .holder .button.secondary, #graphs322.theme-paleblue .holder button.secondary {
  background: none;
  color: var(--black);
}
#graphs322.theme-paleblue .holder .button.secondary a, #graphs322.theme-paleblue .holder button.secondary a {
  color: var(--bright-green);
}
#graphs322 .holder {
  display: flex;
  flex-flow: column;
  margin-bottom: 50px;
}
#graphs322 .holder .info .section_title {
  padding-top: 50px;
  padding-bottom: 0px !important;
}
#graphs322 .holder .image {
  width: 100%;
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  padding: 20px;
  gap: 20px;
}
#graphs322 .holder .image h4 {
  margin-bottom: 20px;
  text-align: center;
}
#graphs322 .holder .image img {
  width: 100%;
  height: auto;
}
#graphs322 .holder .image #header_image_caption {
  margin-top: 10px;
  font-size: 0.8em;
}
#graphs322 .holder .image #header_image_caption p {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  #graphs322 .holder .image {
    display: block;
    transform: scale(1);
    width: 100%;
    height: fit-content;
    flex-flow: column;
  }
  #graphs322 .holder .image .graph {
    width: 100%;
    padding: 0 0 20px;
  }
}

#feature_overview {
  flex-flow: column;
  align-items: flex-start;
  padding-bottom: 60px;
  background: var(--lt-gray2);
  color: black;
}
#feature_overview .icon {
  margin-bottom: 16px;
}
#feature_overview .holder {
  display: flex;
  margin: auto;
  margin-top: 0px;
  flex-wrap: wrap;
  justify-content: space-between;
}
#feature_overview .holder .feature {
  width: 21%;
  font-size: var(--body--font-size);
  text-align: left;
  margin: 20px 0;
}
#feature_overview .holder .feature .icon {
  width: 77px;
  height: 74px;
  object-fit: contain;
  background-color: var(--sky-blue);
  border-radius: var(--radius-sm);
}
#feature_overview .holder .feature h3 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1330px) {
  #feature_overview .holder {
    flex-flow: row;
    flex-wrap: wrap;
  }
  #feature_overview .holder .feature {
    width: 45%;
    text-align: left;
  }
  #feature_overview .holder .feature .icon {
    margin: 10px 0;
  }
}

#products322 {
  background-color: var(--dk-blue);
  background: var(--blue-gradient);
  color: var(--white);
}
#products322 .section_title {
  color: var(--white);
}
#products322 .section_title::after {
  background: var(--sky-blue);
}
#products322 .holder {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
#products322 .holder a {
  text-decoration: none;
}
#products322 .holder a:hover {
  text-decoration: underline;
}
#products322 .holder .info {
  flex: 1;
  margin: 0 25px;
  text-align: center;
  display: flex;
  flex-flow: column;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #products322 .holder .info {
    margin-bottom: 40px;
  }
}
#products322 .holder .info .image {
  width: 175px;
  height: 175px;
  background: var(--sky-blue);
  border-radius: 50%;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 20px;
}
#products322 .holder .info .image img {
  height: 108px;
  width: auto;
  margin: auto;
}
#products322 .holder .info .info-card {
  flex: 1;
  display: flex;
  flex-flow: column;
}
#products322 .holder .info .info-card .title {
  font-weight: bold;
  text-decoration: none;
  padding: 0 10px;
}
#products322 .holder .info .info-card .description {
  font-size: var(--body--font-size);
  text-decoration: none;
  padding: 10px 20px 23px 20px;
  flex-grow: 1;
}
#products322 .holder .info .info-card .cta {
  color: var(--sky-blue);
  width: 100%;
  padding: 14px 10px;
  font-size: var(--body--font-size);
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (max-width: 1000px) {
  #products322 .holder {
    flex-flow: column;
  }
  #products322 .holder a {
    width: 100%;
  }
  #products322 .holder a .info {
    margin-bottom: 20px;
    margin-right: 0px;
    margin-left: 0;
  }
}

#research {
  background-color: var(--dk-blue);
  color: var(--white);
}
#research a {
  color: var(--white);
}
#research a:hover {
  color: var(--white);
}
#research .section_title {
  color: var(--white);
}
#research .section_title::after {
  background: var(--sky-blue);
}
#research .section_title .cta {
  margin-bottom: 48px;
}
#research .section_title .cta a {
  color: var(--sky-blue);
  width: 100%;
  padding: 30px 10px 30px;
  font-size: var(--body--font-size);
  text-transform: uppercase;
  font-weight: bold;
}
#research .holder {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
#research .holder a {
  text-decoration: none;
}
#research .holder a:hover {
  text-decoration: underline;
}
#research .holder .info {
  flex: 1;
  margin: 0 25px;
  text-align: center;
  display: flex;
  flex-flow: column;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #research .holder .info {
    margin: 0px;
    margin-bottom: 40px;
  }
}
#research .holder .info .image img {
  margin: auto;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
}
#research .holder .info .info-card {
  flex: 1;
  display: flex;
  flex-flow: column;
}
#research .holder .info .info-card a {
  color: var(--white);
}
#research .holder .info .info-card a:hover {
  color: var(--white);
}
#research .holder .info .info-card .title {
  text-decoration: none;
  padding: 0 10px;
}
#research .holder .info .info-card .description {
  font-size: var(--body--font-size);
  text-align: left;
  text-decoration: none;
  padding: 10px 20px 23px 20px;
  flex-grow: 1;
}
#research .holder .info .info-card .description ul {
  list-style: none;
  padding-left: 30px;
}
#research .holder .info .info-card .description ul li {
  margin-bottom: 20px;
  position: relative;
}
#research .holder .info .info-card .description ul li:before {
  content: "";
  height: 31px;
  width: 23px;
  background-repeat: no-repeat;
  display: block;
  background-image: url("./assets/img/doc-sm.svg");
  position: absolute;
  top: 0px;
  left: -40px;
}
#research .holder .info .info-card .cta {
  color: var(--sky-blue);
  width: 100%;
  padding: 14px 10px;
  font-size: var(--body--font-size);
  text-transform: uppercase;
  font-weight: bold;
}
@media only screen and (max-width: 1000px) {
  #research .holder {
    flex-flow: column;
  }
  #research .holder a {
    width: 100%;
  }
  #research .holder a .info {
    margin-bottom: 20px;
    margin-right: 0px;
    margin-left: 0;
  }
}

#videoContainer {
  display: flex;
  position: fixed;
  z-index: 100;
  background: black;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
#videoContainer #videoplayer {
  min-width: 300px;
  max-height: 100vh !important;
}

#video-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.videoThumb {
  cursor: pointer;
}
.videoThumb .play_btn {
  position: absolute;
  height: 80px;
  width: 80px;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  transform: scale(1);
  transform-origin: center center;
  border-radius: 40px;
  overflow: hidden;
  text-indent: -9999em;
  background-image: url(assets/img/playbutton.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.25s;
}
.videoThumb:hover .play_btn {
  transform: scale(1.2);
}

.video_section .video_category .thumbs {
  width: 100%;
}
.video_section .video_category .thumbs .thumb {
  width: 20%;
  padding: 10px;
  aspect-ratio: 16/9;
  display: inline-block;
}
.video_section .video_category .thumbs .thumb:first-of-type {
  padding-left: 0px;
}
.video_section .video_category .thumbs .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid;
}

.editor-styles-wrapper .wp-block-button__link {
  background: black;
}

.search-form {
  display: inline-flex;
  flex-flow: row;
  align-items: flex-start;
  margin-bottom: 50px;
  max-width: 100%;
}

.search-form .search-submit {
  margin-top: calc(var(--global--spacing-vertical) / 3);
  margin-left: 0;
  padding: 9px 20px;
}

.search-result-header {
  margin-bottom: 20px;
}

.search-form .search-field {
  margin-top: calc(var(--global--spacing-vertical) / 3);
  margin-right: 10px;
  width: 400px;
  max-width: 96%;
}

.search-form > label {
  width: unset;
}

@media only screen and (max-width: 768px) {
  .search-form {
    width: 100%;
  }

  .search-form > label {
    width: calc(100% - 105px) !important;
  }
}
#community322 {
  background-color: var(-- "pale-blue");
}
#community322 .section_title::after {
  background-color: var(--bright-blue) !important;
}
#community322 .holder {
  display: flex;
  justify-content: space-evenly;
}
#community322 .holder .info {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 19%;
  font-size: 21px;
  box-sizing: border-box;
  text-align: center;
}
#community322 .holder .info .image {
  display: block;
  height: 130px;
  width: 130px;
  padding: 25px;
  border-radius: 24px;
  background-color: var(--sky-blue);
  border-radius: var(--radius-sm);
  margin-bottom: 48px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #community322 .holder .info .image {
    padding: 10px;
    width: 16vw;
    height: 16vw;
  }
}
#community322 .holder .info .image img {
  height: 100%;
}
#community322 .holder .info:hover .image {
  background-color: var(--pale-blue);
}
