@charset "UTF-8";
/* Blocks */
/* Sitewide */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "cera-pro", sans-serif !important;
  margin: 0 !important;
  overflow-x: hidden;
  color: #0e1318;
}
/* Sticky Header with Admin Bar */
main {
  padding-top: 77px;
}
.admin-bar header {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .admin-bar header {
    top: 32px;
  }
}
@media screen and (min-width: 992px) {
  main {
    padding-top: 130px;
  }
}
/* Sticky Header with Alert Bar  */
header.alert-bar + main {
  padding-top: 132px;
}
@media screen and (min-width: 992px) {
  header.alert-bar + main {
    padding-top: 180px;
  }
}
.container {
  max-width: 1140px;
  height: 100%;
}
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.blog-container {
  max-width: 950px;
}
.container-wide {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.flex-column:before, .flex-column:after {
  display: block;
}
/* Grid */
.col-20-lg {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
/* Backgrounds */
.as-bg-black {
  background-color: #000210;
}
.as-bg-white {
  background-color: #fff;
}
.as-bg-lightgrey {
  background-color: #eff3f5;
}
.as-bg-darkgrey {
  background-color: #334252;
}
.as-bg-extradarkgrey {
  background-color: #0e1318;
}
.as-bg-blue {
  background-color: #0160ff;
}
.as-bg-lightblue {
  background-color: #ebf5ff;
}
.as-bg-darkblue {
  background-color: #001765;
}
/*Submenu*/
ul.sub-menu {
  display: none;
}
ul.sub-menu.shown {
  display: block;
}
/*
      .menu-item-has-children:focus > ul.sub-menu {
          display: block;
      }
  */
/* Navigation */
ul.sub-menu.shown {
  display: block;
}
.ubermenu .nav-link {
  font-size: 16px;
  line-height: 19px;
  color: #0e1318;
  font-weight: bold;
}
.ubermenu .ubermenu-nav > li > .nav-link {
  padding-top: 30px;
  padding-bottom: 30px;
  border-width: 3px 0;
  border-style: solid;
  border-color: transparent;
}
.ubermenu .ubermenu-nav > li:hover > .nav-link {
  border-bottom-color: #0160ff;
}
.ubermenu .ubermenu-nav > li.ubermenu-has-submenu-drop > a.nav-link:after {
  content: " ";
  width: 16px;
  height: 23px;
  position: absolute;
  background: url(../images/arrow-menu.svg) center no-repeat;
  background-size: 9px;
}
.ubermenu .ubermenu-item .ubermenu-submenu-drop {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  clip: inherit !important;
  padding: 15px 3px;
}
.ubermenu .ubermenu-target-description {
  color: #0e1318;
  font-size: 15px;
  line-height: 22px;
}
.ubermenu.ubermenu-transition-slide .ubermenu-active > .ubermenu-submenu.ubermenu-submenu-type-mega, .ubermenu:not(.ubermenu-transition-slide) .ubermenu-submenu.ubermenu-submenu-type-mega {
  overflow: hidden;
}
#primary-navbar .btn.btn-primary {
  color: #fff;
  width: auto;
  background: #0160ff;
  border-radius: 100px;
  padding-right: 10px;
  padding-left: 10px;
  min-width: 175px;
  text-align: center;
}
#primary-navbar .btn.btn-primary:hover {
  background: #0024ff;
}
.menu-main-navigation-container {
  width: 100% !important;
}
#primary-nav {
  justify-content: space-between;
  padding: 0 !important;
}
#primary-nav .navbar-toggler {
  width: 23px;
  height: 16px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
}
#primary-nav .navbar-toggler .humb {
  display: block;
  width: 23px;
  height: 2px;
  background: #0e1318;
  transform: translateY(0);
  -webkit-transition: transform 0 300ms;
  transition: transform 0 300ms;
  text-indent: -9999px;
  border-radius: 2px;
}
#primary-nav .navbar-toggler .humb::before, #primary-nav .navbar-toggler .humb::after {
  display: block;
  position: absolute;
  content: "";
  z-index: -1;
  width: 23px;
  height: 2px;
  background: #0e1318;
  border-radius: 2px;
}
#primary-nav .navbar-toggler .humb::before {
  bottom: 7px;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
#primary-nav .navbar-toggler .humb::after {
  top: 7px;
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
#primary-nav .navbar-toggler:not(.collapsed) .humb {
  background: none;
}
#primary-nav .navbar-toggler:not(.collapsed) .humb::after {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
#primary-nav .navbar-toggler:not(.collapsed) .humb::before {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
#primary-nav .logo-cont {
  height: 29px;
}
#primary-navbar {
  height: 100%;
  font-size: 0.8rem;
  font-weight: bold;
  flex-grow: initial;
  height: 24px;
}
#mobile-logo-container {
  background: #000;
}
#mobile-logo {
  height: 50px;
  margin: 15px 20px;
}
/* Hero Section */
.hero-video {
  object-fit: contain;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .hero-video {
    position: absolute;
    width: 50%;
    margin-top: 0;
  }
}
.hero-video video, .hero-video iframe {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  min-height: 300px;
}
@media (min-width: 768px) {
  .hero-video video, .hero-video iframe {
    position: absolute;
    top: -15%;
    right: 0;
    width: 100%;
    height: 130%;
  }
}
.blog-hero-content {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
}
.blog-hero-content .col-lg-6 {
  position: static;
}
.blog-hero-content .col-lg-6:last-child {
  padding-left: 46px;
}
.blog-hero-content .row.h-100 {
  min-height: 480px;
}
.blog-hero-content .company-logo {
  margin-bottom: 22px;
  width: auto;
}
.blog-hero-content h1 {
  margin-bottom: 30px !important;
}
.single-post .blog-hero-content h1 {
  margin-bottom: 10px !important;
}
.blog-hero-content .img-h {
  position: absolute;
  top: 0;
  width: 50%;
  right: 50%;
  height: 100%;
  z-index: 3;
}
.blog-hero-content .img-h img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.author-top-section {
  padding: 31px 15px 40px;
}
.author-top-section .sm-avatar img {
  max-width: 60px;
  margin-top: 5px;
}
.post-info {
  margin-bottom: 35px;
}
.post-info strong {
  text-transform: uppercase;
  padding-right: 10px;
}
.post-info span {
  text-transform: uppercase;
  padding-left: 10px;
}
.single-post .blog-hero-content .img-h {
  right: auto;
  left: 50%;
}
.hero-content h1 {
  margin-bottom: 25px;
}
.hero-content p:last-of-type, .blog-hero-content p:last-of-type {
  margin-bottom: 44px;
}
.error404 .hero-content p:last-of-type {
  margin-bottom: 20px;
}
.error404 .hero-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.hero-background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}
/* Tables */
#main-content table > tbody > tr:first-of-type {
  background-color: #0160ff;
  color: #fff;
}
#main-content table tr td {
  padding: 10px;
}
/* Images */
.most-read-thumb {
  max-height: 100px;
}
.author-thumbnail-sm {
  max-height: 32px;
}
.author-thumbnail-lg {
  max-height: 83px;
}
.related-post-image-container {
  height: 179px;
}
.related-case-image-overlay {
  height: 100%;
  width: 100%;
  z-index: 1;
}
.related-case-image-container {
  height: 256px;
}
.related-case-image-container .related-case-logo {
  position: relative;
  left: 10px;
  top: 220px;
  max-width: 130px;
}
.related-case-image-container .related-case-logo img {
  max-height: 25px;
}
.related-case-icon {
  position: absolute;
  top: 212px;
  left: calc(100% - 50px);
}
.fixed-sidebar {
  position: sticky;
  top: 184px;
  border-left: 1px solid #95b1c8;
  padding-left: 24px;
}
.fixed-sidebar p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3em;
}
.fixed-sidebar a {
  color: #95b1c8;
}
.related-case-icon img {
  max-height: 35px;
}
.home .case-study-block {
  padding-top: 40px;
}
.case-study-block {
  padding-bottom: 50px;
  padding-top: 50px;
}
.case-study-block:not(.as-bg-white) {
  padding-top: 80px;
}
.case-study-block .case-logo-carousel .slick-track {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.case-study-block .case-logo-carousel .slick-track .logo-h {
  padding: 0 15px;
  float: none;
}
.case-study-block .case-logo-carousel .slick-track .logo-h img {
  margin: 0 auto;
}
.logo-grid img {
  max-width: 100%;
}
/* Blog */
.ghost-link {
  display: block;
  width: 100%;
  height: 100%;
  font: 0/0 a;
  color: transparent;
  position: absolute;
  left: 0;
  top: 0;
}
/* Video */
.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
/* Typography */
body {
  font-size: 1rem;
  line-height: 22px;
  font-family: "cera-pro", sans-serif !important;
}
.big-body {
  font-size: 1.125rem;
  line-height: 27px;
}
h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 3rem;
  -webkit-font-smoothing: antialiased;
  font-family: "breve-text", serif;
}
h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 2.75rem;
  -webkit-font-smoothing: antialiased;
  font-family: "breve-text", serif;
}
h3 {
  font-size: 1.63rem;
  font-weight: 700;
  line-height: 2rem;
  -webkit-font-smoothing: antialiased;
  font-family: "breve-text", serif;
}
h4 {
  -webkit-font-smoothing: antialiased;
  font-family: "cera-pro", sans-serif !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}
h5 {
  font-family: "breve", serif;
}
h6 {
  font-family: "breve", serif;
}
b, strong {
  font-weight: 700;
}
ul > li {
  line-height: 1.5rem;
}
.fixed-top {
  right: auto;
  width: 100%;
}
.popup-open .fixed-top {
  z-index: 5;
}
.seach-form-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
}
.seach-form-box .search-holder {
  background: #fff;
  display: flex;
  align-items: center;
  height: 130px;
}
.seach-form-box .search-holder .container {
  height: auto;
}
.seach-form-box .search-holder .search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.seach-form-box .search-holder .search-form label {
  width: 50%;
  margin-bottom: 0;
}
.seach-form-box .search-holder .search-form .search-field {
  color: #0e1318;
  font-size: 20px;
  line-height: 26px;
  border: none;
  width: 100%;
  padding: 10px 0 10px 36px;
  background: url(../images/search-icon-dark.svg) no-repeat center left;
  background-size: 18px;
  outline: none !important;
  border-radius: 0;
  border-bottom: 1px solid transparent;
}
.seach-form-box .search-holder .search-form .search-field:focus-within, .seach-form-box .search-holder .search-form .search-field:focus {
  border-bottom: 1px solid #334252;
}
.seach-form-box .search-holder .search-form .search-field::-webkit-search-cancel-button {
  display: none;
}
.seach-form-box .search-holder .search-form .search-footer {
  display: flex;
  flex-wrap: wrap;
  white-space: nowrap;
}
.seach-form-box .search-holder .search-form .btn-primary {
  padding: 10px;
  min-width: 153px;
}
.seach-form-box .search-holder .search-form .search-close {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  transition: all 0.2s ease;
}
.seach-form-box .search-holder .search-form .search-close path {
  transition: all 0.2s ease;
}
.seach-form-box .search-holder .search-form .search-close:hover {
  background: #0160ff;
}
.seach-form-box .search-holder .search-form .search-close:hover path {
  stroke: #ffffff;
}
.admin-bar .search-holder {
  margin-top: 32px;
}
#sticky-bar {
  position: relative;
  display: none;
}
#sticky-bar .container {
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
#sticky-bar .close {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  text-indent: -9999px;
  text-align: left;
  background: url(../images/close-icon.svg) no-repeat center;
  background-size: 100%;
  opacity: 1;
  padding: 0;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  z-index: 3;
}
#sticky-bar .close:hover {
  opacity: 0.7;
}
#sticky-bar p {
  margin-bottom: 0;
}
#sticky-bar .arrow-white {
  margin-left: 10px;
  display: inline-block;
  padding-right: 30px !important;
  background-position: bottom 3px right 10px;
}
#sticky-bar .arrow-white:hover {
  background-position: bottom 3px right;
}
.top-menu {
  border-bottom: 1px solid #c4d1d8;
  display: none;
}
.top-menu .container {
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  line-height: 18px;
}
.top-menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-menu ul li {
  margin-left: 26px;
}
.top-menu ul li a {
  color: #0e1318;
}
.top-menu ul li a:hover {
  color: #001765;
}
.search-open {
  background: url(../images/search-icon-dark.svg) no-repeat center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  text-indent: -9999px;
  text-align: left;
  display: block;
  padding: 0;
  border: none;
  margin-left: 5px;
}
.case-study-title {
  color: #000 !important;
}
.case-study-title:hover {
  color: #0160ff !important;
}
.blog-title {
  color: #000 !important;
}
.blog-title:hover {
  color: #0160ff !important;
}
.big-bold-1 {
  font-size: 1.5rem;
  line-height: 1.8125rem;
  font-weight: 700;
}
.highlight-yellow {
  background-color: #fffed1;
}
.quote-style-2 {
  font-family: "breve", serif;
  font-size: 1.25rem;
  max-width: 28rem;
  line-height: 1.75rem;
}
.quote-attribution {
  font-size: 1rem;
  line-height: 1.375rem;
}
.transcript-block {
  background-color: #f7f9fa;
  padding: 30px 50px;
}
.transcript-block p:last-child {
  margin-bottom: 0;
}
.font-serif {
  font-family: "breve", serif;
}
.category-badge {
  letter-spacing: 0.125rem;
  color: #0160ff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
}
.eyebrow-text {
  line-height: 1rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 15px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}
.text-lightgrey {
  color: #95b1c8;
}
.text-dark {
  color: #0e1318 !important;
}
.text-darkgrey {
  color: #0e1318;
}
.text-yellow {
  color: #ffbe00;
}
.text-blue {
  color: #0160ff;
}
.text-purple {
  color: #aa5ff2;
}
.text-disclaimer {
  font-size: 0.75rem;
}
.text-content-graphic {
  color: #5b7289;
  font-size: 1.5rem;
}
.text-as-grey {
  color: #5b7289;
}
.highlight-effect-blue {
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.highlight-effect-blue:after {
  width: 104% !important;
}
#main-content h2 {
  margin-bottom: 15px;
}
#main-content p {
  margin-bottom: 25px;
}
#main-content blockquote {
  color: #0160ff;
  font-size: 20px;
  line-height: 26px;
  padding: 25px 0 0 30px;
  border-top: 1px solid #eff3f5;
  border-bottom: 1px solid #eff3f5;
  margin: 30px 0;
  position: relative;
}
#main-content figure {
  width: 100% !important;
}
#main-content figure.aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#main-content figure.aligncenter figcaption {
  display: block;
  color: #5b7289;
  text-align: left;
}
#main-content blockquote:before {
  content: "“";
  display: block;
  font-family: Arial;
  font-size: 40px;
  font-weight: 900;
  position: absolute;
  top: 29px;
  left: 0;
}
#main-content ul {
  margin-left: 0;
}
#main-content .spaced-list ul li:not(:last-of-type) {
  margin-bottom: 12px;
}
.caption p:not(:last-child) {
  margin-bottom: 25px;
}
.careers-intro-content p {
  color: #5b7289;
}
.align-items-end {
  position: relative;
}
.align-items-end a.fb-anchor {
  display: flex;
  width: 100%;
  height: 100%;
  font: 0/0 a;
  color: transparent;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
}
.timeline-intro-content h2 {
  color: #fff;
}
#timeline-prev {
  border: 1px solid #0160ff;
  width: 40px;
  height: 40px;
  display: inline-block;
  background: url("/wp-content/uploads/2021/01/arrow-button-blue-afa3abd6-1.svg");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  cursor: pointer;
}
#timeline-next {
  border: 1px solid #0160ff;
  width: 40px;
  height: 40px;
  display: inline-block;
  background: url("/wp-content/uploads/2021/01/arrow-button-blue-afa3abd6-1.svg");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  cursor: pointer;
}
#timeline-holder::-webkit-scrollbar {
  display: none;
}
#timeline-holder {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.timeline-progress {
  background-color: #ffbe00;
  position: relative;
  height: 100%;
  left: 0%;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.auto-toc .img-icon {
  max-width: 50px;
}
.auto-toc ul {
  margin-left: 0;
}
.more-insight-content {
  min-height: 200px;
}
/* Flexible Content Blocks */
.highlight-row {
  background-color: #0e1318;
  color: #fff;
  transform: translate(-4rem);
  padding: 1rem;
}
.highlight-row-alt {
  background-color: #1f2a34;
  padding: 1rem;
}
.case-study-block p strong {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.case-study-block p strong:after {
  content: "";
  background-color: #0160ff;
  position: absolute;
  left: 0;
  top: 50%;
  left: -4px;
  right: -4px;
  bottom: -4px;
  z-index: -1;
  width: 0%;
  transition: all 500ms ease 200ms;
}
.case-study-tile img {
  max-width: 100px;
}
.case-study-tile p {
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.case-study-tile .big-bold-1 {
  font-size: 1rem;
  line-height: 1.375rem;
}
.two-column-card {
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  box-shadow: 0 4px 15px transparent;
}
.two-column-card:hover {
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}
.three-column-card p {
  color: #5b7289;
  line-height: 1.33rem;
}
.content-block .three-column-card p {
  color: #000210;
  font-size: 16px;
}
.image-offset-color-highlight {
  top: 47.4%;
  left: 0%;
}
.offset-caption p {
  margin-bottom: 0;
}
.caption ul {
  margin-left: 0;
}
.secondary-resource-block p:last-child {
  margin-bottom: 0;
  margin-top: 40px;
}
.secondary-resource-block p a {
  font-weight: 700;
  position: absolute;
  bottom: 0;
}
.two-column-card a, .three-column-card a, .resources-intro-text a, .secondary-resource-block a, .resources-full-size-content a, .arrow-link {
  font-weight: 700;
}
.resources-block-row.py-5 + .resources-block-row.py-5 {
  padding-top: 0 !important;
}
.two-column-card a:after, .three-column-card a:after, .resources-intro-text a:after, .secondary-resource-block a:after, .resources-full-size-content a:after, .arrow-link:after {
  content: "›";
  font-size: 2rem;
  font-weight: 400;
  vertical-align: -15%;
  margin-left: 1rem;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.secondary-resource-block a.no-icon:after {
  display: none;
  content: "";
  visibility: hidden;
}
.resources-secondary-content h3 {
  min-height: 105px;
}
.resources-secondary-content .cta {
  position: absolute;
  bottom: 0;
}
.two-column-card a:hover:after, .three-column-card a:hover:after, .caption a:hover:after, .resources-intro-text a:hover:after, .secondary-resource-block a:hover:after, .resources-full-size-content a:hover:after {
  margin-left: 1.5rem;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.no-spacing-block {
  margin-top: -24px;
}
.no-spacing-block + .py-5 {
  padding-top: 16px !important;
}
.text-white a {
  color: #fff;
}
.text-white a:hover {
  color: #fff;
  text-decoration: underline;
}
.quadrant h4 {
  color: #1f2a34;
}
.quadrant p {
  color: #5b7289;
}
.quadrant-text-white {
  color: #fff;
}
.quadrant-text-grey {
  color: #5b7289;
}
.quadrant-bg-darkgrey {
  background-color: #334252;
}
.quadrant-bg-lightgrey {
  background-color: #eff3f5;
}
.two-column-centered-bg-left-column p {
  color: #5b7289;
}
.webcast-description p {
  color: #5b7289;
}
.webcast-play-button {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 50%;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  cursor: pointer;
}
.webcast-play-button:hover {
  opacity: 70%;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
/* Links */
a {
  color: #0160ff;
}
a:hover {
  color: #0024ff;
}
a.anchor {
  display: block;
  position: relative;
  top: -160px;
  visibility: hidden;
}
a#top {
  display: block;
  position: relative;
  top: -180px;
  visibility: hidden;
}
a:hover {
  text-decoration: none !important;
}
a.arrow-link:after {
  content: "›";
  font-size: 2rem;
  font-weight: 400;
  vertical-align: -15%;
  margin-left: 1rem;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
a.arrow-link:hover:after {
  margin-left: 1.5rem;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.contact-content .arrow-link {
  color: #fff;
}
.contact-content .arrow-link:hover {
  color: #0160ff;
}
a.load-more-case-studies {
  font-weight: 700;
  color: #0160ff;
}
a.load-more-case-studies:hover {
  color: #0024ff;
}
a.load-more-case-studies:after {
  content: "›";
  margin-left: 10px;
  position: absolute;
  font-weight: 400;
  font-size: 1.75rem;
  transform: rotate(90deg);
}
.contact-link {
  color: #0e1318;
}
.contact-link:hover {
  text-decoration: underline !important;
  color: #0160ff;
}
.footer-menu-link {
  color: #0e1318;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.footer-menu-link:hover {
  color: #0160ff;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.auto-toc-wrapper a.btn {
  font-size: 14px !important;
  display: block !important;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.toc-text {
  font-size: 0.875 rem;
}
.offices a {
  color: #fff;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.offices a:hover {
  color: #ffbe00;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.filter-tag {
  cursor: pointer;
}
.auto-toc-wrapper {
  font-size: 0.875rem;
}
.g2-tile {
  cursor: pointer;
}
.g2-tile a {
  color: #0160ff !important;
}
.blog-link {
  color: #000;
}
.blog-link:hover {
  color: #0160ff;
}
/* Buttons & Filters */
.arrow-blue {
  padding-right: 20px;
  background: url(../images/arrow-blue.svg) no-repeat bottom 3px right;
  font-weight: bold;
  transition: all 0.1s ease-in;
}
.arrow-blue:hover {
  padding-right: 30px;
  color: #0160ff;
}
.arrow-white {
  padding-right: 20px;
  background: url(../images/arrow-blue-hover.svg) no-repeat bottom 3px right;
  font-weight: bold;
  transition: all 0.1s ease-in;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
}
.arrow-white:hover {
  padding-right: 30px;
  color: #fff;
}
.lb-trigger {
  color: #0160ff;
  cursor: pointer;
  white-space: nowrap;
}
.lb-trigger:hover {
  color: #0160ff;
}
.btn-as-blue {
  background-color: #0160ff !important;
  border-color: #0160ff !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
}
.btn-as-blue:hover {
  background-color: #0024ff !important;
  border-color: #0024ff !important;
}
.facetwp-facet {
  margin-bottom: 0 !important;
}
.facetwp-radio .facetwp-counter {
  display: none;
}
/* Hide counts in all Radio facets */
[data-type="radio"] .facetwp-counter {
  display: none;
}
/* Hide counts in a specific Radio facet */
.facetwp-facet-yourfacetname .facetwp-counter {
  display: none;
}
.facetwp-load-more {
  font-weight: 700 !important;
  border-radius: 50rem !important;
  transition: all 0.2s ease;
}
.facetwp-load-more, .btn {
  font-size: 15px;
  min-width: 125px;
  text-align: center;
  line-height: 24px;
  border-width: 2px;
  padding: 0.375rem 1.25rem;
}
.filter-button:before {
  content: "" !important;
  padding: 0 !important;
}
.filter-button:after {
  content: "" !important;
  padding: 0 !important;
}
.filter-button:hover:after {
  padding-left: 0 !important;
}
.facetwp-dropdown, .as-select {
  background: rgba(196, 209, 216, 0.15) url(../images/arrow-grey-small.svg) no-repeat;
  background-position: center right 16px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 50rem !important;
  border: 1px solid #c4d1d8 !important;
  color: #0e1318 !important;
  height: 42px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  font-size: 12px;
}
.facetwp-reset {
  font-size: 12px;
}
.blur-text-button a.btn-light {
  border: 2px solid #95b1c8 !important;
}
.list-unstyled .font-weight-bold {
  color: #0160ff;
}
/*.case-study-play-button {
    bottom:15px;
    left:15px;
    width:45px;
    height:45px;
    cursor:pointer;
    pointer-events:none;
  }*/
.case-study-play-button {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  cursor: pointer;
  pointer-events: none;
}
/* Footer */
.site-footer {
  background-color: #ffffff;
  color: #0e1318;
  font-size: 0.75rem;
  line-height: 20px;
  padding: 80px 0 0;
}
.site-footer .container {
  padding: 0 15px !important;
}
.site-footer ul > li {
  line-height: 20px;
}
.site-footer .btn {
  min-width: 175px;
  margin-bottom: 30px;
}
.site-footer .footer-bottom {
  background-color: #334252;
  color: #ffffff;
  padding: 20px 0;
}
.site-footer .footer-menu-title {
  color: #0e1318;
  margin-bottom: 0;
  font-weight: bold;
}
.site-footer .footer-menu li a {
  color: #0e1318;
}
.site-footer .footer-menu li a:hover {
  color: #0160ff;
}
.site-footer .app-icon {
  display: inline-block;
  font-size: 12px;
  line-height: 19px;
  color: #0e1318;
}
.site-footer .app-icon img {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.site-footer .footer-bottom li a {
  color: #ffffff;
  text-decoration: none;
}
.site-footer .footer-bottom p {
  margin-bottom: 0;
}
.site-footer .custom-logo-link {
  margin-bottom: 20px;
}
.site-footer .social-links a img {
  max-height: 24px;
}
.site-footer #menu-terms-and-privacy {
  margin-bottom: 0;
}
.site-footer #menu-terms-and-privacy li {
  display: inline-block;
  margin-left: 1rem;
}
.site-footer .col2 {
  text-align: center !important;
}
#scroll-to-top {
  width: 50px;
  height: 50px;
  background: #0160ff;
  color: #fff;
  cursor: pointer;
  display: none !important;
}
#scroll-to-top:hover {
  background: #0160ff;
}
/* Bootstrap Override */
.navbar-dark .navbar-toggler {
  border: none;
}
header#masthead {
  background: #fff;
}
header .main-menu {
  padding-top: 24px;
  padding-bottom: 24px;
}
a:focus-visible {
  outline: thin dotted;
}
header a:not(.custom-logo-link):focus-visible {
  outline: none;
  border: 2px solid;
}
header ul.navbar-nav > li:focus-visible, header a.custom-logo-link:focus-visible {
  outline: none;
}
header .cta-btn {
  display: none;
}
footer a:focus-visible {
  border: 2px solid #fff;
  border-radius: 3px;
  outline: none;
  padding: 3px;
  margin: -3px;
}
footer a.social-icon:focus-visible {
  padding: 7px 0 11px 8px;
  margin: 5px;
}
footer a.app-icon:focus-visible {
  padding: 20px 5px 23px 3px;
}
.facetwp-load-more, .btn-primary {
  background-color: #0160ff !important;
  border-color: #0160ff !important;
  color: #fff !important;
}
.facetwp-load-more:hover, .btn-primary:hover {
  background-color: #fff !important;
  color: #0160ff !important;
}
.btn-outline-primary {
  color: #0160ff;
  border-color: #0160ff;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0160ff;
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.text-primary {
  color: #0160ff;
}
/* Brand testimonial tabs on pricing page */
.brand-testimonial-tab {
  background-color: #fff;
  margin-bottom: 10px;
  min-height: 135px;
  min-width: 350px;
  display: flex;
}
.brand-testimonial-tab:hover {
  background-color: #eff3f5;
}
.brand-testimonial-tab.active {
  background-color: #334252 !important;
}
.brand-testimonial-panes a {
  color: #fff;
}
.brand-testimonial-panes .tab-pane {
  padding: 4rem;
}
@media (min-width: 768px) {
  .brand-testimonial-tab {
    transform: translate(-50%, 0);
  }
  .brand-testimonial-panes .tab-pane {
    padding: 6rem 14rem 6rem 4rem;
  }
}
/* Product Tabs */
.product-tabs .nav-link {
  color: #000000;
  font-weight: 700;
}
.product-tabs .nav-link:hover {
  text-decoration: underline !important;
}
.product-tabs .nav-link.active {
  border-radius: 24px;
}
/* Blue background section */
.blue-background-section a.btn-light {
  color: #3880ff;
}
/* Sassy Social Share */
.share {
  margin-top: 26px;
}
.share .at-style-responsive .at-share-btn {
  margin: 0 10px 0 0 !important;
}
.share .at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 30px !important;
  height: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share .at-resp-share-element .at-icon {
  width: 24px !important;
  height: 24px !important;
}
.share strong {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.heateor_sss_sharing_title {
  font-size: 1.5rem;
  line-height: 1.8125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.heateorSssSharingRound i {
  margin-right: 10px;
}
#cta-section .heateor_sss_sharing_container {
  display: none;
}
/* Gravity Forms */
.gform_button {
  border: 0 !important;
  border-radius: 50rem !important;
  background-color: #0160ff !important;
  color: #fff !important;
  padding: 15px 35px !important;
}
.gform_body {
  width: 100% !important;
}
#input_1_1 {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
}
#gform_submit_button_1 {
  margin-left: auto;
  display: block;
}
#input_3_1 {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
}
.caption.ul-as-columns ul {
  margin: 0 -12px 1.5em 12px !important;
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}
.caption.ul-as-columns ul li {
  flex-basis: calc(50% - 8px);
  max-width: calc(50% - 8px);
  margin: 0 4px 2px 4px;
}
/* Slick Slider */
.slick-arrow {
  z-index: 999;
}
.slide-text.no-icon:before {
  display: none;
  content: "";
}
/* Marketo Styles */
.mktoForm * {
  font-family: "cera-pro", sans-serif !important;
}
.mktoForm {
  color: #0e1318 !important;
  width: 100% !important;
  margin: 0 !important;
}
.mktoAsterix {
  color: #0e1318 !important;
}
#contact-greeting, #contactGreeting {
  display: none;
}
.mktoLabel {
  width: 100% !important;
  margin-bottom: 7px !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}
#blog-search, .mktoFieldWrap textarea, .mktoFieldWrap input {
  background: transparent !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 50rem !important;
  border: 1px solid #c4d1d8 !important;
  color: #0e1318 !important;
  height: 42px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.mktoFieldWrap textarea {
  height: 144px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  border-radius: 21px !important;
}
.mktoFieldWrap select {
  background: url("../images/select-arrow-grey.svg") no-repeat;
  background-position: 94% 51% !important;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 50rem !important;
  border: 1px solid #c4d1d8 !important;
  color: #0e1318 !important;
  height: 42px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.mktoFieldWrap, .mktoFormCol, .mktoField, .mktoHtmlText, .mktoButtonRow {
  width: 100% !important;
}
.mktoField:focus {
  outline: 0 !important;
}
.mktoButtonWrap {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.posts-listing-columns .px-2.py-4 {
  padding-top: 0 !important;
}
.btn-outline-primary.rounded-pill, .btn.rounded-pill {
  font-weight: 700;
}
.btn-outline-light:hover {
  color: #0160ff;
}
.font-weight-bold .icon {
  font-size: 18px;
  color: #0160ff;
  display: inline-block;
  margin-left: 8px;
}
.mktoButton {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 50rem !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  font-weight: bold !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: #0160ff !important;
  color: #fff !important;
  border: 0 !important;
  padding: 0.375rem 1.25rem !important;
  height: 40px !important;
  font-size: 16px !important;
  min-width: 125px;
}
#formpara p:first-child {
  padding-top: 0 !important;
  font-size: 14px;
  line-height: 20px;
}
.modal-body .mktoButton {
  font-size: 16px !important;
  margin: 25px auto !important;
  border-width: 2px !important;
  border-style: solid !important;
}
#watchModal #watchModalStep2 {
  background-color: #1b242d;
  color: #fff;
}
select#Type__c {
  font-size: 14px;
}
#mktoForm_1254 a {
  padding: 0;
}
#mktoForm_1254 a:hover {
  text-decoration: underline !important;
}
#mktoForm_1013 .mktoButton, #mktoForm_1254 .mktoButton {
  background-color: #0160ff !important;
  color: #fff !important;
  border-color: #0160ff !important;
  margin-left: 0 !important;
  font-size: 16px;
}
#mktoForm_1013 .mktoButton:hover, .modal-body .mktoButton:hover, #mktoForm_1254 button:hover {
  background: #fff !important;
  color: #0160ff !important;
  border-color: #0160ff !important;
}
#mktoForm_1013 #formpara p a {
  padding: 0 !important;
}
/* Data Tables */
#transaction-table_filter {
  display: none;
}
#transaction-table_info {
  display: none;
}
th.sorting:last-child:before, th.sorting:last-child::after {
  display: none !important;
}
th.sorting:last-child {
  display: none;
}
tbody#transaction-rows tr td:last-child {
  display: none;
}
/* FAQ arrows */
.rotated {
  transform: rotate(180deg);
}
/*Video Lightbox*/
.lb-trigger .x {
  display: none;
  font-size: 1.8rem;
  font-weight: 400;
}
.lb-trigger.active .x {
  display: block;
  position: fixed;
  z-index: 2100;
  color: #fff;
}
.lb-trigger.active .x img, .lb-trigger.active .x svg {
  width: 35px !important;
  height: 35px !important;
  fill: #fff;
}
.lb-trigger:after {
  content: "";
}
.lb-bg-overlay {
  opacity: 0;
  display: none;
  z-index: -100;
  position: absolute;
}
.lb-bg-overlay iframe {
  opacity: 0;
  display: none;
  z-index: -100;
  position: absolute;
}
.lb-bg-overlay.show {
  display: block;
  opacity: 1;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2000;
  background: #334252;
  overflow: auto;
  text-align: center;
}
.lb-bg-overlay.show iframe {
  opacity: 1;
  display: block;
  z-index: 1;
  position: static;
  margin: 0 auto;
}
.lb-holder {
  text-align: center;
  top: 40vh;
  position: relative;
  background: #f6f8f9;
  border-radius: 8px;
  position: relative;
  margin: 0 auto;
}
.lb-holder p:last-of-type {
  margin-bottom: 0;
}
.lb-holder .mktoForm {
  max-width: 450px;
}
@media (min-width: 771px) {
  .lb-holder {
    display: inline-block;
    padding: 30px;
  }
}
.lb-holder .epyt-facade {
  margin: 0 auto;
  padding-bottom: 0;
}
.lb-holder #formpara p {
  margin: 0;
}
/*Phones*/
@media (max-width: 770px) {
  .no-p {
    display: none;
  }
  .phone-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .half {
    flex-basis: 100%;
  }
  .lb-trigger.active .x {
    top: 30vh;
    right: 0;
    left: 0;
    max-width: 100%;
    margin: 0 auto;
    text-align: right;
    width: 418px;
  }
  .lb-trigger.active .x img, .lb-trigger.active .x svg {
    right: 0;
    margin: 0 !important;
    cursor: pointer;
  }
  .lb-holder iframe {
    max-height: 235px;
    width: 418px;
  }
  .lb-holder .epyt-facade {
    max-height: 200px;
    padding-bottom: 56.25%;
    max-width: 418px;
  }
  iframe:not(#q-messenger-frame) {
    max-height: 200px;
  }
}
/*No Phones*/
@media (min-width: 771px) {
  .p-only {
    display: none;
  }
  .half {
    flex-basis: 50%;
  }
  .lb-trigger.active .x {
    top: 18vh;
    right: 0;
    left: 0;
    min-width: 55vw;
    margin: 0 auto;
    text-align: right;
    width: 640px;
    cursor: default;
  }
  .lb-trigger.active .x img, .lb-trigger.active .x svg {
    right: -30px;
    margin: 0 !important;
    cursor: pointer;
  }
  .lb-holder {
    top: 25vh;
  }
  .lb-holder iframe {
    min-width: 55vw;
    min-height: 60vh;
  }
  .lb-holder .epyt-facade {
    min-width: 55vw;
    min-height: 60vh;
    max-width: 55vw;
  }
  .lb-bg-overlay.show {
    background: #334252e6;
  }
}
/* Media Queries */
@media (min-width: 768px) {
  .logo-grid img {
    max-width: 120px;
  }
  #mobile-logo-container {
    display: none;
  }
}
@media (min-width: 992px) {
  /* Grid */
  /* Flexible Content Blocks */
  .col-20-lg {
    width: 20%;
  }
  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #primary-navbar ul.navbar-nav > li {
    margin: 0 15px;
  }
  #primary-navbar .btn.btn-primary {
    margin-left: auto;
  }
  #primary-navbar ul.navbar-nav > li > a {
    font-size: 15px;
    color: #0e1318;
    padding: 0%;
  }
  li:hover ul.sub-menu {
    display: block;
  }
  ul.sub-menu {
    margin: 0 !important;
    border-radius: 2px;
    left: -25px;
    padding: 15px 25px 25px;
    list-style: none;
    background: #fff;
    position: absolute;
    text-align: left;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
  }
  ul#menu-main-navigation .sub-menu > li {
    margin-bottom: 20px;
  }
  ul#menu-main-navigation .sub-menu > li:last-child {
    margin-bottom: 0;
  }
  ul#menu-main-navigation .sub-menu > li > a.nav-link {
    color: #334252;
    border-bottom: solid 2px #fff;
    padding: 0;
    display: inline !important;
    font-size: 0.875rem;
  }
  ul#menu-main-navigation .sub-menu > li > a.nav-link:hover {
    border-bottom: solid 2px #0024ff;
  }
  .image-offset-color-highlight {
    top: 47%;
    left: 15%;
  }
}
@media (min-width: 1040px) and (max-width: 1400px) {
  .hero-video {
    max-width: 84%;
  }
}
/*phones alt*/
@media (max-width: 634px) {
  /* Career Filter */
  select#openings-department-filter, select#openings-location-filter {
    margin-bottom: 25px;
  }
}
/*phones*/
@media (max-width: 549px) {
  /* Sticky Bar */
  .adj-margin {
    margin-top: 120px;
  }
}
/*ipads*/
@media (min-width: 550px) and (max-width: 991px) {
  /* Sticky Bar */
  .adj-margin {
    margin-top: 60px;
  }
}
/*small devices  - menu break */
@media (max-width: 991px) {
  a:focus {
    outline: thin dotted;
  }
  header a:not(.custom-logo-link):focus {
    outline: none;
    border: 2px solid;
  }
  header ul.navbar-nav > li:focus, header a.custom-logo-link:focus {
    outline: none;
  }
  header .sub-menu a.nav-link:focus, header .sub-menu a.nav-link:hover {
    border: none;
    text-decoration: underline !important;
  }
  ul#menu-main-navigation > li > a:focus {
    border: none !important;
  }
  footer a:focus {
    border: 2px solid #fff;
    border-radius: 3px;
    outline: none;
    padding: 3px;
    margin: -3px;
  }
  footer a.social-icon:focus {
    padding: 7px 0 11px 8px;
    margin: 5px;
  }
  footer a.app-icon:focus {
    padding: 20px 5px 23px 3px;
  }
  header ul.navbar-nav > li:focus:before {
    content: " ";
    border: 2px solid #fff;
    width: 60px;
    border-radius: 3px;
    position: absolute;
    right: 5px;
    top: 10px;
    height: 40px;
    left: unset;
  }
  .sub-menu > li {
    margin: 0 50px;
    padding: 0 10px;
  }
  .sub-menu > li > a {
    border-radius: 3px;
  }
}
/*iPad pro and desktop - menu break */
@media (min-width: 992px) {
  /* Sticky Bar */
  header ul.navbar-nav > li:focus-visible:before, header a.custom-logo-link:focus-visible:before {
    content: " ";
    border: 2px solid #fff;
    width: calc(100% - 50px);
    border-radius: 3px;
    position: absolute;
    bottom: 10px;
    right: 30px;
    top: 10px;
  }
  ul.sub-menu {
    min-width: 150px;
  }
  li#menu-item-2671 ul.sub-menu {
    min-width: 220px;
  }
  li#menu-item-2673 ul.sub-menu {
    min-width: 200px;
  }
  header ul.navbar-nav > li:first-child:focus-visible:before {
    width: calc(100% - 80px);
  }
  header ul.sub-menu a:focus-visible {
    border: 2px solid #0024ff !important;
    padding: 2px !important;
    margin: -2px;
    border-radius: 3px;
  }
  th.sorting:last-child {
    display: table-cell;
  }
  tbody#transaction-rows tr td:last-child {
    display: table-cell;
  }
  footer .col1 {
    flex-basis: 12%;
  }
  footer .col2 {
    flex-basis: 8%;
  }
  footer .col-lg {
    padding: 0 10px;
  }
  .adj-margin {
    margin-top: 36px;
  }
}
@media (max-width: 980px) {
  .highlight-row {
    transform: translate(0);
  }
  .col-lg.offset-caption {
    max-width: 100% !important;
  }
  .toc-text {
    font-size: 0.8rem;
  }
}
@media (min-width: 580px) {
  .hide-on-desktop, .phones-only {
    display: none;
  }
}
@media (max-width: 579px) {
  .no-phones {
    display: none;
  }
}
@media (max-width: 680px) {
  .p-0.no-fh-mobile {
    height: auto !important;
    padding: 0 0 32px 0 !important;
  }
  .container.pt-5, .container.py-5 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .container.mt-5, .container.my-5 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .no-l-m {
    left: 0 !important;
  }
  .py-5.no-m-m {
    padding-bottom: 1rem !important;
  }
  .py-5.no-m-m .row.my-5:last-of-type {
    margin-bottom: 16px !important;
  }
  .py-5.m-no-t {
    padding-top: 0 !important;
  }
}
@media (max-width: 770px) {
  .hide-on-mobile {
    display: none;
    pointer-events: none;
  }
}
@media (max-width: 540px) {
  .core-values-list .col-6 {
    flex: auto;
    max-width: 100%;
  }
  .home .hero-content p br {
    display: none;
  }
  .btn.fw-on-mobile {
    display: block;
    flex: 0 0 100%;
    margin: 0 0 16px 0;
  }
  .row.contact-section .col-4 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact-specific-rows .col-md-4:not(:last-of-type) {
    padding-bottom: 16px;
  }
  .py-5.m-no-t {
    margin-top: -24px;
  }
  .bp-mobile {
    padding: 24px 0;
  }
  .no-fh-mobile .mt-n5, .no-fh-mobile .my-n5 {
    margin-top: 0 !important;
  }
  .site-footer .py-5 {
    padding-top: 0 !important;
  }
}
/*Large desktop*/
@media only screen and (min-width: 1920px) {
  ul.sub-menu {
    min-width: 190px;
  }
  #primary-navbar ul.navbar-nav > li:first-child ul.sub-menu {
    margin-left: 0px !important;
  }
}
/* Alison's additions ----------------------------------------------------------------------- */
/*General Structure*/
.wrapper {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.flex-wrap {
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}
.flex-row-stretch img, .flex-row-center img {
  max-width: 100%;
  height: auto;
}
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-row-stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-row-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.ten {
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.fifteen {
  -ms-flex-preferred-size: 15%;
  flex-basis: 15%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.twenty {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.twenty-five {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.thirty {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.thirty-three {
  -ms-flex-preferred-size: 33.33%;
  flex-basis: 33.33%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.fourty {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.fifty {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.sixty {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.sixty-six {
  -ms-flex-preferred-size: 66.66%;
  flex-basis: 66.66%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.seventy {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.seventy-five {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.eighty {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.ninety {
  -ms-flex-preferred-size: 90%;
  flex-basis: 90%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.full {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
/* END General */
/* Screen Readers Only  ------------ */
.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
/* END Screen Readers Only */
/* FAQs */
.question {
  cursor: pointer;
}
.white-bg .question {
  background-color: #f3f3f3;
}
.grey-bg .question {
  background-color: #fff;
}
.question.active .arrow > img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.question:focus {
  outline: 0 !important;
}
.question:focus-visible {
  outline: thin dotted !important;
}
.answer {
  display: none;
}
.answer.show {
  display: block;
}
/*
  .question.active, .question:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  */
/* END FAQs */
/* Phones  ----------------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
  /* General and Structure  ------------ */
  /* END General */
  .no-phones, .no-sm-mobile {
    display: none;
  }
  .phones-center, .sm-mobile-center, .mobile-center {
    text-align: center;
  }
  .wrapper, .lg-wrapper, .fw-wrapper, .thin-wrapper, .narrow, .xtra-narrow {
    padding: 5%;
  }
  .phone-wrap, .flex-wrap, .sm-mobile-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .phone-wrap > .fifty, .phone-wrap > .full, .phone-wrap > .twenty, .phone-wrap > .thirty, .phone-wrap > .thirty-three, .phone-wrap > .fourty, .phone-wrap > .sixty, .phone-wrap > .sixty-six, .phone-wrap > .twenty-five, .phone-wrap > .ten, .phone-wrap > .seventy, .phone-wrap > .seventy-five, .phone-wrap > .eighty, .phone-wrap > .ninety, .flex-wrap > .fifty, .flex-wrap > .full, .flex-wrap > .twenty, .flex-wrap > .thirty, .flex-wrap > .thirty-three, .flex-wrap > .fourty, .flex-wrap > .sixty, .flex-wrap > .sixty-six, .flex-wrap > .twenty-five, .flex-wrap > .ten, .flex-wrap > .seventy, .flex-wrap > .seventy-five, .flex-wrap > .eighty, .flex-wrap > .ninety, .sm-mobile-wrap > .fifty, .sm-mobile-wrap > .full, .sm-mobile-wrap > .twenty, .sm-mobile-wrap > .thirty, .sm-mobile-wrap > .thirty-three, .sm-mobile-wrap > .fourty, .sm-mobile-wrap > .sixty, .sm-mobile-wrap > .sixty-six, .sm-mobile-wrap > .twenty-five, .sm-mobile-wrap > .ten, .sm-mobile-wrap > .seventy, .sm-mobile-wrap > .seventy-five, .sm-mobile-wrap > .eighty, .sm-mobile-wrap > .ninety {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
/* iPad  ----------------------------------------------------------------------- */
@media only screen and (min-width: 601px) and (max-width: 800px) {
  /* General ------------ */
  /* END General */
  .no-sm-mobile {
    display: none;
  }
  .sm-mobile-center {
    text-align: center;
  }
  .sm-mobile-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sm-mobile-wrap > .fifty, .sm-mobile-wrap > .full, .sm-mobile-wrap > .twenty, .sm-mobile-wrap > .thirty, .sm-mobile-wrap > .thirty-three > .fourty, .sm-mobile-wrap > .sixty, .sm-mobile-wrap > .sixty-six, .sm-mobile-wrap > .twenty-five, .sm-mobile-wrap > .ten, .sm-mobile-wrap > .seventy, .sm-mobile-wrap > .seventy-five, .sm-mobile-wrap > .eighty > .ninety {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .sm-mobile-wrap .right-pad {
    padding: 0 0 50px 0 !important;
  }
}
/* IPAD PRO  ----------------------------------------------------------------------- */
@media only screen and (min-width: 801px) and (max-width: 1149px) {
  /* General  ------------ */
  /* END General */
  .sm-mobile-only {
    display: none;
  }
}
/* IPAD & IPAD PRO & DESKTOP  ----------------------------------------------------------------------- */
@media only screen and (min-width: 601px) {
  /* General  ------------ */
  /* END General */
  .phones-only {
    display: none;
  }
  .wrapper {
    padding: 0 5%;
  }
}
/* DESKTOP  ----------------------------------------------------------------------- */
@media only screen and (min-width: 1150px) {
  /* General  ------------ */
  /* END General */
  .mobile-only, .sm-mobile-only {
    display: none;
  }
  .wrapper {
    max-width: 1300px;
  }
  .narrow {
    max-width: 800px;
  }
  .xtra-narrow {
    max-width: 500px;
  }
  .no-desktop {
    display: none;
  }
}
/* Dan Additions  ----------------------------------------------------------------------- */
#mktoForm_1254 {
  font-size: 1rem !important;
}
.mktoForm .mktoOffset {
  height: 10px !important;
}
#mktoForm_1254 .mktoButton:hover {
  background: #fff !important;
  color: #0160ff !important;
}
#mktoForm_1254 select {
  font-size: 0.875rem !important;
}
#mktoForm_1254 textarea {
  min-height: 90px;
}
#mktoForm_1254 a:hover {
  text-decoration: underline !important;
}
#getintouchanchor {
  position: relative;
  top: -200px;
  display: block;
  visibility: hidden;
}
.keypoints-media-block, .quad-media-block {
  padding: 80px 15px 30px;
  line-height: 22px;
  position: relative;
}
.keypoints-media-block .container, .quad-media-block .container {
  position: relative;
  z-index: 2;
}
.keypoints-media-block h4, .vertical-tabs-block h4, .quad-media-block h4 {
  font-family: "cera-pro", sans-serif !important;
  font-size: 18px !important;
  line-height: 22px !important;
  text-transform: uppercase;
}
.quad-media-block .list-unstyled {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.quad-media-block .list-unstyled li {
  width: 48%;
  margin-bottom: 50px;
  line-height: 22px;
}
.quad-media-block .list-unstyled li .col {
  padding-left: 5px;
}
.keypoints-media-block .list-unstyled li .col-auto, .quad-media-block .list-unstyled li .col-auto {
  padding-left: 15px !important;
}
.quad-media-block .list-unstyled li img {
  min-width: 32px;
}
.keypoints-media-block .position-relative, .quad-media-block .position-relative {
  max-width: 586px;
  margin-right: -25px;
}
.quad-media-block .col-lg:not(.order-last) .position-relative {
  margin-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .quad-media-block .col-lg:not(.order-last) .position-relative {
    margin-right: 0;
    margin-left: -25px;
    margin-bottom: 30px;
  }
}
.patern {
  position: absolute;
  z-index: 1;
  max-width: 100%;
  padding: 10px;
}
.patern.bottom-right {
  bottom: 0;
  right: 0;
}
.patern.bottom-left {
  bottom: 0;
  left: 0;
  transform: scaleX(-1);
}
.patern.top-right {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}
.patern.top-left {
  top: 0;
  left: 0;
}
.patern.gray svg path {
  fill: #c2c7cc;
}
.patern.blue svg path {
  fill: #b1d7ff;
}
.vertical-tabs-block {
  padding: 80px 15px 60px;
  line-height: 22px;
  position: relative;
}
.vertical-tabs-block .container {
  position: relative;
  z-index: 2;
}
.vertical-tabs-block .heading {
  text-align: center;
  margin: 0 auto;
}
.tabs-content {
  position: relative;
  padding-top: 10px;
}
.tabs-content img {
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  max-width: 586px;
  transform: translate(0, -50%);
  -webkit-ransform: translate(0, -50%);
  -ms-ransform: translate(0, -50%);
}
.tabs-content .tab-inner {
  padding: 33px 10px 30px 33px;
  border-radius: 5px;
  max-width: 432px;
  width: 40%;
  color: #0e1318;
}
.tabs-content .tab-inner .arrow-blue {
  color: #0160ff;
  margin-top: 15px;
  display: inline-block;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  .tabs-content .tab-inner .arrow-blue {
    opacity: 1;
  }
}
.tabs-content .tab-inner.hover {
  background: #ffffff;
  box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.05395);
}
.tabs-content .tab-inner.hover .arrow-blue {
  opacity: 1;
}
.tabs-content .tab-inner.hover + img {
  opacity: 1;
  visibility: visible;
}
.multi-columns-block {
  padding: 80px 15px;
  line-height: 22px;
  position: relative;
}
.multi-columns-block .heading {
  max-width: 646px;
}
.multi-columns-block .heading.text-center {
  max-width: 100%;
  margin-bottom: 70px;
}
.multi-columns-block .heading.text-center h2 {
  margin-bottom: 10px !important;
}
.multi-columns-block .columns {
  margin: 0 -45px;
}
.multi-columns-block .columns p {
  margin-bottom: 30px;
}
.multi-columns-block .columns .col-md-6 {
  padding: 0 45px;
}
.multi-columns-block .columns .text-h {
  padding-bottom: 22px;
  position: relative;
}
.multi-columns-block .columns .text-h .arrow-blue {
  position: absolute;
  left: 0;
  bottom: 0;
}
.multi-columns-block .columns .text-h p:last-child {
  margin-bottom: 0;
}
.multi-columns-block .add-links {
  margin-top: 25px;
}
.multi-columns-block .link-full {
  display: block;
  border-bottom: 1px solid rgba(196, 209, 216, 0.5);
  font-weight: 700;
  color: #0160ff;
  padding: 9px 0;
  background-position: right 34px center;
}
.multi-columns-block .link-full:last-child {
  border-bottom: 0;
}
.multi-columns-block .link-full:hover {
  color: #fff;
  padding-left: 15px;
  background: #0160ff url(../images/arrow-blue-hover.svg) no-repeat right 19px center;
}
.case-study-carousel {
  padding: 80px 15px 120px;
  line-height: 22px;
  position: relative;
  overflow: hidden;
}
.case-study-carousel .heading {
  max-width: 637px;
}
.case-study-carousel .heading h3 {
  font-size: 26px !important;
  line-height: 32px !important;
  margin-bottom: 40px !important;
}
.case-study-carousel strong {
  display: block;
  text-transform: uppercase;
}
.case-study-carousel .slider-case {
  max-width: 960px;
  margin: 0 auto;
  padding-left: 40px;
}
.case-study-carousel .slider-case .slick-list {
  overflow: visible;
}
.case-study-carousel .case-slide {
  background: #ffffff;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 32px;
}
.case-study-carousel .case-slide .img-h {
  width: 250px;
}
.case-study-carousel .case-slide .img-h .attachment-slide-crop-mobile {
  display: none;
}
.case-study-carousel .case-slide .text-h {
  width: calc(100% - 250px);
  padding: 20px 40px;
  color: #0e1318;
}
.case-study-carousel .case-slide .text-h img {
  max-width: 120px;
  width: auto;
  margin-bottom: 15px;
  max-height: 30px;
}
.case-study-carousel .slick-dots {
  bottom: -45px;
  height: 3px;
  line-height: 3px;
  left: 0;
}
.slick-dots {
  bottom: -15px;
  height: 3px;
  line-height: 3px;
}
.slick-dots li {
  margin: 0 8px;
  line-height: 3px;
}
.slick-dots li, .slick-dots li button {
  width: 45px;
  background: #c4d1d8;
  height: 6px;
  padding: 0;
  line-height: 6px;
}
.slick-arrow:before, .slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active button {
  background: #0160ff;
}
.slick-arrow {
  background: url(../images/slider-arrow.svg) no-repeat center !important;
  background-size: 100% !important;
  width: 39px !important;
  height: 39px !important;
  top: 50% !important;
}
.slick-arrow:hover {
  background-color: transparent !important;
}
.case-study-carousel .slick-arrow.slick-next {
  left: 0 !important;
}
.slick-arrow.slick-prev {
  transform: scaleX(-1) translate(0, -50%);
  -webkit-transform: scaleX(-1) translate(0, -50%);
  -ms-transform: scaleX(-1) translate(0, -50%);
}
.case-study-carousel .slick-arrow.slick-prev {
  left: auto !important;
  right: -40px !important;
}
.slick-arrow.slick-disabled {
  display: none !important;
}
.cta-block {
  padding: 80px 15px;
  position: relative;
  text-align: center;
  font-weight: 300;
  overflow: hidden;
}
.cta-block .container {
  position: relative;
  z-index: 2;
}
.cta-block .patern {
  bottom: 0;
  left: 0;
  opacity: 0.1;
}
.cta-block p {
  margin-bottom: 37px;
}
.cta-block .arrow-white {
  margin-left: 30px;
  padding-right: 30px;
  background-position: right 10px bottom 3px;
}
.cta-block .arrow-white:hover {
  background-position: right bottom 3px;
}
.cta-block.text-light .intro-text a {
  color: #fff;
  text-decoration: underline !important;
}
.cta-block.text-light .intro-text a:hover {
  text-decoration: none !important;
}
.full-width-text {
  padding: 100px 15px;
  position: relative;
}
.full-width-text.as-bg-white {
  padding: 80px 15px;
}
.full-width-text.search-top-section {
  padding: 60px 15px 0;
}
.full-width-text .container {
  position: relative;
  z-index: 2;
}
.full-width-text p:not(:last-child) {
  margin-bottom: 25px;
}
body:not(.home) .page-inner-hero {
  padding: 30px 15px;
  min-height: 480px;
}
.page-inner-hero.as-bg-darkgrey {
  color: #fff;
}
.page-template-tpl-pricing .page-inner-hero .container {
  z-index: 999 !important;
  position: relative;
}
body:not(.home):not(.popup-open) .pos-image-left .container {
  position: relative;
  z-index: 2;
}
body:not(.home) .page-inner-hero.as-bg-white {
  margin-bottom: 20px;
}
.features-block {
  padding-top: 65px;
}
.features-block .heading {
  text-align: center;
  margin-bottom: 40px;
}
.features-block .col-inner {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid #29366e;
  max-width: 450px;
  padding-bottom: 72px;
  height: 100%;
  padding-top: 3px;
}
.features-block .col-inner:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 28px;
  background: url(../images/cross-grey.svg) no-repeat center top 5px;
  top: 0px;
  left: -8px;
}
.features-block .col-inner .arrow-blue {
  position: absolute;
  bottom: 50px;
  color: #3180f6;
}
.features-block.as-bg-white .col-inner:before {
  background-color: #fff;
}
.features-block.as-bg-darkgrey .col-inner {
  border-left: 1px solid #525e6b;
}
.features-block.as-bg-darkgrey .col-inner:before {
  background: #334252 url(../images/cross-lightgrey.svg) no-repeat center top 5px;
}
.features-block.as-bg-darkgrey .col-inner .arrow-blue {
  color: #f6bf42;
  background-image: url(../images/arrow-orange.svg);
}
.features-block.as-bg-darkblue .col-inner:before {
  background-color: #001765;
}
.reviews-block {
  padding: 85px 15px 95px;
}
.reviews-block .image-center {
  text-align: center;
}
.reviews-block .offset-caption {
  padding: 15px 15px 10px 32px;
  border-left: 1px solid rgba(196, 209, 216, 0.5);
}
.reviews-block h3 {
  font-size: 22px !important;
  margin-bottom: 0;
}
.reviews-block p:not(:last-child) {
  margin-bottom: 40px;
}
.reviews-block .stars {
  width: 73px;
  display: block;
  margin-bottom: 10px;
}
.reviews-block .stars span {
  background: url(../images/stars.svg) no-repeat center left;
  display: block;
  height: 13px;
}
.images-with-captions {
  position: relative;
  overflow: hidden;
}
.images-with-captions .container {
  position: relative;
  z-index: 2;
}
.images-with-captions .img-fluid {
  opacity: 0;
  transition: all 0.5s ease;
}
.images-with-captions .fade-up {
  transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
}
.images-with-captions .fade-left {
  transform: translate(-100px, 0);
  -webkit-transform: translate(-100px, 0);
  -ms-transform: translate(-100px, 0);
}
.images-with-captions .fade-right {
  transform: translate(100px, 0);
  -webkit-transform: translate(100px, 0);
  -ms-transform: translate(100px, 0);
}
.images-with-captions .animated {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.columns-wicons-block {
  position: relative;
  padding: 63px 0 0;
  text-align: center;
}
.columns-wicons-block img {
  margin-bottom: 10px;
  max-height: 45px;
  width: auto;
}
.columns-wicons-block .col {
  padding-top: 10px;
  padding-bottom: 60px;
}
.columns-wicons-block .col:not(:first-child) {
  border-left: 1px solid rgba(196, 209, 216, 0.2);
}
.resources-block-row {
  padding: 80px 15px 40px;
}
.resources-block-row .col-md-3 {
  margin-bottom: 40px;
}
.resources-block-row .d-md-block {
  display: none;
}
.resources-block-row .img-h img {
  width: 100%;
}
.resources-block-row .resource-post .img-h:not(.Webinar) {
  background: #cce5ff;
  padding-bottom: 60%;
  position: relative;
}
.resources-block-row .resource-post .img-h:not(.Webinar) img {
  width: auto;
  height: 95%;
  margin: 0 auto;
  max-width: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.resource-preview {
  border-bottom: 1px solid #c4d1d8;
  height: 100%;
  display: block;
  transition: all 0.2s ease-in;
}
.resource-preview:hover {
  background: #0160ff;
}
.resource-preview .text-h {
  padding: 18px 11px 25px;
}
.resource-preview h3 {
  font-size: 18px !important;
  line-height: 24px !important;
  color: #0e1318;
  transition: all 0.2s ease-in;
}
.resource-preview:hover h3 {
  color: #fff;
}
.tile-link .type, .resource-preview .type {
  background: #001765;
  border-radius: 3px;
  font-weight: 900;
  font-size: 11px;
  line-height: 11px;
  text-align: center;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 7px 15px;
  display: inline-block;
  margin-bottom: 14px;
}
.column-cards-blocks {
  position: relative;
  padding: 80px 15px 53px;
}
.column-cards-blocks .heading {
  margin-bottom: 40px;
}
.column-cards-blocks .container {
  position: relative;
  z-index: 2;
}
.column-cards-blocks .col {
  margin-bottom: 37px;
}
.column-cards-blocks .card-inner {
  padding: 24px 32px 24px 28px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.column-cards-blocks .card-inner:not(.with-bg) {
  background: #fff;
}
.column-cards-blocks .card-inner .img-h {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #001765;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.column-cards-blocks .card-inner .img-h img {
  max-width: 65%;
  max-height: 65%;
}
.column-cards-blocks .card-inner .img-h + .text-h {
  width: calc(100% - 50px);
  padding-left: 16px;
}
.column-cards-blocks .card-inner .img-h + .text-h .arrow-blue {
  left: 16px;
}
.column-cards-blocks .card-inner .text-h {
  width: 100%;
  padding: 13px 0 40px 0;
  position: relative;
}
.column-cards-blocks .card-inner .text-h h3 {
  font-size: 22px !important;
  line-height: 26px !important;
  margin-bottom: 18px;
}
.column-cards-blocks .card-inner .text-h .arrow-blue {
  position: absolute;
  left: 0;
  bottom: 5px;
}
.column-cards-blocks .card-inner.no-pd .text-h {
  padding-bottom: 0;
}
.keypoints-media-block {
  overflow: hidden;
}
.keypoints-media-block .heading {
  margin-bottom: 37px;
  text-align: center;
}
.keypoints-media-block .list-unstyled li {
  padding: 40px 0;
  position: relative;
}
.keypoints-media-block .list-unstyled li:first-child {
  padding-top: 25px;
}
.keypoints-media-block .list-unstyled li:not(:last-child):after {
  position: absolute;
  content: "";
  width: 9999px;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #41505f;
}
.keypoints-media-block .list-unstyled li .col-auto {
  width: 50px;
  text-align: center;
}
.keypoints-media-block .order-last + .offset-caption .list-unstyled li:not(:last-child):after {
  right: 0;
  left: auto;
}
.page-template-tpl-pricing h2 {
  font-size: 32px !important;
  line-height: 36px !important;
}
.page-template-tpl-pricing .case-study-block h2 {
  margin: 0 -20px;
}
.accordion-section {
  padding: 80px 15px;
}
.accordion-section h2 {
  margin-bottom: 32px !important;
}
.accordion-section h2 {
  margin-bottom: 32px !important;
}
.accordion-item:last-child {
  border-bottom: 1px solid #c4d1d7;
}
.accordion-item .faq-header {
  font-size: 18px;
  font-weight: bold;
  padding: 18px 0;
  border-top: 1px solid #c4d1d7;
}
.accordion-item .faq-header:not(.collapsed) {
  border-top: 3px solid #0160ff;
  margin-top: -1px;
}
.accordion-item .faq-header:not(.collapsed) img {
  transform: rotate(180deg);
}
.accordion-item p:last-child, .accordion-item ul:last-child {
  margin-bottom: 0;
}
.accordion-item .collapse {
  padding-bottom: 18px;
}
.accordion-item .d-flex {
  padding-right: 20px;
}
.page-inner-hero-bottom {
  padding: 60px 15px 80px;
}
.page-inner-hero-bottom .col-lg-6 {
  max-width: 500px;
}
.featured-top-block {
  background: #fff;
  margin-top: 36px;
  padding: 36px 31px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
}
.featured-top-block-form {
  z-index: 2;
  position: relative;
}
.featured-top-block .items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 450px;
}
.featured-top-block .items h4 {
  font-size: 16px;
  padding: 7px 20px 7px 0;
  margin: 0 !important;
}
.featured-top-block .separ {
  border-top: 1px solid #e1e8eb;
  margin-right: 30px;
  margin-top: -1px;
}
.featured-top-block .separ:last-child {
  display: none !important;
}
.featured-top-block .feature-item {
  position: relative;
  padding: 7px 20px 7px 0;
  margin-right: 15px;
}
.featured-top-block .feature-item:nth-child(1), .featured-top-block .feature-item:nth-child(2) {
  border-top: none;
}
.featured-top-block .bottom {
  margin: 0 -31px;
  background: #334252;
  padding: 18px 20px;
  text-align: center;
  margin-top: 25px;
}
.featured-top-block .bottom .btn {
  min-width: 175px;
}
.featured-top-block .tooltip {
  background: #3096ff;
  width: 100%;
  bottom: 100%;
  transform: translate(0, 4px);
  color: #fff;
  visibility: hidden;
  padding: 12px 15px !important;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  transition: all 0.2s ease;
}
.featured-top-block .tooltip:after {
  position: absolute;
  content: "";
  top: 100%;
  right: 2px;
  border: 5px solid transparent;
  border-top: 5px solid #3096ff;
}
.featured-top-block .tooltip p {
  margin-bottom: 0;
}
.featured-top-block .tooltip-icon {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: #3096ff;
  background-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 10px;
  line-height: 15px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
}
.featured-top-block .tooltip-icon:hover + .tooltip {
  opacity: 1;
  visibility: visible;
}
.text-grid-block {
  padding: 100px 15px;
  position: relative;
}
.text-grid-block:before {
  position: absolute;
  content: "";
  content: "";
  width: 60%;
  right: 40%;
  background: #334252;
  z-index: -1;
  height: 100%;
  top: 0%;
}
.text-grid-block .patern.gray path {
  fill: #66717d;
}
.text-grid-block .grid-block {
  background: #eff3f5;
  padding: 80px 45px 15px 65px;
  margin-right: -183px;
  margin-left: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.text-grid-block .grid-block li {
  width: 45%;
  margin-bottom: 40px;
  line-height: 22px;
}
.text-grid-block .grid-block li img {
  width: 45px;
}
.page-inner-hero.pos-image-right {
  overflow: hidden;
  height: 480px;
}
.page-inner-hero.pos-image-right .patern.top-right, .page-inner-hero.pos-image-right .patern.bottom-right {
  right: 50%;
}
.page-inner-hero .hero-content {
  padding-right: 20px;
}
.page-inner-hero .image-right {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
}
.page-inner-hero .image-right img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.contact-section {
  padding: 75px 0 60px;
}
.contact-section .heading {
  margin-bottom: 57px;
  text-align: center;
}
.contact-section .phone-block, .contact-section p {
  margin-bottom: 30px;
}
.quicklink-block {
  padding: 80px 15px 50px;
}
.quicklink-block .col-md-4 {
  margin-bottom: 30px;
}
.quicklink-block .cta-block-link {
  text-align: center;
  background: #fff;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 6px solid #0160ff;
  padding: 60px 20px 15px;
  transition: all 0.2s ease;
  position: relative;
  height: 100%;
}
.quicklink-block .cta-block-link:before {
  position: absolute;
  content: "";
  width: 100%;
  background: #0160ff;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.2s ease;
  height: 0;
}
.quicklink-block .cta-block-link h3 {
  font-size: 32px !important;
  line-height: 38px !important;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.quicklink-block .cta-block-link p {
  position: relative;
  z-index: 2;
}
.quicklink-block .cta-block-link a {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}
.quicklink-block .cta-block-link:hover:before {
  height: 100%;
}
.quicklink-block .cta-block-link:hover {
  padding: 40px 20px 35px;
  color: #fff;
  background: transparent;
}
.quicklink-block .cta-block-link:hover a {
  opacity: 1;
  visibility: visible;
}
.team-block {
  padding-top: 90px;
  padding-bottom: 25px;
}
.team-block .heading {
  margin-bottom: 70px;
}
.team-block .tabs {
  display: flex;
  align-items: center;
  margin-bottom: 33px;
  justify-content: center;
}
.team-block .tabs a {
  font-size: 20px;
  line-height: 20px;
  border-bottom: 3px solid transparent;
  padding: 0 15px 5px;
  opacity: 0.25;
  color: #0e1318;
  text-transform: uppercase;
  margin: 0 3px;
  font-weight: bold;
}
.team-block .tabs a.active {
  opacity: 1;
  border-bottom: 3px solid #0160ff;
}
.team-content img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.team-content .col-md-3 {
  margin-bottom: 35px;
}
.team-content > div {
  display: none;
}
.team-content .active {
  display: block;
}
.page-hero-case {
  padding: 0 15px !important;
  overflow: hidden;
}
.page-hero-case .col-lg-6 {
  position: static;
}
.page-hero-case .img-h {
  position: absolute;
}
.page-hero-case .img-h img {
  width: 100%;
  height: auto;
  max-width: 707px;
}
.play-btn-icon {
  width: 74px;
  height: 74px;
  display: block;
  background: url(../images/play-btn-icon.svg) no-repeat center;
  background-size: 100%;
  left: 50%;
  top: 50%;
  position: absolute;
  z-index: 99;
  margin-left: -37px;
  margin-top: -37px;
  opacity: 0.5;
  transition: all 0.2s ease;
}
.page-hero-case .lb-trigger:hover .play-btn-icon {
  opacity: 1;
}
.page-hero-case .text-h {
  padding: 28px 60px 28px 28px;
  background: #fff;
  position: relative;
  z-index: 2;
  margin-left: 91px;
  width: calc(50vw - 91px);
  max-width: 619px;
  margin-top: 310px;
}
.page-hero-case .text-h h3 {
  font-size: 22px !important;
  line-height: 26px !important;
  color: #0e1318;
}
.page-hero-case .text-h a:hover h3 {
  color: #0160ff;
}
.page-hero-case .text-h .arrow-blue {
  text-align: left;
  text-indent: -9999px;
  display: block;
  background: url(../images/arrow-blue-big.svg) no-repeat center right;
  position: absolute;
  top: 32px;
  right: 30px;
  height: 16px;
  width: 20px;
  padding: 0;
  background-size: 100%;
}
.arrow-blue.down, .page-hero-case .hero-content .arrow-blue {
  background: none;
  position: relative;
  padding-right: 20px !important;
}
.arrow-blue.down:after, .page-hero-case .hero-content .arrow-blue:after {
  position: absolute;
  top: 4px;
  right: 0;
  content: "";
  background: url(../images/arrow-blue.svg) no-repeat;
  width: 16px;
  height: 11px;
  transform: rotate(90deg);
  transition: all 0.2s ease;
}
.arrow-blue.down:hover::after, .page-hero-case .hero-content .arrow-blue:hover::after {
  top: 10px;
}
.case-study-posts {
  padding: 90px 15px 3rem !important;
}
.case-study-posts.webinars-ondemain {
  padding: 60px 15px !important;
}
.case-study-posts .filters {
  margin-bottom: 53px;
}
.case-study-posts .filters .col-md-auto {
  min-width: 260px;
}
.case-study-posts .filters select {
  width: 100%;
}
.tile-link {
  border-bottom: 1px solid #c4d1d8;
  display: block;
  height: 100%;
  transition: all 0.2s ease;
  color: #212529;
  min-height: 460px;
}
.tile-link .case-study-image-container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 255px;
  overflow: hidden;
}
.tile-link .case-study-image-container .attachment-medium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile-link .logo img {
  max-width: 130px;
  max-height: 25px;
  width: auto;
  margin: 0 0 25px 25px;
}
.tile-link .text-h {
  padding: 22px 25px 18px;
}
.tile-link .text {
  display: none;
}
.tile-link h3 {
  font-size: 21px !important;
  line-height: 26px !important;
  min-height: 78px;
}
.tile-link:hover {
  background: #0160ff;
  color: #fff;
}
.tile-link:hover .case-study-image-container {
  background: none !important;
  min-height: 90px;
}
.post .tile-link:hover .case-study-image-container {
  min-height: 0;
}
.tile-link:hover .text-h {
  padding: 10px 25px 25px;
}
.post .tile-link:hover .text-h {
  padding: 28px 25px 28px;
}
.tile-link:hover h3 {
  min-height: 0;
}
.tile-link:hover .text {
  display: block;
}
.tile-link .type {
  margin-bottom: 22px;
}
.tile-link .type span {
  font-weight: normal;
  margin-left: 9px;
  padding-left: 9px;
  border-left: 1px solid #fff;
  display: inline-block;
  line-height: 10px;
}
.quote-slider-block {
  padding: 64px 15px;
  background: #334252;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quote-slider-block .container {
  position: relative;
  z-index: 2;
}
.quote-slider-block .quote-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: auto;
}
.quote-slider-block .slick-track {
  display: flex;
}
.quote-slider-block .patern {
  bottom: 0;
  left: 0;
}
.quote-slider-block .patern path {
  fill: #475563;
}
.quote-slider-block .img-h {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.quote-slider-block .img-h img {
  max-width: 80%;
}
.quote-slider-block .text-h {
  width: 100%;
}
.quote-slider-block .img-h + .text-h {
  width: calc(100% - 200px);
  padding-left: 56px;
}
.quote-slider-block p {
  font: italic 500 22px/30px "breve", sans-serif;
}
.quote-slider-block strong {
  text-transform: uppercase;
}
.quote-slider-block span, .quote-slider-block strong {
  font-size: 14px;
}
.stats-block {
  position: relative;
  padding: 28px 15px 0;
}
.stats-block .container {
  position: relative;
  z-index: 2;
}
.stats-block .heading {
  text-align: center;
}
.stats-block .inner-block {
  padding-left: 30%;
  border-left: 1px solid #c1cedc;
  padding-bottom: 35px;
}
.stats-block .col:first-child .inner-block {
  border-left: none;
}
.stats-block .number {
  font-size: 48px;
  line-height: 60px;
  font-weight: bold;
}
.stats-block p:last-child {
  margin-bottom: 0;
}
.post-tiles-block {
  padding: 50px 15px 60px;
}
.post-tiles-block .col {
  text-align: center;
  padding: 10px 30px 5px;
}
.post-tiles-block .col:not(:first-child) {
  border-left: 1px solid rgba(196, 209, 216, 0.2);
}
.post-tiles-block p:first-child, .post-tiles-block h2 {
  color: #ffbe00;
  font: bold 26px/28px "Cera pro", Arial, sans-serif !important;
}
.post-content {
  padding: 78px 15px;
}
.post-content .col-lg-9 h3 {
  margin-bottom: 25px;
}
.post-content .sticky-top {
  top: 130px;
  padding-right: 15px;
}
.alert-bar + #primary .post-content .sticky-top {
  top: 180px;
}
.admin-bar.page-template-template-flexible .alert-bar + main > #primary .post-content .sticky-top, .admin-bar .alert-bar + #primary .post-content .sticky-top {
  top: 212px;
}
.admin-bar #primary .post-content .sticky-top {
  top: 162px;
}
.sticky-top .top-block {
  border-top: 5px solid #334252;
  border-bottom: 5px solid #334252;
  padding: 25px 0;
}
.sticky-top .top-block strong {
  margin-bottom: 9px;
  padding: 0 10px 0 15px;
  display: block;
}
.sticky-top .top-block li a {
  padding: 9px 10px 9px 15px;
  display: block;
  color: #0e1318 !important;
}
.sticky-top .top-block p:last-child {
  margin-bottom: 0;
}
.sticky-top ul, .sticky-top li {
  display: block;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.sticky-top li a.active, .sticky-top li a:hover {
  background: #eff3f5;
}
.optional-cta {
  padding-top: 10px;
}
.optional-cta p:last-child {
  margin-bottom: 5px !important;
}
.optional-cta img {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}
.optional-cta h3 {
  font-size: 22px !important;
  line-height: 26px !important;
  margin-bottom: 17px;
}
.video-with-text {
  position: relative;
}
.video-with-text .container {
  position: static !important;
}
.video-with-text.text-light * {
  color: #fff;
}
.video-with-text.text-light .arrow-blue {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(110deg) brightness(98%) contrast(108%);
}
.video-with-text .col-md-6 {
  position: static;
}
.video-with-text .col-md-6:last-child {
  position: relative;
  z-index: 3;
  padding: 40px 46px 40px 46px;
}
.video-with-text p:last-child {
  margin-bottom: 0;
}
.video-with-text .eyebrow-text {
  margin-bottom: 10px;
}
.video-with-text .video-col {
  min-height: 432px;
}
.video-with-text .order-last .video-image-h {
  left: 50%;
  right: auto;
}
.video-with-text .video-image-h {
  position: absolute;
  top: 0;
  right: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.video-with-text .video-image-h img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-with-text .play-btn-icon {
  width: 94px;
  height: 94px;
  display: block;
  background: #0160ff url(../images/play-btn-icon.svg) no-repeat center;
  background-size: 98px;
  border-radius: 50%;
}
.video-with-text .lb-trigger:hover .play-btn-icon {
  opacity: 1;
}
.timeline-block {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.timeline-block .container {
  position: relative;
  z-index: 2;
}
.timeline-block .patern {
  opacity: 0.2;
}
.timeline-block .heading {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
.timeline-block .img-h {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.timeline-block .img-h:after {
  content: "";
  position: absolute;
  top: 100%;
  border-left: 1px solid rgba(193, 206, 220, 0.25);
  left: 50%;
  height: 1000px;
}
.timeline-block .img-h.image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
.timeline-block .slick-slide:not(.slick-active) .img-h {
  background-color: #202d3a !important;
}
.timeline-block .slick-slide:not(.slick-active) .img-h img {
  opacity: 0.2;
}
.timeline-block .text {
  padding: 25px 25px 30px 34px;
  background: #405060;
  min-height: 222px;
}
.timeline-block .year {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 5px;
  color: #0e1318;
  font-weight: 600;
  text-align: center;
}
.timeline-block .slick-active .text {
  background: #fff;
}
.timeline-block .slick-active .text .year {
  color: #ffbe00;
}
.timeline-block p:last-child {
  margin-bottom: 0;
}
.timeline-block .timeline-slider {
  max-width: 384px;
  margin: 0 auto;
}
.timeline-block .timeline-slider .timeline-item {
  margin: 0 22px;
}
.timeline-block .timeline-slider .slick-list {
  overflow: visible;
}
.timeline-block .timeline-slider .slick-track {
  display: flex;
  align-items: center;
}
.timeline-block .timeline-slider .slick-next {
  right: 0;
  transform: scaleX(-1) translate(0, -50%);
  -webkit-transform: scaleX(-1) translate(0, -50%);
  -ms-transform: scaleX(-1) translate(0, -50%);
}
.timeline-block .timeline-slider .slick-prev {
  left: 0;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.map-with-text {
  padding: 3px 15px 63px;
  overflow: hidden;
}
.job-list {
  position: relative;
  padding: 90px 0 60px;
}
.job-list .filters {
  margin-top: 70px;
  margin-bottom: 50px;
}
.job-list .filters select {
  background-color: #ffffff;
  width: 225px;
}
.job-list .department:not(:last-child) {
  border-bottom: 1px solid #c4d1d8;
  margin-bottom: 25px;
}
.values-block {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.values-block .heading {
  padding-right: 35px;
  position: relative;
  z-index: 3;
}
.values-block .heading::after {
  background: #fff;
  position: absolute;
  right: 0;
  width: 9999px;
  z-index: -1;
  height: 200%;
  content: "";
  top: -50%;
}
.values-block .inner-block {
  padding: 28px 25px 30px;
  background: #334252;
  text-align: center;
  color: #fff;
  height: 100%;
}
.values-block .values-slider {
  width: 367px;
}
.values-block .values-slider .slick-list {
  overflow: visible;
}
.values-block .values-slider .slick-track {
  display: flex;
}
.values-block .values-slider .slick-slide {
  float: none;
  height: auto;
  margin-left: 15px;
  margin-right: 42px;
}
.values-block .inner-block .number {
  font-size: 50px;
  line-height: 50px;
  font-weight: 500;
  color: #ffbe00;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 25px;
  padding-bottom: 13px;
}
.values-block .inner-block h4 {
  margin-bottom: 15px !important;
}
.values-block .inner-block p:last-child {
  margin-bottom: 0;
}
.values-block .slick-prev {
  left: -6px;
  right: auto;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.values-block .slick-next {
  right: 24px;
  left: auto;
  transform: scaleX(-1) translate(0, -50%);
  -webkit-transform: scaleX(-1) translate(0, -50%);
  -ms-transform: scaleX(-1) translate(0, -50%);
}
.values-block .slick-dots {
  width: auto;
  max-width: none;
  left: calc(50% - 12px);
  transform: translate(-50%, 0);
  white-space: nowrap;
}
.full-width-img {
  padding: 0;
}
.full-width-img > img {
  width: 100%;
}
.sm-avatar > img {
  border-radius: 100px;
  margin-right: 10px;
  max-width: 55px;
}
#author-section {
  margin-top: 47px;
}
#author-section .heading {
  position: relative;
}
#author-section .heading strong {
  background: #fff;
  display: inline-block;
  margin-bottom: 16px;
  padding-right: 5px;
}
#author-section .heading:after {
  position: absolute;
  content: "";
  top: 11px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #c4d1d8;
  z-index: -1;
}
#author-section .autorname {
  margin: 25px 0;
}
#author-section .sm-avatar > img {
  margin-right: 0;
  border-radius: 50%;
  max-width: 98px;
}
#author-section a {
  font-weight: bold;
}
#demoModal {
  background-image: linear-gradient(rgba(255, 255, 255, 0), black), url(https://www.alpha-sense.com/wp-content/uploads/2022/12/amzn-screenshot.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 498px top;
}
:is(#demoModal, #blurredDemoModal) .modal-body {
  background: #f6f8f9;
  padding-top: 65px !important;
}
:is(#demoModal, #blurredDemoModal) .modal-body .close-demo-modal {
  color: #0160ff;
  font-weight: normal;
  font-size: 35px;
  position: absolute;
  right: 20px;
  top: 20px;
}
#contentDownload .modal-dialog {
  -ms-flex-align: center !important;
  align-items: center !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.mktoLogicalField.mktoCheckboxList {
  width: 100% !important;
  padding: 0;
}
.mktoLogicalField.mktoCheckboxList input {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.mktoLogicalField.mktoCheckboxList input:checked + label:after {
  content: "✓" !important;
}
.mktoLogicalField.mktoCheckboxList label {
  position: relative;
  padding-left: 25px;
  margin-left: 0;
  cursor: pointer;
}
.mktoLogicalField.mktoCheckboxList label:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #c4d1d8;
  background: #fff;
  text-align: center;
  line-height: 15px;
}
#contentDownload .modal-dialog, #watchModal .modal-dialog, #download .modal-dialog {
  margin: 0 auto !important;
  max-width: 460px;
  border: none;
}
#contentDownload .modal-content, #watchModal .modal-content, #download .modal-content {
  border: none;
  flex-wrap: wrap;
  max-height: 95%;
}
#contentDownload .modal-body, #watchModal .modal-body, #download .modal-body {
  padding: 35px 45px 25px;
  background: #f6f8f9;
  border-radius: 8px;
  position: relative;
}
#contentDownload .close, #watchModal .close, #download .close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #0e1318;
}
#contentDownload .close span, #watchModal .close span, #download .close span {
  color: #0e1318 !important;
}
#contentDownload .mktoFieldWrap input, #contentDownload .mktoFieldWrap textarea, #contentDownload .mktoFieldWrap select, #watchModal .mktoFieldWrap input, #watchModal .mktoFieldWrap textarea, #watchModal .mktoFieldWrap select, #download .mktoFieldWrap input, #download .mktoFieldWrap textarea, #download .mktoFieldWrap select {
  background-color: #fff !important;
}
.modal.left .modal-dialog {
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.modal.left.fade .modal-dialog {
  transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
}
.modal.left.fade.show .modal-dialog {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
}
.newsletter-block {
  padding: 30px 29px;
  height: 100%;
  flex-wrap: wrap;
  align-content: center;
  color: #fff;
}
.newsletter-block a, .newsletter-block a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}
.no-feature {
  flex: 0 0 100%;
  max-width: 711px;
  margin: 0 auto;
  width: 100%;
}
.no-feature .newsletter-block {
  min-height: 400px;
  padding-left: 10%;
  padding-right: 10%;
  margin-bottom: -25px;
  align-items: center;
  align-content: center !important;
}
.no-feature .newsletter-block #mktoForm_1070 .mktoButton {
  margin-right: auto !important;
  margin-left: 0 !important;
}
.newsletter-block h3 {
  color: #fff;
  margin-bottom: 10px !important;
  font: bold 22px/30px "breve", sans-serif !important;
}
.newsletter-block #mktoForm_1070 #formpara {
  color: #fff;
}
.newsletter-block:not(.show-para) #mktoForm_1070 .mktoFormCol:not(.mktoFieldDescriptor) {
  display: none;
  color: #fff;
}
.newsletter-block #mktoForm_1070 .mktoButton {
  margin-right: 0 !important;
}
.newsletter-block #mktoForm_1070 .mktoField {
  background-color: #fff !important;
}
.newsletter-block #mktoForm_1070 .mktoLabel {
  color: #fff !important;
}
.newsletter-block #mktoForm_1070 .mktoAsterix {
  color: #fff !important;
}
.page-template-template-events .blog-featured-story:not(.event-feature) .text-h {
  padding: 25px 28px 25px 28px;
  position: relative;
  z-index: 2;
  margin-left: 0;
  bottom: 0;
  right: 0;
}
.blog-featured-story {
  padding: 31px 15px 90px;
  position: relative;
}
.blog-featured-story:after {
  position: absolute;
  content: "";
  top: 50%;
  height: 50%;
  width: 100%;
  background: #ebf5ff;
  z-index: -1;
  left: 0;
}
.blog-featured-story h1 {
  margin-bottom: 23px;
}
.blog-featured-story .text-container {
  position: relative;
}
.blog-featured-story .text-h {
  padding: 33px;
  background: #fff;
}
.blog-featured-story .text-h h3 {
  font-size: 22px !important;
  line-height: 26px !important;
  color: #0e1318;
}
.blog-featured-story .text-h h3 a {
  color: #0e1318;
}
.blog-featured-story .text-h h3 a:hover {
  color: #0160ff;
}
.blog-featured-story .text-h a:hover h3 {
  color: #0160ff;
}
.blog-featured-story .text-h p:last-child {
  margin-bottom: 0;
}
.blog-featured-story .text-h .bottom-link {
  margin-top: 25px;
}
.blog-featured-story.event-feature .text-h {
  margin-left: -110px;
}
.blog-featured-story.event-feature .text-h .eyebrow-text span {
  font-weight: normal;
}
.blog-featured-story:not(.event-feature) .text-h {
  padding: 25px 60px 25px 28px;
  position: absolute;
  z-index: 2;
  margin-left: 91px;
  bottom: -90px;
  right: 0;
}
.blog-featured-story .arrow-blue:not(.event-link) {
  text-align: left;
  text-indent: -9999px;
  display: block;
  background: url(../images/arrow-blue-big.svg) no-repeat center right;
  position: absolute;
  top: 52px;
  right: 30px;
  height: 16px;
  width: 20px;
  padding: 0;
  background-size: 100%;
}
#watchModal .modal-dialog {
  max-width: 800px;
}
#watchModal .modal-dialog #watchModalStep1 {
  max-width: 460px;
  margin: 0 auto;
}
#watchModal .modal-dialog .close {
  padding: 0;
  color: #fff;
  font-weight: normal;
  right: 25px;
  top: 18px;
}
.stories-columns {
  padding: 40px 15px 0;
  position: relative;
}
.stories-columns:after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 101%;
  width: 100%;
  background: #ebf5ff;
  z-index: -1;
  left: 0;
}
.stories-columns h3 {
  font-size: 22px !important;
  line-height: 26px !important;
}
.stories-columns .eyebrow-text {
  margin-bottom: 10px;
}
.stories-columns .col-lg-4:not(:first-child) {
  padding-left: 33px;
  border-left: 1px solid #c1cedc;
  padding-bottom: 27px;
}
.blog-filters {
  padding: 62px 15px;
  position: relative;
  z-index: 3;
}
.blog-filters.search-filters {
  padding: 60px 0;
  text-align: center;
}
.blog-filters.search-filters .facetwp-facet {
  justify-content: center;
}
.blog-filters .facetwp-facet {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog-filters .facetwp-display-value {
  padding: 0;
}
.blog-filters .facetwp-radio, .blog-filters .btn {
  min-width: 0;
  padding: 0.375rem 20px;
  background-image: none !important;
  font-size: 15px;
  text-align: center;
  line-height: 24px;
  border-width: 2px;
  border-radius: 50rem !important;
  font-weight: bold;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.blog-filters .facetwp-radio.checked, .blog-filters .btn.checked {
  background-color: #0160ff !important;
  border-color: #0160ff !important;
  color: #fff !important;
}
.blog-filters .facetwp-radio, .blog-filters a:not(.btn-primary) {
  color: #0160ff;
}
.blog-filters .facetwp-type-search {
  margin-left: auto;
  max-width: 340px;
}
.blog-filters .facetwp-type-search .facetwp-search {
  min-width: 340px;
}
.facetwp-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.facetwp-pager .facetwp-page {
  background: #e8e8e8;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin: 0 5px;
  color: #0e1318;
}
.facetwp-pager .facetwp-page.prev, .facetwp-pager .facetwp-page.next, .facetwp-pager .facetwp-page.active {
  background: #0160ff;
  color: #fff;
}
.facetwp-pager .facetwp-page.prev svg {
  transform: scaleX(-1);
}
.facetwp-type-search .facetwp-icon {
  opacity: 0;
}
.facetwp-search {
  background: #f6f8f9 url("../images/seach-icon.svg") no-repeat !important;
  background-position: right 17px center !important;
  width: auto;
  min-width: 340px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 50rem !important;
  border: 1px solid #c4d1d8 !important;
  color: #0e1318 !important;
  height: 42px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  font-size: 12px;
  margin-left: auto;
}
#events.top-no-feature {
  padding-top: 0;
}
#events .case-study-image-container:not(.Webinar), #resources-container .case-study-image-container:not(.Webinar) {
  background: #cce5ff;
}
#events .case-study-image-container:not(.Webinar) .attachment-medium, #resources-container .case-study-image-container:not(.Webinar) .attachment-medium {
  object-fit: inherit;
  width: auto;
  max-height: 95%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  margin: auto;
  top: auto;
  top: 0;
}
#events .tile-link:hover .case-study-image-container, #resources-container .tile-link:hover .case-study-image-container {
  min-height: 0;
  overflow: hidden;
}
#events .tile-link:hover .text-h, #resources-container .tile-link:hover .text-h {
  padding-top: 30px;
}
#events .play-btn-icon, #resources-container .play-btn-icon {
  opacity: 1;
  background-color: #0160ff;
  background-size: 78px;
  border-radius: 50%;
}
.resource-hero-content {
  position: relative;
  height: 480px;
  margin-bottom: 50px;
}
.resource-hero-content .img-h {
  padding-top: 66px;
}
.resource-hero-content .img-h img {
  width: 355px;
}
.resource-hero-content .thank-you-text {
  display: none;
}
.resource-hero-content .btn-primary {
  margin-top: 15px;
}
.single-alphasense_event .share, .single-alphasense_resources .share {
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid #c4d1d8;
}
.speakers {
  padding-top: 20px;
}
.speakers h3 {
  font-size: 22px !important;
  line-height: 26px;
  margin-bottom: 10px;
}
.speakers a {
  color: #0e1318;
}
.speakers .sm-avatar img {
  max-width: 66px;
}
.search-form-holder {
  max-width: 716px;
  margin: 65px auto 0;
}
.search-form-holder label {
  display: block;
}
.search-form-holder input[type="search"] {
  width: 100%;
  border: 1px solid #c4d1d8;
  border-radius: 21px;
  font-weight: bold;
  color: #0e1318;
  padding: 9px 12px 9px 53px;
  background: #fff url(../images/search-icon-dark.svg) no-repeat center left 20px;
  background-size: 18px;
}
.search-form-holder input[type="search"]:focus {
  outline: none;
}
.search-form-holder input[type="search"]::-webkit-search-cancel-button {
  background: #fff url(../images/close-search-grey.svg) no-repeat center;
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border: none;
}
.search-post-list article {
  margin: 0 !important;
  height: 100%;
  color: #0e1318;
}
.search-post-list article a {
  display: block;
  color: #0e1318;
  padding: 32px;
  height: 100%;
  transition: all 0.2s ease;
}
.search-post-list article a:hover {
  color: #fff;
  background: #0160ff;
}
.search-post-list article .post-type {
  background: #001765;
  border-radius: 3px;
  font-weight: 900;
  font-size: 11px;
  line-height: 11px;
  text-align: center;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #ffffff;
  padding: 7px 15px;
  display: inline-block;
  margin-bottom: 9px;
}
/*Ipad pro and small desktop*/
@media only screen and (max-width: 1440px) {
  .text-grid-block .grid-block {
    margin-right: -150px;
  }
}
@media only screen and (max-width: 1367px) {
  .text-grid-block .grid-block {
    margin-right: -109px;
  }
}
@media only screen and (max-width: 1350px) {
  .text-grid-block .grid-block {
    margin-right: 0;
    padding-left: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .img-fluid {
    max-width: 100% !important;
  }
  .tabs-content img {
    max-width: 50% !important;
  }
  .multi-columns-block .columns {
    margin: 0 -15px;
  }
  .multi-columns-block .columns .col-lg {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .case-study-carousel .slider-case {
    max-width: 850px;
    padding-left: 0;
  }
  .case-study-carousel .slick-arrow.slick-next {
    left: -40px !important;
  }
  .page-hero-case .text-h {
    margin-left: 50px;
    margin-right: -30px;
    width: auto;
    margin-top: 235px;
  }
  .map-with-text svg {
    margin-left: -50px;
    width: 930px;
    height: auto;
  }
  .tabs-content .tab:first-child img {
    top: 70%;
  }
}
@media only screen and (max-width: 992px) {
  .navbar-collapse {
    height: calc(100vh - 50px) !important;
    background-color: #fff;
    position: absolute;
    top: 100%;
    width: calc(100% + 60px);
    left: -30px;
    padding: 30px;
    overflow: auto;
  }
  .navbar-collapse .btn {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }
  .alert-bar .navbar-collapse {
    height: calc(100vh - 100px) !important;
  }
  .admin-bar .alert-bar .navbar-collapse {
    height: calc(100vh - 146px) !important;
  }
  .ubermenu-skin-minimal.ubermenu-responsive-toggle {
    display: none;
  }
  .ubermenu-responsive-default.ubermenu-responsive .ubermenu-item-level-0 {
    width: 100%;
  }
  .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse {
    max-height: none;
    visibility: visible !important;
    overflow: visible !important;
  }
  .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse .ubermenu-item .ubermenu-submenu.ubermenu-submenu-drop {
    display: block;
    border: none;
    padding: 0 !important;
    box-shadow: none !important;
    position: relative !important;
    top: 0;
    left: -20px !important;
    width: calc(100% + 40px);
  }
  .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse .ubermenu-item .ubermenu-submenu.ubermenu-submenu-drop .nav-link {
    padding-left: 20px;
  }
  .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse .ubermenu-item .ubermenu-submenu.ubermenu-submenu-drop .ubermenu-submenu {
    display: block;
  }
  .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse #menu-item-3647, .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse #menu-item-6583, .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse #menu-item-3659, .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse #menu-item-3667 {
    border-left: none;
    padding-left: 0;
  }
  .ubermenu-responsive-default.ubermenu-responsive.ubermenu-responsive-collapse #menu-item-3669 {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .ubermenu .ubermenu-nav > li {
    position: relative;
  }
  .ubermenu .ubermenu-nav > li .arrow-mobile {
    width: 16px;
    height: 23px;
    position: absolute;
    background: url(../images/arrow-menu.svg) center no-repeat;
    background-size: 9px;
    right: 0;
    top: 8px;
    z-index: 3;
  }
  .ubermenu .ubermenu-nav > li.ubermenu-active .arrow-mobile {
    transform: scaleY(-1);
  }
  .ubermenu .ubermenu-nav > li > .nav-link {
    padding: 7px 0;
    border-bottom: none;
    text-align: left;
    position: relative;
    width: calc(100% - 23px);
  }
  .ubermenu .ubermenu-nav > li > .nav-link:after {
    display: none;
  }
  .ubermenu .ubermenu-nav > li > .nav-link:hover {
    color: #0160ff;
  }
  .mobile-top-menu ul {
    list-style: none;
    margin: 40px 0 50px;
    padding: 5px 0 0;
    border-top: 1px solid #c4d1d8;
  }
  .mobile-top-menu ul li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-top-menu ul li a {
    font-size: 15px;
    font-weight: normal;
    padding: 5px 0;
    display: block;
    color: #0e1318;
  }
  footer .col1, footer .col2, footer .col3 {
    flex-basis: 100%;
  }
  h1 {
    font-size: 34px;
    line-height: 36px;
  }
  h2 {
    font-size: 28px;
    line-height: 32px;
  }
  .container {
    position: relative;
    z-index: 2;
  }
  .page-inner-hero {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 50px !important;
  }
  .page-inner-hero .position-absolute {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    max-width: 100% !important;
  }
  .page-inner-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
  }
  .page-inner-hero .hero-content h1 {
    margin-bottom: 10px;
  }
  .page-inner-hero .hero-content p:last-of-type {
    margin-bottom: 20px;
  }
  .page-inner-hero .container {
    position: static;
  }
  .home .page-inner-hero {
    padding-top: 35px !important;
  }
  .page-template-tpl-pricing .page-inner-hero {
    padding-bottom: 0 !important;
  }
  .btn {
    min-width: 150px;
  }
  .blog-hero-content p:last-of-type {
    margin-bottom: 20px;
  }
  .tabs-content .tab {
    position: relative;
  }
  .site-footer {
    padding-top: 42px;
  }
  .site-footer .row {
    padding: 0 15px;
  }
  .site-footer .row ul {
    margin-bottom: 3px;
  }
  .site-footer #menu-terms-and-privacy {
    margin-bottom: 0;
  }
  .columns-wicons-block br {
    display: none;
  }
  .page-inner-hero-bottom .col-lg-6 {
    max-width: 100%;
  }
  .featured-top-block {
    position: relative;
  }
  .featured-top-block:after {
    position: absolute;
    content: "";
    width: calc(100% + 60px);
    height: 50%;
    top: 50%;
    background: #fff;
    z-index: -1;
    left: -30px;
  }
  .page-hero-case .col-lg-6:last-child {
    padding: 0;
    margin-top: 20px;
  }
  .page-hero-case .col-lg-6:last-child .img-h {
    position: relative;
    width: calc(100% + 60px);
    margin: 0 -30px;
  }
  .page-hero-case .col-lg-6:last-child .img-h img {
    width: 100%;
    max-width: 100%;
  }
  .page-hero-case .text-h {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
    margin-top: -70px;
    max-width: none;
  }
  .blog-featured-story {
    padding-bottom: 60px;
    overflow: hidden;
  }
  .blog-featured-story:after {
    top: 80%;
  }
  .blog-featured-story img {
    max-width: none;
    width: calc(100% + 60px);
    margin: 0 -30px;
  }
  .blog-featured-story:not(.event-feature) .text-h, .blog-featured-story .text-h {
    position: relative;
    bottom: 0;
    margin: -70px 0 30px !important;
  }
  .blog-featured-story:not(.event-feature) .text-h {
    margin-bottom: 10px !important;
  }
  .blog-featured-story .newsletter-block {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .blog-filters {
    padding: 50px 15px;
  }
  #filter-container {
    margin: 0 auto;
  }
  .blog-filters .facetwp-type-search {
    margin: 23px auto 0;
  }
  .blog-hero-content {
    padding: 54px 15px 0;
  }
  .blog-hero-content .row.h-100 {
    min-height: auto;
  }
  .single-alphasense_casestudy .blog-hero-content {
    padding: 0;
  }
  .single-alphasense_casestudy .blog-hero-content .col-lg-6:last-child {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .map-with-text svg {
    margin-left: -6%;
    width: 122%;
    height: auto;
  }
  .text-grid-block {
    padding: 80px 15px 0;
  }
  .text-grid-block:before {
    position: absolute;
    content: "";
    content: "";
    width: 100%;
    right: 0;
  }
  .text-grid-block .grid-block {
    margin: 60px -30px 0;
    padding: 60px 30px 15px 45px;
  }
  .no-feature .newsletter-block {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 850px) {
  .case-study-carousel .slick-arrow.slick-next {
    left: 0 !important;
  }
  .case-study-carousel .slick-arrow.slick-prev {
    right: 0 !important;
  }
  .tabs-content .tab:first-child img {
    top: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .eyebrow-text {
    font-size: 12px;
  }
  .arrow-white, .arrow-blue, .btn {
    font-size: 14px;
  }
  .seach-form-box .search-holder {
    height: auto;
    padding: 25px 15px;
  }
  .seach-form-box .search-holder .search-form {
    display: block;
  }
  .seach-form-box .search-holder .search-form label {
    width: 100%;
    margin-bottom: 30px;
  }
  .seach-form-box .search-holder .search-form .search-footer {
    display: block;
    text-align: center;
  }
  .seach-form-box .search-holder .search-form .search-footer .search-close {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  #sticky-bar .container {
    font-size: 11px;
  }
  #primary-nav .logo-cont {
    height: auto;
    width: 140px;
  }
  .page-inner-hero {
    display: flex;
    flex-direction: column-reverse;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .page-inner-hero .position-absolute {
    width: calc(100% + 60px) !important;
    max-width: calc(100% + 60px) !important;
    margin: 15px -30px 0;
  }
  .page-inner-hero .image-right {
    position: relative;
    left: 0;
    top: 0;
    height: auto;
    width: 100%;
    margin-bottom: -30px;
    z-index: 3;
  }
  .page-inner-hero .image-right img {
    width: calc(100% + 60px) !important;
    height: auto;
    object-fit: inherit;
    margin-top: 30px;
  }
  .page-template-tpl-pricing .case-study-block, .home .case-study-block {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .case-study-block {
    padding-bottom: 20px;
  }
  .case-study-block p {
    text-align: left !important;
  }
  .case-study-block .case-logo-carousel {
    margin: 0 -15px;
  }
  .case-study-block .case-logo-carousel .slick-track .logo-h {
    padding: 0 10px;
  }
  .vertical-tabs-block .heading {
    text-align: left;
    margin-bottom: 20px;
  }
  .vertical-tabs-block .tabs-content .tab {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 30px;
    position: relative;
  }
  .vertical-tabs-block .tabs-content .tab img {
    position: relative !important;
    width: calc(100% + 30px);
    max-width: none !important;
    left: -15px;
    top: 0 !important;
    margin-bottom: 5px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
  .vertical-tabs-block .tabs-content .tab .tab-inner {
    padding: 0 !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
  }
  .vertical-tabs-block .tabs-content .tab .tab-inner a {
    margin-top: 0;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .multi-columns-block h2 {
    margin-bottom: 25px !important;
  }
  .multi-columns-block .columns {
    margin: 0 -15px;
  }
  .multi-columns-block .columns .col-md-6 {
    padding: 0 15px;
  }
  .multi-columns-block .columns .col-md-6:first-child {
    margin-bottom: 25px;
  }
  .multi-columns-block .add-links {
    margin: 25px -30px 0;
  }
  .multi-columns-block .add-links a {
    padding-left: 30px;
    background-position: right 30px center;
  }
  .multi-columns-block .add-links a:hover {
    padding-left: 30px;
    background-position: right 30px center;
  }
  .quad-media-block {
    padding-bottom: 50px;
  }
  .quad-media-block .list-unstyled li {
    width: 100%;
    margin-bottom: 40px;
  }
  .quad-media-block .list-unstyled li:last-child {
    margin-bottom: 0;
  }
  .case-study-carousel {
    padding: 60px 15px 80px;
  }
  .case-study-carousel .heading h3 {
    margin-bottom: 30px !important;
  }
  .case-study-carousel .slider-case {
    margin: 0 -20px;
  }
  .case-study-carousel .case-slide {
    margin: 0 20px;
  }
  .case-study-carousel .case-slide .img-h {
    width: 100%;
    height: 270px;
    overflow: hidden;
    position: relative;
  }
  .case-study-carousel .case-slide .img-h .attachment-slide-crop {
    display: none;
  }
  .case-study-carousel .case-slide .img-h .attachment-slide-crop-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .case-study-carousel .case-slide .text-h {
    width: 100%;
    padding: 25px 25px 15px;
  }
  .case-study-carousel .slick-dots {
    bottom: -30px;
  }
  .cta-block h2 {
    margin-bottom: 20px;
  }
  .site-footer .footer-bottom .d-flex {
    display: block !important;
    text-align: center;
  }
  .site-footer .footer-bottom p {
    margin-bottom: 5px;
  }
  .site-footer .footer-bottom #menu-terms-and-privacy {
    margin-bottom: 0;
  }
  .site-footer .footer-bottom #menu-terms-and-privacy li {
    margin: 0 7px;
  }
  body:not(.home) .page-inner-hero.as-bg-white {
    margin-bottom: 0;
  }
  .full-width-text {
    padding-bottom: 80px;
  }
  .full-width-text.as-bg-white {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .full-width-text.as-bg-white .text-center {
    text-align: left !important;
  }
  .full-width-text .patern.top-left {
    display: none;
  }
  .images-with-captions .row.my-5 {
    margin: 20px 0 !important;
  }
  .images-with-captions .row.my-5:first-child {
    margin-bottom: 0 !important;
  }
  .images-with-captions .row.my-5:first-child + .row {
    margin-top: 0 !important;
  }
  .images-with-captions .row.my-5 .col-lg-5, .images-with-captions .row.my-5 .col-lg {
    padding: 0 !important;
  }
  .images-with-captions .row.my-5 .col-lg {
    margin: 0 -15px;
  }
  .images-with-captions .row.my-5 .col-lg img {
    width: calc(100% + 30px);
    max-width: none !important;
  }
  .images-with-captions .row.my-5 h3 {
    font-size: 22px;
    line-height: 26px;
  }
  .images-with-captions .row.my-5 .eyebrow-text {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .reviews-block {
    padding-bottom: 70px;
  }
  .reviews-block .image-center {
    padding: 0 !important;
  }
  .reviews-block .offset-caption {
    padding: 0;
    border: none;
    margin-top: 40px;
  }
  .reviews-block p:not(:last-child) {
    margin-bottom: 25px;
  }
  .column-cards-blocks {
    padding-bottom: 15px;
  }
  .column-cards-blocks .col {
    padding: 0 7px;
    margin-bottom: 62px;
    flex-basis: inherit;
  }
  .column-cards-blocks .col .card-inner {
    padding: 30px 25px 30px;
    position: relative;
    text-align: center;
  }
  .column-cards-blocks .col .text-h {
    padding: 0;
  }
  .column-cards-blocks .col .text-h .arrow-blue {
    position: relative !important;
    left: 0 !important;
    bottom: 0 !important;
  }
  .column-cards-blocks .col .text-h p:last-child {
    margin-bottom: 0;
  }
  .column-cards-blocks .col .img-h {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .column-cards-blocks .col .img-h + .text-h {
    padding: 15px 0 0;
    max-width: 100%;
    width: 100%;
  }
  .resources-block-row {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .resources-block-row h3 {
    text-align: center;
    margin-bottom: 12px !important;
  }
  .resources-block-row .col-md-3 {
    margin-bottom: 38px;
  }
  .resources-block-row .resource-preview {
    max-width: 250px;
    display: block;
    margin: 0 auto;
  }
  .resources-block-row .resource-preview h3 {
    text-align: left;
    margin-bottom: 0 !important;
  }
  .resources-block-row .d-md-none {
    width: 100%;
    display: block;
    text-align: center;
  }
  .columns-wicons-block {
    padding: 51px 0;
  }
  .columns-wicons-block .row {
    display: block !important;
    padding: 0 30px;
  }
  .columns-wicons-block .col {
    width: 100%;
    padding-top: 0;
    padding-bottom: 34px;
  }
  .columns-wicons-block .col:not(:first-child) {
    padding-top: 34px;
    border-top: 1px solid rgba(196, 209, 216, 0.2);
    border-left: none;
  }
  .columns-wicons-block .col p:last-child {
    margin-bottom: 0;
  }
  .featured-top-block .items {
    display: block;
    max-height: none;
  }
  .featured-top-block .feature-item {
    width: 100%;
  }
  .featured-top-block .feature-item:nth-child(n + 7) {
    display: none;
  }
  .featured-top-block h4:nth-child(n + 7) {
    display: none;
  }
  .featured-top-block .d-none {
    display: block !important;
    text-align: center;
    margin-top: 20px;
  }
  .page-inner-hero-bottom {
    padding-bottom: 30px;
  }
  .page-template-tpl-pricing .case-study-block h2 {
    margin: 0 !important;
  }
  .accordion-item .collapse {
    max-width: 100%;
  }
  .page-hero-case .text-h {
    margin-top: -50px;
  }
  .stats-block {
    padding-bottom: 38px;
  }
  .stats-block .col {
    width: 50%;
    flex-basis: inherit;
  }
  .stats-block .col:nth-child(2n + 1) {
    padding-left: 0;
  }
  .stats-block .col:nth-child(2n) {
    border-left: 1px solid #c1cedc;
    padding-right: 0;
  }
  .stats-block .col:nth-child(n + 3) {
    border-top: 1px solid #c1cedc;
  }
  .stats-block .inner-block {
    padding-left: 0;
    border-left: 0;
    padding-top: 5px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
  }
  .quote-slider-block .quote-slide {
    display: block;
  }
  .quote-slider-block .quote-slide .img-h {
    margin: 0 auto;
  }
  .quote-slider-block .quote-slide .img-h + .text-h {
    width: 100%;
    padding: 33px 0 20px;
  }
  .quote-slider-block .quote-slide p {
    margin-bottom: 38px;
  }
  .case-study-posts {
    padding: 50px 15px 3rem !important;
  }
  .case-study-posts .filters .col-md-auto {
    min-width: 100%;
    margin-bottom: 25px !important;
  }
  .case-study-posts .filters .col-md-auto:last-child {
    margin-bottom: 0 !important;
  }
  .blog-featured-story .text-h {
    margin-top: -50px !important;
  }
  .stories-columns {
    padding-top: 0;
    padding-bottom: 45px;
  }
  .stories-columns .eyebrow-text {
    font-size: 14px;
  }
  .stories-columns .col-lg-4 {
    padding-bottom: 0;
  }
  .stories-columns .col-lg-4:not(:first-child) {
    padding-left: 15px;
    border-left: none;
    padding-bottom: 0;
  }
  .stories-columns .col-lg-4 .text-h {
    border-top: 1px solid #c1cedc;
    padding-top: 27px;
    padding-bottom: 15px;
  }
  .blog-filters .facetwp-input-wrap, .blog-filters .facetwp-search, .blog-filters .facetwp-type-search {
    min-width: 0 !important;
    width: 100% !important;
    display: block;
  }
  .blog-filters #filter-container {
    height: 40px;
    overflow: hidden;
    position: relative;
    padding-top: 50px;
    z-index: 3;
  }
  .blog-filters #filter-container .facetwp-radio {
    width: 100%;
    pointer-events: none;
    margin: 0;
    padding: 9px 20px;
    background-color: #fff;
  }
  .blog-filters #filter-container .facetwp-radio:not(.checked) {
    border-radius: 0 !important;
  }
  .blog-filters #filter-container .facetwp-radio.checked {
    position: absolute;
    top: 0;
    left: 15px;
    width: calc(100% - 30px);
  }
  .blog-filters #filter-container .facetwp-radio.checked:after {
    position: absolute;
    content: "";
    top: 15px;
    right: 20px;
    border: 2px solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
  }
  .blog-filters #filter-container.open {
    overflow: visible;
  }
  .blog-filters #filter-container.open .facetwp-radio {
    pointer-events: all;
  }
  .blog-filters #filter-container.open .facetwp-radio:not(.checked) {
    display: block;
  }
  .blog-filters #filter-container.open .facetwp-radio:not(.checked):last-child {
    padding-bottom: 20px;
  }
  .post-content {
    padding: 50px 15px;
  }
  .blog-hero-content .col-lg-6:last-child {
    padding-left: 15px;
  }
  .blog-hero-content .img-h {
    position: relative;
    width: calc(100% + 60px);
    left: -30px !important;
    right: auto !important;
    height: auto;
    margin-top: 35px;
  }
  .blog-hero-content .img-h img {
    height: auto;
    object-fit: inherit;
  }
  .share {
    padding-top: 23px;
    border-top: 5px solid #334252;
  }
  .single-alphasense_casestudy .blog-hero-content {
    padding: 15px 15px 0;
  }
  .single-alphasense_casestudy .blog-hero-content .col-lg-6 {
    order: 2;
  }
  .single-alphasense_casestudy .blog-hero-content .col-lg-6:last-child {
    text-align: center;
    order: 1;
  }
  .single-alphasense_casestudy .blog-hero-content .case-info .row {
    justify-content: center;
  }
  .post-tiles-block {
    padding: 50px 15px 34px;
  }
  .post-tiles-block .row {
    display: block;
  }
  .post-tiles-block .col {
    padding: 0 15px 10px;
  }
  .post-tiles-block .col:not(:first-child) {
    padding: 20px 15px 10px;
    border-left: none;
    border-top: 1px solid rgba(196, 209, 216, 0.2);
  }
  .video-with-text .video-col {
    min-height: 230px;
  }
  .video-with-text .video-image-h {
    position: relative;
    left: -30px !important;
    right: 0 !important;
    width: calc(100% + 60px);
    height: auto;
  }
  .video-with-text .col-md-6:last-child {
    padding: 50px 15px;
  }
  .timeline-block {
    padding-left: 7px;
    padding-right: 7px;
  }
  .timeline-block .container {
    padding: 0;
  }
  .timeline-block .timeline-slider .timeline-item {
    margin: 0 20px;
  }
  .timeline-block .timeline-slider .timeline-item .img-h {
    display: flex;
  }
  .timeline-block .timeline-slider .timeline-item .text {
    min-height: 222px;
    background: #fff;
  }
  .timeline-block .timeline-slider .timeline-item .year {
    display: block;
  }
  .quicklink-block {
    padding: 50px 15px 30px;
  }
  .quicklink-block .col-md-4 {
    padding: 0 3px;
  }
  .team-block {
    padding-top: 50px;
  }
  .team-block .tabs a {
    font-size: 13px;
    padding: 0 10px 5px;
  }
  .team-block .col-md-3 {
    width: 50%;
  }
  .page-inner-hero .hero-content {
    padding-right: 0;
  }
  .values-block .col-8, .values-block .heading {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .values-block .col-8::after, .values-block .heading::after {
    display: none;
  }
  .values-block .heading {
    padding: 0 30px 30px;
  }
  .job-list .filters .col-auto {
    width: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .job-list .filters .col-auto select {
    width: 100%;
  }
  .awards .heading {
    margin-bottom: 50px !important;
  }
  .awards .col-md-4:nth-child(3n + 2) {
    margin-top: 0 !important;
  }
  .resource-hero-content {
    height: auto;
    padding-top: 54px;
  }
  .resource-hero-content .img-h {
    padding-top: 40px;
  }
  .resource-hero-content .img-h img {
    margin: 0 auto;
    display: block;
  }
  .text-grid-block .grid-block li {
    width: 100%;
  }
}
/* DJ's Additions  ----------------------------------------------------------------------- */
.blurred-cta-wrapper p {
  color: transparent;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.blurred-cta-wrapper p + div {
  position: absolute !important;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.hero-modal-cta-text {
  color: var(--cta-text-color, #0160ff);
  cursor: pointer;
  margin-top: 1rem;
  font-weight: 600;
  transition: color 200ms ease;
  display: inline-block;
}
.hero-modal-cta-text:hover {
  color: var(--cta-text-hover, #0160ff);
  cursor: pointer;
  margin-top: 1rem;
}
.modal#blurredDemoModal {
  z-index: -1050;
}
.modal#blurredDemoModal.show {
  z-index: 1050;
}
.mktoCheckboxList {
  width: 100% !important;
}
.allow-scroll {
  overflow: auto !important;
}
.unset-overflow {
  overflow: unset !important;
}
@media (min-width: 768px) {
  .vertical-tabs-block-slider {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
.vertical-tabs-block-slider .tabs-content .right-side {
  display: none;
}
.vertical-tabs-block-slider .tabs-content .tab-inner .arrow-blue {
  opacity: 1 !important;
}
@media (min-width: 768px) {
  .vertical-tabs-block-slider .tabs-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 7rem;
    padding-top: 2rem;
  }
  .vertical-tabs-block-slider .tabs-content .tab-inner {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .vertical-tabs-block-slider .tabs-content .left-side > * {
    min-height: 60vh;
    display: inline-block;
    line-height: 1.4;
  }
  .vertical-tabs-block-slider .tabs-content .left-side img {
    opacity: 0 !important;
  }
  .vertical-tabs-block-slider .tabs-content .left-side .tab {
    width: 100%;
    padding-bottom: 1rem;
    display: grid;
    place-items: center;
  }
  .vertical-tabs-block-slider .tabs-content .left-side .tab .tab-inner {
    margin: 0 auto;
  }
  .vertical-tabs-block-slider .tabs-content .right-side {
    display: block;
    position: sticky;
    top: calc(50% - 28vh);
    height: 56vh;
  }
  .vertical-tabs-block-slider .tabs-content .right-side img {
    left: 0 !important;
    top: 50% !important;
    max-width: 100% !important;
    transform: translatey(-50%) !important;
    visibility: visible;
    transition: opacity 700ms ease;
  }
  .vertical-tabs-block-slider .tabs-content .right-side img.visible {
    opacity: 1;
    transition: opacity 700ms ease;
  }
}
/*Pricing page modifications*/
.page-template-tpl-pricing-form .case-study-block {
  padding-top: 75px;
}
.page-template-tpl-pricing-form .page-inner-hero {
  height: auto !important;
  padding: 75px 15px !important;
}
.page-template-tpl-pricing-form .featured-top-block {
  margin-top: 0 !important;
}
.hero-bottom-content > *:last-of-type {
  margin-bottom: 0 !important;
}
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.share-buttons > a {
  flex: 0 0 40px;
  aspect-ratio: 1;
  background-color: #017eff;
  padding: 5px;
  border-radius: 25px;
  display: grid;
  place-items: center;
  position: relative;
  transition: 200ms ease-in-out;
}
.share-buttons > a svg {
  fill: white;
  height: 18px;
  width: 18px;
}
.share-buttons > a:hover {
  transform: translateY(-4px);
}
.hero-bottom-content {
  margin-top: 20px;
}
.hero-bottom-content:has(img) {
  margin-top: 45px;
}
.hero-bottom-content * {
  margin: 0;
}
.hero-bottom-content > * + * {
  margin-top: 1rem;
}
.hero-bottom-content img {
  max-height: 100px;
  max-width: 300px;
}
.page-inner-hero:has(.hero-bottom-content) {
  height: max-content !important;
  margin-top: 40px !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
/*Gravity forms*/
.gform_required_legend {
  display: none;
}
.gform_wrapper, .gform_confirmation_wrapper.roi-calculator-form {
  background: #ffffff;
  padding: 35px 30px 20px 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.gform_confirmation_wrapper.roi-calculator-form {
  padding: 35px 30px 40px 30px;
}
.gform_wrapper.gravity-theme .gfield input, .gform_wrapper.gravity-theme .gfield select {
  max-width: 100%;
  border-radius: 50rem !important;
  border: 1px solid #c4d1d8 !important;
  color: #0e1318 !important;
  height: 42px !important;
  padding: 2px 22px !important;
}
.gform_wrapper.gravity-theme .gfield select {
  padding: 2px 16px !important;
}
.gform_wrapper.gravity-theme .field_sublabel_above .description, .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description, .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description {
  margin-top: 9.008px;
  color: #777777;
  font-style: italic;
}
.gform_wrapper.gravity-theme .gform_fields {
  color: #000000;
}
.gfield_description {
  margin-top: 0 !important;
}
.gform_wrapper.gravity-theme .gfield_required {
  color: #000000 !important;
}
.gform_wrapper.gravity-theme .gfield {
  margin-bottom: 10px;
}
/*Hide the minimum value check*/
.roi-calculator-form .instruction {
  display: none;
}
/*Smart summaries page*/
.ai-iframe {
  padding: 0;
  margin: 24px auto 0 auto;
  border: none;
  height: 650px;
  max-width: 100%;
  width: 100%;
}
#iframe-research {
  height: 575px;
}
#iframe-expert {
  height: 555px;
}
@media (max-width: 769px) {
  iframe.ai-iframe {
    height: 555px !important;
    max-height: 555px !important;
  }
}
.page-id-6105 a.lb-trigger {
  cursor: pointer;
  white-space: nowrap;
  font-size: 15px;
  background-color: #0160ff !important;
  border-color: #0160ff !important;
  color: #fff !important;
  padding: 11px 26px;
  border-radius: 30px;
  min-width: 175px;
  text-align: center;
  line-height: 24px;
  background: none;
  border: 2px solid #0160ff !important;
}
.page-id-6105 a.lb-trigger:hover {
  background-color: #fff !important;
  color: #0160ff !important;
}
.single-alphasense_resources .content-row {
  flex-direction: column !important;
}
.single-alphasense_resources:has(.form-wrapper) .content-row {
  flex-direction: row !important;
}
@media (min-width: 768px) {
  .single-alphasense_resources:has(.form-wrapper) #main-content .row {
    width: calc(100% - 350px);
  }
  .single-alphasense_resources:has(.form-wrapper) .form-wrapper {
    position: absolute;
    right: 2rem;
  }
  .single-alphasense_resources:has(.form-wrapper) .main-text {
    width: 85%;
  }
  .single-alphasense_resources:has(.form-wrapper) .share {
    width: 100% !important;
  }
}
@media (min-width: 960px) {
  .single-alphasense_resources:has(.form-wrapper) #main-content .row {
    width: calc(100% - 550px);
  }
}
.single-alphasense_resources .resource-hero-content {
  overflow-x: clip;
}
.single-alphasense_resources .form-wrapper {
  background: white;
  padding: 1rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  animation-name: fade-in;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 1.25s;
}
@media (max-width: 767px) {
  .single-alphasense_resources .form-wrapper {
    margin-top: 2rem;
    margin-bottom: -4rem;
  }
}
.single-alphasense_resources .hero-image {
  position: absolute;
  right: -10rem;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .single-alphasense_resources .hero-image {
    display: none;
  }
}
.single-alphasense_resources .post-content {
  padding-top: 40px;
}
.single-alphasense_resources .hero-logos {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.875rem;
}
.single-alphasense_resources .hero-logos img {
  max-width: 190px;
}
.single-alphasense_resources .hero-logos p {
  margin: 0;
}
.single-alphasense_resources .webinar-date {
  display: flex;
  align-items: center;
  margin-top: 1.875rem;
}
.single-alphasense_resources .webinar-date p {
  margin: 0;
}
.single-alphasense_resources .webinar-date p:first-of-type {
  margin-left: 5px;
}
@media (max-width: 767px) {
  .single-alphasense_resources .webinar-date {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .single-alphasense_resources .webinar-date .comma {
    display: none;
  }
  .single-alphasense_resources .webinar-date p:first-of-type {
    margin-left: 0;
  }
}
.single-alphasense_resources .speakers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 4.375rem;
}
.single-alphasense_resources .speakers .speaker {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 0.5rem;
}
.single-alphasense_resources .speakers .speaker .speaker-info p {
  margin: 0 !important;
}
.single-alphasense_resources .speakers .speaker .speaker-info .speaker-name {
  font-weight: 600;
}
@media (max-width: 767px) {
  .single-alphasense_resources .speakers {
    grid-template-columns: minmax(0, 1fr);
  }
  .single-alphasense_resources .speakers .speaker {
    grid-template-columns: minmax(0, 1fr);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.single-alphasense_resources .additional-content {
  background-color: #eff3f5;
  border-top: 10px solid #0160ff;
  padding: 1rem;
}
.single-alphasense_resources .additional-content ul {
  list-style-type: none;
  padding: 0;
}
.single-alphasense_resources .additional-content ul li {
  line-height: 1.4;
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: flex-start;
  gap: 10px;
}
.single-alphasense_resources .additional-content ul li + li {
  margin-top: 10px;
}
.single-alphasense_resources .additional-content ul li::before {
  content: "";
  background-color: #0160ff;
  height: 10px;
  width: 10px;
  margin-top: 7px;
}
.single-alphasense_resources .mktoForm .mktoGutter {
  display: none;
}
.page-inner-hero .form-wrapper {
  background: white;
  padding: 1rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  color: black !important;
}
.page-inner-hero .form-wrapper a {
  color: black !important;
}
.mktoFormRow .mktoFieldWrap > div[id^=nb-field-] div.nb-feedback {
  position: absolute !important;
  top: 49px !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.trustradius-tqw .incentivized {
  display: none;
}
.trustradius-tqw div.tr-fancy div.tr-review-teaser:before {
  display: none;
}
.trustradius-tqw p, .tr-review-date, .tr-review-title a, .tr-review-byline span, .tr-card-read-more a {
  font-family: cera-pro, sans-serif !important;
}
.trustradius-tqw p {
  color: #000000 !important;
}
.tr-review-title a {
  color: #000000 !important;
  font-size: 20px !important;
}
.tr-card-read-more a {
  color: #0360ff !important;
  font-size: 16px !important;
}
.trustradius-tqw div.tr-fancy div.tr-review-summary {
  padding: 20px 20px 20px 0px !important;
}
@media (max-width: 768px) {
  .trustradius-tqw div.tr-fancy div.tr-review-summary {
    padding: 20px 20px 20px 20px !important;
  }
}
.trustradius-tqw div.tr-fancy div.tr-card div.tr-card-read-more {
  border-top: none !important;
}
.trustradius-tqw a:hover {
  cursor: pointer;
}
.trustradius-tqw div.tr-fancy a.tr-previous-link, .trustradius-tqw div.tr-fancy a.tr-next-link {
  background-color: #bbb;
  background: url(https://www.alpha-sense.com/wp-content/themes/alphasense_blog/assets/images/slider-arrow.svg) no-repeat center !important;
  background-size: 100% !important;
  width: 39px !important;
  height: 39px !important;
}
.trustradius-tqw div.tr-fancy div.tr-left-navigation, .trustradius-tqw div.tr-fancy div.tr-right-navigation {
  opacity: 1 !important;
}
.trustradius-tqw div.tr-fancy div.tr-left-navigation > a > span, .trustradius-tqw div.tr-fancy div.tr-right-navigation > a > span {
  display: none !important;
}
.trustradius-tqw div.tr-fancy a.tr-next-link {
  transform: scaleX(-1) translate(0, -6%);
  -webkit-transform: scaleX(-1) translate(0, -6%);
}
.trustradius-tqw div.tr-fancy div.tr-right-navigation {
  right: 9px !important;
}
.trustradius-tqw div.tr-fancy div.tr-container-fluid {
  max-width: 90%;
}
.trustradius-tqw div.tr-fancy div.tr-review-summary {
  border: none !important;
}
.trustradius-tqw div.tr-fancy div.tr-card div.tr-card-quotes div.tr-card-quotes-after-outline {
  display: none !important;
}
.trustradius-tqw div.tr-fancy div.tr-card div.tr-card-quotes:after {
  border-color: rgba(255, 255, 255, 0) transparent;
}
.media-news {
  padding: 80px 15px;
  position: relative;
}
.media-news:first-child {
  margin-top: 70px;
}
.media-news .heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.media-news .heading h2 {
  margin-bottom: 0 !important;
}
.media-news .slick-track {
  display: flex;
  flex-wrap: wrap;
}
.media-news .slick-track .press, .media-news .slick-track .media-post {
  height: auto !important;
  flex: auto;
  max-width: none;
}
.media-news .media-post .tile-link {
  min-height: 388px;
}
.media-news .media-post .tile-link .case-study-image-container {
  background: #fff;
}
.media-news .media-post .tile-link .case-study-image-container img {
  object-fit: initial;
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.media-news .press:not(.slick-slide) {
  margin-bottom: 30px;
}
.media-news .press .tile-link {
  border-bottom: none;
  min-height: 184px;
}
.media-news .press .text-h {
  padding: 25px 20px !important;
}
.media-news .press .text-h h3 {
  font-size: 20px !important;
  line-height: 24px !important;
}
.media-news .date {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 10px;
}
.media-news .slick-arrow.slick-prev {
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  left: -60px;
}
.media-news .slick-arrow.slick-next {
  transform: scaleX(-1) translate(0, -50%);
  -webkit-transform: scaleX(-1) translate(0, -50%);
  -ms-transform: scaleX(-1) translate(0, -50%);
  right: -60px;
}
@media screen and (max-width: 1366px) {
  .media-news .news-slider {
    max-width: calc(100% - 120px);
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 1366px) {
  .media-news .news-slider {
    max-width: 100%;
  }
  .media-news .slick-arrow.slick-prev {
    left: 0;
    z-index: 2;
  }
  .media-news .slick-arrow.slick-next {
    right: 0;
    z-index: 2;
  }
}
.awards {
  padding: 80px 15px;
  position: relative;
}
.awards .container {
  position: relative;
  z-index: 2;
}
.awards .heading {
  text-align: center;
  margin-bottom: 70px;
}
.awards .award-h {
  height: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.awards .award-h a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.awards .award-h img {
  max-width: 80% !important;
  max-height: 80%;
  width: auto;
  height: auto;
}
.awards .col-md-4 {
  margin-bottom: 28px;
}
.awards .col-md-4:nth-child(3n + 2) {
  margin-top: -47px;
}
@font-face {
  font-family: "cera-pro";
  src: url("../fonts/cera-pro/cera_pro_bold-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cera_pro_bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "cera-pro";
  src: url("../fonts/cera-pro/cera-pro-400.woff2") format("woff2"), url("../fonts/cera-pro/cera-pro-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "cera-pro";
  src: url("../fonts/cera-pro/cera_pro_regular_italic-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cera_pro_regular_italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "cera-pro";
  src: url("../fonts/cera-pro/cera_pro_bold_italic-webfont.woff2") format("woff2"), url("../fonts/cera-pro/cera_pro_bold_italic-webfont.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "breve";
  src: url("../fonts/breve/breve-300.woff2") format("woff2"), url("../fonts/breve/breve-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "breve";
  src: url("../fonts/breve/breve-400.woff2") format("woff2"), url("../fonts/breve/breve-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "breve";
  src: url("../fonts/breve/breve-italic-400.woff2") format("woff2"), url("../fonts/breve/breve-italic-400.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "breve";
  src: url("../fonts/breve/breve-700.woff2") format("woff2"), url("../fonts/breve/breve-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "breve";
  src: url("../fonts/breve/breve-italic-700.woff2") format("woff2"), url("../fonts/breve/breve-italic-700.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "breve";
  src: url("../fonts/breve/breve-800.woff2") format("woff2"), url("../fonts/breve/breve-800.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "breve";
  src: url("../fonts/breve/breve-italic-800.woff2") format("woff2"), url("../fonts/breve/breve-italic-800.woff") format("woff");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "breve-text";
  src: url("../fonts/breve/breve_text_bold-webfont.woff2") format("woff2"), url("../fonts/breve/breve_text_bold-webfont.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
