/*
 * Stylesheet Hub
 * --------------
 * Import all the stylesheets, pull them
 * together, then export!
 */
/************* Global Styles & Elements *************/
@import url("https://fonts.googleapis.com/css?family=Lora:400,400i|Source+Sans+Pro:300,400,600,700");
div.social-icon {
  height: 30px;
  width: 30px;
  display: inline-block;
  content: '';
  background-color: #fff;
  background-size: 30px 30px;
  margin: 4px;
  transition: .3s;
}

div.social-icon.facebook {
  -webkit-mask-image: url("../assets/images/social/facebook.svg");
  mask-image: url("../assets/images/social/facebook.svg");
}

div.social-icon.linkedin {
  -webkit-mask-image: url("../assets/images/social/linkedin.svg");
  mask-image: url("../assets/images/social/linkedin.svg");
}

div.social-icon.twitter {
  -webkit-mask-image: url("../assets/images/social/twitter.svg");
  mask-image: url("../assets/images/social/twitter.svg");
}

div.social-icon.blue {
  background-color: #0084CA;
}

div.social-icon.blue:hover {
  background-color: #006BB9;
}

div.social-icon.black {
  background-color: #3a3a3a;
}

div.social-icon.black:hover {
  background-color: #707175;
}

/*
 * Typography
 * ----------
 * Define the basic typography.
 */
/************* Font Families *************/
/************* Weights & Styles *************/
/************* Body Defaults *************/
body {
  color: #707175;
  line-height: 24px;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/************* Headings *************/
.h1, .h2, .h3, .h4, .h5, .h6 {
  clear: both;
  display: block;
  text-rendering: optimizelegibility;
  padding: 0;
  margin: 0;
  line-height: 1.6;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.h1 {
  font-size: 2.8125em;
  /* 45px */
  font-weight: 600;
  margin-bottom: .3em;
  text-align: center;
}

.h2 {
  font-size: 2.25em;
  /* 36px */
  text-align: center;
  line-height: 45px;
}

.h3 {
  font-size: 1.375em;
  /* 22px */
  font-family: "Lora", serif;
  text-align: center;
}

.h4 {
  font-size: 1.5em;
  /* 24px */
  line-height: 1.2em;
  /* 28px */
  color: #fff;
}

.h5 {
  font-size: 1em;
  /* 16px */
  font-weight: 700;
  text-transform: uppercase;
}

.h6 {
  font-size: .875em;
  /* 14px */
  text-transform: uppercase;
}

/************* Paragraphs *************/
p {
  line-height: 24px;
  font-size: 16px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}

/* RESPONSIVE STYLES -----------------------------*/
@media screen and (max-width: 1000px) {
  .h1 {
    font-size: 1.88em;
    /* 30.08px */
    line-height: 36px;
  }
  .h2 {
    font-size: 1.5em;
    /* 24px */
    line-height: 29px;
  }
  .h3 {
    font-size: 1em;
    /* 16px */
    line-height: 24px;
  }
  .h4 {
    font-size: 1.25em;
    /* 20px */
    line-height: 26px;
  }
}

.form {
  background-color: #fff;
  box-sizing: border-box;
  width: 575px;
  margin: -310px 10% 85px;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.1), 0 0px 15px rgba(0, 0, 0, 0.05);
  padding: 64px;
}

.form label, .form .label {
  margin-top: 40px;
  display: block;
}

.form input, .form .input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  margin: 0 auto 0;
  height: 38px;
  font-size: .88em;
  color: #3a3a3a;
  padding-left: 3px;
}

.form input:focus, .form .input:focus {
  background: #F3F7FA;
  outline: none;
}

.form input.submit-button, .form .input.submit-button {
  border: none;
  background-color: #0084CA;
  width: 175px;
  height: 47px;
  border-radius: 0;
  -webkit-appearance: none;
  color: #fff;
  margin-top: 50px;
  margin-bottom: 0;
  transition: all .4s ease;
}

.form input.submit-button:hover, .form .input.submit-button:hover {
  cursor: pointer;
  background-color: #006BB9;
}

.form textarea, .form .textarea {
  width: 100%;
  height: 170px;
  border-color: #d8d8d8;
  font-size: .88em;
  color: #3a3a3a;
}

.form textarea:focus, .form .textarea:focus {
  outline: none;
}

@media screen and (max-width: 1024px) {
  .form {
    margin: -310px 5% 85px;
  }
}

@media screen and (max-width: 768px) {
  .form {
    margin-top: -400px;
    width: 100%;
    padding: 4px 16px;
  }
}

body {
  margin: 0;
}

html {
  margin-top: 0 !important;
}

a {
  color: #0077B8;
  cursor: pointer;
  transition: all .4s ease;
  text-decoration: none;
}

a:hover {
  color: #006399;
}

.arrow-link {
  display: inline-block;
  position: relative;
  font-weight: 700;
}

.arrow-link:hover {
  color: #006399;
}

.arrow-link:hover img {
  right: -26px;
}

.arrow-link img {
  position: absolute;
  top: 7px;
  right: -22px;
  transition: all .3s;
}

.arrow-link.white {
  color: #fff;
}

.arrow-link.white:hover {
  color: #fff;
}

.greater-max-width-container {
  max-width: 1460px;
  margin: 0 auto;
}

.max-width-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mid-width-container {
  max-width: 965px;
  margin: 0 auto;
}

.hdr-logo {
  margin-bottom: 0;
}

ul li, ul .li, .ul li, .ul .li {
  list-style: none;
}

.hero-headline {
  width: 90%;
  max-width: 700px;
  margin: 80px auto 0 auto;
  padding-bottom: 100px;
}

.hero-headline .h1, .hero-headline .h3 {
  color: #fff;
  text-align: center;
}

.desktop-only {
  display: block;
}

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

.mobile-only {
  display: none;
}

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

.slim-hero {
  display: block;
  width: 100%;
  background-color: #0084CA;
  background-image: url("../assets/images/hero-bg.svg"), linear-gradient(118.58deg, #342866 0.73%, #0864A6 43.13%, #0084CA 78.28%, #09A7BC 100%);
  background-size: cover;
  background-repeat: no-repeat;
  height: 375px;
}

@media screen and (max-width: 780px) {
  .slim-hero {
    height: 325px;
  }
}

.tall-hero {
  display: block;
  width: 100%;
  background-color: #0084CA;
  background-image: url("../assets/images/hero-bg.svg"), linear-gradient(118.58deg, #342866 0.73%, #0864A6 43.13%, #0084CA 78.28%, #09A7BC 100%);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -105px;
  padding-top: 105px;
  padding-bottom: 100px;
}

/************* Templates *************/
.navbar a {
  color: #fff;
  padding-left: 1em;
}

.navbar .top-nav {
  padding: 8px 20px;
  text-align: right;
  justify-content: space-between;
}

.navbar .top-nav > .flex-container {
  justify-content: flex-end;
  margin-right: 14px;
}

.navbar .top-nav a {
  position: relative;
  text-transform: capitalize;
  font-size: .875em;
}

.navbar .top-nav a:before {
  content: '';
  background-color: rgba(0, 193, 222, 0.6);
  height: 8px;
  width: calc(100% - 14px);
  position: absolute;
  bottom: 0;
  opacity: 0;
  transition: opacity .3s ease;
}

.navbar .top-nav a:hover:before {
  opacity: 1;
}

.navbar .top-nav a.active:before {
  opacity: 1;
}

.navbar .flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.navbar hr {
  border-bottom: none;
  border-color: rgba(255, 255, 255, 0.24);
  margin: 0;
  position: relative;
}

.navbar .primary-nav {
  padding: .8em 0;
  justify-content: space-between;
}

.navbar .primary-nav a {
  padding: 0;
  margin: 0 14px;
  position: relative;
  font-size: .875em;
  text-transform: uppercase;
}

.navbar .primary-nav a:before {
  content: '';
  background-color: rgba(0, 193, 222, 0.2);
  height: 8px;
  width: 100%;
  position: absolute;
  bottom: 0;
  opacity: 0;
  transition: opacity .3s ease;
}

.navbar .primary-nav a:hover:before {
  opacity: 1;
}

.navbar .primary-nav a.active:before {
  opacity: 1;
}

.navbar .primary-nav a.nav-logo:hover:before {
  opacity: 0;
}

.navbar .primary-nav .nav-cta {
  border: solid 1px #fff;
  padding: 5px 9px;
}

.navbar .primary-nav .nav-cta:before {
  content: none;
}

.navbar .primary-nav .nav-cta:hover {
  background: rgba(0, 193, 222, 0.4);
}

.navbar .primary-nav img {
  max-width: 13em;
  height: auto;
  padding-right: 14px;
}

.navbar .mobile {
  display: none;
}

.navbar.white-background a {
  color: #707175;
}

.navbar.white-background .primary-nav a.nav-cta {
  border: solid 1px #707175;
}

@media screen and (max-width: 780px) {
  .navbar .top-nav, .navbar hr {
    display: none;
  }
  .navbar .nav-left a, .navbar .nav-right a {
    display: none;
  }
  .navbar .nav-left .nav-logo, .navbar .nav-right .nav-logo {
    display: block;
  }
  .navbar .mobile {
    display: block;
  }
  .navbar .mobile .open-menu {
    display: block;
  }
  .navbar .mobile .close-menu {
    display: none;
  }
}

.menu-button-container .open-menu {
  display: block;
}

.menu-button-container .close-menu {
  display: none;
}

.menu-button-container.open .open-menu {
  display: none;
}

.menu-button-container.open .close-menu {
  display: block;
}

.mobile-menu {
  display: block;
  position: absolute;
  top: 59px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  z-index: 100;
  transition: height .4s ease, padding .01s ease .39s;
}

@media screen and (min-width: 780px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu.open {
  transition: height .5s ease-in;
  height: calc(100vh - 194px);
  overflow-y: auto;
  padding: 20px 30px 120px;
}

.mobile-menu h6, .mobile-menu .non-subheader {
  font-weight: 700;
  border-bottom: 1px solid #F3F7FA;
  padding: 5px 0;
  font-size: .875em;
  text-transform: uppercase;
}

.mobile-menu h6 a, .mobile-menu .non-subheader a {
  color: #707175;
  cursor: pointer;
}

.mobile-menu .non-subheader {
  display: block;
}

.mobile-menu ul {
  padding-left: 0;
  margin: 0;
}

.mobile-menu .submenu-one {
  color: #0077B8;
  padding-bottom: 20px;
}

.mobile-menu .submenu-one.industries-menu a {
  font-weight: 400;
  text-transform: none;
  padding-left: 20px;
  font-size: .875em;
}

.mobile-menu .submenu-one.industries-menu li {
  border-bottom: 1px solid #F3F7FA;
  padding: 5px 0;
}

.mobile-menu .submenu-one h6 {
  font-weight: 400;
  text-transform: none;
  padding-left: 20px;
}

.mobile-menu .submenu-two {
  background-color: #F3F7FA;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu .submenu-two li {
  padding: 4px 0 4px 40px;
}

.mobile-menu .submenu-two a {
  font-weight: 400;
  color: #707175;
  text-transform: none;
  font-size: .875em;
}

.mobile-menu .non-subheader {
  border-bottom: none;
  color: #707175;
}

.mobile-menu .button {
  text-align: center;
  width: 130px;
  color: #fff;
  background-color: #0084CA;
  padding: 10px;
  margin-top: 15px;
}

.mobile-menu span {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #F3F7FA;
}

.mobile-menu span img {
  width: 13px;
}

.mobile-menu span h6 {
  border: none;
}

.mobile-menu .open {
  display: block;
  padding-right: 10px;
}

.mobile-menu .close {
  display: none;
  padding-right: 10px;
}

.mobile-menu .active h6 {
  font-weight: 600;
}

.mobile-menu .active .close {
  display: block;
}

.mobile-menu .active .open {
  display: none;
}

@media screen and (max-width: 780px) {
  .no-scroll {
    overflow: hidden;
  }
}

.footer {
  width: 100%;
  background-color: #3a3a3a;
  color: #F3F7FA;
  padding: 50px 0;
}

.footer ul {
  padding-left: 0;
}

.footer ul li {
  line-height: 30px;
}

.footer ul a {
  color: #F3F7FA;
}

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

.footer .h5 a {
  color: #F3F7FA;
}

.footer .close, .footer .open {
  display: none;
}

.footer .footer-sections {
  width: 90%;
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 3em;
}

.footer .footer-sections.apart {
  justify-content: space-between;
}

.footer .locations li {
  line-height: 20px;
}

.footer .locations li:first-child {
  margin-bottom: 15px;
}

.footer .footer-bottom {
  width: 90%;
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #4B4B4B;
  padding-top: 1em;
}

.footer .footer-bottom .copyright {
  display: flex;
}

.footer .footer-bottom .copyright .h6 {
  min-width: 110px;
  padding-left: 14px;
  padding-top: 4px;
  color: #F3F7FA;
}

.footer .socials a {
  text-indent: -9999px;
  display: inline-block;
  margin-left: 40px;
}

.footer .socials .facebook {
  background: url(../assets/images/facebook.svg) no-repeat;
  width: 30px;
  height: 31px;
  vertical-align: middle;
}

.footer .socials .twitter {
  background: url(../assets/images/twitter.svg) no-repeat;
  width: 31px;
  height: 31px;
  vertical-align: middle;
}

.footer .socials .linkedin {
  background: url(../assets/images/linkedin.svg) no-repeat;
  width: 30px;
  height: 31px;
  vertical-align: middle;
}

.footer .socials .youtube {
  background: url(../assets/images/youtube.svg) no-repeat;
  width: 35px;
  height: 25px;
  vertical-align: middle;
}

@media screen and (max-width: 800px) {
  .footer {
    padding: 25px 0 15px;
  }
  .footer .footer-sections {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }
  .footer .footer-sections div {
    width: 100%;
    border-bottom: solid 1px #4B4B4B;
  }
  .footer .footer-sections div > span {
    padding: 10px 2em;
    display: flex;
    justify-content: space-between;
  }
  .footer .open {
    display: block;
  }
  .footer ul {
    padding-left: 3.5em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 0;
  }
  .footer .active {
    border-bottom: solid 1px #4B4B4B;
  }
  .footer .active .close {
    display: block;
  }
  .footer .active .open {
    display: none;
  }
  .footer .active-panel {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .footer .footer-bottom {
    border-top: none;
    padding-top: 0;
  }
}

.footer .telephone {
  line-height: 20px;
  margin-bottom: 10px;
}

.footer .telephone a {
  display: block;
}

.contact-hero {
  height: 470px;
}

.contact-content {
  display: flex;
}

.contact-info {
  margin-top: 70px;
  margin-right: 10%;
}

.contact-info .address-block {
  padding-bottom: 30px;
  white-space: nowrap;
}

.contact-info .address-block h5 {
  padding-bottom: 15px;
}

.contact-info .address-block h5.contact-location {
  color: #0077B8;
  padding-bottom: 0;
}

.contact-info .address-block p {
  margin: 0;
}

.message-error {
  color: #C22C2C;
}

.message-notice {
  color: #0077B8;
}

.g-recaptcha {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .contact-info {
    margin-right: 5%;
  }
}

@media screen and (max-width: 768px) {
  .contact-content {
    flex-wrap: wrap;
  }
  .contact-info {
    margin: 0 auto 60px;
  }
}

.subject, #agabatur {
  display: none;
}

.contact-cta {
  background: #1D448F;
  background-image: linear-gradient(90deg, #342866 50%, #1D448F 100%);
  height: 120px;
  position: relative;
  width: 100%;
}

.contact-cta .max-width-container {
  position: relative;
  height: 120px;
  width: 100%;
  display: flex;
}

.contact-cta .banner-text {
  flex-grow: 1;
  background-image: url("../assets/images/gradient.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.contact-cta .get-in-touch {
  flex-grow: 0;
  display: flex;
  align-items: center;
  padding: 0 60px;
  color: #fff;
}

.contact-cta .h5 {
  color: #fff;
}

@media screen and (max-width: 900px) {
  .contact-cta {
    height: 180px;
  }
  .contact-cta .max-width-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .contact-cta .banner-text {
    height: 120px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(90deg, #342866 0%, #0864A6 50.23%, #0084CA 81.13%, #09A7BC 100.91%);
    background-size: cover;
    background-position: left;
  }
  .contact-cta .banner-text h4 {
    padding: 0 1.5em;
  }
  .contact-cta .get-in-touch {
    height: 60px;
    background-color: #1D448F;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 500px) {
  .contact-cta .banner-text h4 {
    font-size: 18px;
  }
}

.team-image-collage {
  display: flex;
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

.team-image-collage .dot-pattern {
  bottom: -40px;
}

.team-image-collage .column-1 {
  flex-grow: 2;
}

.team-image-collage .column-1 img {
  width: 100%;
  display: block;
  max-height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-image-collage .column-2 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-image-collage .column-2 img {
  display: block;
  width: 100%;
  max-width: 534px;
  max-height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-image-collage .transparent-block {
  position: absolute;
  bottom: -60px;
  width: 430px;
  padding: 40px;
  background-color: rgba(0, 132, 202, 0.8);
}

.team-image-collage .transparent-block .h4 {
  font-size: 1.625em;
  line-height: 33px;
}

.team-image-collage .transparent-block .outcome-link {
  margin-top: 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  display: inline-block;
  padding-left: 7px;
}

.team-image-collage .transparent-block .outcome-link .video-icon {
  margin-right: 7px;
  width: 44px;
  vertical-align: middle;
  display: inline-block;
}

.team-image-collage .slick-active .transparent-block {
  opacity: 1;
  transition: opacity 1s ease-in;
}

.team-image-collage .home-image-collage .transparent-block {
  opacity: 1;
  transition: opacity 1s ease-in;
}

@media screen and (max-width: 900px) {
  .team-image-collage {
    flex-direction: column;
  }
  .team-image-collage .column-1 img {
    max-height: 400px;
  }
  .team-image-collage .column-2 {
    flex-direction: row;
  }
  .team-image-collage .column-2 img {
    width: 50%;
    max-height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .team-image-collage .transparent-block {
    width: 450px;
    width: calc(100% - 80px);
    margin: 0 20px;
    padding: 20px;
  }
}

@media screen and (max-width: 568px) {
  .team-image-collage .column-1 img {
    max-height: 400px;
  }
  .team-image-collage .column-2 img {
    max-height: 190px;
  }
  .team-image-collage .transparent-block {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 20px;
    box-sizing: border-box;
  }
  .team-image-collage .transparent-block .h4 {
    font-size: 1em;
    line-height: 1.5em;
  }
  .team-image-collage .transparent-block .outcome-link {
    font-size: 1em;
    margin-top: 1em;
  }
  .team-image-collage .transparent-block .video-icon {
    width: 36px;
  }
}

.blog-slogan {
  width: 90%;
  max-width: 700px;
  margin: 0 auto 0 auto;
  padding-bottom: 100px;
  padding-top: 80px;
}

.blog-slogan .h1, .blog-slogan .h3 {
  color: #fff;
  text-align: center;
}

.blog-slogan .h5 {
  color: #0084CA;
  display: inline-block;
}

.blog-slogan img {
  padding-left: 7px;
  display: inline-block;
}

.blog-slogan a {
  color: #0077B8;
  margin-top: 30px;
}

.blog-slogan a:hover {
  color: #006399;
  text-decoration: underline;
}

.blog-filters {
  width: calc(100% - 16px);
  display: block;
  padding: 0 8px 2px 8px;
  border-bottom: solid 2px #F3F7FA;
  margin-bottom: 32px;
}

@media screen and (max-width: 780px) {
  .blog-filters {
    margin-bottom: 21px;
  }
}

.blog-filters a {
  position: relative;
  height: 18px;
  font-size: 14px;
  text-align: left;
  color: #707175;
}

.blog-filters a.active {
  color: #0077B8;
}

.blog-filters a:hover {
  color: #006399;
}

@media screen and (max-width: 780px) {
  .blog-filters a {
    padding: 4px 0;
  }
}

.blog-filters a.active::after {
  content: '';
  width: calc(100% + 20px);
  position: absolute;
  left: -10px;
  top: 36px;
  border-bottom: 4px solid #0084CA;
}

@media screen and (max-width: 780px) {
  .blog-filters a.active::after {
    display: none;
  }
}

.blog-filters .blog-menu {
  display: none;
  text-align: center;
  max-width: 900px;
  margin: 18px auto 18px auto;
  padding: 0 12px 0 12px;
  text-transform: uppercase;
}

.blog-filters .blog-menu a {
  color: #0077B8;
}

@media screen and (max-width: 780px) {
  .blog-filters .blog-menu {
    display: block;
  }
}

.blog-filters .flex-container {
  max-width: 900px;
  margin: 18px auto 18px auto;
  padding: 0 12px 0 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 780px) {
  .blog-filters .flex-container {
    flex-direction: column;
    overflow-y: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0.5, 1);
    max-height: 0;
    margin: 0;
    padding: 0;
  }
  .blog-filters .flex-container.showing {
    max-height: 200px;
    margin: 18px auto 18px auto;
    padding: 0 12px 0 12px;
  }
}

.blog-highlight {
  color: #3a3a3a;
  margin-right: 8px;
  margin-bottom: 20px;
  position: relative;
  white-space: nowrap;
}

.blog-highlight::after {
  position: absolute;
  top: 6px;
  left: 0;
  border-radius: 2px;
  content: '';
  background-color: rgba(0, 193, 222, 0.2);
  width: 100%;
  height: 6px;
}

.blog-highlight:hover {
  color: #0077B8;
}

.divider {
  overflow: hidden;
  width: calc(100% - 2px);
  height: 3px;
  border: solid 1px #F3F7FA;
  margin-bottom: 20px;
}

.blog-stub-container {
  width: 100%;
  display: block;
  position: relative;
}

@media screen and (max-width: 780px) {
  .blog-stub-container {
    max-width: 460px;
    margin: 0 auto;
  }
}

.blog-stub-container .filter-list {
  display: block;
  width: calc(100% - 40px);
  max-width: 900px;
  margin: 0 auto 0 auto;
  padding: 20px 0;
  text-align: left;
}

.blog-stub-container .filter-list .h2 {
  color: #3a3a3a;
  text-align: left;
  line-height: 1.2;
}

.blog-stub {
  box-sizing: border-box;
  position: relative;
  width: calc(100% - 40px);
  padding: 47px 0 47px 100px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

@media screen and (max-width: 780px) {
  .blog-stub {
    padding: 30px 20px;
    margin: 0 auto 0 auto;
  }
}

.blog-stub .left-column {
  display: flex;
  flex-direction: row;
  flex: 1 0 22%;
  margin-bottom: 10px;
}

@media screen and (max-width: 780px) {
  .blog-stub .left-column {
    display: none;
  }
}

.blog-stub .blog-highlight-container {
  margin-bottom: 10px;
}

@media screen and (max-width: 780px) {
  .blog-stub .blog-highlight-container {
    display: inline-block;
    margin-bottom: 0;
  }
}

.blog-stub .blog-highlight {
  margin-right: 8px;
}

@media screen and (max-width: 780px) {
  .blog-stub .blog-highlight {
    margin-bottom: 0;
  }
}

.blog-stub .stub {
  flex: 1 1 auto;
  width: 70%;
}

.blog-stub .stub .h4 {
  color: #3a3a3a;
  margin-bottom: 16px;
  font-size: 1.5em;
}

.blog-stub .stub .h6 {
  color: #3a3a3a;
  line-height: 1.5rem;
  font-size: .88rem;
  letter-spacing: .3px;
  position: relative;
}

.blog-stub .stub .h6 a {
  position: relative;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.blog-stub .stub .h6 a:hover {
  color: #006399;
}

.blog-stub .stub .h6 > a::after {
  position: absolute;
  top: 6px;
  left: 0;
  border-radius: 2px;
  content: '';
  background-color: #0084CA;
  width: 100%;
  height: 6px;
  opacity: 0.2;
}

.blog-stub .stub .byline {
  margin-bottom: 0.6em;
}

.blog-stub .stub a {
  margin-bottom: 20px;
}

.blog-stub .stub p {
  line-height: 24px;
  font-size: 16px;
  font-family: "Lora", serif;
}

.blog-stub .stub > img {
  display: block;
}

@media screen and (max-width: 780px) {
  .blog-stub .stub > img {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}

.blog-stub .stub .image-link {
  display: block;
  margin-bottom: 0;
}

.blog-stub .stub .blog-image {
  width: 100%;
  max-width: 375px;
}

@media screen and (max-width: 780px) {
  .blog-stub .stub {
    width: 100%;
  }
}

@media screen and (max-width: 780px) {
  .blog-stub {
    flex-direction: column;
  }
}

.blog-stub::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: calc(100% - 2px);
  border-bottom: solid 2px #F3F7FA;
  margin: 20px 0;
}

@media screen and (max-width: 780px) {
  .blog-stub::after {
    display: none;
  }
}

.blog-more {
  width: 100%;
  display: block;
  text-align: center;
  padding: 42px 0 108px 0;
}

.blog-more a {
  color: #0084CA;
}

@media screen and (max-width: 780px) {
  .blog-more {
    padding: 13px 0 58px 0;
  }
}

.blog-contact {
  background: #F3F7FA;
  color: #3a3a3a;
  width: 100%;
}

.blog-contact > div {
  width: calc(100% - 40px);
  max-width: 600px;
  margin: 0 auto;
  padding: 76.8px 20px 86.3px 20px;
}

.blog-contact .h2 {
  line-height: 33px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.blog-contact p {
  text-align: center;
  color: #707175;
  font-size: 22px;
  line-height: 1.5;
  font-family: Lora,serif;
}

.blog-contact p strong {
  font-weight: 600;
}

.blog-contact iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
}

.blog-contact form {
  position: relative;
}

.blog-contact form label {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.blog-contact form input {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  font-size: 16px;
  border-bottom: 1px solid #707175;
  padding: 12px 0;
}

.blog-contact form .floating-submit {
  position: absolute;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  padding: 4px 0;
  text-align: left;
  font-size: 16px;
  right: 0;
  bottom: 12px;
  width: 60px;
  height: 24px;
}

.blog-contact form .floating-submit img {
  position: absolute;
  right: 0;
  top: 7px;
  transition: .3s;
}

.blog-contact form .floating-submit:hover img {
  color: #0084CA;
  right: -4px;
}

.no-content {
  background: #F3F7FA;
  text-align: center;
  color: #3a3a3a;
  display: inherit;
}

.blog-post-hero {
  height: 269px;
  position: relative;
  margin-bottom: 100px;
}

@media screen and (max-width: 780px) {
  .blog-post-hero {
    height: 30vw;
    margin-bottom: 15vw;
  }
}

@media screen and (max-width: 500px) {
  .blog-post-hero {
    height: 40vw;
    margin-bottom: 10vw;
  }
}

.blog-post-featured-image {
  position: absolute;
  top: 61px;
  width: 100%;
}

.blog-post-featured-image > div {
  width: 80%;
  max-width: 769px;
  margin: 0 auto;
}

@media screen and (max-width: 780px) {
  .blog-post-featured-image > div {
    width: calc(100% - 30px);
  }
}

.blog-post-featured-image > div img {
  width: 100%;
  max-height: 295px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 780px) {
  .blog-post-featured-image {
    top: 41px;
  }
}

.blog-post-featured-social {
  margin-top: -35px !important;
  width: 100%;
}

.blog-post-featured-social > div {
  width: 80%;
  max-width: 769px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 780px) {
  .blog-post-featured-social {
    width: calc(100% - 30px);
    margin-top: 0 !important;
  }
}

.blog-post-container {
  width: 100%;
  max-width: 769px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .blog-post-container {
    width: calc(100% - 46px);
  }
}

.blog-post-container blockquote {
  padding: 0 calc((100% - 570px)/2);
  width: 100%;
  max-width: 570px;
  line-height: 32px;
  margin: 0 auto;
  color: #0084CA;
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 28px;
  font-style: italic;
  font-family: "Lora", serif;
}

.blog-post-container > div {
  max-width: 570px;
  margin: 0 auto;
}

div.blog-post-divider {
  overflow: hidden;
  width: calc(100% - 2px);
  max-width: unset;
  border-bottom: solid 2px #F3F7FA;
  margin-bottom: 28px;
}

.blog-post-container .blog-post-header {
  margin-top: 40px;
  padding-bottom: 34px;
}

.blog-post-container .blog-post-header h1 {
  font-size: 2rem;
  line-height: 1.16em;
  color: #3a3a3a;
  text-align: left;
}

.blog-post-container .blog-post-header h6 {
  color: #3a3a3a;
  line-height: 1.5rem;
  font-size: .88rem;
  letter-spacing: .3px;
}

.blog-post-container > div.blog-post-article {
  max-width: 570px;
}

.blog-post-meta {
  margin-bottom: 20px;
  color: #3a3a3a;
  text-transform: uppercase;
}

.byline {
  font-size: 14px;
}

.blog-post-date {
  color: #3a3a3a;
  font-size: 14px;
}

.blog-post-body :not(figure), .blog-post-date {
  max-width: 570px;
  margin: 0 auto;
}

.blog-post-body > figure > iframe {
  max-width: 570px;
  width: 570px !important;
  height: 320px !important;
  margin: 0 calc((100% - 570px) / 2);
}

@media screen and (max-width: 600px) {
  .blog-post-body > figure > iframe {
    width: 100vw !important;
    height: auto !important;
    max-width: 100%;
    margin: 0;
  }
}

.blog-post-body > figure {
  margin: 0 auto;
}

.blog-post-article img {
  max-width: 100%;
  height: auto;
}

.blog-post-article p {
  font-family: "Lora", serif;
  padding-bottom: 20px;
}

.blog-post-article h1, .blog-post-article h2, .blog-post-article h3, .blog-post-article h4, .blog-post-article h5, .blog-post-article h6 {
  clear: both;
  display: block;
  text-rendering: optimizelegibility;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #3a3a3a;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
}

.blog-post-article h2 {
  margin-bottom: 8px;
  padding-top: 0.4em;
  font-size: 1.8em;
  line-height: 1.16em;
}

.blog-post-article h3 {
  padding-top: 1em;
  padding-bottom: 0.6em;
}

.blog-post-article ul, .blog-post-article ol {
  font-family: "Lora", serif;
  padding-bottom: 20px;
}

.blog-post-article ul li {
  list-style: disc;
}

.blog-post-article img {
  width: 100%;
}

.blog-post-article figcaption {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: 0.9em;
  line-height: 1.16;
  font-style: italic;
}

a.twitter-link {
  display: inline;
  padding-right: 2px;
  color: #707175;
}

a.twitter-link:hover {
  color: #006399;
}

a.twitter-link::after {
  content: '';
  display: inline-block;
  height: 22px;
  width: 25px;
  vertical-align: sub;
  -webkit-mask-image: url("../assets/images/social/icon-twitter-blog.svg");
  mask-image: url("../assets/images/social/icon-twitter-blog.svg");
  background-size: 22px 25px;
  background-repeat: no-repeat;
  background-color: #0084CA;
}

a.twitter-link::after:hover {
  background-color: #006BB9;
}

div.blog-post-social {
  width: 100%;
  max-width: unset;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  margin: 50px 0;
}

div.blog-post-social :nth-child(2) {
  flex: 0 0 auto;
}

div.blog-post-social .social-label {
  display: block;
  text-align: center;
  color: #0084CA;
  font-weight: 600;
}

div.blog-post-social .social-hr {
  width: 100%;
  max-width: unset;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

div.blog-post-social .social-divider {
  flex: 1 1 auto;
  overflow: hidden;
  width: calc(100% - 2px);
  max-width: unset;
  border-top: solid 2px #F3F7FA;
  margin-top: 19px;
  margin: 19px 6px 0 6px;
}

div.blog-post-author {
  position: relative;
  max-width: 648px;
  margin: 0 auto 16px auto;
  padding: 34.6px;
  background-color: #F3F7FA;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

div.blog-post-author > img {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

div.blog-post-author .author-initials {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  line-height: 150px;
  border-radius: 50%;
  border: 4px solid #fff;
  color: #fff;
  background-color: #e5e8eb;
  margin: 0;
  font-size: 80px;
  line-height: 150px;
  align-items: initial;
  text-align: center;
}

div.blog-post-author > div {
  margin-left: 34.6px;
}

div.blog-post-author:last-child {
  margin-bottom: 160px;
}

@media screen and (max-width: 780px) {
  div.blog-post-author {
    flex-direction: column;
  }
  div.blog-post-author > img {
    position: absolute;
    top: -26px;
    left: calc(50% - 75px);
  }
  div.blog-post-author .author-initials {
    position: absolute;
    top: -26px;
    left: calc(50% - 75px);
  }
  div.blog-post-author > div {
    margin-left: 0;
    margin-top: 100px;
  }
}

del {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  margin-right: 28px;
  background: linear-gradient(#fff 47%, rgba(0, 193, 222, 0.2) 47%, rgba(0, 193, 222, 0.2) 75%, #fff 75%);
}

del:after {
  position: absolute;
  display: inline-block;
  bottom: 0px;
  content: '';
  cursor: pointer;
  background: url("../assets/images/social/icon-twitter-blog.svg");
  width: 25px;
  height: 22px;
}

/************* Homepage *************/
.modal {
  max-width: 700px;
}

.modal a.close-modal {
  top: 0;
  right: 0;
  margin: 10px;
  height: 35px;
  width: 35px;
  position: absolute;
  box-sizing: border-box;
  line-height: 35px;
  display: inline-block;
  background-image: unset;
}

.close-modal:before,
.close-modal:after {
  border-radius: 3px;
  transform: rotate(-45deg);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -25px;
  display: block;
  height: 4px;
  width: 35px;
  background-color: #fff;
  transition: all 0.2s ease-out;
}

.orange-close .close-modal:before,
.orange-close .close-modal:after {
  background-color: #0084CA;
}

.close-modal:after {
  transform: rotate(45deg);
}

.close-modal:hover:before,
.close-modal:hover:after {
  transform: rotate(0deg);
}

.black-video {
  background: #000;
  max-width: 1140px;
  width: 100%;
  padding-top: 35px;
  padding-bottom: 56.25%;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .black-video {
    padding-bottom: calc( 1140px * .5625);
    max-width: 970px;
  }
}

@media screen and (max-width: 768px) {
  .black-video {
    max-width: 100%;
  }
}

.black-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}

.blocker {
  z-index: 7;
}

.featured-article-callout {
  width: 90%;
  max-width: 900px;
  margin: 100px auto 0;
}

.featured-article-callout a {
  display: flex;
}

.featured-article-callout div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.featured-article-callout div p {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-style: italic;
  font-family: "Lora", serif;
  padding: 4px 14px;
  margin: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: rgba(58, 58, 58, 0.15);
}

.featured-article-callout div .new {
  background-color: #0084CA;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  display: flex;
}

.featured-article-callout div .new p {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  align-self: center;
  background-color: rgba(0, 132, 202, 0);
}

.business-slogan {
  width: 90%;
  max-width: 700px;
  margin: 80px auto 0 auto;
}

.business-slogan .h1, .business-slogan .h3 {
  color: #fff;
  text-align: left;
}

.business-slogan .business-slogan-caption p {
  color: #fff;
  font-size: 22px;
  font-family: "Lora", serif;
  line-height: 33px;
  font-weight: 400;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3), 0px 0px 13px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1000px) {
  .business-slogan .business-slogan-caption p {
    font-size: 20px;
    line-height: 29px;
  }
}

.business-slogan .business-slogan-caption a {
  color: #0077B8;
}

.business-slogan .h5 {
  color: #0077B8;
  display: inline-block;
}

.business-slogan img {
  padding-left: 7px;
  display: inline-block;
}

.business-slogan .business-slogan-link {
  color: #fff;
  margin-top: 30px;
}

.floating-cta {
  display: none;
  position: fixed;
  z-index: 6;
  bottom: 15px;
  left: 15px;
  background-color: #494483;
  border-radius: 3px;
}

.floating-cta h3 {
  letter-spacing: .15em;
  /* Adjust as needed */
  font-family: monospace;
  white-space: nowrap;
  /* Keeps the content on a single line */
  color: #fff;
  font-family: monospace;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
}

.floating-cta a {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 15px 20px;
}

.floating-cta a .h3, .floating-cta a .h5 {
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .floating-cta .h3 {
    display: none;
  }
}

.typewriter h3 {
  border-right: 0.15em solid #fff;
  /* The typwriter cursor */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  -webkit-animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
          animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}

/* The typing effect */
@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #fff;
  }
  /* The typwriter cursor */
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #fff;
  }
  /* The typwriter cursor */
}

.home-section-header {
  width: 100%;
  max-width: 760px;
  padding: 0 30px;
  box-sizing: border-box;
  margin: 8em auto 40px;
  text-align: center;
}

.home-section-header .h2 {
  color: #3a3a3a;
}

.home-section-header .h3 {
  color: #707175;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .industry-header {
    text-align: left;
  }
  .industry-header .h2, .industry-header .h3 {
    text-align: left;
  }
}

.home-carousel-block {
  margin-top: -70px;
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

.home-carousel-block .next-slide-overlay {
  position: absolute;
  bottom: 80px;
  right: 0;
  height: 592px;
  background-color: rgba(58, 58, 58, 0.8);
  transition: background-color .2s ease-out;
  width: 10%;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.home-carousel-block .next-slide-overlay:hover {
  background-color: rgba(58, 58, 58, 0.7);
  transition: background-color .2s ease-in;
}

.home-carousel-block .next-slide-overlay div {
  width: 4.4em;
  margin: 0 auto;
  opacity: 1;
  padding-bottom: 1.5em;
}

.home-carousel-block .next-slide-overlay a {
  opacity: 1;
}

.home-carousel-block .next-slide-overlay a .h5 {
  color: #fff;
}

.home-carousel-block .carousel-inner {
  width: 100%;
}

.home-carousel-block .carousel-inner .slick-list {
  padding: 0 10% 0 0;
}

.home-carousel-block .carousel-inner .item {
  height: 592px;
  margin-bottom: 80px;
  position: relative;
}

.home-carousel-block .carousel-inner .item.slick-active .img {
  width: 100%;
  height: 592px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
}

.home-carousel-block .carousel-inner .item .img {
  width: 100%;
  height: 592px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.dot-pattern {
  position: absolute;
  bottom: 40px;
  width: 700px;
  z-index: -1;
}

.home-image-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 46px auto;
}

.home-image-grid .grid-block {
  display: flex;
  width: 50%;
  height: 400px;
  background-color: #F3F7FA;
  position: relative;
}

.home-image-grid .grid-block:hover div.arrow-link {
  opacity: 1;
}

.home-image-grid .grid-block:hover .industry-description {
  top: 45%;
  transform: translateY(-45%);
}

.home-image-grid .grid-block .background-img {
  background-size: cover;
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  content: '';
}

.home-image-grid .grid-block .full-link {
  width: 100%;
}

.home-image-grid .grid-block .full-link:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.home-image-grid .grid-block .healthcare {
  background: url(../assets/images/ind-healthcare@3x.png);
}

.home-image-grid .grid-block .industry-tag {
  position: absolute;
  text-transform: uppercase;
  top: 0;
  left: 0;
  background-color: #1D448F;
  width: 10em;
  text-align: center;
  padding: .2em 0;
  color: #fff;
}

.home-image-grid .industry-description {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 3.5em;
  z-index: 5;
  color: #fff;
  transition: all .3s ease;
}

.home-image-grid .industry-description .h2 {
  text-align: left;
  margin-bottom: 15px;
}

.home-image-grid .industry-description .h5 {
  display: inline-block;
}

.home-image-grid .industry-description img {
  display: inline-block;
  padding-left: 7px;
  width: inherit;
}

.home-image-grid .industry-description .arrow-link {
  color: #fff;
  opacity: 0;
  transition: all .3s ease;
}

.home-image-grid .grid-block-text {
  color: #707175;
  text-align: left;
  padding: 0 3.5em;
  align-self: center;
}

.home-image-grid .grid-block-text .h3 {
  text-align: left;
  padding-bottom: .5em;
}

@media screen and (max-width: 786px) {
  .home-image-grid {
    width: 100%;
    box-sizing: border-box;
  }
  .home-image-grid .grid-block {
    width: 100%;
    height: 350px;
  }
  .home-image-grid .grid-block:hover .industry-description {
    top: 50%;
    transform: translateY(-50%);
  }
  .home-image-grid .industry-description .arrow-link {
    opacity: 1;
  }
}

.home-text-section {
  margin: 100px auto;
}

.home-text-header {
  width: 100%;
  max-width: 760px;
  padding: 0 30px;
  box-sizing: border-box;
  margin: 8em auto 40px;
  text-align: center;
}

.home-text-header .h2 {
  color: #3a3a3a;
}

.home-text-header .h3 {
  color: #707175;
  margin-bottom: 20px;
}

.home-text-content {
  margin: 20px;
}

.home-text-content img {
  max-width: 100%;
  height: auto;
}

.home-text-content p {
  font-family: "Lora", serif;
  padding-bottom: 20px;
}

.home-text-content h1, .home-text-content h2, .home-text-content h3, .home-text-content h4, .home-text-content h5, .home-text-content h6, .home-text-content .h1, .home-text-content .h2, .home-text-content .h3, .home-text-content .h4, .home-text-content .h5, .home-text-content .h6 {
  clear: both;
  display: block;
  text-rendering: optimizelegibility;
  padding: 0;
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #3a3a3a;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
}

.home-text-content .h2, .home-text-content h2 {
  font-size: 2.25em;
  /* 36px */
  text-align: inherit;
  line-height: 45px;
}

.home-text-content .h3, .home-text-content h3 {
  font-size: 1.375em;
  /* 22px */
  font-family: "Lora", serif;
  text-align: inherit;
  line-height: 36px;
}

.home-text-content .h4, .home-text-content h4 {
  font-size: 1.5em;
  /* 24px */
  color: #fff;
  line-height: 36px;
}

@media screen and (max-width: 1000px) {
  .home-text-content .h2, .home-text-content h2 {
    font-size: 1.5em;
    /* 24px */
    line-height: 29px;
  }
  .home-text-content .h3, .home-text-content h3 {
    font-size: 1em;
    /* 16px */
    line-height: 24px;
  }
  .home-text-content .h4, .home-text-content h4 {
    font-size: 1.25em;
    /* 20px */
    line-height: 26px;
  }
}

.home-services-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.home-services-section .services-list {
  width: 30%;
  margin-left: 30px;
}

.home-services-section .services-list ul {
  padding: 0;
  margin-top: 0;
}

.home-services-section .services-list ul li {
  margin-bottom: 2em;
}

.home-services-section .services-list ul li a {
  text-decoration: none;
}

.home-services-section .services-list ul li a:hover .h4 {
  color: #006399;
}

.home-services-section .services-list .slide-description {
  color: #888;
}

.home-services-section .services-list .active-slide-link .h4 {
  color: #0077B8;
}

.home-services-section .services-list .h4 {
  color: #3a3a3a;
  font-weight: 600;
}

.home-services-section .services-list .h5 {
  color: #0077B8;
}

.home-services-section .services-list p {
  font-family: "Source Sans Pro", sans-serif;
  margin-top: 0;
}

.home-services-section .mobile-services-list {
  display: none;
  width: 100%;
  text-align: center;
}

.home-services-section .mobile-services-list .mobile-service-slider-links {
  padding-right: 40px;
}

.home-services-section .mobile-services-list .h4 {
  color: #3a3a3a;
}

.home-services-section .mobile-slider-arrows {
  display: none;
  margin: 0 auto;
}

.home-services-section .services-slider {
  width: 65%;
  position: relative;
  align-self: center;
}

.home-services-section .services-slider img {
  width: 100%;
}

.home-services-section .services-slider .pdf-download {
  z-index: 5;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 40px;
}

.home-services-section .services-slider .pdf-download .h5 {
  color: #fff;
  background-color: #0084CA;
  border-radius: 3px;
  padding: 4px 16px;
  width: 125px;
  text-align: center;
  display: inline-block;
}

.home-services-section .services-slider .pdf-download img {
  display: inline-block;
  padding-left: 7px;
  width: 40px;
}

@media screen and (max-width: 1000px) {
  .home-services-section {
    flex-wrap: wrap;
  }
  .home-services-section .services-list {
    width: 100%;
  }
  .home-services-section .services-slider {
    width: 100%;
    padding: 0 30px;
  }
  .home-services-section .mobile-services-list {
    display: block;
  }
  .home-services-section .services-list {
    display: none;
  }
  .home-services-section .mobile-slider-arrows {
    display: block;
  }
  .home-services-section .mobile-slider-arrows img {
    padding: 15px 6px;
    cursor: pointer;
  }
}

.home-events {
  background-color: #F3F7FA;
  padding: 4em 0;
}

.home-events .max-width-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-events .max-width-container.no-feature {
  align-items: center;
}

.home-events .events-column-1 {
  width: 420px;
  margin: 20px 30px;
  align-self: flex-start;
}

.home-events .events-column-1 .events-header {
  width: 470px;
}

.home-events .events-column-1 .events-header .h2 {
  color: #3a3a3a;
  margin-bottom: .5em;
}

.home-events .events-column-1 .events-header .h2, .home-events .events-column-1 .events-header .h3, .home-events .events-column-1 .events-header .h5, .home-events .events-column-1 .events-header .left {
  text-align: left;
}

.home-events .events-column-1 .home-featured-event {
  background-color: #fff;
  position: relative;
}

.home-events .events-column-1 .home-featured-event .event-image-container {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 42.0253% 0 0 0;
  /* 42.0253% = 100 / (w / h) = 100 / (790 / 332) */
}

.home-events .events-column-1 .home-featured-event .event-image-container img {
  width: calc(100% - 4px);
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: 2px;
  display: block;
  max-width: calc(100% - 4px);
  max-height: calc(100% - 4px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.home-events .events-column-1 .home-featured-event .event-image-container .no-image {
  display: none;
}

.home-events .events-column-1 .home-featured-flag {
  position: absolute;
  transform: rotate(-90deg);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  transform-origin: 100% 100%;
  background: #1D448F;
  color: #fff;
  padding: 3px 14px;
  right: calc(100% - 1px);
  bottom: calc(100% - 16px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.home-events .max-width-container.no-feature .events-column-1 {
  align-self: center;
}

.home-events .event-info {
  padding: 2em;
}

.home-events .event-info .h4 {
  font-weight: 600;
  color: #3a3a3a;
  line-height: 1.16;
  margin-bottom: 8px;
}

.home-events .event-info .location {
  color: #3a3a3a;
  margin-bottom: 0.4em;
}

.home-events .event-info time {
  color: #707175;
  font-size: .875em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Source Sans Pro", sans-serif;
}

.home-events .event-info p {
  font-family: "Source Sans Pro", sans-serif;
  margin-top: -8px;
  color: #707175;
}

.home-events .event-info .ticket-cta {
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0077B8;
  transition: all .4s ease;
  margin-bottom: 0;
}

.home-events .event-info .ticket-cta:hover {
  color: #006399;
}

.home-events .events-column-2 {
  width: calc(100% - 620px);
  margin: 20px 30px;
  align-self: flex-start;
}

.home-events .events-column-2 .home-event {
  background-color: #fff;
  margin-bottom: 15px;
  display: flex;
}

.home-events .events-column-2 .home-event .event-info {
  padding: .9em 1.2em .6em;
}

.home-events .events-column-2 .home-event .event-image-container {
  position: relative;
  display: inline-block;
  width: 160px;
  min-width: 160px;
  height: 160px;
}

.home-events .events-column-2 .home-event .event-image-container img {
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  padding: 6px;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.home-events .events-column-2 .home-event .event-image-container .no-image {
  display: none;
}

@media screen and (max-width: 1200px) {
  .home-events .events-column-1 {
    width: 390px;
  }
  .home-events .events-column-1 .events-header {
    width: 420px;
  }
  .home-events .events-column-2 {
    width: calc(100% - 530px);
  }
}

@media screen and (max-width: 900px) {
  .home-events {
    padding-bottom: 4em;
  }
  .home-events .events-column-1 {
    width: 100%;
    margin-right: 30px;
  }
  .home-events .events-column-1 .events-header {
    width: 100%;
  }
  .home-events .events-column-1 .home-featured-event {
    margin-top: 64px;
  }
  .home-events .events-column-1 .home-featured-event .event-image-container {
    padding-top: 164px;
  }
  .home-events .events-column-1 .home-featured-flag {
    transform: rotate(0);
    left: 1px;
    bottom: 100%;
  }
  .home-events .events-column-2 {
    width: 100%;
    margin-left: 30px;
  }
}

@media screen and (max-width: 568px) {
  .home-events .home-section-header {
    margin-top: 12em;
  }
}

@media screen and (max-width: 500px) {
  .home-events .home-section-header {
    margin-top: 9em;
  }
}

@media screen and (max-width: 500px) {
  .home-events .events-column-2 .home-event {
    flex-direction: column;
    align-items: stretch;
  }
  .home-events .events-column-2 .home-event .event-image-container {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    padding-top: 164px;
  }
  .home-events .events-column-2 .home-event .event-image-container img {
    width: calc(100% - 4px);
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    padding: 2px;
    display: block;
    max-width: calc(100% - 4px);
    max-height: calc(100% - 4px);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .home-events .events-column-2 .home-event .event-image-container .no-image {
    display: none;
  }
}

/* RESPONSIVE STYLES -----------------------------*/
@media screen and (max-width: 1000px) {
  .industry-tag {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 900px) {
  .homepage-hero {
    height: auto;
  }
  .featured-article-callout {
    margin-top: 70px;
  }
  .business-slogan {
    max-width: 700px;
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .transparent-block {
    width: 450px;
  }
  .dot-pattern {
    display: none;
  }
  .home-section-header {
    margin-top: 6em;
    margin-bottom: 2em;
  }
  .next-slide-overlay .arrow-link {
    display: none;
  }
  .home-carousel-block {
    display: flex;
    margin-top: -60px;
  }
  .home-carousel-block .next-slide-overlay {
    height: 375px;
    width: calc(10% - 10px);
    bottom: 93px;
  }
  .home-carousel-block .carousel-inner .item {
    height: 400px;
    margin-left: 10px;
  }
  .home-carousel-block .carousel-inner .item .img {
    height: 375px;
    margin-bottom: 12.5px;
  }
  .home-carousel-block .carousel-inner .item.slick-active .img {
    height: 400px;
    margin-bottom: 0;
  }
  .home-carousel-block .slick-list {
    margin-left: -10px;
  }
}

@media screen and (max-width: 596px) {
  .home-carousel-block .transparent-block {
    width: 95%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
    margin-left: 2.5%;
  }
  .home-carousel-block .transparent-block .industry-tag {
    display: none;
  }
  .home-carousel-block .transparent-block .h4 {
    font-size: 1em;
    line-height: 1.5em;
  }
  .home-carousel-block .transparent-block .outcome-link {
    font-size: 1em;
    margin-top: 1em;
  }
  .home-carousel-block .transparent-block .video-icon {
    width: 36px;
  }
}

.sign-in-hero {
  height: 530px;
}

.sign-in-content {
  display: flex;
  justify-content: center;
}

.form input.submit-button {
  margin-top: 30.2px;
  margin-bottom: 8.2px;
}

@media screen and (max-width: 768px) {
  .sign-in-hero {
    height: 730px;
  }
}

.about-vynyl {
  display: flex;
  position: relative;
  flex-direction: row;
  width: 100%;
  border-top: solid 1px #F3F7FA;
}

.about-vynyl > div {
  flex: 1 1 50%;
}

.about-vynyl div:nth-child(1) {
  content: '';
  background-image: url("https://www.productinhealthtech.com/assets/images/slide-1@3x.png");
  background-size: cover;
  background-position: 80% 50%;
  background-repeat: no-repeat;
  height: 700px;
  order: 1;
}

.about-vynyl div:nth-child(2) {
  padding: 0 98px;
  align-self: center;
  order: 2;
}

.about-vynyl div:nth-child(2) h1 {
  font-size: 36px;
  line-height: 24px;
  color: #3a3a3a;
  text-align: left;
}

.about-vynyl div:nth-child(2) p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 780px) {
  .about-vynyl div:nth-child(2) h1 {
    font-size: 30px;
    font-weight: 400;
  }
}

@media screen and (max-width: 780px) {
  .about-vynyl {
    flex-direction: column;
  }
  .about-vynyl div:nth-child(1) {
    order: 2;
    height: 230px;
    width: 100%;
    flex: auto;
  }
  .about-vynyl div:nth-child(2) {
    order: 1;
    padding: 26px;
  }
}

.about-leadership {
  padding-top: 134px;
  padding-bottom: 108px;
  width: 100%;
}

.about-leadership .h2 {
  font-size: 36px;
  line-height: 1.5;
  color: #3a3a3a;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 780px) {
  .about-leadership .h2 {
    font-size: 24px;
  }
}

.about-leadership p {
  text-align: center;
  color: #707175;
  font-size: 22px;
  line-height: 1.5;
  font-family: "Lora", serif;
  padding-bottom: 60px;
}

@media screen and (max-width: 780px) {
  .about-leadership p {
    font-size: 16px;
  }
}

.about-leadership > div:first-child {
  width: calc(100% - 40px);
  max-width: 632px;
  margin: 0 auto;
}

.about-leadership > ul {
  width: calc(100% - 40px);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
}

.about-leadership > ul > li {
  flex: 0 0 24%;
}

@media screen and (max-width: 630px) {
  .about-leadership > ul > li {
    flex: 0 0 49%;
  }
}

@media screen and (max-width: 460px) {
  .about-leadership > ul > li {
    flex: 0 0 80%;
  }
}

.about-leadership .partner {
  margin: 1px 1px 32px 1px;
}

.about-leadership .partner img {
  width: 100%;
  margin-bottom: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-leadership .partner > div:nth-child(2) {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  font-style: normal;
  color: #3a3a3a;
  text-align: center;
}

.about-leadership .partner > div:nth-child(3) {
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #707175;
  text-align: center;
  padding: 0 6px;
}

.about-positions {
  padding-top: 210px;
  padding-bottom: 100px;
  position: relative;
}

.about-positions .h2 {
  color: #3a3a3a;
}

.about-positions div {
  position: relative;
}

.about-positions > div:nth-child(1) {
  width: 100%;
}

.about-positions > div:nth-child(1) > div {
  display: block;
  width: calc(100% - 40px);
  max-width: 768px;
  padding: 0 20px;
  margin: 0 auto;
}

.about-positions > div:nth-child(1) > div > div {
  max-width: 530px;
  text-align: left;
}

.about-positions > div:nth-child(1) > div > div h2 {
  text-align: left;
  padding-bottom: 20px;
}

.about-positions > div:nth-child(1) > div > div h3 {
  text-align: left;
  padding-bottom: 50px;
}

@media screen and (max-width: 1000px) {
  .about-positions > div:nth-child(1) > div > div h2 {
    font-size: 2.25em;
    /* 36px */
    line-height: 45px;
  }
  .about-positions > div:nth-child(1) > div > div h3 {
    line-height: 1.6;
    font-size: 1.375em;
    /* 22px */
  }
}

@media screen and (max-width: 550px) {
  .about-positions > div:nth-child(1) > div > div h2 {
    font-size: 2em;
    /* 32px */
    line-height: 38px;
  }
  .about-positions > div:nth-child(1) > div > div h3 {
    font-size: 1.25em;
    /* 20px */
    line-height: 29px;
  }
}

.job-listings {
  column-count: 2;
  display: block;
  width: 100%;
  max-width: 768px;
  padding: 0 20px;
  margin: 0 auto 2rem;
  font-size: 22px;
  line-height: 25px;
  color: #3a3a3a;
}

@media screen and (max-width: 922px) {
  .job-listings {
    margin-left: 56px;
    padding: 0;
    width: calc(100% - 56px);
  }
}

@media screen and (max-width: 550px) {
  .job-listings {
    display: none;
  }
}

#whr_embed_hook {
  display: block;
  width: 100%;
  max-width: 768px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 922px) {
  #whr_embed_hook {
    margin-left: 56px;
    padding: 0;
    width: calc(100% - 56px);
  }
}

#whr_embed_hook .whr-items {
  padding: 0;
  margin: 0;
}

#whr_embed_hook .whr-items > .whr-item:last-child .whr-title, #whr_embed_hook .whr-items > .whr-item:last-child .whr-info {
  margin-bottom: 0;
}

#whr_embed_hook .whr-item {
  column-count: 2;
}

@media screen and (max-width: 550px) {
  #whr_embed_hook .whr-item {
    column-count: 1;
  }
}

#whr_embed_hook .whr-title, #whr_embed_hook .whr-info {
  margin: 0 0 1.2rem;
  padding: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 550px) {
  #whr_embed_hook .whr-title, #whr_embed_hook .whr-info {
    margin: 0 0 0.4rem;
  }
}

#whr_embed_hook .whr-date, #whr_embed_hook .whr-dept, #whr_embed_hook .whr-location span {
  display: none;
}

.about-environment {
  content: '';
  background: #F3F7FA;
  padding: 88px 20px 68px 20px;
}

.about-environment h2 {
  font-size: 36px;
  line-height: 36px;
  color: #3a3a3a;
}

.about-environment .bg {
  box-sizing: border-box;
  width: 685px;
  height: 258px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 56px;
  padding-top: 43px;
  padding-left: 62px;
  padding-right: 62px;
}

.about-environment .bg .header {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #0084CA;
  margin-bottom: 16px;
}

@media screen and (max-width: 780px) {
  .about-environment .bg {
    height: 80%;
    width: calc(100% - 9px);
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }
}

.about-environment .slick-slide {
  width: 630px;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 780px) {
  .about-environment .slick-slide {
    padding-bottom: 30px;
  }
}

.about-environment .slick-dots {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-around;
  display: flex;
  padding: 100px 0 0 0;
  margin: 0 auto 0 auto;
  max-width: 900px;
}

.about-environment .slick-dots li {
  flex: 1 0 14%;
  text-align: center;
  display: block;
  max-width: 145px;
  position: relative;
  cursor: pointer;
}

.about-environment .slick-dots li img {
  position: absolute;
  top: -60px;
  z-index: 99;
  left: calc(50% - 31px);
  -webkit-filter: brightness(1);
          filter: brightness(1);
  transition: -webkit-filter .3s ease-in;
  transition: filter .3s ease-in;
  transition: filter .3s ease-in, -webkit-filter .3s ease-in;
}

.about-environment .slick-dots .circle {
  padding: 100px 0 0 0;
}

.about-environment .slick-dots .circle::before {
  content: '';
  position: absolute;
  top: -67px;
  left: calc(50% - 40px);
  height: 80px;
  width: 80px;
  background-color: #d8d8d8;
  border-radius: 50%;
  transition: background-color .5s ease-in;
}

.about-environment .slick-dots li.slick-active > .circle::before {
  background-color: #0084CA;
  z-index: 90;
}

.about-environment .slick-dots li.slick-active img {
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.about-environment .slick-dots li:hover:not(.slick-active) > .circle::before {
  background-color: #fefefe;
  transition: background-color .3s ease-in;
  z-index: 90;
}

@media screen and (max-width: 780px) {
  .about-environment .slick-dots {
    max-width: 140px;
    padding: 0;
  }
  .about-environment .slick-dots li {
    flex: 0 0 auto;
    text-align: center;
    display: block;
    width: 100%;
    position: relative;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #d8d8d8;
  }
  .about-environment .slick-dots li img {
    display: none;
  }
  .about-environment .slick-dots .circle {
    padding: 0;
  }
  .about-environment .slick-dots .circle::before {
    display: none;
  }
  .about-environment .slick-dots li.slick-active {
    background-color: #3a3a3a;
  }
  .about-environment .slick-dots li > span {
    display: none;
  }
  .about-environment .slick-dots .prof-dev::after {
    display: none;
  }
}

.about-community {
  padding-top: 134px;
  padding-bottom: 108px;
  width: 100%;
}

.about-community h2 {
  font-size: 36px;
  line-height: 1.5;
  color: #3a3a3a;
}

.about-community p {
  text-align: center;
  color: #707175;
  font-size: 22px;
  line-height: 1.5;
  font-family: "Lora", serif;
}

@media screen and (max-width: 780px) {
  .about-community h2 {
    font-size: 30px;
    line-height: 1;
  }
  .about-community p {
    font-size: 16px;
  }
}

.about-community > div:first-child {
  width: calc(100% - 40px);
  max-width: 632px;
  margin: 0 auto;
  padding-bottom: 60px;
  text-align: center;
}

.about-community > div:first-child a {
  font-size: 16px;
  text-transform: uppercase;
}

.about-community .about-carousel {
  display: none;
  height: 375px;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.about-community .about-carousel figure {
  margin: 0;
  position: relative;
}

.about-community .about-carousel figure figcaption {
  color: #fff;
  height: 50px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #1a1a1a);
  width: calc(100% - 68px);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 34px;
  vertical-align: bottom;
  text-transform: uppercase;
  display: flex;
  align-items: flex-end;
}

.about-community .about-carousel .slide-holder {
  border: 4px solid #fff;
  outline: none;
}

.about-community .about-carousel .slick-slide {
  height: 375px;
}

.about-community .about-carousel .slick-active {
  height: 375px;
}

.about-community .about-carousel img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .about-community .about-carousel {
    display: block;
  }
}

.about-community .collage {
  display: flex;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.about-community .collage figure {
  margin: 0;
  position: relative;
}

.about-community .collage .label {
  color: #fff;
  height: 50px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #1a1a1a);
  width: calc(100% - 68px);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 34px;
  vertical-align: bottom;
  text-transform: uppercase;
  display: flex;
  align-items: flex-end;
  font-weight: 600;
}

.about-community .collage .column-1 {
  flex: 2 1 67%;
}

.about-community .collage .column-1 img {
  width: 100%;
  display: block;
  height: 100%;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-community .collage .column-2 {
  display: flex;
  flex-direction: column;
  flex: 1 1 33%;
}

.about-community .collage .column-2 > figure {
  width: 100%;
  height: 100%;
  max-height: 350px;
}

.about-community .collage .column-2 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-community .collage .column-full {
  width: 100%;
  flex: 0 0 auto;
}

.about-community .collage .column-full img {
  width: 100%;
  display: block;
  max-height: 403px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-community .collage .column-full-two {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex: 1 1 100%;
}

.about-community .collage .column-full-two > figure {
  flex: 1 1 50%;
  width: 50%;
  max-height: 525px;
}

.about-community .collage .column-full-two img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .about-community .collage {
    display: none;
  }
}

.grey-background {
  background: #F3F7FA;
}

.services-row-type-a {
  display: flex;
  overflow: hidden;
}

.services-row-type-a .services-text-block {
  max-width: 455px;
  padding: 118px 90px 103px 118px;
}

.services-row-type-a .services-image-block {
  padding: 80px 0;
  align-self: center;
  max-width: 555px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 440px;
  width: calc(100% - 663px);
}

.services-row-type-b {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  overflow: visible;
}

.services-row-type-b .services-text-block {
  max-width: 455px;
  padding: 120px 118px 80px 90px;
}

.services-row-type-b .services-image-block {
  padding: 80px 0;
  align-self: center;
  max-width: 555px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 440px;
  width: calc(100% - 663px);
}

.services-text-block .h4 {
  color: #3a3a3a;
  font-weight: 600;
}

.services-text-block p {
  max-width: 440px;
  min-width: 388px;
  margin-top: 8px;
}

.services-text-block .service-list {
  display: flex;
  padding: 10px 0;
}

.services-text-block .service-list ul {
  width: 100%;
  padding-left: 0;
  margin: 0;
  flex-direction: row;
  display: flex;
  flex-wrap: wrap;
}

.services-text-block .service-list li {
  min-width: calc(50% - 10px);
  width: calc(50% - 10px);
  padding-right: 10px;
  font-weight: 600;
  font-size: 1em;
  padding-bottom: 15px;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  .services-row-type-a, .services-row-type-b {
    flex-direction: column;
  }
  .services-row-type-a .services-image-block, .services-row-type-b .services-image-block {
    order: 1;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    align-self: center;
    max-width: 70%;
    height: auto;
    width: calc(100% - 60px);
  }
  .services-row-type-a .services-text-block,
  .services-row-type-b .services-text-block,
  .services-text-block {
    max-width: 70%;
    padding: 30px;
    margin: 0 auto;
    order: 2;
  }
  .services-row-type-a .services-text-block p,
  .services-row-type-b .services-text-block p,
  .services-text-block p {
    min-width: 0;
  }
  .services-row-type-a .services-text-block .service-list ul,
  .services-row-type-b .services-text-block .service-list ul,
  .services-text-block .service-list ul {
    padding-right: 15px;
  }
  .services-text-block .service-list li {
    width: 100%;
    min-width: 100%;
  }
}

@media screen and (max-width: 820px) {
  .sub-nav {
    display: none;
  }
  .services-row-type-a .services-image-block, .services-row-type-b .services-image-block {
    max-width: 455px;
    width: calc(100% - 60px);
  }
}

.sub-nav {
  background-color: #F3F7FA;
}

.sub-nav .services-menu {
  display: flex;
  font-size: 14px;
  padding-left: 60px;
}

.sub-nav .dropdown-header {
  color: #707175;
  padding: 3px 20px;
}

.sub-nav .dropdown-header a {
  font-weight: 400;
}

.sub-nav .dropdown-header img {
  margin-left: 3px;
}

.sub-nav .open {
  display: inline-block;
}

.sub-nav .close {
  display: none;
}

.sub-nav .active .close {
  display: inline-block;
}

.sub-nav .active .open {
  display: none;
}

.sub-nav .sub-nav-dropdown {
  display: flex;
  flex-wrap: wrap;
  max-width: 215px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0;
  background-color: #fff;
  position: absolute;
  box-sizing: border-box;
}

.sub-nav .sub-nav-dropdown li {
  width: 100%;
  padding: 5px 20px;
  border-top: 1px solid #F3F7FA;
}

.sub-nav .sub-nav-dropdown li:hover {
  background-color: #F3F7FA;
}

.sub-nav .sub-nav-dropdown li:first-child {
  border: none;
  margin-top: 10px;
}

.sub-nav .sub-nav-dropdown li:last-child {
  margin-bottom: 10px;
}

.service-benefits {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 45px 0;
}

.service-benefits .benefits-heading {
  font-weight: 600;
  text-align: left;
  color: #3a3a3a;
}

.benefits-list .benefit {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #F3F7FA;
}

.benefits-list .benefit:last-child {
  border-bottom: 0;
}

.benefits-list .benefit .benefit-icon {
  width: 50px;
  margin-right: 20px;
}

.service-business-value .business-value {
  display: flex;
  justify-content: space-between;
  background-color: #F3F7FA;
  margin: 30px 0 96px;
  padding: 36px;
}

.service-business-value .business-value .arrow-link {
  min-width: 250px;
  margin-right: 20px;
  text-align: right;
}

.service-business-value .business-value .arrow-link img {
  position: relative;
  top: 1px;
  right: 0;
}

@media screen and (max-width: 780px) {
  .service-business-value .business-value {
    flex-direction: column;
    text-align: center;
  }
  .service-business-value .business-value .business-value-text {
    margin-bottom: 0.8em;
  }
  .service-business-value .business-value .arrow-link {
    text-align: center;
  }
}

.service-business-value .business-value-text {
  font-size: 1.5em;
  /* 24px */
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  color: #3a3a3a;
}

.service-business-value .business-value-image {
  max-width: 100%;
}

.industries-row-type-a {
  display: flex;
}

.industries-row-type-a .industries-text-block {
  max-width: 455px;
  padding: 118px 90px 103px 118px;
}

.industries-row-type-a .industries-image-block {
  align-self: center;
  max-width: 555px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 440px;
  width: auto;
}

.industries-text-block .h4 {
  color: #3a3a3a;
  font-weight: 600;
}

.industries-text-block p {
  max-width: 440px;
  min-width: 388px;
  margin-top: 8px;
}

.industry-listing {
  padding: 45px 40px;
}

.industry-listing hr {
  border: 1px solid #F3F7FA;
}

.industry-section {
  display: flex;
  flex-wrap: nowrap;
  padding: 45px 0;
  justify-content: space-between;
}

.industry-section .industry-description {
  width: calc(50% - 45px);
}

.industry-section > img {
  width: calc(50% - 45px);
  max-width: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}

.industry-section .industry-heading {
  font-size: 1.375em;
  /* 22px */
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  text-align: left;
  color: #3a3a3a;
}

.industry-section .industry-sub-heading {
  font-size: 1em;
  /* 16px */
  font-weight: 400;
  color: #707175;
}

.industry-section.industry-section__left > img {
  order: 1;
  -o-object-position: left;
     object-position: left;
}

.industry-section.industry-section__left > div {
  order: 2;
}

.industry-section.industry-section__right > img {
  order: 2;
  -o-object-position: right;
     object-position: right;
}

.industry-section.industry-section__right > div {
  order: 1;
}

.industry-flag {
  padding: 4px 25px;
  background-color: #1D448F;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .industry-listing {
    padding: 25px 20px;
  }
  .industry-section {
    flex-direction: column;
    padding: 20px 0;
  }
  .industry-section .industry-description {
    width: 100%;
  }
  .industry-section > img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .industry-section.industry-section__right > img {
    order: 1;
  }
  .industry-section.industry-section__right .industry-description {
    order: 2;
  }
}

.two-paragraph-section {
  max-width: 1200px;
  padding: 80px 15px;
}

.two-paragraph-section p {
  font-size: 16px;
  line-height: 24px;
}

.two-paragraph-section .h3 {
  color: #3a3a3a;
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
}

.two-paragraph-section .h2 {
  color: #3a3a3a;
  margin-bottom: 36px;
}

.two-column {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.two-column > div {
  width: calc(50% - 60px);
  max-width: 375px;
  padding: 10px 30px;
}

@media screen and (max-width: 780px) {
  .two-column > div {
    width: calc(100% - 20px);
    padding: 10px 10px;
  }
}

.quotation-section {
  margin-bottom: 186px;
  margin-top: 186px;
}

.quotation-wrapper {
  position: relative;
  height: 600px;
}

.quotation-background {
  position: absolute;
  width: 74%;
  z-index: -1;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 780px) {
  .quotation-background {
    width: 100%;
    background-position: center;
  }
}

.blue-quote-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.blue-quotation {
  color: #fff;
  width: calc(52% - 120px);
  margin-left: 48%;
  z-index: -1;
  padding: 48px 60px;
  background: rgba(0, 132, 202, 0.9);
}

.blue-quotation blockquote {
  margin: 0;
  font-size: 22px;
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 700;
  line-height: 34px;
}

.blue-quotation cite {
  display: block;
  font-style: normal;
  margin-top: 15px;
  font-size: 16px;
  line-height: 34px;
  text-transform: uppercase;
}

@media screen and (max-width: 780px) {
  .blue-quotation {
    margin: 10px;
    width: calc(100% - 80px);
    padding: 24px 30px;
  }
}

.blue-quote-bitmap {
  background: url(../assets/images/bitmap.png);
  width: calc(48% - 120px);
  margin-left: 2%;
  top: 54%;
  opacity: .7;
  height: 30%;
  z-index: -1;
  position: absolute;
}

@media screen and (max-width: 780px) {
  .blue-quote-bitmap {
    width: calc(100% - 80px);
    height: 25%;
  }
}

.client-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding: 88px 0;
  align-items: center;
}

.client-logos > div {
  margin: 16px 40px;
  width: 200px;
  text-align: center;
}

.client-logos img {
  max-width: 200px;
}

@media screen and (max-width: 780px) {
  .client-logos {
    padding: 50px 0;
  }
}

.industry-blog-posts {
  margin: 40px 0;
}

.industry-blog-posts .h2 {
  color: #3a3a3a;
}

.industry-blog-listing {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

@media screen and (max-width: 780px) {
  .industry-blog-listing {
    flex-direction: column;
  }
}

.industry-blog-stub {
  position: relative;
  display: inline-block;
  max-width: 450px;
  margin: 0 auto 0 auto;
  padding: 47px 20px;
  flex-grow: 1;
  flex-basis: 0;
}

@media screen and (max-width: 780px) {
  .industry-blog-stub {
    padding: 25px 20px;
    width: calc(100% - 50px);
  }
}

.industry-blog-stub .h4 {
  color: #3a3a3a;
  margin-bottom: 16px;
}

.industry-blog-stub .h6 {
  color: #3a3a3a;
  letter-spacing: .3px;
  position: relative;
  margin-bottom: 12px;
}

.industry-blog-stub .h6 a {
  position: relative;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.industry-blog-stub .h6 a:hover {
  color: #006399;
}

.industry-blog-stub .h6 .tag-spacer {
  margin-right: 8px;
}

.industry-blog-stub .h6 > a::after {
  position: absolute;
  top: 6px;
  left: 0;
  border-radius: 2px;
  content: '';
  background-color: rgba(0, 193, 222, 0.2);
  width: 100%;
  height: 6px;
}

.industry-blog-stub a {
  margin-bottom: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.industry-blog-stub p {
  line-height: 24px;
  font-size: 16px;
  font-family: "Lora", serif;
}

.industry-blog-stub > img {
  display: block;
  width: 100%;
  max-width: 375px;
}

@media screen and (max-width: 780px) {
  .industry-blog-stub > img {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
}

.industry-blog-stub .image-link {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.industry-blog-stub .image-link > img {
  width: 100%;
}

.featured-case-study {
  background-color: #F3F7FA;
}

.featured-case-study__background {
  background-position: right;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 780px) {
  .featured-case-study__background {
    background-size: cover;
  }
}

.featured-case-study__content {
  width: calc(50% - 117px);
  padding: 89px 50% 89px 14px;
}

.featured-case-study__content .h2 {
  text-align: left;
  color: #3a3a3a;
  margin: 24px 0;
}

.featured-case-study__content .h3 {
  text-align: left;
  color: #707175;
  margin: 24px 0;
}

@media screen and (max-width: 1000px) {
  .featured-case-study__content {
    background-color: rgba(243, 247, 250, 0.75);
    width: 50%;
  }
}

@media screen and (max-width: 780px) {
  .featured-case-study__content {
    width: calc(100% - 40px);
    min-width: unset;
    max-width: unset;
    padding: 89px 20px;
    background-color: rgba(243, 247, 250, 0.75);
  }
}

.industry-case-study {
  align-items: center;
}

.industry-case-study .industry-description {
  padding: 0 20px;
}

@media screen and (max-width: 780px) {
  .industry-case-study .industry-description {
    width: calc(100% - 40px);
  }
}

.case-study-hero {
  background-color: #F3F7FA;
}

.case-study-hero__background {
  background-position: right;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 780px) {
  .case-study-hero__background {
    background-size: cover;
  }
}

.case-study-hero__content {
  width: calc(50% - 117px);
  position: relative;
  padding: 89px 50% 89px 14px;
}

.case-study-hero__content .h2 {
  text-align: left;
  color: #3a3a3a;
  margin: 24px 0;
}

.case-study-hero__content .h3 {
  text-align: left;
  color: #707175;
  margin: 24px 0;
}

.case-study-hero__content .industry-flag {
  margin-top: 0;
}

@media screen and (max-width: 1000px) {
  .case-study-hero__content {
    background-color: rgba(243, 247, 250, 0.75);
    width: 50%;
  }
}

@media screen and (max-width: 780px) {
  .case-study-hero__content {
    width: calc(100% - 40px);
    min-width: unset;
    max-width: unset;
    padding: 89px 20px;
    background-color: rgba(243, 247, 250, 0.75);
  }
}

.case-study-client {
  font-weight: 300;
  margin-left: 10px;
}

.industry-flag-container {
  position: absolute;
  top: 0;
}

.industry-flag-container .industry-flag {
  text-transform: uppercase;
  margin-right: 10px;
}

.case-study-video-testimonial {
  position: relative;
  margin-top: 168px;
}

@media screen and (max-width: 768px) {
  .case-study-video-testimonial {
    margin-top: 68px;
  }
}

.video-flag {
  position: absolute;
  min-height: 27px;
  top: 60px;
  left: 20px;
  padding: 10px 25px;
  background-color: rgba(0, 132, 202, 0.75);
  color: #fff;
  font-weight: 600;
  display: inline-block;
  max-width: 300px;
}

.video-flag span {
  display: block;
  vertical-align: top;
  line-height: 20px;
  margin-left: 45px;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .video-flag {
    top: 0;
    left: 0;
    width: calc(100% - 50px);
    max-width: 100%;
  }
}

.video-icon-flag {
  width: 32px;
  height: 32px;
  display: inline-block;
  position: absolute;
  top: 8px;
}

.video-image {
  width: 100%;
  max-width: 668px;
  margin: 0 auto;
  display: block;
}

.video-image img {
  width: 100%;
}

.video-image::after {
  content: '';
  position: absolute;
  left: calc(50% - 50px);
  top: calc(50% - 50px);
  height: 100px;
  width: 100px;
  background: url(../assets/images/icon-video.svg);
  opacity: .75;
  background-size: cover;
}

.case-study-solution {
  display: flex;
  flex-direction: row;
  margin-top: 124px;
  margin-bottom: 144px;
}

@media screen and (max-width: 768px) {
  .case-study-solution {
    flex-direction: column;
    margin-top: 24px;
    margin-bottom: 44px;
  }
}

.case-study-services {
  margin-right: 118px;
  margin-left: 20px;
  width: 177px;
}

.case-study-services hr {
  border: none;
  height: 5px;
  width: 177px;
  margin: 0 0 16px;
  color: #0084CA;
  background-color: #0084CA;
}

@media screen and (max-width: 768px) {
  .case-study-services {
    margin: 20px;
    width: calc(100% - 40px);
    padding: 20px 20px;
    max-width: 570px;
    margin: 20px auto;
  }
}

.case-study-service {
  color: #0077B8;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  line-height: normal;
  margin: 12px 0;
}

.case-study {
  flex-grow: 3;
  max-width: 570px;
  margin-right: 100px;
}

.case-study .h3 {
  color: #3a3a3a;
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
}

.case-study p {
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .case-study {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 20px;
  }
}

.case-study-highlights {
  width: 100%;
  background: #F3F7FA;
  padding-top: 134px;
  padding-bottom: 140px;
}

.case-study-highlights .h2 {
  color: #3a3a3a;
  margin-bottom: 53px;
}

.case-study-highlights .h3 {
  color: #3a3a3a;
  font-family: "Source Sans Pro", sans-serif;
  text-align: left;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .case-study-highlights {
    padding-top: 34px;
    padding-bottom: 40px;
    margin-bottom: 86px;
  }
}

.highlight-image {
  width: 100%;
  max-height: 489px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 71px;
}

.highlight-container {
  display: flex;
  justify-content: center;
}

.highlight-container .highlight {
  max-width: 274px;
  margin: 0 30px;
}

.highlight-container .highlight:first-child {
  margin-left: 20px;
}

.highlight-container .highlight:last-child {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .highlight-container .highlight {
    width: calc(100% - 40px);
    max-width: 350px;
    margin: 10px auto;
    padding: 0 20px;
  }
  .highlight-container .highlight:first-child {
    margin: 10px auto;
  }
  .highlight-container .highlight:last-child {
    margin: 10px auto;
  }
}

.highlight-container .highlight-icon {
  width: 37px;
  height: 37px;
}

@media screen and (max-width: 768px) {
  .highlight-container {
    flex-direction: column;
  }
}

.case-study-related-work {
  margin: 174px auto 208px auto;
  padding: 0 20px;
}

.case-study-related-work .h2 {
  color: #3a3a3a;
}

.case-study-related-work .h3 {
  max-width: 612px;
  margin: 0 auto 25px auto;
}

@media screen and (max-width: 768px) {
  .case-study-related-work {
    margin: 74px 0 133px 0;
  }
}

.related-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.related-container a {
  width: 50%;
  max-width: 455px;
  margin: 25px;
  display: block;
}

@media screen and (max-width: 768px) {
  .related-container a {
    width: 100%;
    margin: 25px auto;
  }
}

@media screen and (max-width: 768px) {
  .related-container {
    flex-direction: column;
  }
}

.related-card {
  width: 100%;
  max-width: 455px;
  height: 0;
  padding-bottom: 63%;
  background-size: cover;
  position: relative;
}

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

.related-logo {
  position: absolute;
  width: 75%;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  left: 12%;
  top: calc(50% - 50px);
}

/************* Downloads *************/
.black {
  background-color: black;
  color: white;
}

.asset-title {
  text-align: center;
  padding-top: 15px;
  font-size: 16px;
  font-weight: 700;
}

.downloads-slogan {
  width: 90%;
  max-width: 700px;
  margin: 0 auto 0 auto;
  padding-bottom: 100px;
  padding-top: 80px;
}

.downloads-slogan .h1, .downloads-slogan .h3 {
  color: #fff;
  text-align: center;
}

.downloads-slogan img {
  padding-left: 7px;
  display: inline-block;
}

.downloads-slogan a {
  margin-top: 30px;
}

.downloads-slogan a:hover {
  text-decoration: underline;
}

.downloads-row {
  display: block;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1260px) {
  .downloads-row {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }
}

.downloads-row.last-row {
  margin-bottom: 250px;
}

@media screen and (max-width: 768px) {
  .downloads-row.last-row {
    margin-bottom: 120px;
  }
}

.downloads-formats {
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  margin: 0;
}

.downloads-media {
  padding-top: 25px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -20px;
}

.downloads-media .media-entry {
  width: calc(33% - 12px);
  margin-right: 23px;
  margin-bottom: 20px;
  display: inline-block;
}

.downloads-media .media-entry .media-container {
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
}

.downloads-media .media-entry .media {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 220px;
  min-height: 220px;
  width: calc(100% - 30px);
  padding: 15px;
}

.downloads-media .media-entry .downloads-formats li {
  display: inline-block;
}

.downloads-media .media-entry .downloads-formats li a {
  text-decoration: underline;
}

.downloads-media .media-entry .downloads-formats li:not(:last-child)::after {
  display: inline-block;
  margin: 10px;
  content: '|';
  color: #0077B8;
}

.downloads-media .media-entry:nth-child(3n) {
  margin-right: 0;
}

.downloads-media::after {
  content: '';
  flex: auto;
}

.downloads-documents {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.downloads-documents .document {
  width: calc(33% - 44px);
  margin-right: 23px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 18px 16px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
}

.downloads-documents .document .document-title {
  margin: 0;
}

.downloads-documents .document .document-description {
  margin: 0 0 10px 0;
}

.downloads-documents .document .document-download {
  display: block;
}

.downloads-documents .document:nth-child(3n) {
  margin-right: 0;
}

.downloads-documents .document-download a {
  text-decoration: underline;
}

.downloads-documents::after {
  content: '';
  flex: auto;
}

.media-header {
  display: block;
}

.media-header .h3 {
  color: #3a3a3a;
  font-weight: 600;
  font-family: "Source Sans Pro", sans-serif;
  text-align: left;
}

@media screen and (max-width: 1052px) {
  .downloads-media {
    width: 100%;
  }
  .downloads-media .media-entry {
    width: calc(50% - 12px);
  }
  .downloads-media .media-entry:nth-child(3n) {
    margin-right: 23px;
  }
  .downloads-media .media-entry:nth-child(2n) {
    margin-right: 0;
  }
  .downloads-documents .document {
    width: calc(50% - 44px);
  }
  .downloads-documents .document:nth-child(3n) {
    margin-right: 23px;
  }
  .downloads-documents .document:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .downloads-documents {
    justify-content: space-around;
    flex-direction: column;
    width: 100%;
  }
  .downloads-documents .document {
    width: calc(100% - 32px);
    margin-right: 0;
  }
  .downloads-documents .document:nth-child(3n) {
    margin-right: 0;
  }
  .downloads-documents .document:nth-child(2n) {
    margin-right: 0;
  }
  .downloads-media {
    justify-content: space-around;
    flex-direction: column;
    width: 100%;
  }
  .downloads-media .media-entry {
    width: calc(100%);
    margin-right: 0;
  }
  .downloads-media .media-entry:nth-child(3n) {
    margin-right: 0;
  }
  .downloads-media .media-entry:nth-child(2n) {
    margin-right: 0;
  }
}

.download-section-divider {
  margin: 56px 0;
  border-color: #F3F7FA;
}

.event-hero {
  padding: 28px;
}

.event-hero__logo {
  margin: 0 auto;
  width: 100%;
  height: 158px;
  max-width: 450px;
  padding: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.event-hero__content .h1 {
  text-align: center;
  color: inherit;
  margin: 0;
  line-height: 1.3;
}

.event-hero__content .h2 {
  font-size: 1.5em;
  text-align: center;
  color: inherit;
}

.event-hero__location {
  font-weight: 600;
}

.event-hero__location::after {
  display: inline;
  content: ' | ';
}

@media screen and (max-width: 786px) {
  .event-hero__location {
    display: block;
  }
  .event-hero__location::after {
    display: none;
  }
}

.event-hr {
  border-bottom: none;
  border-color: rgba(255, 255, 255, 0.24);
  margin: 0;
  position: relative;
}

.event-description {
  width: 100%;
  max-width: 611px;
  margin: 107px auto 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.event-description .location, .event-description .date {
  margin: 0;
}

.event-description .h3 {
  color: #3a3a3a;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  text-align: left;
  margin-bottom: 22px;
}

.event-description__label {
  font-weight: 700;
}

.event-form {
  width: 100%;
  max-width: 611px;
  margin: 40px auto 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: auto;
}

.event-article {
  width: 100%;
  max-width: 611px;
  margin: 40px auto 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.event-article figure {
  margin: 20px 0;
}

.event-article * {
  width: 100%;
  box-sizing: border-box;
}

.event-article ul li, .event-article ul .li, .event-article .ul li, .event-article .ul .li {
  list-style: initial;
}

.event-article h2, .event-article h3, .event-article h4 {
  color: #3a3a3a;
  font-weight: 600;
  margin-top: 40px;
}

.event-article h2 {
  font-size: 22px;
  line-height: 26px;
}

.event-article h3 {
  font-size: 18px;
  line-height: 24px;
}

.event-article h4 {
  font-size: 18px;
  line-height: 24px;
}

@media screen and (max-width: 1000px) {
  .event-article h2 {
    font-size: 18px;
    line-height: 20px;
  }
  .event-article h3 {
    font-size: 16px;
    line-height: 18px;
  }
  .event-article h4 {
    font-size: 16px;
    line-height: 18px;
  }
}

.microsite .microsite-navbar .microsite-nav {
  padding-right: 20px;
}

.microsite .microsite-navbar .primary-nav {
  padding: 0;
}

.microsite .microsite-navbar .nav-logo img {
  max-width: 24em;
}

@media screen and (max-width: 875px) {
  .microsite .microsite-navbar .nav-logo img {
    max-width: 18em;
    padding: 18px 0;
  }
}

.microsite .microsite-navbar li {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.1em;
}

.microsite .microsite-navbar a {
  display: inline-block;
  color: #fff;
}

.microsite .microsite-navbar .primary-nav a.cta-button {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #fff;
  padding: 8px 40px;
}

.microsite .microsite-navbar .primary-nav a.cta-button:hover {
  background-color: #fff;
  color: #0084CA;
}

.microsite .microsite-navbar .primary-nav a.cta-button:before {
  content: none;
}

@media screen and (max-width: 875px) {
  .microsite .microsite-navbar .flex-container.nav-right {
    display: none;
  }
  .microsite .microsite-navbar .flex-container.nav-right.mobile {
    display: block;
  }
}

.microsite .min-width-container {
  max-width: 690px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .microsite .min-width-container {
    margin: 0 40px;
  }
}

.microsite .button-cta {
  display: inline-block;
  margin: 0 auto;
  padding: 8px 40px;
  border: 2px solid #0084CA;
  color: #0084CA;
  font-weight: 600;
  text-transform: uppercase;
}

.microsite .microsite-mobile-menu {
  top: 84px;
}

.microsite .microsite-mobile-menu ul li {
  border-bottom: 1px solid #F3F7FA;
  padding: 8px 0;
}

.microsite .hero-module {
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: -105px;
  background-color: #0084ca;
  background-image: url(../assets/images/hero-bg.svg), linear-gradient(118.58deg, #342866 0.73%, #0864a6 43.13%, #0084ca 78.28%, #09a7bc);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.microsite .hero-content {
  display: flex;
  width: 90%;
  max-width: 700px;
  margin: 80px auto 0;
  color: #fff;
}

@media screen and (max-width: 675px) {
  .microsite .hero-content {
    flex-direction: column;
  }
}

.microsite .hero-content h1 {
  font-family: "Lora", serif;
  font-size: 42px;
  line-height: 52px;
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
}

@media screen and (max-width: 675px) {
  .microsite .hero-content h1 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 16px;
  }
}

.microsite .hero-content .event-date {
  display: inline-table;
  width: 100px;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.2em;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 675px) {
  .microsite .hero-content .event-date {
    margin: 0 32px;
  }
}

.microsite .hero-content .event-date .month {
  display: block;
  margin-top: 8px;
}

.microsite .hero-content .event-date .day {
  display: block;
  margin-bottom: 12px;
  line-height: .8;
}

.microsite .hero-content .event-date .year {
  display: block;
  padding: 4px 20px;
  border-top: 2px solid #fff;
  font-weight: 400;
  letter-spacing: 3px;
}

.microsite .hero-content .event-title {
  margin-left: 32px;
}

@media screen and (max-width: 675px) {
  .microsite .hero-content .event-title {
    margin: 20px 32px;
  }
}

.microsite .hero-content .hero-cta {
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #fff;
  padding: 8px 40px;
}

.microsite .hero-small {
  height: 300px;
}

.microsite .hero-small .hero-content {
  display: block;
  text-align: center;
}

.microsite .hero-small h1 {
  margin: 0 auto;
  text-align: center;
}

.microsite .section {
  text-align: left;
  padding: 160px 0;
}

.microsite .section-title {
  margin-bottom: 60px;
  color: #3a3a3a;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.microsite hr {
  border: 1px solid #f3f7fa;
}

.microsite .content-block {
  text-align: left;
  padding: 80px 0;
}

.microsite .content-block .block-heading {
  text-align: left;
  margin-bottom: 56px;
  color: #3a3a3a;
  font-size: 36px;
  font-weight: 600;
}

.microsite .content-block p {
  font-size: 1.1em;
}

.microsite .content-block ul li {
  list-style: disc;
  margin-bottom: 16px;
  font-size: 1.1em;
}

.microsite .event-speakers .speaker-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (max-width: 425px) {
  .microsite .event-speakers .speaker-grid {
    flex-direction: column;
  }
}

.microsite .event-speakers .speaker-grid .speaker {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .microsite .event-speakers .speaker-grid .speaker {
    width: 50%;
  }
}

@media screen and (max-width: 425px) {
  .microsite .event-speakers .speaker-grid .speaker {
    width: 100%;
  }
}

.microsite .event-speakers .speaker-grid .speaker-name {
  color: #3a3a3a;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 4px;
}

.microsite .event-speakers .speaker-grid .speaker-role {
  line-height: 1;
}

.microsite .event-speakers .speaker-grid .speaker-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
}

.microsite .session {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #F3F7FA;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .microsite .session {
    flex-direction: column;
  }
}

.microsite .session .session-time {
  display: inline-block;
  width: 80px;
  max-height: 28px;
  margin-right: 80px;
  margin-bottom: 20px;
  padding: 4px 25px;
  background-color: #0084CA;
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.microsite .session .session-no-time {
  display: inline-block;
  content: '';
  width: 80px;
  max-height: 28px;
  margin-right: 80px;
  margin-bottom: 20px;
  padding: 4px 25px;
}

.microsite .session .session-title {
  margin: 0 0 8px;
  color: #3a3a3a;
}

.microsite .session .session-description {
  margin: 0;
}

.microsite .hubspot-form {
  padding-top: 80px;
}

.microsite .hubspot-form div {
  overflow: hidden;
}

.microsite .hubspot-form div iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 730px;
  margin: -50px auto 0;
}

.microsite .join-cta {
  width: 100%;
  padding: 80px 0;
  background: #F3F7FA;
  color: #3a3a3a;
  text-align: center;
}

.microsite .join-cta div {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 40px;
}

.microsite .join-cta p {
  text-align: center;
  color: #707175;
}

.microsite .join-cta .button-cta {
  margin-top: 16px;
}

.health-product-management a {
  color: #64B4A1;
}

.health-product-management h1 {
  font-family: "Lora", serif;
  font-size: 44px;
  line-height: 54px;
  text-align: left;
}

.health-product-management .max-width-container {
  width: 1200px;
}

@media screen and (max-width: 1200px) {
  .health-product-management .max-width-container {
    width: 90%;
  }
}

.health-product-management .min-width-container {
  max-width: 690px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .health-product-management .min-width-container {
    margin: 0 40px;
  }
}

.health-product-management .button-cta {
  display: inline-block;
  margin: 0 auto;
  padding: 16px 60px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  background: #C0506A;
  border-radius: 30px;
}

.health-product-management .microsite-navbar {
  background-color: #fff;
  position: relative;
}

.health-product-management .microsite-navbar .primary-nav {
  padding: 10px 0;
}

.health-product-management .microsite-navbar .primary-nav a:before {
  content: none;
}

.health-product-management .microsite-navbar .nav-logo {
  margin: 0;
}

.health-product-management .microsite-navbar .nav-logo img {
  width: 200px;
  max-width: 24em;
  vertical-align: middle;
}

@media screen and (max-width: 875px) {
  .health-product-management .microsite-navbar .nav-logo img {
    max-width: 12em;
    padding: 0;
  }
}

.health-product-management .microsite-navbar li {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.1em;
}

.health-product-management .microsite-navbar a {
  display: inline-block;
  color: #C0506A;
  font-weight: 600;
}

.health-product-management .microsite-navbar .primary-nav .nav-cta {
  background: #C0506A;
  border: 0;
  border-radius: 30px;
  color: #fff;
}

.health-product-management .microsite-navbar .primary-nav a.button-cta {
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 8px 20px;
  color: #fff;
}

.health-product-management .microsite-navbar .open-menu, .health-product-management .microsite-navbar .close-menu {
  margin: 0;
}

@media screen and (max-width: 875px) {
  .health-product-management .microsite-navbar .flex-container.nav-right {
    display: none;
  }
  .health-product-management .microsite-navbar .mobile .close-menu {
    display: none;
  }
  .health-product-management .menu-button-container.open .close-menu, .health-product-management .mobile-menu {
    display: block;
  }
  .health-product-management .microsite-navbar .flex-container.nav-right.mobile {
    display: block;
  }
}

.health-product-management .microsite-mobile-menu {
  top: 84px;
}

.health-product-management .microsite-mobile-menu ul li {
  border-bottom: 1px solid #F3F7FA;
  padding: 8px 0;
}

.health-product-management .hero-module {
  height: 95vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: -105px;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.health-product-management .hero-content {
  max-width: 540px;
  margin-top: -60px;
  padding-left: 80px;
  color: #3a3a3a;
}

@media screen and (max-width: 768px) {
  .health-product-management .hero-content {
    padding-left: 0;
  }
}

.health-product-management .hero-content h1 {
  font-family: "Lora", serif;
  font-size: 44px;
  line-height: 54px;
  text-align: left;
  margin-top: 0;
  margin-bottom: 16px;
}

@media screen and (max-width: 675px) {
  .health-product-management .hero-content h1 {
    font-size: 26px;
    line-height: 34px;
  }
}

.health-product-management .hero-content p {
  color: #707175;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
}

@media screen and (max-width: 675px) {
  .health-product-management .hero-content p {
    font-size: 16px;
  }
}

.health-product-management .hero-content .event-date {
  display: block;
  color: #C0506A;
  font-family: "Lora", serif;
  font-size: 1.2em;
  font-weight: 800;
  text-transform: uppercase;
}

.health-product-management .hero-small {
  height: auto;
  min-height: unset;
  align-items: center;
  background-color: #64B4A1;
}

.health-product-management .hero-small .hero-content {
  display: block;
  margin: 200px 0 40px;
  color: #fff;
  text-align: center;
  padding: 0;
}

.health-product-management .hero-small h1 {
  margin: 0 auto;
  text-align: center;
}

.health-product-management .hero-small p {
  color: #fff;
  margin: 16px 0;
}

.health-product-management .section {
  text-align: left;
  padding: 160px 0;
}

.health-product-management .section-title {
  margin-bottom: 60px;
  color: #3a3a3a;
  font-family: "Lora", serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.health-product-management hr {
  border: 1px solid #f3f7fa;
}

.health-product-management .content-block {
  text-align: left;
  padding: 80px 0;
}

.health-product-management .content-block .block-heading {
  text-align: left;
  margin-bottom: 56px;
  color: #3a3a3a;
  font-size: 36px;
  font-weight: 600;
}

.health-product-management .content-block p {
  font-size: 1.1em;
}

.health-product-management .content-block ul li {
  list-style: disc;
  margin-bottom: 16px;
  font-size: 1.1em;
}

.health-product-management .person-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (max-width: 425px) {
  .health-product-management .person-grid {
    flex-direction: column;
  }
}

.health-product-management .person-grid .person {
  width: 30%;
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .health-product-management .person-grid .person {
    width: 50%;
  }
}

@media screen and (max-width: 425px) {
  .health-product-management .person-grid .person {
    width: 100%;
  }
}

.health-product-management .person-grid .person-name {
  color: #3a3a3a;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 4px;
}

.health-product-management .person-grid .person-role {
  line-height: 1;
}

.health-product-management .person-grid .person-image {
  width: 160px;
  margin: 0 auto 16px;
}

.health-product-management .sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (max-width: 425px) {
  .health-product-management .sponsor-grid {
    flex-direction: column;
  }
}

.health-product-management .sponsor-grid .sponsor {
  box-sizing: border-box;
  margin: 40px 0;
  padding: 0 20px;
  text-align: center;
  align-self: center;
}

@media screen and (max-width: 768px) {
  .health-product-management .sponsor-grid .sponsor {
    width: 50%;
  }
}

@media screen and (max-width: 425px) {
  .health-product-management .sponsor-grid .sponsor {
    width: 100%;
  }
}

.health-product-management .sponsor-grid .sponsor-image {
  max-width: 280px;
  max-height: 150px;
  margin: 0 auto 16px;
}

@media screen and (max-width: 768px) {
  .health-product-management .sponsor-grid .sponsor-image {
    max-width: 100%;
  }
}

.health-product-management .session {
  display: flex;
  padding: 40px 30px;
  border-bottom: 1px solid #F3F7FA;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .health-product-management .session {
    flex-direction: column;
  }
}

.health-product-management .session .session-time {
  display: inline-block;
  min-width: 90px;
  max-width: 90px;
  max-height: 28px;
  margin-right: 80px;
  margin-bottom: 20px;
  padding: 4px 25px;
  background-color: #C0506A;
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.health-product-management .session .session-no-time {
  display: inline-block;
  content: '';
  width: 90px;
  min-width: 90px;
  max-width: 90px;
  max-height: 28px;
  margin-right: 80px;
  margin-bottom: 20px;
  padding: 4px 25px;
}

.health-product-management .session .session-title {
  margin: 0 0 4px;
  color: #3a3a3a;
}

.health-product-management .session .session-description {
  margin: 0 0 16px;
}

.health-product-management .session .session-speakers {
  display: block;
  flex-wrap: wrap;
}

.health-product-management .session .session-speakers .speaker {
  display: flex;
  margin-right: 30px;
  margin-bottom: 16px;
}

.health-product-management .session .session-speakers .speaker .speaker-image {
  width: 42px;
  height: 42px;
  margin-right: 8px;
}

.health-product-management .session .session-speakers .speaker .speaker-name {
  color: #3a3a3a;
  font-weight: 600;
}

.health-product-management .session .session-speakers .speaker .speaker-role {
  font-size: .8em;
  line-height: 1;
  text-transform: uppercase;
}

.health-product-management .hubspot-form {
  padding-top: 80px;
}

.health-product-management .hubspot-form div {
  overflow: hidden;
}

.health-product-management .hubspot-form div iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

.health-product-management .join-cta {
  width: 100%;
  padding: 80px 0;
  background: #ECF7F5;
  color: #3a3a3a;
  text-align: center;
}

.health-product-management .join-cta div {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 40px;
}

.health-product-management .join-cta p {
  text-align: center;
  color: #707175;
}

.health-product-management .join-cta .button-cta {
  margin-top: 16px;
}

.health-product-management .person-detail {
  display: flex;
  padding: 180px 0 260px;
}

@media screen and (max-width: 768px) {
  .health-product-management .person-detail {
    flex-direction: column;
    padding: 80px 30px;
  }
}

.health-product-management .person-headshot {
  display: flex;
  flex-direction: column;
  margin-right: 50px;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .health-product-management .person-headshot {
    margin-right: 0;
  }
}

.health-product-management .person-headshot img {
  width: 220px;
}

.health-product-management .person-headshot .linkedin-icon {
  width: 25px;
  height: 25px;
  margin-top: 16px;
}

.health-product-management .person-bio h1 {
  color: #3a3a3a;
  margin: 0;
}

.health-product-management .person-bio .person-role {
  margin-bottom: 24px;
  font-size: 14px;
}

.health-product-management .blog-block-body iframe {
  max-width: 570px;
  width: 570px !important;
  height: 320px !important;
  margin: 0 calc((100% - 570px) / 2);
}

@media screen and (max-width: 600px) {
  .health-product-management .blog-block-body iframe {
    width: 100% !important;
    height: calc((100vw - 80px)/1.77) !important;
    max-width: 100%;
    margin: 0;
  }
}

.health-product-management .blog-block-body > figure {
  margin: 0 auto;
}

.health-product-management .blog-block-body img {
  max-width: 100%;
  height: auto;
}

.health-product-management .blog-block-body p {
  font-family: "Lora", serif;
  padding-bottom: 20px;
}

.health-product-management .blog-block-body h1, .health-product-management .blog-block-body h2, .health-product-management .blog-block-body h3, .health-product-management .blog-block-body h4, .health-product-management .blog-block-body h5, .health-product-management .blog-block-body h6 {
  clear: both;
  display: block;
  text-rendering: optimizelegibility;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-family: "Lora", serif;
  font-weight: 400;
  color: #3a3a3a;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
}

.health-product-management .blog-block-body h2 {
  margin-bottom: 60px;
  color: #3a3a3a;
  font-family: "Lora", serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.health-product-management .blog-block-body h3 {
  margin: 0 0 4px;
  font-weight: 600;
}

.health-product-management .blog-block-body ul, .health-product-management .blog-block-body ol {
  font-family: "Lora", serif;
  padding-bottom: 20px;
}

.health-product-management .blog-block-body ul li {
  list-style: disc;
}

.health-product-management .blog-block-body img {
  width: 100%;
}

.health-product-management .blog-block-body figcaption {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: 0.9em;
  line-height: 1.16;
  font-style: italic;
}
/*# sourceMappingURL=main.css.map */