/*
* Theme Name: Clinical Research IO
* Description: WordPress theme for clinicalresearch.io
* Author: Stefan Malic
* Version: 1.0
*/

@font-face {
  font-family: "Europa";
  src: local("Europa Bold"), local("Europa-Bold"),
    url("./assets/fonts/Europa-Bold.woff2") format("woff2"),
    url("./assets/fonts/Europa-Bold.woff") format("woff"),
    url("./assets/fonts/Europa-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Europa";
  src: local("Europa Regular"), local("Europa-Regular"),
    url("./assets/fonts/Europa-Regular.woff2") format("woff2"),
    url("./assets/fonts/Europa-Regular.woff") format("woff"),
    url("./assets/fonts/Europa-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Europa";
  src: local("Europa Light"), local("Europa-Light"),
    url("./assets/fonts/Europa-Light.woff2") format("woff2"),
    url("./assets/fonts/Europa-Light.woff") format("woff"),
    url("./assets/fonts/Europa-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

:root {
  --orange: #e57e2b;
  --t-navy: #00263a;
  --navy: #002639;
  --brown: #2b2b2b;
  --dBrown: #271313;
  --dNavy: #0d2029;
  --borderColor: #e1e1e1;
  --btnHover: #ff992a;
}

.hidden {
  display: none;
}

header .header-content {
  display: none;
}
p#breadcrumbs {
  display: none;
}

body {
  font-family: "Europa";
  font-weight: normal;
  font-size: 18px;
  color: #656565;
}

@media all and (max-width: 992px) {
  body.hide-overflow {
    overflow: hidden;
  }
}

img {
  max-width: 100%;
  height: auto;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.error404 .breadcrumbs {
  display: none;
}

a {
  text-decoration: none;
}

input:focus,
select:focus,
button:focus {
  outline: none;
}

.mobile-nav {
  display: none;
}

.request-cta {
  height: 60px;
  line-height: 60px;
  font-size: 17px;
  background: var(--orange);
  color: #fff;
  font-weight: 400;
  display: block;
  width: 100%;
  max-width: 188px;
  text-align: center;
  box-sizing: border-box;
  transition: 0.15s ease-in-out;
}

.request-cta:hover {
  background: var(--btnHover);
}

.crio-rating a {
  color: var(--t-navy);
}

.crio-rating a:hover {
  color: var(--orange);
}

/* Start: Article tooltip */
.article__tooltip {
  position: absolute;
  bottom: -5px;
  right: -30px;
  font-size: 16px;
  opacity: 0;
  transition: 0.2s ease;
}
.article__title:hover .article__tooltip {
  opacity: 1;
}
.article__tooltip-text {
  font-size: 12px;
  line-height: 18px;
  visibility: hidden;
  width: 190px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 40px;
  opacity: 0;
  transition: opacity 0.3s;
}
.article__tooltip-text::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0%;
  margin-left: -10px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #555 transparent transparent;
}
.article__tooltip:hover .article__tooltip-text {
  visibility: visible;
  opacity: 1;
}
/* End: Article tooltip */

header {
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 16px;
  background-position: center;
}

header.header-solutions {
  background-size: auto;
}

.header-nav--scrollable {
  background-color: #fff;
}

.header-nav {
  font-size: 16px;
  width: 100%;
  padding: 18px 0 20px;
}

.header-nav .container,
header .container {
  max-width: 1310px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
}

.header-logo {
  max-width: 110px;
}

.header-logo a {
  display: block;
  font-size: 0;
}

.header-nav--white a {
  color: var(--t-navy);
}

.header-nav a {
  color: #0d1557;
}

.header-nav .container,
.header-nav {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  align-items: center;
}

.header-primary-nav ul li {
  margin-right: 60px;
}

.header-primary-nav > ul > li > a {
  text-transform: uppercase;
}

.header-primary-nav ul li:last-child {
  margin-right: 0;
}

.header-primary-nav ul li a,
.header-right-nav ul li a {
  /*transition: .15s ease-in-out;*/
}

.header-primary-nav ul li:hover > a,
.header-primary-nav ul li a:hover,
.header-right-nav ul li a:hover {
  color: var(--orange);
}

.header-primary-nav ul,
.header-right-nav ul {
  display: flex;
  align-items: center;
}

.header-right-nav ul li {
  margin-right: 60px;
}

.header-right-nav ul li:last-child {
  margin-right: 0;
}

.header-right-nav ul li.request-demo a {
  display: block;
  font-size: 17px;
  background: var(--orange);
  font-weight: 400;
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  box-sizing: border-box;
  color: #fff; /*** Color Override ***/
}

.header-right-nav ul li.request-demo a:hover {
  background: var(--btnHover);
  color: #fff;
}

.header-nav--white li.request-demo a {
  color: #fff;
}

.header-nav--white {
  padding: 18px 0 20px;
}

header .header-content {
  color: #fff;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0 150px;
}

header .header-content h1 {
  font-size: 58px;
  line-height: 78px;
  margin: 0 0 20px;
}

.header-content-title p span,
header .header-content h1 span {
  position: relative;
  display: inline-block;
}

.header-content span::after {
  content: "";
  position: absolute;
  height: 22%;
  bottom: -10px;
  left: 0;
  width: 100%;
  background-image: url(/wp-content/uploads/2020/07/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  background-position-x: center;
}

body.blog .sidebar-newsletter {
  display: none;
}

header .header-content h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  margin: 0 0 30px;
}

.page-template-solutions .header-content p {
  color: var(--t-navy);
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

header .header-content .request-cta {
  margin: 0 auto;
}

.header-nav--scrollable {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: top 0.5s ease-in-out;
}

.nav-up {
  top: -100%;
}

.highlight-cards {
  position: relative;
  display: flex;
  align-items: flex-start;
  max-width: 1250px;
  padding: 0 15px;
  margin: -80px auto 0;
  box-sizing: border-box;
}

.highlight-card {
  position: relative;
  z-index: 99999;
  max-width: 285px;
  min-width: 285px;
  width: 100%;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 17px 25px;
  font-size: 16px;
  line-height: 24px;
  background: #fff;
  margin-right: 20px;
}

.slick-slide:focus {
  outline: none;
}

.highlight-card-content {
  overflow: hidden;
  transition: 0.3s ease-in-out;
  max-height: 130px;
}

.highlight-card-content p {
  margin: 0 0 15px;
}

.highlight-card:hover .highlight-card-content {
  max-height: 30vh;
}

.highlight-card h4 {
  margin: 0 0 10px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 14px;
}

.highlight-card h5 {
  margin: 0 0 10px;
  color: var(--t-navy);
  font-size: 16px;
}

.highlight-card img {
  position: relative;
  top: 3px;
}

.highlight-card h3 {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 15px;
  color: var(--t-navy);
}

.highlight-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom, transparent, #fff);
  width: 100%;
  height: 100px;
  transition: 0.2s ease-in-out;
}

.highlight-card:hover::after {
  height: 0;
}

.highlight-cards .slick-list {
  min-height: 400px;
  overflow: visible;
  overflow-x: hidden;
}

.highlight-cards .slick-prev,
.highlight-cards .slick-next {
  position: absolute;
  background: #fff;
  color: var(--orange);
  position: absolute;
  top: 70px;
  z-index: 999;
  font-size: 28px;
  border-radius: 100%;
  height: 55px;
  width: 55px;
  line-height: 60px;
  text-align: center;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #fafafa;
  cursor: pointer;
  opacity: 0;
  transition: 0.15s ease;
}

.highlight-cards-holder:hover .slick-prev,
.highlight-cards-holder:hover .slick-next {
  opacity: 1;
}

.highlight-cards .slick-prev svg {
  position: relative;
  left: -2px;
  top: 1px;
}

.highlight-cards .slick-next svg {
  position: relative;
  right: -2px;
  top: 1px;
}

.highlight-cards .slick-prev {
  left: -70px;
}

.highlight-cards .slick-next {
  right: -50px;
}

.quote-slider {
  position: relative;
  margin-top: 100px;
}

.quote-slider .container {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.quote-slider .container h4,
.quote-slider .container p {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--t-navy);
}

.quote-slider .container img {
  display: block;
  max-width: 48px;
  margin: 15px auto;
  border-radius: 100px;
}

.quote-slider .container p {
  margin: 0 0 20px;
}

.quote-slider .container h4 {
  margin: 0;
  font-weight: 600;
}

.logo-slider {
  margin-top: 75px;
}

.logo-slider img {
  max-width: 130px;
}

.logo-slider .container {
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

.crio-rating {
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  color: var(--t-navy);
  font-size: 16px;
  margin-bottom: 80px;
}

.crio-rating-stars {
  color: var(--orange);
  font-size: 18px;
  margin-right: 20px;
}

section.grey {
  background: #f2f2f2;
  padding: 60px 15px;
  box-sizing: border-box;
}

.video-case-study.video-case-study--bgNavy .container,
.bg-navy {
  background: var(--navy);
}

.bg-brown {
  background: var(--brown);
}

.video-case-study--bgDark .container,
.bg-dBrown {
  background: var(--dBrown);
}

.bg-dNavy {
  background: var(--dNavy);
}

.bg-dark,
.bg-dark a {
  color: #fff;
}

.image-only {
  font-size: 0;
}

.nopadding {
  padding: 0;
}

.content-box-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto 35px;
  min-height: 560px;
}

.content-box-container img {
  width: 100%;
  min-height: 370px;
  object-fit: cover;
}

.content-box {
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.content-box-inner {
  max-width: 70%;
  margin: 0 auto;
}

.content-box h3 {
  font-size: 72px;
  line-height: 1;
  margin: 0 0 35px;
}

.content-box p {
  margin: 0 0 30px;
  font-size: 22px;
  line-height: 37px;
  font-weight: 300;
}

.content-box-cta {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
}

.content-box-cta svg {
  position: relative;
  top: 1px;
  left: 8px;
  transition: 0.2s ease-in-out;
}

.content-box-cta:hover svg {
  left: 17px;
}

.content-box-ctms {
  margin-top: 70px;
}

.content-box-ctms .content-box.image-only {
  flex: 0 1 53%;
}

.content-box-ctms .content-box-text {
  flex: 0 1 47%;
}

.content-box-ctms .content-box.image-only img {
  margin-left: auto;
  display: block;
  position: relative;
  top: -87px;
}

.content-box-container.equal-cols > div {
  flex: 0 1 50%;
}

.content-box-container.auto-height {
  min-height: auto;
  max-height: 100%;
  height: auto;
}

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

.content-box-container.space-between {
  justify-content: space-between;
}

.content-box-container.space-between > div {
  flex: 0 1 48.6%;
}

.mb-0 {
  margin-bottom: 0;
}

.simple-content-section {
  padding: 120px 0 100px;
}

.simple-content-section .container {
  max-width: 910px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
}

.simple-content-section .request-cta {
  display: inline-block;
  margin-top: 55px;
}

.simple-content-section h3 {
  color: var(--t-navy);
  font-size: 48px;
  line-height: 66px;
  margin: 0;
}

.simple-content-section-text {
  flex: 0 1 auto;
  max-width: 460px;
  padding-top: 10px;
}

.simple-content-section-text p {
  font-size: 22px;
  line-height: 37px;
  margin: 0 0 20px;
  color: #656565;
}

.simple-content-section-ctas {
  display: flex;
  margin-top: 50px;
}

.btn-outline {
  display: block;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 20px 0;
  max-width: 180px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  box-sizing: border-box;
  transition: 0.2s ease-in-out;
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

.btn-outline-rounded {
  border-radius: 15px;
}

.simple-content-section-ctas a:first-child {
  margin-right: 35px;
}

.news-block {
  background: #fafafa;
  padding: 20px 15px 70px;
  box-sizing: border-box;
}

.news-block.related-articles {
  background: #fff;
}

.news-block.related-articles .news-block-title h3 {
  margin-top: 0;
}

@media all and (max-width: 992px) {
  .news-block {
    padding: 20px 15px 50px;
  }
}

.news-block-title h3 {
  text-align: center;
  color: var(--t-navy);
  font-size: 42px;
  line-height: normal;
  font-weight: 400;
  margin-bottom: 50px;
}

.news-block .container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.news-block-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog-card {
  border: 1px solid var(--borderColor);
  background: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 425px;
  margin-bottom: 25px;
  box-shadow: 10px 10px 20px rgba(20, 20, 20, 0);
  flex: 0 1 29%;
  transition: 0.2s ease-in-out;
}

.blog-card:hover {
  box-shadow: 0 0 20px rgba(20, 20, 20, 0.25);
}

.blog-card-img {
  display: block;
  height: 200px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--borderColor);
}

.blog-card-category {
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
}

h3 .blog-card-category {
  display: block;
}

.blog-card-content {
  padding: 25px 35px;
  box-sizing: border-box;
}

.blog-card-title {
  color: var(--navy);
  font-size: 18px;
  line-height: 29px;
}

.blog-card-large:hover h3,
.blog-card:hover .blog-card-title {
  text-decoration: underline;
}

.blog-card-large:hover h3 span {
  text-decoration: inherit;
}

.blog-card-large {
  display: block;
  position: relative;
  height: 100%;
  flex: 0 1 38%;
  max-width: 100%;
}

.blog-card-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.blog-card-large h3 {
  color: #fff;
  font-size: 22px;
  line-height: 34px;
  margin: 0;
  position: absolute;
  bottom: 65px;
  left: 35px;
  max-width: 85%;
}

.news-block-load {
  margin: 30px auto 0;
  max-width: 200px;
  font-weight: 600;
}

.stats {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}

.stats .container {
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.stats-header {
  display: flex;
  justify-content: space-between;
  color: #cecece;
}

.stats-header a {
  color: #cecece;
}

.stats-header-item.active a,
.stats-header-item.active {
  color: var(--orange);
}

.stats-header-item {
  display: flex;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.stats-header-item span:first-child {
  font-size: 72px;
  line-height: 1em;
  font-weight: 700;
  margin-right: 15px;
}

.stats-header-item span:last-child {
  font-size: 16px;
  line-height: 20px;
  position: relative;
  top: 2px;
}

.stats-header > span {
  width: 2px;
  background: #e6e6e6;
  display: block;
}

.stats-header-item--inSlide {
  display: none;
}

.stat-items {
  margin-top: 60px;
  position: relative;
}

.stat-item-wrapper {
  display: flex;
  justify-content: space-between;
}

.stat-item-left {
  max-width: 540px;
  width: 100%;
}

.stat-item-left h3 {
  margin: 0 0 30px;
  font-size: 38px;
  color: var(--orange);
}

.stat-item-left p {
  color: #656565;
  font-size: 22px;
  line-height: 37px;
  margin: 0;
}

.stat-item-right {
  max-width: 485px;
  width: 100%;
}

.stat-quote p {
  position: relative;
  color: #656565;
  font-size: 25px;
  line-height: 44px;
  margin: 0;
}

.stat-quote p::before {
  position: absolute;
  top: -15px;
  left: -15px;
  font-family: "Font Awesome 5 Free";
  content: "\f10d";
  font-weight: 900;
  font-size: 12px;
}

.stat-quote p::after {
  position: absolute;
  bottom: -50px;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f10e";
  font-weight: 900;
  font-size: 12px;
}

.stat-author {
  display: flex;
  align-items: flex-start;
  margin-top: 70px;
}

.stat-author img {
  max-width: 65px;
  min-width: 65px;
  width: 100%;
  max-height: 65px;
  object-fit: cover;
  margin-right: 22px;
  border-radius: 100px;
}

.stat-author-info {
  position: relative;
  font-size: 22px;
  color: var(--t-navy);
}

.stat-author-info strong {
  display: block;
  margin-bottom: 10px;
}

.stat-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 85px;
}

.stat-pagination ul {
  display: flex;
  font-size: 0;
  margin: 0 25px;
}

.stat-pagination ul li {
  margin-right: 16px;
}

.stat-pagination ul li:last-child {
  margin-right: 0;
}

.stat-pagination ul li button {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  font-size: 0;
  height: 14px;
  width: 14px;
  background: #dfdfdf;
  border-radius: 100px;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.stat-pagination ul li.slick-active button {
  background: var(--orange);
}

.stat-pagination .stat-arrow-left {
  order: 0;
}

.stat-pagination ul {
  order: 1;
}

.stat-pagination .stat-arrow-right {
  order: 2;
}

.stat-pagination .stat-arrow-left,
.stat-pagination .stat-arrow-right {
  color: var(--orange);
  width: 33px;
  padding: 6px 0;
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
}

.cta-section {
  background: #fff;
  text-align: center;
  padding-bottom: 100px;
}

.cta-section .container {
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

.cta-section h3 {
  font-size: 32px;
  color: var(--t-navy);
  font-weight: 400;
  margin: 0 0 35px;
  position: relative;
}

.cta-section h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #e6e6e6;
  height: 2px;
  width: 100%;
}

.cta-section h3 span {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 70px;
}

.cta-section h4 {
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 400;
  margin: 0;
}

.cta-section-columns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.cta-section-column {
  flex: 0 1 33%;
}

.cta-section-column p {
  line-height: 26px;
}

.cta-section-column p a {
  color: #656565;
  text-decoration: underline;
}

.cta-section-column .request-cta {
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 63px;
}

footer {
  background: #0d2b3a;
  color: #b2b2b2;
  padding-top: 90px;
  padding-bottom: 90px;
}

footer .container {
  max-width: 1200px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

footer a {
  color: #b2b2b2;
}

footer a:hover {
  text-decoration: underline;
}

footer h4 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 22px;
}

.footer-logo {
  display: block;
  max-width: 175px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
}

.footer-column {
  flex: 0 1 auto;
  font-size: 18px;
}

.footer-column ul li {
  margin: 0 0 20px;
}

.footer-contact {
  font-size: 14px;
  line-height: 25px;
  margin-top: 55px;
}

.footer-contact p {
  margin: 0 0 25px;
}

.footer-contact p a {
  color: #b2b2b2;
  font-size: 14px;
}

.footer-contact p:last-child {
  margin: 0;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-bottom-last {
  margin-top: 40px;
}

.footer-bottom-left,
.footer-bottom-right {
  flex: 0 1 auto;
}

.footer-bottom-left a {
  color: #fff;
  font-size: 22px;
  display: inline-block;
  margin-right: 15px;
}

.footer-bottom-right {
  font-size: 14px;
}

.footer-bottom-right a {
  display: inline-block;
  margin-right: 65px;
}

.footer-compliance {
  display: flex;
  align-items: center;
}

.footer-compliance img {
  max-height: 65px;
  margin-right: 40px;
}

.footer-compliance img:last-child {
  margin-right: 0;
}

.header-solutions .header-content {
  max-width: 1100px;
}

.text-navy {
  color: var(--t-navy);
}

.header-np {
  padding: 0;
}

.header-np__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.header-np > div:not(.header-np__overlay),
.header-np > section:not(.header-np__overlay) {
  position: relative;
  z-index: 5;
}

.header-fh {
  height: 95vh;
}

.header-fh .header-content {
  padding: 0;
  margin-top: 120px;
}

.text-block {
  padding: 100px 15px;
  box-sizing: border-box;
}

.text-block .container {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
}

.text-block p {
  color: var(--t-navy);
  font-size: 22px;
  line-height: 50px;
}

.solutions-overview {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  background: #fafafa;
  padding: 120px 15px;
  box-sizing: border-box;
}

.solutions-overview .container {
  max-width: 1200px;
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}

.solutions-overview-scrollable,
.solutions-overview-left {
  max-width: 480px;
  width: 100%;
  position: relative;
}

.solutions-overview-left h3 {
  font-weight: 700;
  color: #0b2836;
  font-size: 38px;
  line-height: 51px;
  margin: 0;
}

.solutions-overview-left ul {
  margin-top: 50px;
}

.solutions-overview-left ul li {
  font-weight: 600;
  color: #868686;
  font-size: 18px;
  line-height: 27px;
  border-left: 2px solid #dedede;
  padding: 7px 0 7px 25px;
  transition: 0.3s ease;
  cursor: pointer;
}

.solutions-overview-left ul li:last-child {
  padding-bottom: 0;
}

.solutions-overview-left ul li[data-id="soi-1"].active {
  color: var(--navy);
  border-left: 2px solid var(--navy);
}

.solutions-overview-left ul li[data-id="soi-2"].active {
  color: #2a2a2a;
  border-left: 2px solid #2a2a2a;
}

.bg-esource {
  background-color: #2a2a2a;
}

.bg-ereg {
  background-color: #271313;
}

.solutions-overview-left ul li[data-id="soi-3"].active {
  color: #271313;
  border-left: 2px solid #271313;
}

.content-box-stacked {
  flex-direction: column;
  max-width: 530px;
}

.content-box-stacked .content-box-inner {
  padding: 60px 15px 40px;
  box-sizing: border-box;
}

.content-box-stacked .content-box-inner p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}

.content-box-stacked .content-box-inner p strong {
  font-weight: 600;
}

.content-box-stacked .content-box-inner .content-box-cta {
  font-size: 18px;
}

.content-box-stacked .content-box-inner h3 {
  margin: 0 0 30px;
}

.solutions-overview-scrollable {
  display: flex;
  flex-direction: column;
}

.solutions-overview-item {
  margin-bottom: 130px;
}

.solutions-overview-item:last-child {
  margin-bottom: 0;
}

.solutions-overview-item .content-box-inner {
  padding: 55px 50px 60px;
  max-width: 100%;
}

.solutions-overview-item .content-box-inner h3 {
  font-size: 58px;
  font-weight: 500;
}

.solutions-overview-item .content-box-inner p {
  margin: 0 0 40px;
}

@media all and (max-width: 992px) {
  .solutions-overview-item .content-box-inner p {
    margin: 0 0 20px;
  }
}

.industry-compliance {
  background: #34605b;
  padding: 60px 15px 75px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 130px;
}

.industry-compliance-demo {
  margin-bottom: 80px;
}

.industry-compliance .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.industry-compliance h3 {
  text-transform: uppercase;
  color: #fff;
  font-size: 32px;
  line-height: normal;
  font-weight: 400;
  margin: 0;
}

.industry-compliance-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.industry-compliance-logos img {
  max-height: 140px;
}

.text-white {
  color: #fff;
}

.header-midHeight {
  height: 600px;
  position: relative;
  padding: 0 30px;
  box-sizing: border-box;
}

.header-contentCentered .header-content {
  margin: 0;
  padding: 0;
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header-contentCentered .header-content.text-left {
  justify-content: flex-start;
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
}

.header-content.header-content-title.text-left
  .header-content-title__flex-helper {
  margin: auto 0;
  padding: 0 15px;
}
.header-content.header-content-title.text-left p {
  margin: 0;
  padding: 0;
}

.header-content-title .header-content-title__content {
  max-width: 466px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.header-content-title .header-content-title__content,
.header-content-title .header-content-title__content p {
  font-size: 22px;
  line-height: 33px;
}

.header-content .button {
  background-color: #f48d1c;
  color: #fff;
  box-shadow: 0px 4px 14px 0px rgba(109, 109, 109, 0.25);
  display: inline-block;
  font-weight: bold;
  padding: 22px 24px;
  font-size: 16px;
  line-height: 20px;
  margin-top: 20px;
}

.header-midHeight.header-remote-monitoring {
  background-position: right;
  background-size: cover;
}

.inner-nav {
  padding: 0 15px;
  box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 70px;
}

.inner-nav .container {
  max-width: 1440px;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  margin: 0 auto;
}

.inner-nav .container ul {
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-nav .container ul li {
  margin-right: 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: rgba(13, 43, 58, 0.33);
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.inner-nav .container ul li:hover {
  color: var(--orange);
}

.inner-nav .container ul li:last-child {
  margin-right: 0;
}

.feature-blocks {
  padding: 0 15px;
  box-sizing: border-box;
}

.feature-blocks .container {
  max-width: 1350px;
  margin: 0 auto;
}

.feature-blocks-item {
  display: flex;
  align-items: center;
}

.feature-blocks-item .feature-image {
  flex: 0 1 50%;
  background: #f8f8f8;
  min-height: 620px;
  position: relative;
}

.feature-blocks-item .feature-image img {
  width: 100%;
  max-width: 615px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(15, 15, 15, 0.1);
  border: 1px solid #f2f2f2;
}

.feature-blocks-item .feature-content {
  flex: 0 1 50%;
  padding-left: 90px;
  box-sizing: border-box;
}

.feature-blocks-item .feature-content a,
.feature-blocks-item .feature-content a:hover,
.feature-blocks-item .feature-content a:active,
.feature-blocks-item .feature-content a:visited {
  color: var(--orange);
}

.feature-blocks-item .feature-content a:hover {
  text-decoration: underline;
}

.feature-blocks-row-alt .feature-blocks-item .feature-content {
  padding-left: 0;
  padding-right: 90px;
}

.feature-blocks-item .feature-content h4 {
  font-size: 18px;
  line-height: 21px;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 15px;
}

.feature-blocks-item .feature-content h3 {
  font-size: 35px;
  line-height: normal;
  font-weight: 700;
  color: var(--t-navy);
  margin: 0 0 5px;
}

.feature-blocks-item .feature-content p {
  font-size: 22px;
  color: #686868;
  line-height: 36px;
}

.video-case-study {
  padding: 0 15px;
  box-sizing: border-box;
}

.video-case-study .container {
  max-width: 1350px;
  margin: 70px auto;
  display: flex;
  align-items: center;
  min-height: 550px;
  background: #2a2a2a;
}

.video-case-study .container .video-case-study-player {
  max-width: 675px;
  width: 100%;
  height: 550px;
}

.video-case-study .container .video-case-study-content {
  padding-left: 90px;
  padding-right: 40px;
  box-sizing: border-box;
  color: #fff;
}

.video-case-study .container .video-case-study-content img {
  display: block;
  margin: 0 0 50px;
}

.video-case-study .container .video-case-study-content p {
  margin: 0 0 40px;
  font-size: 22px;
  line-height: 36px;
  max-width: 500px;
}

.video-case-study .container .video-case-study-content h4 {
  margin: 0;
  font-size: 21px;
  line-height: 36px;
}

.video-case-study .container .video-case-study-cta {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  margin-top: 35px;
}

.video-case-study .container .video-case-study-cta svg {
  position: relative;
  top: 1px;
  left: 8px;
  transition: 0.2s ease-in-out;
}

.video-case-study .container .video-case-study-cta:hover svg {
  left: 17px;
}

.video-case-study-player {
  position: relative;
  width: 100%;
}

.video-case-study-player iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%;
}

.solutions-nav {
  padding: 0 15px;
  box-sizing: border-box;
  margin-top: 70px;
  margin-bottom: 160px;
}

.solutions-nav .container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 160px;
}

.solutions-nav .container a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 33%;
  text-align: center;
  color: #fff;
  height: 100%;
  font-size: 28px;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}

.solutions-nav .container a svg {
  position: relative;
  top: 0px;
  left: 0;
  font-size: 36px;
  font-weight: 100;
  transition: 0.2s ease-in-out;
}

.solutions-nav .container a:first-child {
  background: var(--navy);
}

.solutions-nav .container a:first-child svg {
  margin-right: 20px;
}

.solutions-nav .container a:last-child svg {
  margin-left: 20px;
}

.solutions-nav .container a:last-child {
  background: var(--dBrown);
}

.solutions-nav .container a:not(.solutions-nav-stacked):first-child:hover svg {
  left: -8px;
}

.solutions-nav .container a:not(.solutions-nav-stacked):last-child:hover svg {
  left: 8px;
}

.solutions-nav .container a.solutions-nav-stacked {
  position: relative;
  background: #f7f7f7;
  color: #333;
  flex-direction: column;
  line-height: 0;
}

.solutions-nav .container a.solutions-nav-stacked svg {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
}

.solutions-nav .container a.solutions-nav-stacked:hover svg {
  top: 13%;
}

.header-content p {
  font-size: 22px;
  color: #ffffff;
  line-height: 33px;
  margin: 0 0 30px;
}

header .header-content .request-cta--leftAlign {
  margin: 0 auto 0 0;
}

header .header-two-cols {
  display: flex;
  max-width: 1280px;
  width: 100%;
  justify-content: space-between;
  padding: 0;
  height: 100%;
}

.header-two-cols .header-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
  box-sizing: border-box;
}

.header-two-cols .header-left p {
  max-width: 510px;
}

.header-two-cols .header-right {
  max-width: 650px;
  align-self: flex-end;
  font-size: 0;
}

.feature-layers {
  background: #f8f8f8;
  width: 100%;
  max-width: 50%;
  min-height: 620px;
  position: relative;
}

.feature-layers img {
  position: absolute;
  max-width: 80%;
  border: 1px solid #f2f2f2;
}

.feature-layers-back {
  top: 70px;
  left: 30px;
  z-index: 1;
}

.feature-layers-front {
  bottom: 70px;
  right: 30px;
  z-index: 2;
  box-shadow: 0 0 50px rgba(15, 15, 15, 0.1);
}

.feature-layers--flip .feature-layers-front,
.feature-blocks-row-alt .feature-layers-front {
  top: 70px;
  left: 30px;
  bottom: auto;
  right: auto;
}

.feature-layers--flip .feature-layers-back,
.feature-blocks-row-alt .feature-layers-back {
  bottom: 70px;
  right: 30px;
  top: auto;
  left: auto;
}

.header-content-title h2 {
  font-size: 58px;
  font-weight: 400;
  margin: 0;
}

.header-content-title p {
  margin: 0 0 20px;
  font-size: 58px;
  color: #ffffff;
  line-height: normal;
  max-width: 780px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

.header-content-title p:last-child {
  margin: 0;
}

.text-block-2 {
  padding: 120px 0;
}

.text-block-2 .container {
  max-width: 910px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

.text-block-2 h2 {
  font-size: 58px;
  font-weight: 400;
  color: var(--navy);
  line-height: normal;
  margin: 0 0 30px;
  text-align: center;
}

.text-block-2 p {
  font-size: 22px;
  color: #686868;
  line-height: 37px;
  margin: 0;
  text-align: center;
}

.outset-section {
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.outset-section .container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.outset-section .outset-content {
  max-width: 505px;
}

.outset-section .outset-content-category {
  display: block;
  text-transform: uppercase;
  color: var(--orange);
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}

.outset-section .outset-content h3 {
  margin: 0 0 30px;
  font-size: 32px;
  color: var(--navy);
}

.outset-section .outset-content p {
  color: #686868;
  font-size: 22px;
  line-height: 36px;
}

.outset-section .outset-image {
  max-width: 550px;
  position: relative;
  font-size: 0;
  padding: 70px 60px 70px 0;
}

.outset-section .outset-image-background {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 100%;
  z-index: -1;
}

.outset-section.outset-section-alt {
  margin-top: 200px;
  margin-bottom: 70px;
}

.outset-section-alt .container {
  flex-direction: row-reverse;
}

.outset-section.outset-section-alt .outset-image {
  padding: 100px 0 80px 60px;
}

.outset-section.outset-section-alt .outset-image-background {
  left: 0px;
  right: auto;
}

.blog-list {
  box-sizing: border-box;
  margin: 0 auto;
  background: #f6f6f6;
  padding: 100px 15px 55px;
}

.blog-list .container {
  max-width: 1180px;
  margin: 0 auto;
}

.blog-list-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-list h3 {
  font-size: 42px;
  color: var(--dNavy);
  line-height: normal;
  margin: 0 0 65px;
  font-weight: 400;
}

.blog-list-item {
  margin-bottom: 40px;
  flex: 0 1 31%;
}

.blog-list-item img {
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.blog-list span {
  display: block;
  text-transform: uppercase;
  color: var(--orange);
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 25px;
}

.blog-list h4 {
  margin: 0 0 17px;
  font-size: 18px;
  line-height: 29px;
  color: var(--navy);
}

.blog-list p {
  color: #656565;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.blog-list-item:hover h4 {
  text-decoration: underline;
}

.page-nav {
  max-width: 1470px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 120px 15px;
  flex-wrap: wrap;
}

.page-nav .container {
  display: flex;
  align-items: center;
  height: 160px;
}

.page-nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 33%;
  text-align: center;
  color: #fff;
  height: 100%;
  font-size: 28px;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}

.page-nav-item svg {
  position: relative;
  top: 0;
  left: 0;
  font-size: 36px;
  font-weight: 100;
  transition: 0.2s ease-in-out;
}

.page-nav-item {
  background: #f7f7f7;
}

.page-nav-item--navy {
  background: var(--t-navy);
}

.page-nav-item--dark {
  background: var(--dBrown);
}

.page-nav-item--grey {
  color: var(--t-navy);
}

.page-nav-item svg {
  margin-left: 20px;
}

.page-nav-item:hover svg {
  left: 8px;
}

.page-nav h3 {
  font-size: 42px;
  line-height: normal;
  color: var(--t-navy);
  flex: 0 1 100%;
  text-align: center;
  margin: 0 0 90px;
  font-weight: 400;
}

.team-photos {
  max-width: 1440px;
  margin: -40px auto 0;
  position: relative;
  padding: 0 0 65px;
}

.team-photos-bg {
  display: none;
  background: #f2f2f2;
  max-width: 830px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.team-photos .container {
  max-width: 1230px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

.team-photos-row {
  font-size: 0;
  display: flex;
  margin: 0 0 35px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.team-photos-row:last-child {
  margin: 0;
}

.team-photos-row img {
  margin-right: 35px;
}

.team-photos-row img:last-child {
  margin-right: 0;
}

.team-photos-row-alt {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.two-column-text {
  padding: 100px 0;
}

.two-column-text .container {
  max-width: 1230px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

.two-column-text h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 57px;
  color: var(--navy);
  margin: 0 0 70px;
  text-align: center;
}

.two-column-text-container {
  display: flex;
  justify-content: space-between;
}

.two-column-text-content {
  max-width: 550px;
  font-size: 22px;
  line-height: 36px;
}

.two-column-text-content p {
  margin: 0;
}

.two-column-text-content h4 {
  margin: 0 0 30px;
  font-size: 32px;
  line-height: normal;
  color: var(--navy);
}

.fullwidth-image {
  max-width: 1440px;
  margin: 0 auto;
}

.two-column-text .container > p {
  color: #686868;
  font-size: 22px;
  line-height: 36px;
  margin: -30px 0 80px;
  text-align: center;
}

.team-slider {
  margin-top: -30px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 120px;
}

.team-slider-bg {
  position: absolute;
  background: rgba(0, 80, 46, 0.63);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 75%;
  z-index: -1;
}

.team-slider .container {
  max-width: 1350px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

.team-slider .container h3 {
  font-size: 38px;
  line-height: normal;
  text-align: center;
  color: var(--t-navy);
  font-weight: 400;
}

.team-slides {
  margin-top: 60px;
  padding: 0 93px;
}

.team-slides .slick-slide {
  padding: 38px;
  position: relative;
}

.team-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 50px;
}

.team-slides .slick-slide:before,
.team-slides .slick-slide:after {
  content: "";
  display: block;
  background-image: url("assets/img/team-slides-deco.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 352px;
  height: 352px;
  position: absolute;
}
.team-slides .slick-slide:before {
  top: 0;
  left: 0;
}
.team-slides .slick-slide:after {
  bottom: 0;
  right: 0;
  background-image: url("assets/img/team-slides-deco-r.png");
}

.team-slide img {
  margin: 0 auto 20px auto;
}

.team-img {
  position: relative;
  flex: 0 0 176px;
  margin-right: 40px;
}

.team-img img {
  border-radius: 9999px;
}

.team-bio {
  width: 100%;
}

.team-bio p,
.team-bio p span {
  font-size: 18px;
  color: #333333 !important;
  line-height: 27px;
}

.team-slide p {
  color: #686868;
  font-size: 26px;
  line-height: 40px;
  margin: 0 0 30px;
}

.team-slide h4 {
  color: var(--navy);
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 3px 0;
}

.team-slide span {
  display: block;
  color: rgba(0, 38, 57, 0.58);
  font-size: 16px;
  line-height: normal;
}

.career-list {
  padding: 80px 0 120px;
  margin: 0 auto;
  border-top: 1px solid #cecece;
}

.career-list .container {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 15px;
}

.career-list h4 {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 16px;
  margin: 0 0 40px;
}

.career-list h3 {
  margin: 0;
  font-size: 38px;
  color: var(--navy);
  font-weight: 400;
}

.career-listing {
  margin-top: 80px;
}

.career-row {
  font-size: 22px;
  background: #f8f8f8;
  padding: 0 30px;
}

.career-row .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.career-row:nth-child(even) {
  background: #fff;
}

.career-row .career-title {
  color: #494949;
  flex: 0 1 33%;
}

.career-row .career-location {
  color: #7d7d7d;
  flex: 0 1 33%;
  text-align: center;
}

.career-row a {
  color: var(--orange);
  font-weight: 600;
  flex: 0 1 33%;
  text-align: right;
  transition: 0.2s ease-in-out;
}

.career-row a:hover svg {
  right: -8px;
}

.career-row a svg {
  margin-left: 10px;
  position: relative;
  right: 0;
  transition: 0.2s ease-in-out;
}

.blog .container,
.blog-header .container,
.breadcrumbs .container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

.breadcrumbs a,
.breadcrumbs svg,
.breadcrumbs span {
  color: #aebfd0;
  font-size: 13px;
}

.breadcrumbs {
  padding-top: 17px;
}

.header-hasBreadcrumbs .breadcrumbs-solutionsPages.breadcrumbs {
  max-width: 1280px;
  width: 100%;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
}

.breadcrumbs .container > svg {
  margin: 0 11px 0 15px;
  font-size: 12px;
}

.blog-header {
  padding-top: 45px;
  padding-bottom: 75px;
}

.blog-header span {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 29px;
  margin: 0 0 25px;
}

.blog-header h1 {
  font-size: 58px;
  line-height: normal;
  color: var(--t-navy);
  margin: 0 0 5px;
  font-weight: 400;
}

.blog-header p {
  font-size: 22px;
  line-height: 42px;
  color: #a8a8a8;
  margin: 0;
}

.category-slider {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto 60px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
}

.category-slider .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 15px;
  box-sizing: border-box;
}

.category-slider a {
  display: block;
  color: rgba(13, 43, 58, 0.33);
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 27px;
  box-sizing: border-box;
}

.category-slider a:first-child {
  margin-left: 0;
}

.category-slider a:last-child {
  margin-right: 0;
}

.category-slider a:not(.current):hover {
  text-decoration: underline;
}

.category-slider a.current {
  color: #0d2b3a;
  font-weight: bold;
}

.category-slider-nav {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.category-slider-nav > div {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  z-index: 0;
}

.category-slider-nav > div.category-slider-right {
  left: auto;
  right: 0;
}

.category-slider-nav svg {
  font-size: 20px;
  color: #d5d5d5;
  cursor: pointer;
  transition: 0.2s ease;
}

.category-slider-nav > div:hover svg {
  color: var(--orange);
}

.blog-top-story {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
}

.blog-top-story-content {
  background: rgba(45, 45, 45, 0.75);
  color: #fff;
  min-height: 500px;
  max-width: 45%;
  padding: 0 55px 0 77px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-top-story-content .blog-top-story-category {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px;
}

.blog-top-story-content .blog-top-story-title {
  display: inline-block;
  font-size: 18px;
  line-height: 29px;
  color: #fff;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-top-story-content .blog-top-story-title svg {
  font-size: 20px;
  margin-right: 5px;
}

.blog-top-story-content p {
  font-size: 16px;
  line-height: 29px;
}

.blog-top-story-author {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}

.blog-top-story-author em {
  display: block;
  font-style: normal;
  margin-top: 4px;
}

.blog-container {
  display: flex;
  margin-top: 50px;
  margin-bottom: 150px;
}

.blog-tab-nav {
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
  height: 85px;
  display: flex;
  align-items: center;
}

.blog-tab-nav span {
  display: block;
  margin-right: 40px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 29px;
  color: rgba(13, 43, 58, 0.33);
  cursor: pointer;
}

.blog-tab-nav span:last-child {
  margin-right: 0;
}

.blog-tab-nav span.active {
  font-weight: bold;
  color: rgba(0, 38, 58, 0.75);
}

.blog-container {
  display: flex;
}

.blog-left {
  flex: 0 1 auto;
  max-width: 710px;
  width: 100%;
  border-right: 1px solid var(--borderColor);
  padding-right: 80px;
}

.blog-card-list {
  margin: 25px 0 0;
}

.blog-card-alt {
  display: flex;
  margin-bottom: 75px;
}

.blog-card-alt-image {
  margin-right: 35px;
}

.blog-card-alt-image img {
  width: 200px;
  height: 150px;
  object-fit: cover;
}

.blog-card-alt-small .blog-card-alt-image img {
  width: 100%;
  height: 168px;
  min-width: 300px;
  max-width: 300px;
}

body.blog .blog-card-list .blog-card-alt-image {
  min-width: auto;
}
body.blog .blog-card-list .blog-card-alt-image img {
  max-width: 300px;
  min-width: 300px;
}

.blog-card-alt-content {
  font-size: 16px;
  line-height: 29px;
  color: #848484;
}

.blog-card-alt-category {
  display: block;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.blog-card-alt-title {
  font-size: 19px;
  line-height: 29px;
  color: var(--t-navy);
  font-weight: 600;
  display: block;
}

.blog-card-alt-title span {
  position: relative;
}

.blog-card-alt-title svg {
  color: #aebfd0;
  margin-right: 5px;
}

.blog-card-alt-author {
  color: #333;
  font-size: 16px;
  line-height: 26px;
  display: block;
  margin-top: 20px;
  padding-left: 15px;
}

.inner-blog-card-meta,
.blog-top-story-author {
  padding-left: 15px;
}

.blog-card-alt-author em {
  display: block;
  font-style: normal;
}

.blog-card-alt-content p {
  margin: 10px 0 0;
}

.blog-load-more a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--orange);
  border: 2px solid var(--orange);
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.2s ease-in-out;
}

.blog-load-more a:hover {
  background: var(--orange);
  color: #fff;
}

.blog-right {
  padding-left: 80px;
}

.sidebar-widget {
  margin-bottom: 30px;
  max-width: 300px;
}

.sidebar-widget-image {
  position: relative;
  font-size: 0;
  border: 1px solid var(--borderColor);
  border-bottom: none;
}

.sidebar-widget-content {
  border: 1px solid var(--borderColor);
  padding: 11px 20px 20px;
}

.sidebar-widget-content h4 {
  color: var(--orange);
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.sidebar-widget-content a svg {
  color: #aebfd0;
  font-size: 20px;
  position: absolute;
  top: 2px;
}

.sidebar-widget-title {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--dNavy);
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  margin: 0 0 8px;
  transition: 0.2s ease-in-out;
}

.sidebar-widget-title:hover {
  color: var(--orange);
}

.sidebar-widget-title span::before {
  content: "";
  display: inline-block;
  width: 25px;
}

.sidebar-widget-content p {
  color: #656565;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.sidebar-widget-date {
  display: block;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 25px;
  margin: 15px 0 0;
}

.sidebar-widget-image span {
  display: block;
  background: var(--orange);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 35px;
  width: 100px;
  height: 35px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.widget-schedule-demo {
  text-align: center;
}

.widget-schedule-demo h4 {
  text-transform: none;
}

.widget-schedule-demo .request-cta {
  margin: 30px auto 8px;
}

.widget-schedule-demo span {
  color: #808080;
  font-size: 16px;
}

.sidebar-title {
  background: #0d2b3a;
  text-transform: uppercase;
  font-size: 16px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.sidebar-widget-list {
  color: #656565;
  font-size: 16px;
}

.sidebar-widget-list ul {
  padding: 10px 0 3px;
}

.sidebar-widget-list a {
  color: #656565;
  position: relative;
  line-height: normal;
  display: block;
  margin: 0 0 17px;
  display: flex;
  align-items: center;
}

.sidebar-widget-list a:hover span {
  text-decoration: underline;
}

.sidebar-widget-list ul li:last-child a {
  margin: 0;
}

.sidebar-widget-list a svg {
  color: #aebfd0;
  position: relative;
  top: 0;
  margin-right: 10px;
}

.sidebar-widget-list a span {
  display: inline-block;
}

.newsletter {
  background: #415f73;
  color: #fff;
  width: 100%;
}

.newsletter-big {
  max-width: 1440px;
  margin: -50px auto 80px;
  height: 275px;
  display: flex;
  align-items: center;
}

.newsletter-alt {
  height: 180px;
  background: #0d2b3a;
  max-width: 1200px;
  margin-bottom: 100px;
}

.newsletter-big .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.newsletter-big-left {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.newsletter-big h3 {
  font-size: 32px;
  line-height: 39px;
}

.newsletter-big-right form ._form-content,
.newsletter-big-right form {
  display: flex;
  width: 100%;
  min-width: 485px;
}

.newsletter-big-right form ._form_element._x71598980._inline-style {
  width: 100%;
}

.newsletter-big-right ._error._below {
  padding-top: 7px;
  font-size: 14px;
  position: relative;
  bottom: auto;
}

.newsletter-big-right form button,
.newsletter-big-right form input[type="text"],
.newsletter-big-right form input[type="email"] {
  background: #fff;
  height: 65px;
  line-height: 65px;
  font-size: 16px;
  max-width: 320px;
  width: 100%;
  box-shadow: none;
  border: none;
  padding: 0 30px;
  box-sizing: border-box;
  margin-right: 5px;
}

.newsletter-big-right form input::placeholder {
  color: #bfbfbf;
}

.newsletter-big-right form input:focus {
  outline: 0;
}

.newsletter-big-right form button,
.newsletter-big-right form input[type="submit"] {
  width: 150px;
  box-sizing: border-box;
  border: 2px solid #fff;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.newsletter-big-right form button:hover,
.newsletter-big-right form input[type="submit"]:hover {
  color: #fff;
  background: var(--orange);
  border: 2px solid var(--orange);
}

.inner-blog-card-top {
  margin-bottom: 60px;
}

.inner-blog-card-img {
  display: block;
  margin-bottom: 15px;
  position: relative;
}

.inner-blog-card-img img {
  height: 385px;
  width: 100%;
  object-fit: cover;
}

@media all and (max-width: 767px) {
  .inner-blog-card-img img {
    height: 168px;
  }
}

.inner-blog-card-title {
  margin-bottom: 10px;
}

.inner-blog-card-title a {
  color: #0d2b3a;
  font-size: 19px;
  line-height: 29px;
  font-weight: bold;
}

.blog-card-alt-title:hover span,
.inner-blog-card-title a span {
  position: relative;
}

.blog-card-alt-title:hover span .article__tooltip,
.inner-blog-card-title a span:hover .article__tooltip {
  opacity: 1;
}

.inner-blog-card-title svg {
  color: #aebfd0;
  font-size: 20px;
  position: relative;
  top: -2px;
  margin-right: 10px;
}

.inner-blog-card p {
  color: #656565;
  font-size: 16px;
  line-height: 29px;
  margin: 0 0 10px;
}

.inner-blog-card-meta {
  color: #333;
  font-size: 16px;
  line-height: 29px;
}

.inner-blog-card-meta em {
  display: block;
  font-style: normal;
}

.blog-card-list-cols {
  display: flex;
  justify-content: space-between;
}

.blog-card-list-cols .blog-card-alt {
  display: block;
  max-width: 335px;
}

.blog-card-list-cols .blog-card-alt-image {
  margin-right: 0;
  margin-bottom: 15px;
  display: block;
}

.blog-card-list-cols .blog-card-alt-title {
  min-height: 60px;
}

.sidebar-newsletter {
  background: #415f73;
  color: #fff;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
  box-sizing: border-box;
}

.sidebar-newsletter form,
.sidebar-newsletter form ._form-content,
.sidebar-newsletter form ._form-content div {
  width: 100%;
}

.sidebar-newsletter h3 {
  font-size: 22px;
  line-height: 33px;
  margin: 0 0 25px;
}

.sidebar-newsletter input,
.sidebar-newsletter button {
  background: #fff;
  height: 55px;
  line-height: 55px;
  font-size: 16px;
  max-width: 320px;
  width: 100%;
  box-shadow: none;
  border: none;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  margin: 0 0 15px;
}

.sidebar-newsletter input::placeholder {
  color: #bfbfbf;
  text-align: center;
}

.sidebar-newsletter button {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  height: 55px;
  line-height: 40px;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.sidebar-newsletter button:hover {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: #fff;
}

.article .container {
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}

.article-header {
  padding-top: 50px;
}

.article-header .container > img {
  margin-bottom: 55px;
  display: block;
  max-height: 570px;
  object-fit: cover;
  object-position: center;
}

.article-header .article-category {
  color: var(--orange);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.article-header h1 {
  color: var(--t-navy);
  font-size: 38px;
  line-height: 54px;
  font-weight: 400;
  margin: 0;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--orange);
  padding-bottom: 25px;
  margin-bottom: 60px;
  margin-top: 20px;
}

.article-author {
  display: flex;
  align-items: flex-start;
}

.article-author span span,
.article-author span em {
  display: block;
  color: #808080;
  font-size: 16px;
  line-height: 27px;
  font-style: normal;
  padding-top: 3px;
}

.article-author img {
  border-radius: 100px;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.article-author {
  color: #5d5d5d;
  font-size: 18px;
}

.article-date {
  color: #bbb;
  font-size: 16px;
  margin-left: 25px;
}

.article-share a {
  color: #aaa;
  font-size: 24px;
  display: inline-block;
  margin-right: 20px;
}

.article-share a:last-child {
  margin-right: 0;
}

.article-content p {
  color: #333;
  font-size: 18px;
  line-height: 36px;
  margin: 0 0 40px;
}

.article-content a {
  color: var(--orange);
}

.article-content img {
  margin-bottom: 20px;
  margin-top: 0;
}
.article-content img.alignleft {
  margin-right: 30px;
}
.article-content img.alignright {
  margin-left: 30px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  color: #333;
}

.article-content {
  padding-bottom: 80px;
}

.article-content h3 {
  text-transform: uppercase;
  font-size: 23px;
}

.article-content .container ol li,
.article-content .container ul li {
  font-size: 18px;
  line-height: 36px;
  color: #333;
  list-style: disc;
  padding-left: 5px;
}

.article-content .container ol,
.article-content .container ul {
  padding-left: 25px;
  margin-bottom: 40px;
}

.article-content .container ol li,
.article-content .container ol {
  list-style: decimal;
}

.article-content blockquote {
  position: relative;
  padding: 20px 0 30px;
  margin: 0 0 80px;
  border-bottom: 1px solid var(--borderColor);
}

.article-content blockquote p {
  position: relative;
  font-size: 24px;
  line-height: 39px;
  margin: 0 0 20px;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}

.article-content blockquote::after {
  content: "";
  display: table;
  clear: both;
}

.article-content blockquote img.alignleft {
  margin-right: 30px;
}

.article-content .boxed-list ul li {
  font-size: 16px;
  line-height: 29px;
}

.article-content .boxed-list {
  border: 1px solid var(--borderColor);
  padding: 20px;
  margin-top: 70px;
}

.article-content .boxed-list h4 {
  margin: 0 0 15px;
  text-transform: uppercase;
}

.article-content .boxed-list ul {
  margin-bottom: 0;
}

.article-content blockquote p:first-child::before,
.article-content blockquote p:last-child::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  font-size: 12px;
  color: #333;
}

.article-content blockquote p:first-child::before {
  content: "\f10d";
  top: -10px;
  left: -40px;
}

.article-content blockquote p:last-child::after {
  content: "\f10e";
  bottom: -5px;
  right: -10px;
}

.article-pdf {
  margin-bottom: 80px;
}

.article-pdf::after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--borderColor);
  padding-bottom: 35px;
}

.article-pdf-inner {
  background: #e9f0f2;
  padding: 70px 120px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -100px;
  margin-right: -100px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.article-pdf h3 {
  margin: 0;
  font-size: 32px;
  line-height: 49px;
  max-width: 500px;
  text-transform: none;
}

.article-pdf a {
  display: block;
  width: 330px;
  height: 65px;
  line-height: 65px;
  border: 2px solid var(--orange);
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.article-pdf a:hover {
  background: var(--orange);
  color: #fff;
}

.header-hasBreadcrumbs .breadcrumbs a,
.header-hasBreadcrumbs .breadcrumbs svg,
.header-hasBreadcrumbs .breadcrumbs span {
  color: #fff;
}

.header-hasBreadcrumbs .breadcrumbs {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.header-hasBreadcrumbs .breadcrumbs .container {
  position: absolute;
  width: 100%;
  padding-top: 17px;
}

.team-quote {
  text-align: center;
  padding: 100px 0;
}

.team-quote .container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.team-quote p {
  font-size: 28px;
  line-height: 41px;
  color: #575757;
  margin: 0 0 37px;
}

.team-quote h2 {
  font-size: 40px;
  line-height: normal;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--t-navy);
}

.team-quote h3 {
  margin: 0;
  font-size: 28px;
  line-height: normal;
  color: var(--t-navy);
}

.leadership {
  background: #f9f9f9;
  padding: 60px 0 15px;
  margin-bottom: 60px;
}

.leadership .container {
  padding: 0 15px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

.leadership h2 {
  color: var(--t-navy);
  text-align: center;
  margin: 0;
  font-size: 52px;
  line-height: normal;
  font-weight: 400;
}

.leadership-image {
  position: relative;
  font-size: 0;
  margin: 0 0 30px;
}

.leadership-image::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 15px;
  background: #3580a6;
  max-width: 320px;
  width: 100%;
  max-height: 350px;
  height: 100%;
  z-index: 0;
  transition: 0.2s ease-in-out;
  opacity: 0;
}

.leadership-image img {
  position: relative;
  z-index: 1;
}

.leadership-item {
  position: relative;
  max-width: 315px;
  margin-bottom: 70px;
}

.leadership-bio h4,
.leadership-item h4 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 32px;
  line-height: 50px;
  font-weight: 400;
}

.leadership-bio h5,
.leadership-item h5 {
  margin: 0;
  color: #575757;
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
}

.leadership-info {
  position: relative;
}

.leadership-item svg {
  position: absolute;
  top: 30%;
  right: 5px;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 26px;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.leadership-item:hover {
  cursor: pointer;
}

.leadership-item:hover .leadership-image::after,
.leadership-item:hover svg {
  opacity: 1;
}

.leadership-item:hover .leadership-image::after {
  top: 35px;
  left: 20px;
}

.leadership-item:hover svg {
  right: 0;
}

.leadership-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 85px;
}

.investors {
  font-size: 0;
  text-align: center;
  padding: 75px 15px 150px;
}

.investors img:first-child {
  margin-right: 25px;
}

.get-started {
  background: #fcfcfc;
  height: 402px;
  display: flex;
  align-items: center;
}

.get-started .container {
  max-width: 1030px;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.get-started h3 {
  color: var(--orange);
  font-size: 48px;
  line-height: 72px;
  margin: 0 0 20px;
}

.get-started p {
  color: #606060;
  font-size: 22px;
  line-height: normal;
  margin: 0;
}

.get-started-cta a {
  display: block;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  line-height: 65px;
  width: 215px;
  height: 65px;
  font-weight: 600;
  text-align: center;
  transition: 0.15s ease-in-out;
}

.get-started-cta a:hover {
  background: var(--btnHover);
}

.company-news {
  padding-top: 100px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.company-news h2 {
  color: var(--navy);
  font-size: 38px;
  line-height: normal;
  margin: 0 0 65px;
  text-align: center;
  font-weight: 400;
}

.company-news .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.company-news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company-news-card {
  max-width: 540px;
  margin-bottom: 60px;
}

.company-news-card img {
  display: block;
  margin-bottom: 25px;
  height: 270px;
  object-fit: cover;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
}

.company-news-category {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 29px;
  display: inline-block;
}

.company-news-category:hover {
  text-decoration: underline;
}

.company-news-title a {
  font-size: 19px;
  line-height: 29px;
  color: #0d2b3a;
  font-weight: 600;
}

.company-news-title a:hover {
  text-decoration: underline;
}

.company-news-title {
  margin-top: 25px;
  margin-bottom: 25px;
}

.company-news-card p {
  color: #848484;
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 40px;
}

.company-news-author {
  color: #333;
  font-size: 16px;
  line-height: 26px;
  display: block;
  margin-top: 20px;
}

.company-news-author em {
  font-style: normal;
}

.company-newsletter {
  background: #0d2b3a;
  padding: 50px 75px;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.company-newsletter-text {
  flex: 0 1 50%;
  padding-left: 50px;
  box-sizing: border-box;
}

.company-newsletter form {
  flex: 0 1 50%;
  display: flex;
}

.company-newsletter form input[type="email"] {
  border: 0;
  box-shadow: none;
  max-width: 355px;
  width: 100%;
  height: 65px;
  line-height: 65px;
  font-size: 16px;
  padding: 0 35px;
  box-sizing: border-box;
}

.company-newsletter form input[type="submit"] {
  height: 65px;
  line-height: 65px;
  background: var(--orange);
  color: #fff;
  border: 0;
  box-shadow: none;
  max-width: 170px;
  width: 100%;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.company-newsletter form input[type="submit"]:hover {
  background: var(--btnHover);
}

.company-newsletter form input[type="email"]:focus {
  outline: none;
}

.company-newsletter form input[type="email"]::placeholder {
  color: #bfbfbf;
}

.company-newsletter-text h3 {
  font-size: 33px;
  line-height: normal;
  margin: 0 0 10px;
}

.company-newsletter-text h4 {
  font-size: 22px;
  line-height: 33px;
  margin: 0;
}

.company-news-more {
  width: 100%;
  padding-bottom: 130px;
}

.company-news-more a {
  display: block;
  max-width: 330px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  transition: 0.2s ease-in-out;
}

.company-news-more a:hover {
  color: #fff;
  background: var(--orange);
}

.leadership-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
}

.leadership-bio {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5001;
  min-width: 992px;
}

.leadership-bio-inner {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 15px 0 25px;
}

.leadership-bio svg {
  color: var(--orange);
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  z-index: 3;
  cursor: pointer;
}

.leadership-bio .leadership-image {
  min-width: 315px;
  margin-right: 50px;
}

.leadership-bio .leadership-info {
  max-width: 385px;
}

.leadership-bio h4 {
  margin: 0;
}

.leadership-bio h5 {
  margin: 0 0 20px;
}

.leadership-bio p {
  font-size: 22px;
  line-height: 30px;
  color: #333;
  margin: 0 0 15px;
}

.inner-blog-topStory {
  position: absolute;
  left: 0;
  bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  width: 100px;
  font-size: 14px;
}

.inner-blog-topStory span {
  line-height: 37px;
  position: relative;
  z-index: 1;
}

.inner-blog-topStory svg {
  position: absolute;
  top: 0;
  left: 0;
}

.team-slider .container {
  position: relative;
}

.team-slider-nav {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 21px;
  right: 210px;
}

.team-slider-nav .slick-prev {
  margin-right: 25px;
}

.team-slider-nav .slick-prev,
.team-slider-nav .slick-next {
  background: #fff;
  color: #ccc;
  z-index: 999;
  font-size: 28px;
  border-radius: 100%;
  height: 55px;
  width: 55px;
  line-height: 60px;
  text-align: center;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0);
  border: 1px solid #ccc;
  cursor: pointer;
  transition: 0.15s ease;
}

.team-slider-nav .slick-prev:hover,
.team-slider-nav .slick-next:hover {
  background: #fff;
  color: var(--orange);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #fafafa;
}

.team-slider-nav .slick-prev svg {
  position: relative;
  left: -2px;
  top: 1px;
}

.team-slider-nav .slick-next svg {
  position: relative;
  right: -2px;
  top: 1px;
}

.team-slider-dots ul {
  display: flex;
  justify-content: center;
}

.team-slider-dots button {
  font-size: 0;
  height: 20px;
  width: 20px;
  border-radius: 100px;
  border: none;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  background: #eee;
}

.team-slider-dots li.slick-active button {
  background: var(--orange);
}

.expanded-header-toggle {
  display: none;
}

.expanded-header {
  position: absolute;
  top: 57px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  padding-top: 40px;
  box-shadow: 0 20px 20px rgba(17, 17, 17, 0);
  z-index: 99;
}

.header-nav--scrollable .expanded-header {
  padding-top: 40px;
}

.expanded-header-wrapper {
  background: #fff;
  display: flex;
  align-items: center;
  min-height: 300px;
  box-shadow: 0 20px 20px rgba(20, 20, 20, 0.1);
}

.expanded-header-container {
  position: relative;
  max-width: 1310px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: flex;
}

.expanded-header h3 {
  font-size: 26px;
  line-height: 38px;
  color: var(--navy);
  margin: 0;
  max-width: 380px;
  padding-right: 30px;
}

.expanded-header-main-cta {
  position: absolute;
  bottom: 0;
  left: 15px;
}

.expanded-header-main-cta a {
  color: var(--orange);
  font-size: 14px;
  line-height: 16px;
}

.expanded-header-columns {
  display: flex;
}

.expanded-header-column {
  max-width: 200px;
  border-right: 1px solid #eee;
  padding-right: 15px;
  margin-right: 25px;
  box-sizing: border-box;
}

.expanded-header-column:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.header-nav .expanded-header-title {
  color: var(--navy);
  font-size: 24px;
  line-height: normal;
}

.expanded-header-column p {
  color: #6a6a6a;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  max-width: 195px;
  min-height: 90px;
}

.header-nav .expanded-header-cta {
  color: var(--orange);
  font-size: 14px;
  line-height: 16px;
  transition: 0.2s ease-in-out;
}

.header-nav .expanded-header-main-cta svg,
.header-nav .expanded-header-cta svg {
  position: relative;
  top: 1.5px;
  left: 5px;
  transition: 0.2s ease-in-out;
}

.header-nav .expanded-header-main-cta:hover svg,
.header-nav .expanded-header-cta:hover svg {
  left: 10px;
}

.expanded-header {
  display: none;
}

.menu-expanded-header.expanded .expanded-header {
  display: block;
}

@media all and (min-width: 993px) {
  .menu-expanded-header.expanded > a {
    color: var(--orange);
  }
}

.expanded-header ul {
  flex-direction: column;
  align-items: flex-start;
}

.expanded-header > ul {
  display: none;
}

.video-block {
  padding: 0 15px;
  box-sizing: border-box;
  margin-top: 55px;
}

.video-block .container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  background: #f8f8f8;
  display: flex;
}

.video-block-video {
  position: relative;
  flex: 0 1 44%;
}

.video-block-cover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 4;
}

.video-block-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-block-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.8);
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 100px;
  font-size: 22px;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.video-block-play:hover {
  background: var(--orange);
  color: #fff;
}

.video-block-play svg {
  position: relative;
  left: 2px;
  top: 2px;
  line-height: 1;
}

.video-block-player {
  position: relative;
  padding-bottom: 90%;
}

.video-block-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: none;
}

.video-block-content-holder {
  max-width: 535px;
  margin: 0 auto;
}

.video-block-content {
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 56%;
}

.video-block-content h5 {
  color: var(--orange);
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  margin: 0 0 25px;
}

.video-block-content h3 {
  color: var(--t-navy);
  font-size: 35px;
  margin: 0 0 25px;
  font-weight: bold;
}

.video-block-content p {
  color: #686868;
  font-size: 22px;
  line-height: 36px;
  margin: 0;
}

.video-block-content p a {
  color: var(--orange);
  font-weight: bold;
}

.video-block-reverse .container {
  flex-direction: row-reverse;
}

.l-offering {
  margin-top: 110px;
  margin-bottom: 60px;
}

.l-offering__container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.l-offering__container h3 {
  box-sizing: border-box;
  font-weight: 700;
  color: var(--t-navy);
  font-size: 35px;
  line-height: 22px;
  margin: 0 0 40px;
}

.l-offering__container p {
  box-sizing: border-box;
  color: #555555;
  font-size: 22px;
  line-height: 36px;
}

.l-offering__items {
  max-width: 1080px;
  margin: 70px auto 0;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  box-sizing: border-box;
}

.l-offering__item {
  max-width: 200px;
  width: 100%;
  text-align: center;
  margin: 0 0 30px;
}

.l-offering__item img {
  max-width: 172px;
  height: auto;
}

.l-offering__item h4 {
  font-weight: 700;
  color: var(--t-navy);
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 25px 0 0;
}

.l-offering-demo {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 30px;
}

.sponsors-title {
  max-width: 1440px;
  padding: 0 15px;
  box-sizing: border-box;
  padding: 65px;
  background: #2d3e3e;
  text-align: center;
  margin: 0 auto;
}

.sponsors-title h3 {
  font-size: 35px;
  line-height: 42px;
  font-weight: 600;
  color: #fff;
  margin: 0 auto;
  max-width: 600px;
}

.crio-features {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 125px auto 0;
  padding: 0 15px;
  box-sizing: border-box;
}

.crio-features-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 65%;
}

.crio-features-item {
  flex: 0 1 26%;
  box-sizing: border-box;
  padding-left: 30px;
  margin: 0 0 70px;
}

.crio-features-item h5 {
  position: relative;
  font-size: 18px;
  box-sizing: border-box;
  font-weight: 700;
  color: var(--t-navy);
  line-height: 24px;
  margin: 0;
}

.crio-features-item h5 span {
  display: block;
  font-size: 15px;
  font-weight: normal;
}

.crio-features-item h5::before {
  content: "\f00c";
  width: 22px;
  height: 22px;
  position: absolute;
  top: 2px;
  left: -30px;
  font-family: "Font Awesome 5 Free";
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.crio-features-item p {
  box-sizing: border-box;
  color: #555555;
  font-size: 16px;
  line-height: 20px;
}

.crio-features-content {
  min-width: 310px;
  max-width: 310px;
}

.crio-features-content h3 {
  box-sizing: border-box;
  font-weight: 700;
  color: var(--t-navy);
  font-size: 30px;
  line-height: 42px;
  margin: 0 0 25px;
}

.crio-features-content p {
  box-sizing: border-box;
  color: #555555;
  font-size: 22px;
  line-height: 36px;
}

.crio-cras {
  background-color: #f8f8f8;
  width: 100%;
  margin: 0 auto;
  padding: 65px 0;
  max-width: 1350px;
}

.crio-cras-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.crio-cras h2 {
  font-size: 35px;
  font-weight: 700;
  color: var(--t-navy);
  text-align: center;
  line-height: 22px;
  margin: 0 0 35px;
}

.crio-cras-container p {
  font-size: 18px;
  color: #555555;
  text-align: center;
  line-height: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

h4.crio-cras-subtitle {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--t-navy);
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  margin: 55px 0 40px;
}
.crio-cras-response {
  display: flex;
  max-width: 780px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto 10px;
}
.crio-cras-bar {
  display: flex;
  color: #fff;
  height: 25px;
  line-height: 25px;
  width: 250px;
  min-width: 250px;
}
.crio-cras-bars__red {
  width: 65px;
  background: #b2b2b2;
  text-align: right;
  padding-right: 6px;
  box-sizing: border-box;
  margin-left: auto;
}
.crio-cras-bars__blue {
  width: 185px;
  background: var(--orange);
  box-sizing: border-box;
  padding-left: 20px;
  margin-right: auto;
}
.crio-cras-bars__red--22 {
  width: 22px;
}
.crio-cras-bars__red--49 {
  width: 49px;
}
.crio-cras-bars__red--64 {
  width: 64px;
}
.crio-cras-bars__red--55 {
  width: 55px;
}
.crio-cras-bars__red--51 {
  width: 51px;
}
.crio-cras-bars__blue--185 {
  width: 185px;
}
.crio-cras-bars__blue--163 {
  width: 163px;
}
.crio-cras-bars__blue--155 {
  width: 155px;
}
.crio-cras-bars__blue--136 {
  width: 136px;
}
.crio-cras-bars__blue--130 {
  width: 130px;
}
.crio-cras-response__title {
  color: #333;
  font-size: 16px;
  line-height: 22px;
  margin-left: 45px;
  min-height: 45px;
  max-width: 425px;
}
.crio-cras-bar__left {
  width: 65px;
}
.crio-cras-bar__right {
  width: 185px;
}
.crio-cras-response--legend span {
  font-size: 17px;
  line-height: 22px;
  color: #bbbbbb;
}
.crio-cras-response--legend .crio-cras-bar__left,
.crio-cras-response--legend .crio-cras-bar__right {
  width: auto;
}
.crio-cras-response--legend .crio-cras-bar__left {
  margin-left: -20px;
}
.crio-cras-response--legend .crio-cras-bar__right {
  margin-right: 0;
  margin-left: 25px;
}
.crio-cras-download {
  text-align: center;
  margin-top: 30px;
  padding: 0 15px;
}
.crio-cras-download a {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  line-height: 15px;
}
.crio-cras-download a:hover {
  text-decoration: underline;
}
.crio-cras-response--legend--mobile {
  display: none;
}

.crio-comparison {
  margin: 100px 0;
  padding: 0 15px;
  box-sizing: border-box;
}
.crio-comparison-container {
  max-width: 980px;
  margin: 0 auto;
}
.crio-comparison h2 {
  box-sizing: border-box;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  font-size: 35px;
  color: var(--t-navy);
  line-height: 45px;
}

.crio-comparison-table__heading {
  background: #f2f2f2;
  box-sizing: border-box;
  font-weight: 700;
}

.crio-comparison-table__heading .crio-comparison-table__column {
  min-height: 113px;
  color: #5e5e5e;
  border: none;
}

.crio-comparison-table__row {
  display: flex;
  align-items: center;
  color: #333;
}

.crio-comparison-table__column {
  padding: 0 30px;
  display: flex;
  align-items: center;
  min-height: 83px;
  font-size: 18px;
}

.crio-comparison-table__column--highlight {
  background: #f48d1c;
  color: #fff;
  font-weight: 700;
}

.crio-comparison-table__column:first-child {
  flex: 0 1 36.5%;
}

.crio-comparison-table__column:nth-child(2) {
  width: 32.5%;
}

.crio-comparison-table__column:last-child {
  width: 31%;
}

.content-cards {
  padding: 0 15px;
  box-sizing: border-box;
  margin-top: 150px;
  margin-bottom: 100px;
}

.content-cards .container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.content-cards .content-card {
  color: #fff;
  background: #2d3e3e;
  font-size: 18px;
  line-height: 34px;
  max-width: 650px;
  flex: 0 1 48%;
  padding: 130px 15px 120px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.content-cards .content-card-inner {
  max-width: 500px;
  margin: 0 auto;
}

.content-cards h4 {
  font-size: 35px;
  line-height: normal;
  text-align: center;
  margin: 0 0 35px;
}

.content-cards p {
  margin: 0 0 25px;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
}

.content-card-author {
  display: block;
  text-align: center;
  margin-top: 35px;
}

.article-video {
  position: relative;
  margin-bottom: 55px;
}

.article-video-holder {
  position: relative;
}

.article-video-holder iframe {
  width: 100%;
}

.article-video .video-block-cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.case-studies-download {
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.case-studies-download .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fancy-checkbox {
  position: relative;
  max-width: 25px;
  max-height: 25px;
  cursor: pointer;
}

.fancy-checkbox input {
  border: 2px solid #b5b5b5;
  box-sizing: border-box;
  box-shadow: none;
  height: 25px;
  width: 25px;
  -webkit-appearance: none;
}

.fancy-checkbox input:checked ~ .checkmark {
  display: block;
}

.fancy-checkbox .checkmark {
  display: none;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--orange);
  font-size: 80%;
  pointer-events: none;
}

.case-studies-download-left,
.case-studies-download-right {
  color: #bdbdbd;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.case-studies-download-left .fancy-checkbox {
  margin-right: 15px;
}

.case-studies-download-left .fancy-checkbox input:checked ~ .checkmark {
  display: none;
}

.case-studies-download-left .fancy-checkbox.selected input ~ .checkmark {
  display: block;
}

.case-studies-download-right {
  cursor: pointer;
}

.case-studies-download-right svg {
  color: #828282;
  margin-right: 15px;
}

.case-studies-download-right span {
  text-transform: uppercase;
}

.case-study-list {
  margin-top: 40px;
  margin-bottom: 80px;
}

.case-study-list .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.case-study-card {
  max-width: 375px;
  margin-bottom: 40px;
}

@media all and (max-width: 1300px) {
  .case-study-card {
    max-width: 350px;
  }
  .case-study-slides {
    padding: 0 30px;
    box-sizing: border-box;
  }
  .case-study-slider-nav div:first-child {
    left: 15px !important;
  }
  .case-study-slider-nav div:last-child {
    left: auto !important;
    right: 15px !important;
  }
  .case-study-modal form input {
    height: 50px;
    padding: 0 20px;
  }
  .case-study-modal {
    padding: 40px 70px 20px;
  }
  .header-fh .header-content {
    margin-top: 50px;
  }
}

.case-study-card-image {
  font-size: 0;
  display: block;
}

.case-study-card-image img {
  max-width: 375px;
  max-height: 195px;
  min-height: 195px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.case-study-card .case-study-download-content {
  padding: 25px 20px;
  box-sizing: border-box;
  border: 1px solid rgba(225, 225, 225, 0);
  transition: 0.2s ease-in-out;
}

.case-study-card h5 {
  color: var(--orange);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 25px;
}

.case-study-card .case-study-download-content a {
  color: var(--t-navy);
  font-size: 18px;
  line-height: 29px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 22px;
}

.case-study-card .case-study-download-content a svg {
  color: #aebfd0;
  margin-right: 10px;
}

.case-study-card .case-study-download-content p {
  color: #656565;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.case-study-card-download {
  display: flex;
  align-items: center;
  color: #bdbdbd;
  font-size: 18px;
  line-height: 1;
  padding: 15px;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.case-study-card-download .fancy-checkbox {
  margin-right: 15px;
}

.case-study-card.selected .case-study-download-content,
.case-study-card:hover .case-study-download-content {
  border: 1px solid rgba(225, 225, 225, 1);
}

.case-study-card.selected .case-study-card-download,
.case-study-card:hover .case-study-card-download {
  opacity: 1;
}

.case-study-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99;
}

.case-study-modal {
  display: none;
  max-width: 600px;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
  z-index: 100;
  padding: 40px 70px;
  box-sizing: border-box;
}

._field-wrapper {
  position: relative;
}

._form_element ._error,
._field-wrapper ._error {
  position: absolute;
  bottom: 10px;
  font-size: 14px;
}

._field91 ._error,
._x10807818 ._error {
  bottom: -20px;
}

._x10807818 fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

.downloads-form ._form_element:not(._x10807818) label {
	display: none;
}

.case-study-modal form::before {
  display: none;
}

.case-study-modal form {
  padding: 0;
  box-shadow: none;
}

.case-study-modal h3 {
  color: var(--t-navy);
  text-align: center;
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.5;
}

.case-study-form {
  max-width: 1440px;
  margin: 0 auto;
  background: #f6f6f6;
}

.case-study-form .container {
  max-width: 1220px;
  padding: 80px 15px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.case-study-selections {
  background: #fff;
  width: 51%;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
  padding: 40px 50px;
  box-sizing: border-box;
}

.case-study-selections h3 {
  margin: 0;
  color: var(--t-navy);
  font-size: 26px;
  line-height: 1.5;
}

.case-study-selections h3 span {
  color: var(--orange);
}

.case-study-selections ul {
  margin-top: 50px;
}

.case-study-selections ul li {
  border: 1px solid #e1e1e1;
  padding: 0 35px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  min-height: 85px;
  margin: 0 0 15px;
  cursor: pointer;
}

.case-study-selections ul li.selected {
  border: 1px solid var(--orange);
}

.case-study-selections ul li.selected .fancy-checkbox input {
  border-color: var(--orange);
}

.case-study-selections ul li.selected .fancy-checkbox .checkmark {
  display: block;
}

.case-study-selections ul li span {
  font-size: 16px;
  line-height: 24px;
  color: #9a9d9f;
  font-weight: 600;
  display: inline-block;
  margin-left: 25px;
}

.case-study-selections ul li.selected span {
  color: #333;
}

.case-study-selections ul li.current-case-study {
  position: relative;
}

.case-study-selections ul li.current-case-study::before {
  content: "Current Case Study";
  font-size: 14px;
  line-height: 1;
  color: var(--orange);
  position: absolute;
  top: -8px;
  left: 35px;
  background: #fff;
}

.case-study-form-single {
  width: 43%;
}

.case-study-form-single h3 {
  color: var(--t-navy);
  font-size: 40px;
  line-height: normal;
}

.case-study-form-single form {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 50px 0 0;
}

.case-study-form-single form::before {
  display: none;
}

.case-study-form-single form p {
  margin: 10px 0;
}

.case-study-form-single form input[type="submit"] {
  margin-bottom: 0;
}

.case-study-slider {
  padding: 150px 0 70px;
}

.case-study-slider .container {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1380px;
  position: relative;
}

.case-study-slides {
  max-width: 1250px;
  margin: 0 auto;
}

.case-study-slider .container h3 {
  color: var(--t-navy);
  font-size: 40px;
  line-height: normal;
  text-align: center;
  margin: 0 0 50px;
}

.case-study-slide {
  margin: 0 25px;
}

.case-study-slider-nav div {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 40px;
  color: #dbdbdb;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.case-study-slider-nav div:last-child {
  right: 0;
  left: auto;
}

.case-study-slider-nav div:hover {
  color: var(--orange);
}

.demo-page {
  padding-top: 100px;
  max-width: 1440px;
  margin: 0 auto 150px;
}

.demo-page .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.demo-left {
  width: 45%;
  display: flex;
  flex-direction: column;
}

.demo-left h3 {
  font-size: 46px;
  line-height: normal;
  color: var(--t-navy);
  font-weight: 400;
  margin: 0 0 25px;
}

.demo-left p {
  margin: 0 0 25px;
}

.demo-left p,
.demo-left ul {
  color: #717171;
  font-size: 18px;
  line-height: 29px;
}

.demo-left ul {
  margin-top: 35px;
}

.demo-left ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 20px;
}

.demo-left ul li:last-child {
  margin-bottom: 0;
}

.demo-left ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 100px;
  position: absolute;
  top: 8px;
  left: 0;
}

.demo-testimonial-author {
  display: flex;
}

.demo-testimonial-author img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  object-position: center;
  border-radius: 100px;
  margin-right: 20px;
}

.demo-right {
  width: 50.4%;
}

.demo-right .demo-form form::before {
  display: none;
}

.demo-right .demo-form form {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.demo-right h3 {
  margin: 20px 0 45px;
  color: var(--orange);
  font-size: 35px;
  line-height: normal;
  text-align: center;
}

.demo-form {
  background: #fff;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
  padding: 20px 50px 50px;
  box-sizing: border-box;
  min-height: 840px;
}

.demo-left-bottom {
  max-width: 460px;
  margin: 140px auto 0;
}

.demo-left-bottom p {
  position: relative;
  color: #4b5960;
  font-size: 20px;
  line-height: 31px;
  margin: 0 0 40px;
}

.demo-left-bottom p::before,
.demo-left-bottom p::after {
  content: "\f10d";
  font-weight: 900;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
}

.demo-left-bottom p::before {
  top: -20px;
  left: -30px;
}

.demo-left-bottom p::after {
  content: "\f10e";
  bottom: -30px;
  right: -30px;
}

.demo-left-bottom h4,
.demo-left-bottom h5 {
  color: #333;
  font-size: 26px;
  line-height: 38px;
  margin: 0;
}

.demo-left-bottom h4 {
  margin: 0 0 5px;
}

.demo-left-bottom h5 {
  color: #797979;
  font-weight: 400;
}

section.demo-page {
  position: relative;
}

section.demo-page::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 0;
  background: #f4f4f4;
  width: 100%;
  height: 45%;
  z-index: -1;
}

._checkbox-radio .checkmark {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 2px solid #ccc;
  box-sizing: border-box;
  pointer-events: none;
}

.single-downloads ._checkbox-radio .checkmark {
  left: 0;
}

.single-downloads .downloads-form {
  min-height: 630px;
}

.single-downloads ._row._checkbox-radio input {
  margin: 0 25px 0 0;
}

.case-study-slider-nav-dots {
  display: none;
}

@media all and (max-width: 1320px) {
  .demo-left-bottom p::before {
    top: -15px;
  }
  .demo-left-bottom p::after {
    right: -20px;
    bottom: -30px;
  }
}

@media all and (max-width: 767px) {
  .team-slide {
    flex-direction: column;
    padding-left: 0;
  }
  .team-bio {
    max-width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }
  .team-slide img {
    max-height: 550px;
    height: 100%;
  }
  .team-slider-bg {
    top: 40px;
    max-height: 550px;
    height: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
  .team-slider .container h3 {
    margin: 0;
  }
}

.team-photos-row img:first-child {
  max-width: 600px;
}

.team-photos-row img:nth-child(2) {
  max-width: 357px;
}

.team-photos-row-alt img:first-child {
  max-width: 330px;
}

.team-photos-row-alt img:nth-child(2) {
  max-width: 760px;
}

.header-buckets {
  margin-top: -90px;
}

.header-buckets .container {
  max-width: 1080px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.header-bucket {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  flex: 0 1 33%;
  min-height: 205px;
  transition: 0.2s ease-in-out;
}

.header-bucket h3 {
  margin: 0;
  font-size: 25px;
  line-height: normal;
}

.header-bucket p {
  font-size: 16px;
  line-height: 37px;
  margin: 0;
}

.header-bucket svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  font-size: 26px;
  transition: 0.2s ease-in-out;
}

.header-bucket:hover svg {
  bottom: 15px;
}

.downloads-page {
  margin-top: 100px;
  padding-bottom: 130px;
}

.downloads-page .container {
  max-width: 1440px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.downloads-left {
  max-width: 480px;
  padding-left: 100px;
}

.downloads-right {
  max-width: 610px;
  width: 100%;
  padding-right: 100px;
}

.downloads-left img {
  display: block;
  margin: 0 0 50px;
}

.downloads-left h3 {
  font-size: 23px;
  line-height: 34px;
  color: #0d2b3a;
  font-weight: 400;
}

.downloads-left p {
  font-size: 18px;
  line-height: 29px;
  color: #717171;
}

.downloads-form {
  background: #fff;
  box-shadow: 0 0 20px rgba(17, 17, 17, 0.15);
  padding: 20px 50px;
  position: relative;
}

.downloads-form::before {
  content: "";
  height: 100%;
  max-height: 480px;
  background: #e9f0f2;
  position: absolute;
  bottom: 74px;
  left: -35px;
  right: -100px;
  z-index: -1;
}

.downloads-form h3 {
  font-size: 32px;
  line-height: 49px;
  color: #0d2b3a;
  margin-bottom: 40px;
}

.downloads-form form div,
.downloads-form form {
  width: 100%;
}

.downloads-form input {
  width: 100%;
  border: 1px solid #e1e1e1;
  color: #979797;
  font-size: 16px;
  height: 65px;
  padding: 0 40px;
  box-sizing: border-box;
  margin: 0 0 30px;
}

.downloads-form input::placeholder {
  color: #979797;
}

.downloads-form p {
  margin: -5px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: normal;
  color: #333;
}

.downloads-form p a {
  color: var(--orange);
}

.downloads-form p a:hover {
  text-decoration: underline;
}

.downloads-form button,
.downloads-form input[type="submit"] {
  background: var(--orange);
  color: #fff;
  text-transform: uppercase;
  margin-top: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: 0.2s ease-in-out;
}

.downloads-form button {
  height: 65px;
  width: 100%;
}

.downloads-form button:hover,
.downloads-form input[type="submit"]:hover {
  background: var(--btnHover);
}

.case-study-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--t-navy);
  cursor: pointer;
}

.case-study-modal-close:hover {
  color: var(--orange);
}

.header-nav-mobile {
  display: none;
  color: #fff;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1000000;
}

.header-nav-mobile span {
  position: absolute;
  left: 0;
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.header-nav--white .header-nav-mobile span {
  background: var(--navy);
}

.header-nav-mobile span:first-child {
  top: 0;
}
.header-nav-mobile span:nth-child(2) {
  top: 10px;
}
.header-nav-mobile span:last-child {
  top: 20px;
}

.header-nav-mobile.active span {
  background: var(--t-navy);
}

.header-nav-mobile.active span:first-child {
  top: 10px;
  transform: rotate(45deg);
}
.header-nav-mobile.active span:last-child {
  top: 10px;
  transform: rotate(-45deg);
}
.header-nav-mobile.active span:nth-child(2) {
  opacity: 0;
}

.header-nav.header-nav--white .header-nav-mobile {
  color: #333;
}

.blog-top-story-image {
  display: none;
}

.case-study-slider-nav-dots ul {
  display: flex;
  justify-content: center;
}

.case-study-slider-nav-dots ul li button {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: #eee;
  border: none;
  box-shadow: none;
  font-size: 0;
  margin: 0 5px;
}

.case-study-slider-nav-dots ul li.slick-active button {
  background: var(--orange);
}

@media all and (max-width: 1399px) {
  .downloads-left {
    padding-left: 0;
  }
  .leadership-bio svg {
    top: 30px;
    right: 30px;
  }
}

@media all and (min-width: 1024px) and (max-width: 1680px) {
  .leadership-bio .leadership-image {
    max-width: 45%;
  }
}

@media all and (max-width: 1280px) {
  .leadership-bio .leadership-image {
    max-width: 315px;
  }
}

@media all and (max-width: 1200px) {
  section.demo-page::after {
    display: none;
  }
  .outset-section .outset-content {
    padding-right: 50px;
  }
  .outset-section.outset-section-alt .outset-content {
    padding-left: 50px;
  }
  .downloads-right {
    padding-right: 0;
    max-width: 45%;
  }
  .downloads-form::before {
    width: 100%;
  }
  .company-news-card {
    max-width: 100%;
    flex: 0 1 48%;
  }
  .case-study-modal {
    max-height: 600px;
    overflow-y: scroll;
  }
  .case-study-modal-close {
    top: 40px;
  }
}

@media all and (max-width: 1024px) {
  .team-slides {
    padding: 0;
  }
  .team-slider-nav {
    bottom: 48px;
    right: 120px;
  }
}

@media all and (min-width: 768px) {
  .team-slider-dots {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .team-slide {
    padding: 25px;
  }
  .team-img {
    text-align: center;
  }
  .team-img img {
    max-width: 120px;
    height: auto;
  }
  .team-slider-nav {
    display: none;
  }
}

@media all and (max-width: 1024px) {
  .content-box-container {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  body:not(.page-template-solutions)
    .content-box-container:not(.content-box-ctms) {
    flex-direction: column-reverse;
  }
  .content-box-container.space-between > div:last-child {
    margin-bottom: 35px !important;
  }
  .content-box h3 {
    font-size: 54px;
    line-height: 70px;
    margin: 0 0 20px;
  }
  .content-box-ctms .content-box.image-only {
    flex: 0 1 auto;
  }
  .content-box-ctms .content-box.image-only img {
    top: -40px;
  }
  .content-box-ctms .content-box-text {
    margin-top: -30px;
  }
  .content-box-container .content-box-text {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .content-box-container.space-between .content-box:first-child {
    margin-bottom: 35px;
  }
  .simple-content-section {
    padding: 80px 0;
  }
}

@media all and (max-width: 1023px) {
  header.header-remote-monitoring .header-two-cols {
    padding: 30px 0 0;
  }
  header.header-remote-monitoring .header-two-cols .header-left {
    display: block;
  }
  .header-midHeight.header-remote-monitoring {
    height: 730px;
  }
  .team-photos-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .team-photos-row img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .team-photos-bg {
    max-width: 100%;
    width: 50%;
  }
  .team-photos {
    margin: 0 auto;
  }
  header .header-two-cols {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-midHeight {
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  header .header-content.header-two-cols {
    padding-bottom: 0;
  }
  .header-two-cols .header-left {
    padding-right: 0;
  }
  .header-two-cols .header-right {
    align-self: center;
    margin-top: 50px;
  }
}

@media all and (max-width: 992px) {
  .feature-layers {
    min-height: auto;
    padding-bottom: 40%;
  }
  .feature-layers-back {
    display: none;
  }
  .feature-layers--flip .feature-layers-front,
  .feature-blocks-row-alt .feature-layers-front,
  .feature-layers-front {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
  }
  .header-solutionSubpages {
    padding-bottom: 0 !important;
  }
  .article-meta {
    flex-wrap: wrap;
  }
  .article-meta-right {
    flex: 0 1 100%;
    text-align: center;
    padding-top: 20px;
  }
  .alignleft,
  .alignright {
    float: none;
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .article-content blockquote p:first-child::before {
    left: -20px;
  }
  .article-content blockquote p:last-child::after {
    right: -20px;
  }
  .l-offering__container h3 {
    line-height: normal;
  }
  .feature-blocks-row-alt .feature-blocks-item .feature-content {
    padding-right: 30px;
  }
  .feature-blocks-item .feature-image {
    min-height: auto;
    padding-bottom: 40%;
  }
  .stat-author {
    margin-top: 20px;
  }
  .solutions-overview-item .content-box-inner {
    padding: 30px;
  }
  .content-box-container .content-box-text {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .blog-card-alt-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .header-hasBreadcrumbs .breadcrumbs,
  .header-hasBreadcrumbs .breadcrumbs-solutionsPages.breadcrumbs {
    position: absolute;
    top: 20px;
    left: 0;
  }
  .header-midHeight {
    position: relative;
  }

  .blog-card-alt-small .blog-card-alt-image img {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 168px;
    object-fit: cover;
    object-position: center;
  }
  body.blog .blog-card-list .blog-card-alt-image img {
    max-width: 100%;
    min-width: auto;
  }
  .solutions-overview-item {
    margin-bottom: 50px;
  }
  .solutions-overview-left ul li[data-id="soi-1"].active,
  .solutions-overview-left ul li {
    border-left: none;
    padding-left: 0;
  }
  .menu-expanded-header {
    position: relative;
  }
  .case-study-slider-nav {
    display: none;
  }
  .case-study-slider-nav-dots {
    display: block;
  }
  .demo-page .container {
    flex-direction: column;
  }
  .demo-left {
    width: 100%;
  }
  .demo-right {
    width: 90%;
    margin: 0 auto;
  }
  .demo-left-bottom {
    margin-top: 60px;
  }
  .demo-left {
    margin-bottom: 50px;
  }
  .content-cards .content-card {
    padding: 80px 30px 70px;
    font-size: 14px;
    line-height: 24px;
  }
  .content-cards h4 {
    font-size: 28px;
    line-height: 36px;
  }
  .content-cards p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 15px;
  }
  .video-block .container,
  .video-block-reverse .container {
    flex-direction: column-reverse;
  }
  .video-block-content {
    padding: 40px 15px;
  }
  .video-block-player {
    padding-bottom: 56.25%;
  }
  .video-block-video {
    flex: 0 1 100%;
  }
  .video-block-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .crio-features {
    margin: 40px auto 0;
    flex-direction: column-reverse;
    max-width: 75%;
  }
  .crio-features-content {
    max-width: 100%;
    margin: 0 0 20px;
  }
  .crio-features-items {
    max-width: 100%;
  }
  .crio-features-content h3 {
    margin: 0;
  }
  .header-nav-mobile {
    display: block;
  }
  .header-primary-nav,
  .header-right-nav {
    display: none;
  }
  header .header-content {
    padding: 50px 0 100px;
  }
  .header-buckets {
    margin-top: 0;
  }
  .header-buckets .container {
    padding: 0;
  }
  .header-buckets .container a {
    flex: 0 1 33.33%;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
    min-height: 250px;
  }
  .header-bucket p {
    line-height: 22px;
    margin-top: 10px;
  }
  .logo-slider,
  .quote-slider {
    margin-top: 50px;
  }
  .crio-rating {
    margin-bottom: 40px;
  }
  .simple-content-section {
    padding: 60px 0;
  }
  .simple-content-section .container {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    text-align: center;
  }
  .simple-content-section h3,
  .simple-content-section-text {
    max-width: 100%;
  }
  .simple-content-section h3 {
    margin: 0 0 20px;
  }
  .blog-card {
    flex: 0 1 48%;
  }
  .news-block-row {
    flex-wrap: wrap;
  }
  .stat-item-wrapper {
    flex-wrap: wrap;
  }
  .stat-item-left h3 {
    font-size: 30px;
    margin: 0 0 30px;
  }
  .stat-item-left p {
    font-size: 18px;
    line-height: 32px;
  }
  .stat-item-left {
    margin-bottom: 50px;
  }
  .stat-quote p {
    font-size: 24px;
    line-height: 38px;
  }
  .stat-quote {
    padding-left: 30px;
  }
  .stat-quote p::before {
    left: -30px;
    top: -30px;
  }
  .stat-quote p::after {
    right: -10px;
    bottom: -30px;
  }
  .stat-item-wrapper {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .text-block-2 {
    padding: 60px 0;
  }
  .outset-section {
    margin: 50px 0;
  }
  .outset-section.outset-section-alt {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .outset-section .container {
    flex-direction: column-reverse;
  }
  .outset-section .outset-content {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .outset-section.outset-section-alt .outset-content {
    padding-left: 0;
  }
  .outset-section .outset-image {
    margin-bottom: 50px;
  }
  .outset-section.outset-section-alt .outset-image,
  .outset-section .outset-image {
    padding: 0;
  }
  .outset-section .outset-image-background {
    width: 100%;
    height: 100%;
    top: -50px;
  }
  .outset-image img {
    display: block;
    margin: 0 auto;
    max-width: 80%;
  }
  .blog-list {
    padding: 50px 15px 30px;
  }
  .blog-list .blog-list-items {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .blog-list .blog-list-item {
    max-width: 500px;
  }
  .blog-list .blog-list-item:last-child {
    margin-right: 0;
  }
  .page-nav {
    padding: 60px 15px 100px;
  }
  .page-nav-item {
    font-size: 24px;
  }
  .page-nav .container {
    height: 120px;
  }
  .blog-card-alt {
    flex-direction: column;
  }
  .blog-card-alt-image {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .blog-top-story {
    min-height: auto;
  }
  .blog-top-story-content {
    padding: 40px;
    max-width: 55%;
  }
  .blog-left {
    padding-right: 50px;
  }
  .blog-right {
    padding-left: 50px;
  }
  .two-column-text-container {
    flex-direction: column;
  }
  .two-column-text-content {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .two-column-text {
    padding: 50px 0;
  }
  header .header-content h1,
  .text-block-2 h2 {
    font-size: 46px;
    line-height: 60px;
  }
  .header-content p,
  .team-slide p,
  .two-column-text-content,
  .text-block-2 p {
    font-size: 18px;
    line-height: 28px;
  }
  .team-slide h4,
  .two-column-text-content h4 {
    font-size: 28px;
    margin: 0 0 15px;
  }
  .team-slide span {
    font-size: 17px;
    line-height: 24px;
  }
  header .header-content.header-two-cols {
    padding-bottom: 0;
  }
  .inner-nav .container ul li {
    margin-right: 40px;
  }
  .inner-nav .container ul li:last-child {
    margin-right: 0;
  }
  .feature-blocks-item .feature-image,
  .feature-layers {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px;
    box-sizing: border-box;
  }
  .feature-blocks-item .feature-image img {
    width: 80%;
  }
  .video-case-study .container {
    flex-direction: column-reverse;
  }
  .video-case-study .container .video-case-study-content {
    padding: 60px;
  }
  .video-case-study .container .video-case-study-player {
    max-width: 100%;
  }
  .feature-blocks-item .feature-content,
  .feature-blocks-item .feature-image {
    flex: 0 1 100%;
    width: 100%;
    padding-left: 30px;
  }
  .feature-blocks-item .feature-content h4 {
    font-size: 14px;
    line-height: 18px;
  }
  .feature-blocks-item .feature-content h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .feature-blocks-item .feature-content p {
    font-size: 18px;
    line-height: 28px;
  }
  .leadership-bio {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    overflow: scroll;
  }
  .header-fh .header-content {
    margin-top: 50px;
  }
  .header-fh {
    height: 100vh;
  }
  .text-block {
    padding: 50px 15px;
  }
  .text-block p {
    font-size: 18px;
    line-height: 28px;
  }
  .solutions-overview {
    margin-top: 0;
    padding: 60px 15px;
  }
  .solutions-overview .container {
    flex-direction: column;
  }
  .solutions-overview-scrollable,
  .solutions-overview-left {
    max-width: 100%;
    position: relative !important;
    top: auto !important;
    height: auto !important;
  }
  .solutions-overview-right {
    margin-top: 50px;
  }
  .solutions-overview-left h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .solutions-overview-left ul {
    margin-top: 30px;
  }
  .downloads-page {
    padding-bottom: 60px;
  }
  .downloads-page .container {
    flex-direction: column;
    align-items: center;
  }
  .downloads-left {
    margin-bottom: 30px;
    max-width: 600px;
  }
  .downloads-right {
    max-width: 600px;
  }
  .downloads-form {
    padding: 20px;
  }
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(100%);
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 1;
    padding: 18px 15px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
  }
  .mobile-nav.active {
    transform: translateX(0);
    z-index: 99;
  }
  .mobile-nav li:first-child {
    margin-top: 0;
  }
  .mobile-nav li {
    margin: 10px 0 25px;
    line-height: 30px;
  }
  .mobile-nav a {
    color: var(--t-navy);
  }
  .mobile-nav-items {
    margin-top: 30px;
  }
  .mobile-nav-items .request-demo a {
    background: var(--orange);
    display: inline-block;
    color: #fff;
    text-align: center;
    padding: 20px 30px;
    font-size: 18px;
  }
  .header-nav-mobile-dark span {
    background-color: var(--t-navy);
  }
  .admin-bar .mobile-nav {
    top: 46px;
  }
  .mobile-nav.active .header-nav-mobile {
    position: absolute;
    top: 32px;
    right: 15px;
  }
  .l-offering {
    margin-top: 50px;
  }
  .l-offering__items {
    justify-content: center;
  }
  .crio-features-content {
    max-width: 100%;
    margin: 0 0 20px;
  }
  .crio-features-content h3 {
    margin: 0;
  }
  .crio-cras {
    padding: 35px 0;
  }
  .crio-cras h2 {
    line-height: 1.2;
    margin: 0 0 20px;
  }
  h4.crio-cras-subtitle {
    margin: 35px 0 40px;
  }
  .crio-cras-response {
    flex-direction: column;
    margin: 0 auto 35px;
    align-items: center;
    text-align: center;
  }
  .crio-cras-bar {
    margin: 0 auto 15px;
    justify-content: center;
  }
  .crio-cras-bar__left,
  .crio-cras-bar__right {
    width: auto;
  }
  .crio-cras-response__title {
    min-height: auto;
    margin-left: 0;
  }
  .crio-cras-response--legend {
    display: none;
  }
  .crio-cras-response--legend--mobile {
    display: block;
    margin: 0 auto 15px;
  }
  .crio-comparison {
    margin: 70px 0;
  }
  .crio-comparison h2 {
    line-height: 1.2;
    margin-bottom: 35px;
  }
  .crio-comparison-table__heading .crio-comparison-table__column {
    min-height: 80px;
  }
  .case-study-slider {
    padding: 80px 0;
  }
  .menu-expanded-header:hover .expanded-header {
    display: none;
  }
  .expanded-header-toggle {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: #fafafa;
    text-align: center;
    line-height: 30px;
  }
  .expanded-header .expanded-header-wrapper {
    display: none;
  }
  .expanded-header {
    position: relative;
    box-shadow: none;
    top: 0;
    padding-top: 0;
  }
  .expanded-header > ul {
    display: block;
    padding-left: 20px;
    padding-top: 10px;
  }
  .stat-item-right {
    max-width: 100%;
  }
  .simple-content-section h3 {
    font-size: 32px;
    line-height: 40px;
  }
  .simple-content-section .request-cta {
    margin-top: 20px;
  }
  .industry-compliance-logos {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .industry-compliance-logos img {
    display: block;
    flex: 0 1 50%;
    width: 50%;
    box-sizing: border-box;
    padding: 0 20px;
    margin-bottom: 30px;
    object-fit: contain;
  }
  .industry-compliance-logos img:last-child {
    margin: 0;
  }
  .breadcrumbs.breadcrumbs-solutionsPages {
    width: 100%;
  }
}
.mobile-compliance-logos {
  display: none;
}

@media all and (max-width: 940px) {
  .newsletter-big .container {
    height: auto;
  }
  .newsletter-big .container {
    flex-direction: column;
  }
  .newsletter-big h3 {
    margin-top: 0;
  }
}

@media all and (max-width: 850px) {
  .video-case-study .container .video-case-study-content {
    padding: 60px 30px;
  }
  .feature-blocks-item .feature-image {
    min-height: auto;
    padding-bottom: 85%;
  }
  .mobile-compliance-logos {
    display: block;
  }
  .mobile-compliance-logos p {
    margin: 0;
  }
  .mobile-compliance-logos .footer-compliance {
    display: block;
    margin-top: 25px;
  }
  .mobile-compliance-logos .footer-compliance img {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: 30px;
    max-height: auto;
  }
  .mobile-compliance-logos .footer-compliance img:last-child {
    margin-right: 0;
  }
  .case-study-form .container {
    flex-direction: column;
  }
  .case-study-form-single,
  .case-study-selections {
    width: 100%;
  }
  .l-offering__items {
    flex-wrap: wrap;
  }
  .crio-features-item {
    flex: 0 1 45%;
    margin: 0 0 30px;
  }
  .l-offering__item img {
    max-width: 100%;
  }
  .l-offering__item {
    flex: 0 1 50%;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .footer-columns {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .footer-column {
    flex: 0 1 33%;
    margin-bottom: 30px;
  }
  .footer-contact {
    margin-top: 0;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom-left {
    margin-bottom: 30px;
  }
  .logo-slider img {
    margin: 0 auto;
    display: block;
  }
  .header-contentCentered .header-content {
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    box-sizing: border-box;
  }
  .header-content-title p {
    font-size: 46px;
    line-height: 62px;
    padding: 0;
  }
  .page-nav h3 {
    font-size: 46px;
    line-height: 1;
    margin: 0 0 50px;
  }
  .page-nav .container {
    flex-direction: column;
    align-items: center;
  }
  .page-nav-item {
    min-height: 100px;
    width: 100%;
    max-width: 300px;
    padding: 0 25px;
    box-sizing: border-box;
  }
  .page-nav .container {
    height: auto;
  }
  .blog-list h3 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 40px;
  }
  .text-block-2 h2 {
    font-size: 46px;
    margin: 0 0 15px;
  }
  .outset-section .outset-content p,
  .text-block-2 p {
    font-size: 18px;
    line-height: 28px;
  }
  .category-slider .container {
    padding: 20px 30px;
  }
  .feature-blocks-row {
    margin-bottom: 40px;
  }
  .feature-blocks-row:last-child {
    margin-bottom: 40px;
  }
  .feature-blocks-row .feature-blocks-item {
    flex-direction: column;
  }
  .feature-blocks-row-alt .feature-blocks-item {
    flex-direction: column-reverse;
  }
  .feature-blocks-item .feature-image {
    margin-bottom: 30px;
  }
  .feature-layers {
    max-width: 100%;
    min-height: auto;
    padding-bottom: 85%;
  }
  .solutions-nav .container {
    flex-direction: column;
    align-items: center;
  }
  .solutions-nav a {
    min-height: 100px;
    width: 100%;
    max-width: 300px;
    padding: 0 25px;
    box-sizing: border-box;
  }
  .solutions-nav .container {
    height: auto;
  }
  .solutions-nav .container a.solutions-nav-stacked svg {
    top: 5%;
  }
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-hasBreadcrumbs .breadcrumbs .container {
    position: relative;
    padding-top: 0;
    margin-bottom: 40px;
  }
  .case-study-modal {
    padding: 40px 50px;
    width: 90%;
  }
}

@media all and (max-width: 767px) {
  .newsletter-big {
    margin: 0 auto 80px;
  }
  .stats-header {
    display: none;
  }
  .stats {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .stats-header-item--inSlide {
    display: flex;
    color: var(--orange);
    margin-bottom: 40px;
  }
  .footer-bottom-last .footer-bottom-right {
    display: flex;
    flex-direction: column;
  }
  .footer-bottom-last .footer-bottom-right > * {
    margin-bottom: 20px;
  }
  footer {
    padding: 50px 0;
  }
  footer .container {
    padding: 0 30px;
  }
  .footer-bottom-row:first-child .footer-bottom-right,
  .footer-columns .footer-column {
    display: none;
  }
  .footer-columns .footer-column:first-child {
    margin-bottom: 50px;
  }
  .footer-bottom-row,
  .footer-columns .footer-column:first-child {
    display: block;
  }
  .footer-columns {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .content-cards .container {
    flex-direction: column;
  }
  .content-cards .content-card {
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }
  .blog-top-story-content {
    min-height: auto;
  }
  .blog-top-story-image {
    display: block;
  }
  .blog-top-story-content {
    max-width: 100%;
  }
  .blog-top-story {
    flex-direction: column;
    background-image: none !important;
  }
  .blog-container {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .blog-left {
    padding-right: 0;
    border-right: none;
  }
  .blog-right {
    padding-left: 0;
    margin-top: 60px;
  }
  .sidebar-widget {
    margin-left: auto;
    margin-right: auto;
  }
  .blog-card-alt:last-child {
    margin-bottom: 40px;
  }
  .blog-card-list-cols {
    flex-direction: column;
  }
  .blog-card-list-cols .blog-card-alt {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .blog-card-alt {
    margin-bottom: 40px;
  }
  .sidebar-newsletter input[type="email"] {
    max-width: 100%;
  }
  .company-news-list {
    flex-direction: column;
  }
  .company-news-card {
    flex: 0 1 100%;
    margin-bottom: 40px;
  }
  .company-news-card img {
    margin-bottom: 20px;
  }
  .company-news-title {
    margin: 5px 0 10px;
  }
  .company-news-card p {
    margin-bottom: 20px;
  }
  .company-news h2 {
    margin-bottom: 40px;
  }
  .company-news {
    padding-top: 50px;
  }
  .team-quote p {
    font-size: 22px;
    line-height: 30px;
  }
  .team-quote {
    padding: 50px 0;
  }
  .leadership h2,
  .team-quote h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .team-quote h3 {
    font-size: 22px;
  }
  .leadership-list {
    margin-top: 30px;
  }
  .leadership-item {
    margin: 0 auto 30px;
  }
  .leadership-bio h4,
  .leadership-item h4 {
    font-size: 26px;
    line-height: 32px;
  }
  .leadership-bio h5,
  .leadership-item h5 {
    font-size: 16px;
    line-height: 22px;
  }
  .investors {
    padding: 50px 15px;
  }
  .investors img {
    display: block;
    margin: 0 auto 20px;
  }
  .investors img:first-child {
    margin-right: auto;
  }
  .sponsors-title {
    padding: 30px;
  }
}

@media all and (max-width: 668px) {
  .leadership-bio {
    height: 100vh;
  }
  .article-content img {
    width: 100%;
  }
  .article-content blockquote {
    padding: 20px;
  }
  .demo-left-bottom p::before {
    top: -30px;
    left: 0;
  }
  .demo-left-bottom p::after {
    right: 0;
    bottom: -30px;
  }
  .content-box-inner {
    max-width: 90%;
  }
  .case-study-selections ul li span {
    font-size: 14px;
    line-height: 20px;
  }
  .case-study-selections ul li {
    min-height: 100px;
    padding: 0 20px;
  }
  .case-study-form-single h3 {
    margin: 30px 0 0;
    font-size: 30px;
    line-height: 1.5;
  }
  .case-study-form-single form {
    margin-top: 20px;
  }
  .demo-left h3 {
    font-size: 32px;
    line-height: 44px;
  }
  .demo-left p,
  .demo-left ul {
    font-size: 16px;
    line-height: 28px;
  }
  .demo-left-bottom h4,
  .demo-left-bottom h5 {
    font-size: 20px;
    line-height: 24px;
  }
  .demo-right h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .demo-form {
    padding: 15px 30px 20px;
  }
  .demo-page {
    padding-top: 50px;
    margin: 0 auto 50px;
  }
  .sponsors-title h3 {
    font-size: 22px;
    line-height: 36px;
  }
  .crio-comparison-container {
    overflow: hidden;
  }
  .crio-comparison-table {
    width: 650px;
  }
  .crio-comparison-table__wrapper {
    overflow-x: scroll;
  }
  .crio-features-items {
    margin-right: 0;
    flex-direction: column;
    align-items: center;
  }
  .crio-features-item {
    flex: 0 1 100%;
    width: 100%;
  }
  .cta-section-columns {
    flex-direction: column;
    justify-content: center;
    margin-top: 30px;
  }
  .cta-section-column .request-cta {
    min-width: 250px;
  }
  .cta-section-column {
    margin-bottom: 10px;
  }
  .cta-section-column:first-child {
    order: 0;
  }
  .cta-section-column:last-child {
    order: 1;
  }
  .cta-section-column:nth-child(2) {
    order: 2;
    margin-top: 20px;
  }
  .stats,
  .cta-section {
    padding-bottom: 50px;
  }
  .blog-card {
    flex: 0 1 100%;
  }
  .blog-card-img {
    height: 168px;
  }
  .blog-card:not(.blog-card-large) {
    min-height: auto;
  }
  .blog-card-large {
    min-height: 362px;
  }
  .footer-column {
    flex: 0 1 48%;
  }
  .footer-column:first-child {
    flex: 0 1 100%;
  }
  .cta-section h3 span {
    padding: 0 20px;
  }
  .cta-section h3 {
    font-size: 26px;
    margin: 0 0 25px;
  }
  .cta-section h4 {
    font-size: 16px;
  }
  .stats-header {
    flex-direction: column;
    justify-content: center;
  }
  .stats-header-item {
    justify-content: center;
    margin-bottom: 20px;
  }
  .stats {
    padding-top: 60px;
  }
  .stat-items {
    margin-top: 10px;
  }
  .stat-quote p::before {
    top: 0;
    left: 0;
    font-size: 18px;
    color: #333;
  }
  .stat-quote p::after {
    bottom: 0;
    right: 0;
    font-size: 18px;
    color: #333;
  }
  .stat-quote {
    padding-left: 0;
  }
  .stat-quote p {
    padding: 50px 0 50px 30px;
    box-sizing: border-box;
  }
  .header-content-title p {
    font-size: 36px;
    line-height: 44px;
  }
  .career-row {
    padding: 20px 0;
    line-height: 2;
  }
  .career-row .container {
    flex-direction: column;
    height: auto;
  }
  .career-listing {
    margin-top: 40px;
  }
  .career-list h3 {
    font-size: 32px;
  }
  .inner-nav .container ul {
    height: auto;
    flex-direction: column;
    padding: 15px 0;
  }
  .inner-nav .container ul li {
    margin: 7px 0;
  }
  .leadership-bio-inner {
    flex-direction: column;
  }
  .leadership-bio .leadership-image {
    margin-right: 0;
  }
  .leadership-bio .leadership-info {
    max-width: 100%;
  }
  .leadership-bio svg {
    top: 30px;
    right: 30px;
    font-size: 35px;
  }
}

@media all and (max-width: 500px) {
  .article-content img.alignleft,
  .article-content img.alignright,
  .article-content blockquote img.alignleft {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .newsletter-big h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .newsletter-big-right form ._form-content {
    flex-direction: column;
    align-items: center;
    min-width: auto;
    padding: 0 15px;
  }
  .newsletter-big-right form ._form-content div {
    width: 100%;
  }
  .newsletter-big-left,
  .newsletter-big-right,
  .newsletter-big-right form ._form-content input {
    width: 100%;
    max-width: 100%;
  }
  .newsletter-big-right form ._form-content,
  .newsletter-big-right form {
    min-width: 100%;
    box-sizing: border-box;
  }
  .newsletter-big-right form button {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    height: 65px;
    line-height: 60px;
  }
  .header-buckets .container {
    flex-direction: column;
  }
  .header-buckets .container a {
    flex: 0 1 100%;
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 80px;
  }
  header .header-content h3 {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  .quote-slider {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
  }
  h4.crio-cras-subtitle {
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer-compliance {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-compliance img {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 450px) {
  .case-study-modal h3 {
    font-size: 24px;
    line-height: 1.5;
  }
  .downloads-form input {
    height: 50px;
    padding: 0 20px;
  }
  .crio-features-content {
    min-width: auto;
    width: auto;
  }
  .l-offering__items {
    flex-direction: column;
    align-items: center;
  }
  .l-offering__item {
    flex: 0 1 100%;
    max-width: 70%;
    margin: 0 0 50px;
  }
  .cta-section h3::before {
    display: none;
  }
  header .header-content h1 {
    font-size: 46px;
    line-height: 60px;
  }
  header .header-content h3 {
    font-size: 18px;
    line-height: 28px;
  }
  .page-nav h3,
  .text-block-2 h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .page-nav-item {
    font-size: 20px;
  }
}
._row._checkbox-radio {
  display: flex;
  align-items: center;
  position: relative;
}
._row._checkbox-radio input {
  margin: 0 15px 0 0;
  width: 25px;
  height: 25px;
  opacity: 0;
}
._field91,
._x10807818 {
  position: relative;
  margin-bottom: 30px;
}
._field91 ._row:not(._checkbox-radio) label,
._x10807818 ._row:not(._checkbox-radio) label {
  pointer-events: none;
  display: block;
  max-width: 90%;
  max-height: 100%;
}
._field91 ._row:not(._checkbox-radio),
._x10807818 ._row:not(._checkbox-radio) {
  height: 65px;
  line-height: 65px;
  padding-left: 40px;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  color: #979797;
  cursor: pointer;
  display: flex;
  align-items: center;
}
._field91 ._row:not(._checkbox-radio) label,
._x10807818 ._row:not(._checkbox-radio) label {
  line-height: 1.5;
  max-width: 80%;
  overflow: hidden;
}
.expandable-items {
  display: none;
  position: absolute;
  top: 67px;
  left: 0;
  background: #fff;
  width: 100%;
  border: 1px solid #fafbfc;
  border-top: none;
  box-sizing: border-box;
  z-index: 1;
}
.expandable-items > div {
  border: 1px solid #fafbfc;
  height: 55px;
  padding-left: 40px;
  box-sizing: border-box;
  color: #808080;
  font-size: 16px;
}
._field91 ._row:not(._checkbox-radio).expanded,
._x10807818 ._row:not(._checkbox-radio).expanded {
  border: 1px solid #fafbfc;
  background: #fafbfc;
  position: relative;
}
._field91 ._row:not(._checkbox-radio).expanded::after,
._x10807818 ._row:not(._checkbox-radio).expanded::after {
  content: "";
  height: 2px;
  border-top: 2px dashed #e1e1e1;
  position: absolute;
  bottom: -4px;
  left: 40px;
  right: 40px;
}
._field91 ._row:not(._checkbox-radio)::before,
._x10807818 ._row:not(._checkbox-radio)::before {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  color: var(--orange);
  font-weight: 900;
  position: absolute;
  font-size: 30px;
  right: 30px;
  top: 5px;
}
._field91 ._row:not(._checkbox-radio).expanded::before,
._x10807818 ._row:not(._checkbox-radio).expanded::before {
  transform: rotate(180deg);
}
._row._checkbox-radio input:checked ~ .checkmark::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  color: var(--orange);
  width: 100%;
  height: 100%;
  line-height: 1.5;
}
.error-page .container {
  max-width: 1150px;
  padding: 0 15px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.error-page {
  background: #fff;
  padding: 100px 0 180px;
}
.error-page img {
  max-width: 330px;
}
.error-text {
  flex: 0 1 58%;
}
.error-page h2 {
  color: #0d2b3a;
  font-size: 58px;
  line-height: 83px;
}
.error-text a {
  color: var(--orange);
  font-size: 18px;
}
.error-text a svg {
  position: relative;
  left: 15px;
  top: 1px;
  transition: 0.2s ease-in-out;
}
.error-text a:hover svg {
  left: 25px;
}
@media all and (max-width: 992px) {
  .error-page h2 {
    font-size: 46px;
    line-height: 60px;
  }
}
@media all and (max-width: 767px) {
  .error-page h2 {
    font-size: 40px;
    line-height: 56px;
  }
  .error-page .container {
    flex-direction: column-reverse;
  }
  .error-page img {
    max-width: 50%;
    margin: 0 auto;
  }
  .error-text {
    flex: 0 1 100%;
  }
  .error-page {
    padding: 20px 30px 50px;
  }
}

@media all and (max-width: 450px) {
  ._field91 ._row:not(._checkbox-radio),
  ._x10807818 ._row:not(._checkbox-radio) {
    padding-left: 20px;
    display: flex;
    align-items: center;
  }
  ._field91 ._row:not(._checkbox-radio) label,
  ._x10807818 ._row:not(._checkbox-radio) label {
    line-height: 1.5;
    max-width: 80%;
    overflow: hidden;
  }
}

._form-thank-you,
._form-thank-you p {
  line-height: 29px;
}

.quote-slider-link {
  text-align: center;
  padding-top: 25px;
}

.quote-slider-link a {
  color: var(--orange);
  font-size: 16px;
}

.quote-slider-link a svg {
  margin-left: 10px;
  position: relative;
  left: 0;
  top: 1px;
  transition: 0.2s ease;
}

.quote-slider-link a:hover svg {
  left: 7px;
}

.stat-author-info .quote-slider-link {
  text-align: left;
  padding-top: 5px;
}

header.header-globalCaps {
  background-position: top;
}

header.header-globalCaps .header-content h1 {
  line-height: 1.1;
  margin: 0 0 40px;
}

header.header-globalCaps .breadcrumbs {
  max-width: 1250px;
}

header.header-globalCaps .header-content {
  max-width: 1220px;
  padding: 0 15px;
}

.globalCaps__intro .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.globalCaps__intro {
  text-align: center;
  padding-top: 100px;
}

.globalCaps__intro h2 {
  font-size: 58px;
  line-height: normal;
  font-weight: 400;
  color: var(--t-navy);
  margin: 0 0 40px;
}

.globalCaps__intro p {
  font-size: 22px;
  line-height: 37px;
  color: #656565;
}

section.compliance {
  margin-top: 100px;
  margin-bottom: 130px;
}

.compliance .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;

  display: flex;
  justify-content: space-between;
}

.compliance__globe {
  max-width: 710px;
  width: 100%;
  min-width: 500px;
}

.compliance__globe svg text:hover {
  fill: var(--orange) !important;
  cursor: pointer;
}

.selectedPath {
  stroke: var(--orange) !important;
}

.selectedText,
.selectedCircle {
  fill: var(--orange) !important;
}

.compliance__slider__nav {
  position: relative;
  margin: 70px auto 0;
  max-width: 700px;
}

.compliance__slider__nav ul {
  display: flex;
  justify-content: center;
}

.compliance__slider__nav ul button {
  display: block;
  position: relative;
  z-index: 1;
  padding: 0;
  -webkit-appearance: none;
  background: none;
  border: none;
  font-size: 0;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  background: #dfdfdf;
  border-radius: 100px;
  margin: 0 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.compliance__slider__nav ul li.slick-active button {
  background: var(--orange);
}

.compliance__slider {
  /*flex: 0 1 auto;*/
  max-width: 48%;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.compliance__slider__nav--arrows {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.compliance__slider__nav--arrows > div {
  cursor: pointer;
  width: 33px;
  height: 33px;
  box-sizing: border-box;
  border: 1px solid var(--orange);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: var(--orange);
  font-size: 15px;
}

.compliance__slide h3 {
  font-size: 32px;
  color: var(--t-navy);
  font-weight: 500;
  margin: 0 0 27px;
}

.compliance__slide p {
  font-size: 22px;
  line-height: 38px;
  color: #656565;
}

.page-template-global-capabilities .cta-section {
  display: none;
}

@media all and (max-width: 1020px) {
  .compliance .container {
    display: block;
  }
  .compliance__globe {
    margin: 0 auto 50px;
  }
  .compliance__slider {
    max-width: 100%;
  }
  .compliance__slider__nav {
    margin: 15px auto 0;
  }
  .compliance__slider__nav--arrows {
    width: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .globalCaps__intro {
    padding-top: 60px;
  }
  .globalCaps__intro h2 {
    margin: 0 0 20px;
    font-size: 40px;
  }
  .compliance__slide p,
  .globalCaps__intro p {
    font-size: 16px;
    line-height: 26px;
  }
  section.compliance {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .compliance__slide h3 {
    font-size: 26px;
    line-height: normal;
    margin: 0 0 15px;
  }
  .compliance__globe {
    min-width: auto;
  }
}

@media all and (max-width: 600px) {
  .compliance__slider__nav--arrows {
    display: none;
  }
  .compliance__slider__nav ul {
    flex-wrap: wrap;
  }
  .compliance__slider__nav ul li {
    margin-bottom: 20px;
  }
}

.page-template-global-capabilities .quote-slider {
  margin: -25px 0 50px;
}

.page-template-global-capabilities .quote-slider .container img {
  border-radius: 0;
  max-width: 100px;
}

.page-template-global-capabilities .quote-slider-title {
  font-size: 32px;
  color: var(--t-navy);
  font-weight: 500;
  margin: 0 0 27px;
}

.container-with-search {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-header-right span {
  text-transform: none;
  color: #999;
  font-size: 16px;
  line-height: 1;
  font-weight: 200;
  margin: 0;
  position: relative;
  z-index: 1;
  display: block;
  margin-right: 65px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.blog-header-right {
  flex: 0 1 400px;
}

.blog-header-right form {
  position: relative;
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.blog-header-right input {
  border: 1px solid #e1e1e1;
  border-right: none;
  font-size: 16px;
  color: #999;
  width: 100%;
  font-weight: 200;
  background: #fff;
  height: 45px;
  padding: 0 30px 0 8px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);
  z-index: 2;
  transition: right 0.3s ease;
}

.blog-header-right input.shown {
  right: 0;
}

.blog-header-right input::placeholder {
  color: #999;
}

.blog-header-right form button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  height: 45px;
  width: 45px;
  z-index: 3;
  cursor: pointer;
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
}

.blog-header-right form.inactive * {
  pointer-events: none;
  cursor: pointer;
}

.blog-header-right form:not(.inactive) span {
  opacity: 0;
}

@media (max-width: 992px) {
  .container-with-search {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .blog-header-right {
    margin-top: 30px;
  }
}

.crio-events {
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid #e6e6e6;
  padding-top: 60px;
}
.crio-events--single {
  padding-top: 50px;
}
.crio-events * {
  box-sizing: border-box;
}
.crio-events .container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
}

.crio-events--single .container {
  flex-direction: column;
}

.crio-events__items {
  position: relative;
  width: 68%;
  padding-right: 80px;
}

.crio-events__items:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -0.5px;
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
}

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

.crio-events__items__button {
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 18px;
  line-height: 28px;
  padding: 13px;
  width: 100%;
  cursor: pointer;
}

.crio-events__items__button:hover,
.crio-events__items__button:focus {
  background-color: var(--orange);
  color: #fff;
}

.crio-events__items__button:focus {
  border-color: rgba(0, 0, 0, 0.25);
}

.crio-events__items__button[disabled],
.crio-events__items__button[disabled]:hover,
.crio-events__items__button[disabled]:focus {
  border-color: #f0f0f0;
  background-color: #f0f0f0;
  color: #999999;
  cursor: not-allowed;
}

.crio-events__sidebar {
  width: 32%;
  padding-left: 80px;
}

.crio-events__sidebar .blog-right {
  padding: 0;
}

.crio-events__items__wrapper {
  margin-bottom: 93px;
}

.crio-events__item {
  transition: all 0.075s ease-out;
}

.crio-events__item:hover {
  background-color: #f9fafa;
  transition: all 0.15s ease-out;
}

.crio-events__item:not(:last-child) {
  margin-bottom: 32px;
}

.crio-events__item__flex {
  padding: 30px 30px 30px 0;
  display: flex;
  align-items: center;
}

.crio-events__item__date {
  width: 133px;
  flex: none;
  padding: 0 30px;
  text-align: center;
}

.crio-events__item__date__top {
  font-size: 22px;
  line-height: 1;
  color: #333;
}
.crio-events__item__date__bottom {
  font-size: 16px;
  line-height: 1;
  color: var(--t-navy);
}

.crio-events__item__main {
  flex-grow: 1;
}

.crio-events__item__main h2 {
  color: var(--t-navy);
  font-size: 32px;
  line-height: 1;
  margin: 0 0 8px 0;
}

.crio-events__item__main__location {
  display: flex;
  align-items: center;
}

.crio-events__item__main__location svg {
  width: 14px;
  color: #ccc;
  margin-right: 8px;
}

.crio-events__item__main__location span {
  font-size: 18px;
  line-height: 1;
  color: #999;
}

.crio-events__item__icon {
  flex: none;
  width: 12px;
  color: var(--orange);
  opacity: 0;
  visibility: hidden;
  transition: all 0.075s ease-out;
}

.crio-events__item:hover .crio-events__item__icon {
  opacity: 1;
  visibility: visible;
  transition: all 0.15s ease-out;
}

.crio-event {
  display: flex;
  margin-bottom: 100px;
  width: 100%;
}

.crio-event__content,
.crio-event__image {
  width: 50%;
}
.crio-event__content {
  padding-right: 51px;
}
.crio-event__image {
  padding-left: 51px;
  font-size: 0;
  line-height: 0;
}

.crio-event__image > img {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.crio-event__content__title {
  font-size: 22px;
  line-height: 30px;
  margin: 0 0 17px 0;
  color: #333;
  font-weight: normal;
}

.crio-event__content__prose,
.crio-event__content__prose p {
  font-size: 18px;
  line-height: 2;
  color: #333;
}
.crio-event__content__prose p:not(:last-child) {
  margin-bottom: 36px;
}

.crio-event__content__prose {
  margin-bottom: 50px;
}

.crio-event__content__location {
  display: flex;
  align-items: center;
}

.crio-event__content__location > svg,
.crio-events__more-events__slider__event__location > svg {
  width: 14px;
  margin-right: 8px;
  color: #ccc;
}
.crio-event__content__location > span {
  font-size: 18px;
  line-height: 28px;
  color: #999;
}

.crio-events__more-events {
  margin-bottom: 100px;
}

.crio-events__more-events h2 {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 48px 0;
  color: var(--t-navy);
}

.crio-events__more-events__slider__event > a {
  display: block;
  margin: 0 0 30px 0;
}
.crio-events__more-events__slider__event > div {
  padding: 0 20px;
}
.crio-events__more-events__slider__event > div > h3 {
  font-size: 18px;
  line-height: 2;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.crio-events__more-events__slider__event > div > h3 > a {
  color: var(--t-navy);
}
.crio-events__more-events__slider__event__location {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.crio-events__more-events__slider__event__location > span {
  font-size: 16px;
  line-height: 1.5;
  color: #999;
}

.crio-events__more-events__slider .slick-arrow {
  color: #ccc;
  width: 28px;
  cursor: pointer;
  box-shadow: none;
  border: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
}

.crio-events__more-events__slider .slick-prev {
  left: -58px;
}

.crio-events__more-events__slider .slick-next {
  right: -58px;
}

@media only screen and (max-width: 1286px) {
  .crio-events__more-events__slider .slick-prev {
    left: -28px;
  }

  .crio-events__more-events__slider .slick-next {
    right: -28px;
  }
}

@media only screen and (max-width: 1024px) {
  .crio-events:not(.crio-events--single) .container {
    flex-wrap: wrap;
  }
  .crio-events__items,
  .crio-events__sidebar {
    width: 100%;
    padding: 0;
  }
  .crio-events__item {
    background-color: #f9fafa;
  }
  .crio-events__items::after,
  .crio-events__item__icon {
    display: none;
  }
  .crio-events__item__flex,
  .crio-events__item__flex > span {
    display: block;
  }
  .crio-events__item__flex > span {
    width: 100%;
    text-align: center;
  }
  .crio-events__item__main h2 {
    margin: 12px 0;
  }
  .crio-events__item__main__location {
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .crio-event {
    flex-wrap: wrap-reverse;
  }
  .crio-event__content,
  .crio-event__image {
    width: 100%;
    padding: 0;
  }
  .crio-event__image {
    margin-bottom: 40px;
  }
  .crio-events__more-events__slider .slick-arrow {
    display: none !important;
  }
}

.career-cta {
  position: relative;
  overflow: hidden;
}
.career-cta img {
  position: absolute;
  inset: 0;
  z-index: 5;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.career-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background-color: rgba(78, 109, 139, 0.5);
}
.career-cta__content {
  position: relative;
  z-index: 15;
  color: #fff;
  padding: 143px 15px;
  max-width: 1190px;
  width: 100%;
  margin: 0 auto;
}
.career-cta__content__pretitle {
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.career-cta__content__title {
  font-size: 42px;
  line-height: 56px;
  font-weight: bold;
  margin-bottom: 28px;
}
.career-cta a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 22px;
  line-height: 30px;
}
.career-cta a span {
  margin-right: 8px;
}
.career-cta a svg {
  width: 34px;
  height: 34px;
}
@media all and (max-width: 767px) {
  .career-cta__content {
    padding: 80px 15px;
  }
  .career-cta__content__title {
    font-size: 30px;
    line-height: 1.2;
  }
}

.g-container {
  box-sizing: border-box;
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}
.g-container * {
  box-sizing: border-box;
}
.g-flex {
  display: flex;
  width: 100%;
}
.g-block {
  display: block;
}
.g-justify-around {
  justify-content: space-around;
}
.g-justify-evenly {
  justify-content: space-evenly;
}
.g-flex-invert {
  flex-direction: row-reverse;
}
.g-items-center {
  align-items: center;
}
.g-w-1\/2 {
  width: 50%;
  flex: none;
}
.g-w-1\/3 {
  width: calc(100% / 3);
  flex: none;
}
.g-mx-auto {
  margin: 0 auto;
}

.p-sponsors #intro {
  padding: 105px 0;
  text-align: center;
  max-width: 1053px;
  width: 100%;
  margin: 0 auto;
}
.p-sponsors #intro p {
  font-size: 22px;
  line-height: 37px;
  color: #002639;
}
.p-sponsors #intro p:not(:last-child) {
  margin-bottom: 37px;
}
.p-sponsors #info {
  padding: 91px 0;
  background-color: #fafafa;
}
.p-sponsors #info .info__title {
  font-size: 38px;
  line-height: 51px;
  color: #0d2b3a;
  font-weight: 700;
  margin-bottom: 59px;
}
.p-sponsors #info .g-w-1\/2:first-child {
  padding-right: 177px;
}
.p-sponsors #info .info__list {
  position: sticky;
  top: 50px;
}
.p-sponsors #info .info__list:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #dedede;
  z-index: -1;
}
.p-sponsors #info .info__list li a {
  display: block;
  border-left: 2px solid #dedede;
  padding-left: 26px;
  font-size: 18px;
  line-height: 27px;
  color: #868686;
}
.p-sponsors #info .info__list li a.info__list--active {
  border-color: #002639;
  color: #002639;
  font-weight: 700;
}
.p-sponsors #info .info__list li:first-child a {
  margin-bottom: 5px;
}
.p-sponsors #info .info__list li:last-child a {
  margin-top: 5px;
}
.p-sponsors #info .info__list li:not(:first-child):not(:last-child) a {
  margin: 5px 0;
}
.p-sponsors #info .info-item {
  margin-bottom: 130px;
}
.p-sponsors #info .info-item__image {
  padding: 74px 58px;
  background: #f5f5f5;
}
.p-sponsors #info .info-item__image img {
  box-shadow: -15px 20px 30px rgba(159, 159, 159, 0.42);
}
.p-sponsors #info .info-item__content {
  padding: 40px 53px;
  background-color: #0d2b3a;
  color: #fff;
}
.p-sponsors #info .info-item:nth-child(2) .info-item__content {
  background-color: #271313;
}
.p-sponsors #info .info-item:nth-child(3) .info-item__content {
  background-color: #34605b;
}
.p-sponsors #info .info-item__content__title {
  font-size: 52px;
  letter-spacing: 3px;
  line-height: 1;
  margin: 0 0 15px 0;
}
.p-sponsors #info .info-item__content__text {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
.p-sponsors #info .info-item__content__link {
  display: flex;
  align-items: center;
  color: #fff;
}
.p-sponsors #info .info-item__content__link span {
  font-size: 18px;
  line-height: 20px;
}
.p-sponsors #info .info-item__content__link svg {
  width: 20px;
  height: 20px;
  margin-left: 15px;
}
.p-sponsors #industry-comp {
  background-color: #34605b;
  padding: 70px 0;
  text-align: center;
  margin-bottom: 120px;
}
.p-sponsors #industry-comp h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1;
  font-weight: normal;
  margin: 0 0 42px 0;
  text-transform: uppercase;
}
.p-sponsors #industry-comp img {
  max-height: 120px;
}

.page-template-esource-to-edc .header-midHeight {
  background-color: #271313;
  background-position: right bottom;
  background-size: 852px 435px;
}

.p-esource-to-edc {
  margin-bottom: 144px;
}
.p-esource-to-edc #intro {
  text-align: center;
  font-size: 22px;
  line-height: 50px;
  color: #0d2b3a;
  padding: 90px 0;
}
.p-esource-to-edc #items nav {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 62px;
  padding: 44px 0;
}
.p-esource-to-edc #items nav a {
  font-size: 16px;
  line-height: 28px;
  color: rgba(13, 43, 58, 0.33);
  font-weight: 700;
}
.p-esource-to-edc #items .item {
  align-items: center;
}
.p-esource-to-edc #items .item__content-col {
  padding: 75px 85px;
}
.p-esource-to-edc #items .item__img-col {
  background-color: #f8f8f8;
}
.p-esource-to-edc #items .item h2 {
  font-size: 18px;
  line-height: 21px;
  color: #f48d1c;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}
.p-esource-to-edc #items .item h3 {
  font-size: 35px;
  line-height: normal;
  color: #002639;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.p-esource-to-edc #items .item p {
  font-size: 22px;
  line-height: 36px;
  color: #686868;
  margin: 0;
}
.p-esource-to-edc #pagination {
  margin-top: 161px;
}
.p-esource-to-edc #pagination > a {
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 33px;
  font-weight: 700;
}
.p-esource-to-edc #pagination > a svg {
  width: 21px;
  height: 21px;
}
.p-esource-to-edc #pagination > a:first-child svg {
  margin-right: 21px;
}
.p-esource-to-edc #pagination > a:last-child svg {
  margin-left: 21px;
}
.p-post-grad {
  margin-bottom: 200px;
}
.p-post-grad #intro {
  margin: 80px 0 100px 0;
}
.p-post-grad #intro h2 {
  font-size: 58px;
  line-height: normal;
  margin: 0 0 20px 0;
  color: #002639;
  text-align: center;
  font-weight: normal;
}
.p-post-grad #intro p {
  max-width: 790px;
  color: #686868;
  font-size: 22px;
  line-height: 36px;
  margin: 0 auto;
}
.p-post-grad #logos {
  padding: 38px 0;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
.p-post-grad #logos img {
  max-height: 73px;
}
.p-post-grad #logos img:first-child {
  max-height: 46px;
}
.page-template-post-grad .cta-section {
  display: none;
}
.p-post-grad #content {
  padding-top: 100px;
}
.p-post-grad #content .g-w-1\/2:first-child {
  padding-right: 60px;
}
.p-post-grad #content .g-w-1\/2:last-child {
  padding-left: 60px;
}
.p-post-grad #content .content-image {
  position: relative;
  padding-top: 51px;
}
.p-post-grad #content .content-image:before {
  content: "";
  display: block;
  background-image: url("assets/img/team-slides-deco.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 352px;
  height: 352px;
  position: absolute;
  top: 20px;
  left: -34px;
  z-index: 1;
}
.p-post-grad #content .content-image img {
  position: relative;
  z-index: 2;
}
.p-post-grad #content h2 {
  color: #002639;
  font-size: 26px;
  line-height: normal;
  font-weight: 700;
  margin: 0 0 19px 0;
}
.p-post-grad #content h2.not-first {
  padding-top: 41px;
}
.p-post-grad #content p {
  font-size: 22px;
  line-height: 36px;
  color: #686868;
  margin: 0 0 39px 0;
}
.p-post-grad #content a {
  display: inline-flex;
  align-items: center;
  color: #e3761c;
}
.p-post-grad #content a span {
  font-size: 22px;
  line-height: normal;
  margin-right: 11px;
}
.p-post-grad #content a svg {
  width: 34px;
  height: 34px;
}

@media only screen and (max-width: 640px) {
  .p-sponsors #intro {
    padding: 40px 0;
  }
  .p-sponsors #intro p {
    font-size: 18px;
    line-height: 26px;
  }
  .p-sponsors #info {
    padding: 40px 0;
  }
  .p-sponsors #info .g-flex {
    flex-wrap: wrap;
  }
  .p-sponsors #info .g-w-1\/2 {
    width: 100%;
  }
  .p-sponsors #info .g-w-1\/2:first-child {
    padding-right: 0;
  }
  .p-sponsors #info .info__title {
    font-size: 26px;
    line-height: 1.5;
  }
  .p-sponsors #info .info__list {
    display: none;
  }
  .p-sponsors #info .info-item__image {
    padding: 24px;
  }
  .p-sponsors #info .info-item__content__title {
    font-size: 36px;
    line-height: 1.25;
  }
  .p-sponsors #info .info-item__content__text {
    font-size: 16px;
    line-height: 24px;
  }
  .p-sponsors #info .info-item {
    margin-bottom: 60px;
  }
  .p-sponsors #industry-comp {
    padding: 40px 0;
  }
  .p-sponsors #industry-comp h2 {
    font-size: 26px;
    line-height: 1.5;
  }
  .p-sponsors #industry-comp .g-flex {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    justify-items: center;
  }
  .p-sponsors #industry-comp img {
    max-height: 80px;
  }
  .page-template-esource-to-edc .header-midHeight {
    background-image: none !important;
  }
  .p-esource-to-edc #intro {
    padding: 40px 0;
    font-size: 18px;
    line-height: 36px;
  }
  .p-esource-to-edc #items nav {
    display: none;
  }
  .p-esource-to-edc #items .item {
    display: block;
    margin-bottom: 20px;
  }
  .p-esource-to-edc #items .g-w-1\/2 {
    width: 100%;
  }
  .p-esource-to-edc #items .item__content-col {
    padding: 40px;
  }
  .p-esource-to-edc #items .item h3 {
    font-size: 28px;
    line-height: 1.25;
  }
  .p-esource-to-edc #items .item p {
    font-size: 18px;
    line-height: 32px;
  }
  .p-esource-to-edc #pagination {
    flex-wrap: wrap;
  }
  .p-esource-to-edc #pagination > a {
    font-size: 18px;
    line-height: normal;
    width: 100%;
    height: 100px;
  }
  .p-post-grad #intro {
    margin: 40px 0;
  }
  .p-post-grad #intro h2 {
    font-size: 36px;
    line-height: 1.25;
  }
  .p-post-grad #intro p {
    font-size: 18px;
    line-height: 32px;
  }
  .p-post-grad #logos .g-flex {
    display: block;
  }
  .p-post-grad #logos img {
    display: block;
    margin: 0 auto 40px auto;
  }
  .p-post-grad #logos img:last-child {
    margin: 0 auto;
  }
  .p-post-grad #content {
    padding-top: 80px;
  }
  .p-post-grad #content .g-flex {
    flex-wrap: wrap;
  }
  .p-post-grad #content .g-w-1\/2 {
    width: 100%;
    padding: 0 !important;
  }
  .p-post-grad #content .g-w-1\/2:first-child {
    margin-bottom: 40px;
  }
  .p-post-grad #content .content-image {
    padding-top: 0;
  }
  .p-post-grad #content .content-image:before {
    display: none;
  }
  .p-post-grad {
    margin-bottom: 80px;
  }
  .p-post-grad #content p {
    font-size: 18px;
    line-height: 32px;
  }
}
