:root {
  --hiem-red: #e41b13;
  --hiem-orange: #ffa830;
  --hiem-yellow: #f8c424;
  --hiem-yellow-accessible: #d49900;
  --hiem-green: #85bf42;
  --green-accessible: #7fa62d;
  --hiem-blue: #008fc9;
  --hiem-darkblue: #2b2c6f;
  --hiem-pink: #d8127e;
  --hiem-pink-muted: #e272b4;
  --hiem-purple: #82368C;
  --hiem-lilac: #dedce6;
  --hiem-grey: #eee;
  --hiem-text: #333333;
  --white: #ffffff;
  --FontAwesome: 'Font Awesome 6 Free';
}
html {
  height: 100%;
  padding: 0;
  margin: 0;
}
body {
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  font-family: 'Lato', sans-serif;
  background-color: var(--white);
  color: var(--hiem-text);
  position: relative;
  overflow-x: hidden;
  line-height: 130%;
  font-size: 20px;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
body.programme-page {
  background-color: var(--hiem-lilac);
  line-height: 140%;
}
body.programme-page .content {
  padding: 0px;
}
body.programme-page .content .hero {
  border-bottom: 10px solid var(--hiem-pink);
  overflow: hidden;
}
body.programme-page .content .hero img {
  height: auto;
  width: 100%;
  max-width: 100%;
}
body.programme-page .main-content {
  padding: 60px 30px 80px 30px;
  max-width: 1200px;
  margin: 0 auto;
}
body.programme-page .main-content.vertical {
  flex-direction: column;
  max-width: 1000px;
  gap: 30px;
}
body.programme-page .main-content.vertical .article,
body.programme-page .main-content.vertical .impacts {
  width: 100%;
}
body.programme-page .main-content.vertical .impacts {
  max-width: 850px;
  margin: 0 auto;
}
body.programme-page .main-content .title h1 {
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 900;
}
body.programme-page .main-content .article {
  padding-right: 20px;
}
body.programme-page .main-content .article strong {
  color: var(--hiem-darkblue);
}
body.programme-page .main-content .article h2 {
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 28px;
}
body.programme-page .main-content .article h3 {
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
body.programme-page .main-content .article p {
  margin-bottom: 20px;
}
body.programme-page .main-content .article p.featured {
  color: var(--hiem-darkblue);
  font-weight: 900;
  font-size: 22px;
}
body.programme-page .main-content .article ul,
body.programme-page .main-content .article ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
body.programme-page .main-content .article ul li:not(:last-of-type),
body.programme-page .main-content .article ol li:not(:last-of-type) {
  padding-bottom: 5px;
}
body.programme-page .main-content .article ul li::marker,
body.programme-page .main-content .article ol li::marker {
  color: var(--hiem-pink);
}
body.programme-page .main-content .article ul li strong,
body.programme-page .main-content .article ol li strong {
  color: var(--hiem-darkblue);
}
body.programme-page .main-content .article p img {
  box-shadow: 10px 10px var(--hiem-pink);
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
  width: 100%;
}
body.programme-page .main-content .article .further-rollout {
  background-color: var(--white);
  box-shadow: 8px 8px 0 #9185be;
  border-radius: 0 40px 0 40px;
  margin-bottom: 30px;
  padding: 25px;
}
body.programme-page .main-content .article .further-rollout p {
  margin-bottom: 15px;
}
body.programme-page .main-content .article .further-rollout p:last-of-type {
  margin-bottom: 0;
}
body.programme-page .main-content .article .testimonial {
  background-color: var(--hiem-yellow);
  position: relative;
  padding: 50px 30px 30px 30px;
  margin-top: 60px;
  margin-bottom: 30px;
}
body.programme-page .main-content .article .testimonial .title {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
body.programme-page .main-content .article .testimonial .title h3 {
  box-shadow: 6px 6px rgba(0,0,0,0.3);
  background-color: var(--hiem-darkblue);
  text-transform: uppercase;
  text-align: center;
  padding: 7px 15px;
  font-weight: 400;
  font-size: 30px;
  color: var(--white);
}
body.programme-page .main-content .article .testimonial p strong {
  color: var(--hiem-darkblue);
  font-size: 20px;
}
body.programme-page .main-content .article .testimonial p:last-of-type {
  margin-bottom: 0;
}
body.programme-page .main-content .article .link {
  color: var(--hiem-pink);
  display: inline-block;
  position: relative;
  margin-left: 35px;
  font-weight: 700;
  font-size: 20px;
}
body.programme-page .main-content .article .link:before {
  font-family: var(--FontAwesome);
  transition: .25s ease;
  position: absolute;
  color: var(--hiem-pink);
  content: '\f138';
  font-weight: 900;
  font-size: 24px;
  left: -34px;
  top: 1px;
}
body.programme-page .main-content .article .link:hover {
  color: var(--hiem-darkblue);
}
body.programme-page .main-content .article .link:hover:before {
  color: var(--hiem-darkblue);
}
body.programme-page .main-content .article .article-section {
  background: var(--hiem-yellow);
  padding: 20px;
  height: fit-content;
  font-size: 18px;
  line-height: 130%;
}
body.programme-page .main-content .article .article-section h3 {
  font-size: 20px;
}
body.programme-page .main-content .article .article-section p {
  margin-bottom: 10px;
}
body.programme-page .main-content .article .article-section p strong {
  color: var(--hiem-darkblue);
}
body.programme-page .main-content .impacts {
  position: relative;
}
body.programme-page .main-content .impacts .title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
body.programme-page .main-content .impacts .title h3 {
  box-shadow: 6px 6px rgba(0,0,0,0.3);
  text-transform: uppercase;
  text-align: center;
  padding: 7px 15px;
  font-weight: 400;
  font-size: 30px;
}
body.programme-page .main-content .impacts ul li {
  line-height: 130%;
}
body.programme-page .main-content .impacts ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
body.programme-page .main-content .impacts .statistics {
  background-color: var(--hiem-darkblue);
  padding: 50px 40px 30px 50px;
  margin-top: 30px;
  font-size: 20px;
  line-height: 130%;
  color: var(--white);
}
body.programme-page .main-content .impacts .statistics .title h3 {
  background-color: var(--hiem-yellow);
}
body.programme-page .main-content .impacts .statistics p strong {
  color: var(--hiem-yellow);
}
body.programme-page .main-content .impacts .statistics p a {
  color: var(--hiem-yellow);
  font-weight: 400;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
body.programme-page .main-content .impacts .statistics p a:hover {
  color: var(--white);
}
body.programme-page .main-content .impacts .statistics .left {
  padding-right: 20px;
}
body.programme-page .main-content .impacts .statistics .right {
  padding-left: 20px;
}
body.programme-page .main-content .impacts .statistics .right .statistic img {
  box-shadow: -8px 8px 0px rgba(0,0,0,0.4);
  left: unset;
  right: -110px;
}
body.programme-page .main-content .impacts .statistics .statistic {
  position: relative;
  flex-direction: column;
}
body.programme-page .main-content .impacts .statistics .statistic:not(:last-of-type) {
  border-bottom: 1px solid var(--white);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
body.programme-page .main-content .impacts .statistics .statistic img {
  box-shadow: 8px 8px 0px rgba(0,0,0,0.4);
  background-color: var(--hiem-darkblue);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -110px;
  height: 90px;
  width: 90px;
}
body.programme-page .main-content .impacts .statistics .statistic p:last-of-type {
  margin: 0;
}
body.programme-page .main-content .impacts .statistics .statistic p span {
  color: var(--hiem-yellow);
  line-height: 120%;
  font-weight: 900;
}
body.programme-page .main-content .impacts .statistics .statistic p span.large {
  font-size: 30px;
}
body.programme-page .main-content .impacts .statistics .statistic p strong {
  color: var(--hiem-yellow);
}
body.programme-page .main-content .impacts .statistics .statistic a {
  color: var(--hiem-yellow);
}
body.programme-page .main-content .impacts .statistics .statistic a:hover {
  color: var(--white);
}
body.programme-page .main-content .impacts .statistics .statistic ul {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 20px;
}
body.programme-page .main-content .impacts .statistics .statistic ul li::marker {
  color: var(--hiem-yellow);
}
body.programme-page .main-content .impacts .statistics .statistic ul li span {
  color: var(--hiem-yellow);
  font-weight: 900;
}
body.programme-page .main-content .impacts .statistics .statistic .info p {
  margin-bottom: 10px;
}
body.programme-page .main-content .impacts .statistics .statistic .info ul {
  padding-left: 20px;
  margin: 0;
}
body.programme-page .main-content .impacts .statistics .statistic .info ul li {
  line-height: 130%;
}
body.programme-page .main-content .impacts .statistics.yellow {
  background: var(--hiem-yellow);
  color: var(--hiem-text);
}
body.programme-page .main-content .impacts .statistics.yellow .title h3 {
  background: var(--hiem-darkblue);
  color: var(--white);
}
body.programme-page .main-content .impacts .statistics.yellow p strong,
body.programme-page .main-content .impacts .statistics.yellow p span,
body.programme-page .main-content .impacts .statistics.yellow a {
  color: var(--hiem-darkblue);
}
body.programme-page .main-content .impacts .statistics.yellow .statistic {
  border-color: var(--hiem-darkblue);
}
body.programme-page .main-content .impacts .statistics.yellow .statistic img {
  background: var(--hiem-yellow);
}
body.programme-page .main-content .impacts .next-steps {
  background-color: var(--hiem-yellow);
  color: var(--hiem-darkblue);
  padding: 50px 40px 30px 40px;
  position: relative;
}
body.programme-page .main-content .impacts .next-steps .title {
  top: -25px;
}
body.programme-page .main-content .impacts .next-steps .title h3 {
  background-color: var(--hiem-pink);
  color: var(--white);
}
body.programme-page .main-content .impacts .next-steps ul {
  margin-bottom: 0;
  padding-left: 20px;
}
body.programme-page .main-content .impacts .next-steps ul li::marker {
  color: var(--hiem-pink);
}
body.programme-page .main-content .impacts blockquote {
  margin-bottom: 0;
}
body.programme-page .main-content .info .title {
  background-color: var(--hiem-yellow);
  padding: 20px 30px;
}
body.programme-page .main-content .info .title h4 {
  color: var(--hiem-darkblue);
  font-weight: 900;
  font-size: 22px;
  line-height: 140%;
  margin-bottom: 0;
}
body.programme-page .main-content .info .list {
  background-color: var(--hiem-darkblue);
  padding: 20px 50px 20px 30px;
}
body.programme-page .main-content .info .list ul li {
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
}
body.programme-page .main-content .info .list ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
body.programme-page .bottom {
  align-items: end;
  max-width: 1200px;
  padding: 0 30px 40px;
  margin: 0 auto;
}
body.programme-page .sub-section {
  background-color: var(--hiem-darkblue);
  padding: 40px 0px;
  color: var(--white);
}
body.programme-page .sub-section .container {
  max-width: 1200px;
  padding: 0 30px;
}
body.programme-page .sub-section h2 {
  line-height: 110%;
  font-weight: 900;
  font-size: 40px;
}
body.programme-page .sub-section a {
  color: var(--white);
}
body.programme-page .sub-section a:hover {
  color: var(--hiem-pink);
}
body.programme-page .sub-section p:last-of-type {
  margin-bottom: 0;
}
body.programme-page .sub-section .sub-image img {
  background-color: var(--white);
  border-radius: 100%;
  padding: 5px;
}
body.programme-page.innovator-stories .main-content > .row {
  margin-bottom: 48px;
}
body.programme-page.innovator-stories .article .inner {
  background: var(--white);
  padding: 20px;
  height: 100%;
}
body.programme-page.innovator-stories .article .logo {
  padding: 20px 0;
}
body.programme-page.innovator-stories .article .logo img {
  margin-bottom: 20px;
  width: auto;
  height: 80px;
}
body.programme-page.innovator-stories .article .logo.smaller img {
  height: 50px;
}
body.programme-page.grow-digital .main-content .impacts .statistics .statistic:not(:last-of-type) {
  padding-bottom: 50px !important;
  margin-bottom: 50px !important;
}
body.programme-page.health-checks blockquote {
  width: 480px;
  margin-left: auto;
  margin-top: -180px;
}
body.programme-page.kidney-care blockquote {
  width: 440px;
  margin-top: 30px;
}
body.programme-page.psc hr {
  margin: 50px 0 !important;
  border-width: 3px;
  opacity: 0.1;
}
body.programme-page.psc .container-fluid {
  padding: 50px 0;
}
body.programme-page.psc .intro {
  background: var(--white);
}
body.programme-page.psc .intro p:last-of-type {
  margin-bottom: 0;
}
body.programme-page.psc h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
body.programme-page.psc h3 a {
  font-weight: 900;
}
body.programme-page.psc ul {
  margin-bottom: 0;
}
body.programme-page.psc ul li::marker {
  color: var(--hiem-pink);
}
body.programme-page.psc ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
body.programme-page.psc blockquote {
  width: 530px;
}
.container-fluid {
  padding-left: 0px;
  padding-right: 0px;
  position: relative;
}
.container {
  max-width: 1100px !important;
  margin: 0 auto;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
.row > * {
  padding-left: 0;
  padding-right: 0;
}
h1,
h2,
h3,
h4 {
  color: var(--hiem-darkblue);
  font-weight: 900;
}
p {
  margin-bottom: 20px;
}
p em {
  font-size: 22px;
}
b,
strong {
  font-weight: 900;
}
a {
  color: var(--hiem-darkblue);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: .25s ease;
}
a:hover {
  color: var(--hiem-pink);
}
img {
  max-width: 100%;
}
video {
  width: 100%;
  height: auto;
}
blockquote {
  color: var(--hiem-darkblue);
  border-radius: 100%;
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 30px;
  font-size: 22px;
}
blockquote a {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
  font-weight: 400;
}
blockquote .quote-icon {
  margin-bottom: 20px;
}
blockquote .quote-icon img {
  width: 70px;
  height: 70px;
}
blockquote .quote {
  position: relative;
  font-style: italic;
}
blockquote .quote-author {
  font-size: 20px;
  line-height: 120%;
}
blockquote .quote-author strong {
  color: var(--hiem-darkblue);
}
blockquote.darkblue {
  background: var(--hiem-darkblue);
  color: var(--white);
}
blockquote.darkblue .quote-author strong,
blockquote.darkblue a {
  color: var(--white) !important;
}
blockquote.yellow {
  background: var(--hiem-yellow);
}
blockquote.lilac {
  background: var(--hiem-lilac);
}
blockquote.white {
  background: var(--white);
}
ul li,
ol li {
  padding-left: 5px;
}
ul li:not(:last-of-type),
ol li:not(:last-of-type) {
  margin-bottom: 10px;
}
ul li::marker,
ol li::marker {
  color: var(--hiem-pink);
  font-weight: 900;
}
.btn {
  box-shadow: 5px 5px 0px rgba(0,0,0,0.2);
  background-color: var(--hiem-yellow) !important;
  color: var(--hiem-darkblue) !important;
  border: none !important;
  transition: .25s ease;
  text-decoration: none;
  margin-bottom: 20px;
  border-radius: 0px;
  padding: 10px 18px;
  position: relative;
  line-height: 130%;
  font-weight: 700;
  font-size: 22px;
  top: 0;
  left: 0;
}
.btn:after {
  font-family: var(--FontAwesome);
  margin-left: 5px;
  content: '\f054';
}
.btn:hover {
  box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
  color: var(--hiem-darkblue);
  background-color: #f5c106;
  transition: .25s ease;
  text-decoration: none;
  top: 3px;
  left: 3px;
}
.btn:hover:focus {
  box-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}
.btn:focus {
  box-shadow: 5px 5px 0px rgba(0,0,0,0.2);
}
.btn.btn-sm {
  padding: 8px 13px;
  font-size: 20px;
}
.btn.btn-back {
  padding: 8px 12px;
  margin-top: 20px;
  font-size: 20px;
  width: fit-content;
}
.btn.btn-back:before {
  font-family: var(--FontAwesome);
  position: relative;
  margin-right: 5px;
  content: '\f060';
  left: 0;
}
.btn.btn-back:after {
  content: '';
}
.btn.darkblue {
  background-color: var(--hiem-darkblue) !important;
  color: var(--white) !important;
}
.btn.darkblue:hover {
  background-color: #27256b !important;
}
.btn.pink {
  background-color: var(--hiem-pink) !important;
  color: var(--white) !important;
}
.btn.pink:hover {
  background-color: #c01070 !important;
}
.btn.blue {
  background-color: var(--hiem-blue) !important;
  color: var(--white) !important;
}
.btn.blue:hover:hover {
  background: #007db0 !important;
}
.header {
  background-color: var(--hiem-grey);
  padding: 0 !important;
}
.header > .container {
  padding: 25px 50px;
  max-width: 100% !important;
}
.header .container {
  position: relative;
  z-index: 2;
}
.header .navbar-brand {
  max-width: 300px;
}
.header .navbar {
  padding: 0;
  background: #081560;
}
.header .navbar .row {
  margin: 0 auto;
}
.header .navbar .nav {
  padding: 0;
}
.header .navbar .nav > li {
  padding: 0;
  margin: 0;
}
.header .navbar .nav > li > a {
  text-decoration: none;
  padding: 15px 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--white);
  display: block;
}
.header .navbar .nav > li > a:hover,
.header .navbar .nav > li > a:hover:focus {
  background: var(--hiem-darkblue);
  color: var(--white);
}
.header .navbar .nav > li > a:focus {
  background: var(--hiem-darkblue);
  color: var(--white);
}
.header .navbar .nav > li.active:after {
  background: var(--hiem-pink);
  height: 0;
  height: 5px;
  width: 100%;
  content: '';
  display: block;
  position: relative;
  margin-top: -5px;
  transition: .25s;
  transform-origin: bottom;
  transform: scaleY(1);
}
.header .navbar .nav > li.active:hover:after {
  transform: scaleY(0);
}
.header .navbar .nav > li.active:hover > a {
  background-color: #333f83;
  color: var(--white);
}
.section-title {
  position: relative;
  padding: 50px 0px;
  width: 100%;
  z-index: 1;
}
.section-title .text {
  border-bottom: 2px solid var(--hiem-pink);
  padding-bottom: 30px;
  max-width: 800px;
}
.section-title h1 {
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 60px;
}
.section-title h1 span {
  border-bottom: 2px solid var(--hiem-pink);
  display: inline-block;
  padding-bottom: 20px;
}
.section-title h2 {
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 32px;
}
.section-title.darkblue {
  background: var(--hiem-darkblue);
  color: var(--white);
  margin-bottom: 50px;
}
.section-title.darkblue h1 {
  color: var(--white);
}
@keyframes scrollIndicator {
  0% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(15px);
  }
}
.main-container {
  background-color: var(--hiem-lilac);
  color: var(--hiem-darkblue);
  position: relative;
  overflow: hidden;
}
.main-container .container.title-container .scroll-indicator,
.main-container .container.title-container .title,
.main-container .container.title-container .pdf {
  position: relative;
  z-index: 1;
}
.main-container .background-image-right {
  position: absolute;
  z-index: 0;
  top: -100px;
  right: -100px;
  width: 650px;
}
.main-container .scroll-indicator {
  animation: scrollIndicator 1s infinite;
  margin-top: -10px;
  margin-bottom: 30px;
}
.main-container .scroll-indicator h4 {
  background: rgba(43,44,111,0.1);
  display: inline-block;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 700;
  color: var(--hiem-darkblue);
}
.main-container .background-icon-top {
  position: absolute;
  top: -350px;
  left: -510px;
  opacity: 0.1;
}
.main-container .background-icon-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.main-container .title-container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.main-container .title h1 {
  color: var(--hiem-darkblue);
  line-height: 140%;
  font-weight: 700;
  font-size: 50px;
}
.main-container .title h1 strong {
  padding-right: 20px;
  font-size: 70px;
}
.main-container .title h1 .tagline {
  font-weight: 900;
  font-size: 34px;
}
.main-container .content-container {
  background: var(--white);
  padding: 40px 0;
}
.main-container .intro,
.main-container .foreword {
  color: var(--hiem-text);
  position: relative;
}
.main-container .intro h2,
.main-container .foreword h2 {
  border-bottom: 5px solid var(--hiem-pink);
  color: var(--hiem-darkblue);
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 50px;
}
.main-container .intro strong,
.main-container .foreword strong {
  color: var(--hiem-darkblue);
}
.main-container .foreword {
  position: relative;
  z-index: 1;
}
.main-container .foreword .author-details .author-image {
  flex: 0 0 25%;
}
.main-container .foreword .author-details .author-image img {
  border-radius: 100%;
}
.main-container .foreword .author-details .author-content {
  flex: 0 0 75%;
}
.main-container .foreword .author-details .author-content .author-name {
  color: var(--hiem-darkblue);
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 900;
  font-size: 24px;
}
.main-container .foreword .author-details .author-content .author-title {
  display: inline-flex;
  font-size: 20px;
  margin-bottom: 0;
}
.main-container .foreword .author-details .author-content .author-title img {
  margin-left: 10px;
  margin-top: -10px;
}
.main-container .government-shifts {
  background: var(--hiem-lilac);
  text-align: center;
  justify-content: space-evenly;
  padding: 20px 0 30px;
}
.main-container .government-shifts .shift {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.main-container .government-shifts h3 {
  color: var(--hiem-darkblue);
  font-size: 32px;
  margin-bottom: 30px;
}
.main-container .government-shifts h4 {
  color: var(--hiem-darkblue);
  font-size: 26px;
}
.main-container .government-shifts img {
  box-shadow: 10px 10px 0px rgba(0,0,0,0.4);
  border-radius: 100%;
  width: 180px;
  height: auto;
}
.our-impacts {
  background: var(--white);
  padding-bottom: 60px;
  overflow: hidden;
}
.our-impacts .background-icon-top {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 1200px;
}
.our-impacts .background-icon-top img {
  width: 100%;
  height: auto;
}
.our-impacts > .container {
  max-width: 1200px !important;
  position: relative;
}
.our-impacts > .container .background-icon-bottom {
  position: absolute;
  right: -70px;
  bottom: -70px;
}
.our-impacts .counter {
  font-weight: 900;
}
.our-impacts .impact {
  font-weight: 700;
  color: var(--hiem-darkblue);
  padding: 40px 10px;
  text-align: center;
  z-index: 1;
  flex: 0 0 21%;
}
.our-impacts .impact img {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  box-shadow: 15px 15px 0px rgba(0,0,0,0.4);
  margin-bottom: 50px;
}
.our-impacts .impact .counter {
  padding-bottom: 10px;
  font-size: 30px;
  line-height: 110%;
}
.our-impacts .impact p {
  color: var(--hiem-text);
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
}
.our-impacts .impact p strong {
  color: var(--hiem-darkblue);
  font-size: 22px;
  line-height: 130%;
  font-weight: 800;
}
.our-impacts .impact.blue img {
  background-color: var(--hiem-blue);
}
.our-impacts .impact.yellow img {
  background-color: var(--hiem-yellow);
}
.our-impacts .impact.green img {
  background-color: var(--hiem-green);
}
.our-impacts .impact.pink img {
  background-color: var(--hiem-pink);
}
.our-impacts .impact.darkblue img {
  background-color: var(--hiem-darkblue);
}
.economic-growth {
  padding-bottom: 100px;
}
.economic-growth .background-icon-bottom {
  position: absolute;
  opacity: 0.3;
  z-index: 0;
  bottom: 0;
  left: 0;
}
.economic-growth .section-title {
  background-color: var(--hiem-darkblue);
  color: var(--white);
}
.economic-growth .section-title h1,
.economic-growth .section-title h2 {
  color: var(--white);
}
.economic-growth .section-title h2 {
  font-style: italic;
}
.economic-growth .intro {
  margin-bottom: -20px;
  font-size: 22px;
  line-height: 140%;
}
.economic-growth .intro .col-5 {
  padding-top: 20px;
}
.economic-growth .intro p {
  position: relative;
}
.economic-growth .intro blockquote {
  font-size: 23px;
  line-height: 120%;
  margin-left: auto;
}
.economic-growth .intro blockquote .quote strong {
  color: var(--hiem-yellow);
}
.economic-growth .intro blockquote.yellow {
  width: 400px;
  margin-top: -300px;
}
.economic-growth .intro blockquote.darkblue {
  width: 540px;
  margin-top: -50px;
}
.economic-growth .stats {
  background: var(--hiem-lilac);
  position: relative;
  padding: 30px 30px 50px;
  font-size: 23px;
  line-height: 140%;
}
.economic-growth .stats .title {
  margin-bottom: 40px;
}
.economic-growth .stats .title h3 {
  color: var(--hiem-darkblue);
  font-weight: 900;
}
.economic-growth .stats .title .year {
  box-shadow: 6px 6px rgba(0,0,0,0.3);
  background: var(--hiem-yellow);
  color: var(--hiem-darkblue);
  display: inline-block;
  text-align: center;
  padding: 7px 15px;
  margin: 10px 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
}
.economic-growth .stats .stat {
  text-align: center;
}
.economic-growth .stats .stat.stat-1 {
  padding-right: 20px;
}
.economic-growth .stats .stat.stat-2 {
  border-left: 2px solid var(--hiem-darkblue);
  border-right: 2px solid var(--hiem-darkblue);
  padding-left: 20px;
  padding-right: 20px;
}
.economic-growth .stats .stat.stat-3 {
  padding-left: 20px;
}
.economic-growth .stats .stat .counter {
  font-weight: 800;
  color: var(--hiem-darkblue);
  font-size: 30px;
}
.economic-growth .stats strong {
  color: var(--hiem-darkblue);
}
.economic-growth .stats .icon {
  box-shadow: 8px 8px 0px rgba(0,0,0,0.4);
  background-color: var(--hiem-darkblue);
  border-radius: 100%;
  width: 150px;
  margin-bottom: 30px;
}
.economic-growth .stats p {
  margin-bottom: 0;
}
.shifts .section-title {
  text-align: left;
  padding: 0;
}
.shifts .section-title .container {
  max-width: 100% !important;
  padding: 0 !important;
}
.shifts .section-title h1 {
  text-transform: none;
  font-size: 60px;
  font-weight: 900;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--hiem-pink);
}
.shifts .section-title h2 {
  color: var(--hiem-text);
  border: none;
  font-weight: 400;
  font-style: italic;
  font-size: 31px;
  padding: 10px 0;
}
.shifts .section-title .section-text {
  padding: 40px 50px 40px 80px;
  flex: 0 0 55%;
}
.shifts .section-title .section-image {
  flex: 0 0 45%;
  position: relative;
  padding-bottom: 100px;
}
.shifts .section-title .section-image .icon {
  box-shadow: 10px 10px 0px rgba(0,0,0,0.4);
  border-radius: 100%;
  position: absolute;
  bottom: 30px;
  width: 180px;
  height: auto;
}
.shifts .section-title .flex-row .section-image .icon {
  right: 40px;
}
.shifts .section-title .flex-row-reverse .section-image .icon {
  left: 40px;
}
.shifts .intro {
  margin: 0px auto 50px auto;
  max-width: 1000px;
  font-size: 21px;
  line-height: 140%;
  position: relative;
  margin-bottom: 100px;
}
.shifts h1.featured-title {
  margin-bottom: 30px;
  font-size: 50px;
}
.shifts .service-container {
  position: relative;
}
.shifts .service-container .service-background-icon {
  position: absolute;
  z-index: 0;
}
.shifts .service-container .row {
  justify-content: space-between;
  padding: 50px 0px;
  max-width: 1300px;
  margin: 0 auto;
}
.shifts .service-container .service-images {
  position: relative;
}
.shifts .service-container .service-images .service-photo {
  position: relative;
  top: -10px;
  z-index: 1;
}
.shifts .service-container .service-images .service-photo img {
  border-radius: 50%;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.shifts .service-container .service-images .service-icon {
  position: absolute;
  z-index: 9;
}
.shifts .service-container .service-images .service-icon img {
  box-shadow: 10px 10px 0px rgba(0,0,0,0.4);
  border-radius: 100%;
  width: 160px;
  height: auto;
}
.shifts .service-container .service-content h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}
.shifts .service-container .service-content h2 {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 120%;
  font-weight: 900;
  font-size: 36px;
}
.shifts .service-container .service-content h3 {
  color: var(--hiem-text);
  margin-bottom: 30px;
  line-height: 130%;
  font-weight: 900;
  font-size: 22px;
}
.shifts .service-container .service-content > p {
  margin-bottom: 0px;
}
.shifts .service-container .service-content > p strong {
  color: var(--hiem-darkblue) !important;
  font-size: 23px !important;
  display: block;
  font-weight: 900;
}
.shifts .service-container .service-content > p:not(:first-of-type) {
  margin-top: 10px;
}
.shifts .service-container .service-content a {
  font-weight: 800;
  text-decoration-thickness: 2px;
}
.shifts .service-container .service-content .readmore {
  margin-top: 25px;
}
.shifts .service-container .service-content .statistics {
  margin-top: 20px;
}
.shifts .service-container .service-content .statistics h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.shifts .service-container .service-content .statistics .statistic img {
  background-color: var(--hiem-darkblue);
  box-shadow: 8px 8px 0px rgba(0,0,0,0.4);
  border-radius: 100%;
  margin-right: 25px;
  height: 96px;
  width: 96px;
}
.shifts .service-container .service-content .statistics .statistic p {
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 22px;
  line-height: 140%;
}
.shifts .service-container .service-content .statistics .statistic p span {
  line-height: 100%;
  font-size: 30px;
  font-weight: 900;
  padding: 0 1px;
}
.shifts .service-container .service-content .statistics .statistic p span,
.shifts .service-container .service-content .statistics .statistic p strong {
  color: var(--hiem-darkblue);
}
.shifts .service-container .service-content .statistics .statistic a:hover {
  color: var(--hiem-darkblue);
}
.shifts .service-container .service-content .statistics .statistic:not(:last-of-type) {
  margin-bottom: 20px;
}
.shifts .service-container .service-content .statistics.yellow p span,
.shifts .service-container .service-content .statistics.yellow p strong {
  color: var(--hiem-yellow-accessible);
}
.shifts .service-container .service-content .statistics.yellow .statistic img {
  background-color: var(--hiem-yellow);
}
.shifts .service-container .service-content .statistics.yellow a {
  color: var(--hiem-yellow);
}
.shifts .service-container .service-content .statistics.blue p span,
.shifts .service-container .service-content .statistics.blue p strong {
  color: var(--hiem-blue);
}
.shifts .service-container .service-content .statistics.blue .statistic img {
  background-color: var(--hiem-blue);
}
.shifts .service-container .service-content .statistics.blue a {
  color: var(--hiem-blue);
}
.shifts .service-container .service-content .statistics.pink p span,
.shifts .service-container .service-content .statistics.pink p strong {
  color: var(--hiem-pink);
}
.shifts .service-container .service-content .statistics.pink .statistic img {
  background-color: var(--hiem-pink);
}
.shifts .service-container .service-content .statistics.pink a {
  color: var(--hiem-pink);
}
.shifts .service-container .service-content .statistics.green p span,
.shifts .service-container .service-content .statistics.green p strong {
  color: var(--green-accessible);
}
.shifts .service-container .service-content .statistics.green .statistic img {
  background-color: var(--hiem-green);
}
.shifts .service-container .service-content .statistics.green a {
  color: var(--green-accessible);
}
.shifts .service-container.image-left .service-background-icon {
  top: 40px;
  left: 0;
}
.shifts .service-container.image-left .row {
  padding-bottom: 80px;
}
.shifts .service-container.image-left .row .service-images {
  padding-left: 0px;
}
.shifts .service-container.image-left .row .service-content {
  padding-right: 5%;
  padding-left: 20px;
}
.shifts .service-container.image-left .row .service-icon {
  top: -60px;
  right: 30px;
}
.shifts .service-container.image-left .row .statistics .statistic.statistic-2 {
  margin-left: -30px;
}
.shifts .service-container.image-left .row .statistics .statistic.statistic-3 {
  margin-left: -80px;
}
.shifts .service-container.image-left .row .statistics .statistic.statistic-4 {
  margin-left: -130px;
}
.shifts .service-container.image-left .row .statistics .statistic.statistic-5 {
  margin-left: -180px;
}
.shifts .service-container.image-left .row .statistics .statistic.statistic-6 {
  margin-left: -230px;
}
.shifts .service-container.image-left .row .statistics .statistic.statistic-7 {
  margin-left: -280px;
}
.shifts .service-container.image-left .row .statistics .statistic.statistic-8 {
  margin-left: -330px;
}
.shifts .service-container.image-left .row .statistics .statistic.statistic-9 {
  margin-left: -380px;
}
.shifts .service-container.image-right .service-background-icon {
  top: 100px;
  right: 0px;
}
.shifts .service-container.image-right .row {
  flex-direction: row-reverse;
  padding-bottom: 100px;
}
.shifts .service-container.image-right .row .service-images {
  padding-right: 0px;
}
.shifts .service-container.image-right .row .service-content {
  padding-right: 20px;
  padding-left: 0px;
}
.shifts .service-container.image-right .row .service-content h2,
.shifts .service-container.image-right .row .service-content p {
  max-width: 660px;
}
.shifts .service-container.image-right .row .service-images .service-photo {
  text-align: right;
  margin-right: -30px;
  top: 0px;
}
.shifts .service-container.image-right .row .service-images .service-icon {
  top: -120px;
  left: 50px;
}
.shifts .service-container.image-right .row .service-content {
  padding-left: 5%;
}
.shifts .service-container.image-right .row .statistics .statistic.statistic-2 {
  margin-left: 30px;
}
.shifts .service-container.image-right .row .statistics .statistic.statistic-3 {
  margin-left: 80px;
}
.shifts .service-container.image-right .row .statistics .statistic.statistic-4 {
  margin-left: 130px;
}
.shifts .service-container.image-right .row .statistics .statistic.statistic-5 {
  margin-left: 180px;
}
.shifts .service-container.image-right .row .statistics .statistic.statistic-6 {
  margin-left: 230px;
}
.shifts .service-container.image-right .row .statistics .statistic.statistic-7 {
  margin-left: 280px;
}
.shifts .service-container.image-right .row .statistics .statistic.statistic-8 {
  margin-left: 330px;
}
.shifts .service-container.innovator-stories ul li:not(:last-of-type) {
  margin-bottom: 30px;
}
.shifts .shift.analogue .section-title {
  background-color: var(--hiem-yellow);
}
.shifts .shift.treatment .section-title {
  background-color: var(--hiem-darkblue);
}
.shifts .shift.treatment .section-title h1 {
  color: var(--hiem-yellow);
}
.shifts .shift.treatment .section-title h2 {
  color: var(--white);
}
.shifts .shift.hospital .section-title {
  background-color: var(--hiem-pink);
}
.shifts .shift.hospital .section-title h1 {
  color: var(--white);
  border-color: var(--hiem-yellow);
}
.shifts .shift.hospital .section-title h2 {
  color: var(--white);
}
.safer-care {
  padding-bottom: 50px;
}
.safer-care .section-title {
  background: var(--hiem-lilac);
}
.safer-care a {
  font-weight: 900;
}
.safer-care strong {
  color: var(--hiem-darkblue);
}
.safer-care blockquote.lilac {
  width: 380px;
  margin-left: auto;
}
.safer-care .intro {
  padding: 50px 0;
}
.safer-care .intro h3 {
  color: var(--hiem-darkblue);
  margin-bottom: 30px;
}
.safer-care .programmes .row {
  position: relative;
}
.safer-care .programmes .row h3 {
  font-size: 22px;
}
.safer-care .programmes .row .col-6:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.safer-care .programmes .row .col-6:first-of-type .btn {
  margin-top: 20px;
}
.safer-care .impacts {
  position: relative;
  max-width: 380px;
  margin-left: auto;
}
.safer-care .impacts .title {
  margin-bottom: -30px;
  width: 100%;
}
.safer-care .impacts .title h3 {
  box-shadow: 6px 6px rgba(0,0,0,0.3);
  background: var(--hiem-yellow);
  color: var(--hiem-darkblue);
  text-transform: uppercase;
  text-align: center;
  padding: 7px 15px;
  font-weight: 400;
  font-size: 30px;
  margin: 0;
}
.safer-care .impacts .statistics {
  background: var(--hiem-darkblue);
  padding: 50px 30px 30px 50px;
  color: var(--white);
}
.safer-care .impacts .statistics p strong {
  color: var(--hiem-yellow);
}
.safer-care .impacts .statistics .statistic {
  position: relative;
  flex-direction: column;
}
.safer-care .impacts .statistics .statistic:not(:last-of-type) {
  border-bottom: 2px solid var(--white);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.safer-care .impacts .statistics .statistic img {
  box-shadow: 8px 8px 0px rgba(0,0,0,0.4);
  background-color: var(--hiem-darkblue);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -110px;
  height: 90px;
  width: 90px;
}
.safer-care .impacts .statistics .statistic p:last-of-type {
  margin: 0;
}
.safer-care .impacts .statistics .statistic p strong {
  color: var(--hiem-yellow);
  line-height: 120%;
  font-weight: 900;
}
.safer-care .impacts .statistics .statistic p strong.large {
  font-size: 30px;
}
.safer-care .impacts .statistics .statistic a {
  color: var(--hiem-yellow);
}
.safer-care .impacts .statistics .statistic a:hover {
  color: var(--white);
}
.safer-care .impacts.yellow .title h3 {
  background: var(--hiem-darkblue);
  color: var(--hiem-yellow);
}
.safer-care .impacts.yellow .statistics {
  background: var(--hiem-yellow);
  color: var(--hiem-text);
}
.safer-care .impacts.yellow .statistics p strong {
  color: var(--hiem-darkblue);
}
.safer-care .impacts.yellow .statistics .statistic:not(:last-of-type) {
  border-bottom: 1px solid var(--hiem-darkblue);
}
.safer-care .impacts.yellow .statistics .statistic img {
  background: var(--hiem-yellow);
}
.support-services {
  padding-bottom: 50px;
}
.support-services .background-icon-top {
  position: absolute;
  opacity: 1;
  z-index: 0;
}
.support-services .background-icon-top {
  top: 220px;
  right: -100px;
}
.support-services .background-icon-top img {
  width: 700px;
  transform: scaleX(-1);
}
.support-services .section-title {
  color: var(--hiem-darkblue);
  min-height: 200px;
  padding: 50px 0px;
}
.support-services h2,
.support-services h3 {
  margin-bottom: 15px;
}
.support-services h2 {
  font-size: 40px;
}
.support-services h3 {
  font-size: 24px;
}
.support-services .intro {
  font-size: 21px;
  line-height: 140%;
}
.support-services ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.support-services .stats {
  background-color: var(--hiem-lilac);
  padding: 50px 30px 40px 30px;
  font-size: 21px;
  position: relative;
}
.support-services .stats .icon {
  box-shadow: 8px 8px 0px rgba(0,0,0,0.4);
  background-color: var(--hiem-darkblue);
  border-radius: 100%;
  position: absolute;
  top: -40px;
  right: -40px;
  width: 130px;
  height: 130px;
}
.support-services .stats .stats-content h3 {
  font-size: 30px;
}
.support-services .stats .stats-content p strong {
  color: var(--hiem-darkblue);
}
.support-services .services {
  margin-top: 10px;
}
.support-services .services .col-4:nth-of-type(1) {
  padding-right: 25px;
}
.support-services .services .col-4:nth-of-type(2) {
  padding-left: 12.5px;
  padding-right: 12.5px;
}
.support-services .services .col-4:nth-of-type(3) {
  padding-left: 25px;
}
.support-services .services .service {
  border-radius: 10px;
  height: 100%;
}
.support-services .services .service .service-head {
  border-radius: 10px 10px 0 0;
  padding: 12px 15px;
}
.support-services .services .service .service-head .service-icon {
  flex: 0 0 30%;
  display: flex;
  align-items: center;
}
.support-services .services .service .service-head .service-icon img {
  box-shadow: 6px 6px 0px rgba(0,0,0,0.3);
  background-color: var(--white);
  border-radius: 100%;
  height: 70px;
  width: 70px;
}
.support-services .services .service .service-head .service-title {
  flex: 0 0 70%;
}
.support-services .services .service .service-head .service-title h3,
.support-services .services .service .service-head .service-title p {
  margin: 0;
  color: var(--white);
}
.support-services .services .service .service-head .service-title h3 {
  font-weight: 900;
  font-size: 25px;
}
.support-services .services .service .service-content {
  border-radius: 0 0 10px 10px;
  color: var(--hiem-darkblue);
  padding: 15px;
}
.support-services .services .service .service-content ul li {
  margin-bottom: 7px;
  line-height: 120%;
}
.support-services .services .service.yellow {
  background-color: #fff7e2;
}
.support-services .services .service.yellow .service-head {
  background-color: var(--hiem-yellow);
}
.support-services .services .service.yellow .service-head .service-title h3,
.support-services .services .service.yellow .service-head .service-title p {
  color: var(--hiem-darkblue);
}
.support-services .services .service.yellow .service-content ul li::marker {
  color: #f6c000;
}
.support-services .services .service.pink {
  background-color: #fbe7eb;
}
.support-services .services .service.pink .service-head {
  background-color: var(--hiem-pink);
}
.support-services .services .service.pink .service-content ul li::marker {
  color: var(--hiem-pink);
}
.support-services .services .service.green {
  background-color: #f2f7e3;
}
.support-services .services .service.green .service-head {
  background-color: var(--hiem-green);
}
.support-services .services .service.green .service-content ul li::marker {
  color: var(--hiem-green);
}
.support-services blockquote {
  margin-top: 40px;
}
.pipeline {
  background: var(--hiem-lilac);
  overflow: hidden;
  padding-bottom: 70px;
}
.pipeline .section-title .text {
  margin-bottom: 20px;
}
.pipeline .section-title h1 {
  color: var(--hiem-yellow);
}
.pipeline .section-title h2 {
  color: var(--white);
  font-style: italic;
}
.pipeline .background-icon-top {
  position: absolute;
  top: 400px;
  right: 0;
  z-index: 0;
  width: 700px;
}
.pipeline .background-icon-top img {
  width: 100%;
  height: auto;
  opacity: 0.3;
}
.pipeline .container {
  position: relative;
}
.pipeline .intro {
  margin-bottom: 40px;
}
.pipeline h2 {
  margin-bottom: 10px;
}
.pipeline p {
  position: relative;
}
.pipeline .innovations .innovation {
  margin-bottom: 60px;
  background: var(--white);
  position: relative;
  padding: 40px;
  height: 100%;
}
.pipeline .innovations .innovation .innovation-content {
  display: flex;
  justify-content: space-between;
}
.pipeline .innovations .innovation .innovation-content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
}
.pipeline .innovations .innovation .innovation-content strong {
  color: var(--hiem-darkblue);
}
.pipeline .innovations .innovation .innovation-content .title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px;
}
.pipeline .innovations .innovation .innovation-content .title h2 {
  line-height: 100%;
}
.pipeline .innovations .innovation .innovation-content .title .logo img {
  width: 100%;
  height: auto;
}
.pipeline .innovations .innovation .innovation-shifts {
  display: flex;
  justify-content: end;
  margin-bottom: -60px;
  margin-right: -70px;
}
.pipeline .innovations .innovation .innovation-shifts .shift {
  display: flex;
  justify-content: end;
  align-items: center;
}
.pipeline .innovations .innovation .innovation-shifts .shift .icon img,
.pipeline .innovations .innovation .innovation-shifts .shift .info p {
  box-shadow: 6px 6px 0px rgba(0,0,0,0.4);
  border-radius: 100%;
}
.pipeline .innovations .innovation .innovation-shifts .shift .icon {
  position: relative;
  z-index: 1;
  right: -20px;
  flex: 0 0 100px;
}
.pipeline .innovations .innovation .innovation-shifts .shift .info p {
  background: var(--white);
  color: var(--hiem-darkblue);
  width: 160px;
  height: 160px;
  margin-bottom: 0;
  padding-left: 5px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  font-size: 18px;
  line-height: 120%;
  gap: 2px;
}
.pipeline .innovations .innovation .innovation-shifts .shift .info p strong {
  font-size: 20px;
}
.pipeline .innovations .innovation.col-6:nth-of-type(odd) {
  padding-right: 30px;
}
.pipeline .innovations .innovation.col-6:nth-of-type(even) {
  padding-left: 30px;
}
.spreading-innovation {
  background: var(--hiem-lilac);
}
.spreading-innovation .container-fluid {
  padding-top: 40px;
  padding-bottom: 50px;
}
.spreading-innovation .container-fluid p:last-of-type {
  margin-bottom: 0;
}
.spreading-innovation .container {
  position: relative;
}
.spreading-innovation .background-icon-top {
  position: absolute;
  top: -400px;
  left: -350px;
  z-index: 0;
  width: 1400px;
}
.spreading-innovation .background-icon-top img {
  width: 100%;
  height: auto;
}
.spreading-innovation h2 {
  font-size: 26px;
}
.spreading-innovation h3 {
  font-size: 22px;
}
.spreading-innovation strong {
  color: var(--hiem-darkblue);
}
.spreading-innovation ul li {
  padding-left: 5px;
  margin-bottom: 10px;
}
.spreading-innovation ul li::marker {
  color: var(--hiem-pink);
}
.spreading-innovation blockquote {
  width: 450px;
  margin: 0 auto;
  font-size: 24px;
  position: relative;
  left: -30px;
  top: 30px;
}
.spreading-innovation blockquote .quote-author {
  font-size: 22px;
}
.spreading-innovation .intro {
  margin-bottom: 20px;
}
.spreading-innovation .intro p {
  position: relative;
}
.spreading-innovation .innovation-scanning {
  position: relative;
}
.spreading-innovation .innovation-scanning .background-image {
  position: absolute;
  right: -50px;
  bottom: -100px;
  max-width: 550px;
}
.spreading-innovation .innovation-scanning .background-image img {
  border-radius: 100%;
}
.involving-patients {
  background: var(--hiem-lilac);
}
.involving-patients .intro .section div {
  position: relative;
}
.involving-patients .intro strong {
  color: var(--hiem-darkblue);
}
.involving-patients .intro ul li {
  padding-left: 5px;
  margin-bottom: 10px;
}
.involving-patients .intro ul li::marker {
  color: var(--hiem-pink);
}
.involving-patients blockquote {
  width: 450px;
}
.involving-patients .impacts {
  position: relative;
  max-width: 380px;
  margin-left: auto;
}
.involving-patients .impacts .title {
  margin-bottom: -30px;
  width: 100%;
}
.involving-patients .impacts .title h3 {
  box-shadow: 6px 6px rgba(0,0,0,0.3);
  background: var(--hiem-yellow);
  color: var(--hiem-darkblue);
  text-transform: uppercase;
  text-align: center;
  padding: 7px 15px;
  font-weight: 400;
  font-size: 30px;
}
.involving-patients .impacts .statistics {
  background: var(--hiem-darkblue);
  padding: 50px 30px 30px 50px;
  color: var(--white);
}
.involving-patients .impacts .statistics ul li::marker {
  color: var(--hiem-yellow);
}
.involving-patients .impacts .statistics a {
  color: var(--hiem-yellow);
}
.involving-patients .impacts .statistics a:hover {
  color: var(--white);
}
.involving-patients .impacts .statistics .statistic {
  position: relative;
  flex-direction: column;
}
.involving-patients .impacts .statistics .statistic:not(:last-of-type) {
  border-bottom: 2px solid var(--white);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.involving-patients .impacts .statistics .statistic img {
  box-shadow: 8px 8px 0px rgba(0,0,0,0.4);
  background-color: var(--hiem-darkblue);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -110px;
  height: 90px;
  width: 90px;
}
.involving-patients .impacts .statistics .statistic p:last-of-type {
  margin: 0;
}
.involving-patients .impacts .statistics .statistic p strong {
  color: var(--hiem-yellow);
  line-height: 120%;
  font-weight: 900;
}
.involving-patients .impacts .statistics .statistic p strong.large {
  font-size: 30px;
}
.support-programmes {
  background-color: var(--hiem-lilac);
}
.support-programmes .background-icon-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
}
.support-programmes .background-icon-bottom img {
  transform: scaleX(-1);
}
.support-programmes .programmes-container {
  margin-bottom: 48px;
}
.support-programmes .programmes-container .programme-content {
  background-color: #efeef6;
  height: 100%;
  padding: 30px;
}
.support-programmes .programmes-container .programme-content h2 {
  margin-bottom: 15px;
  line-height: 130%;
  font-weight: 900;
  font-size: 32px;
}
.support-programmes .programmes-container .programme-content .readmore {
  margin-top: 20px;
}
.support-programmes .programmes-container:nth-child(2n-1) .col-6:nth-child(2n-2) .programme-content,
.support-programmes .programmes-container:nth-child(2n-2) .col-6:nth-child(2n-1) .programme-content {
  border: 4px solid #c2bcdb;
  border-radius: 40px 0 40px 0;
}
.support-programmes .programmes-container:nth-child(2n-2) .col-6:nth-child(2n-2) .programme-content,
.support-programmes .programmes-container:nth-child(2n-1) .col-6:nth-child(2n-1) .programme-content {
  border: 4px solid #a39bc9;
  border-radius: 0 40px 0 40px;
}
.support-programmes .programmes-container .innovation-academy p strong {
  font-size: 22px;
}
.support-programmes .programmes-container .health-innovation-fund .programme-content {
  border: 4px solid var(--hiem-yellow);
  background-color: var(--white) 8e 3;
  border-radius: 40px 0 40px 0;
}
.support-programmes .programmes-container .health-innovation-fund .programme-content ul {
  padding-left: 20px;
}
.support-programmes .programmes-container .health-innovation-fund .programme-content ul li::marker {
  color: var(--hiem-pink);
}
.support-programmes .programmes-container .health-innovation-fund .programme-content ul li p {
  padding-bottom: 5px;
}
.support-programmes .programmes-container .health-innovation-fund .programme-content ul li p:first-of-type strong {
  color: var(--hiem-darkblue);
}
.support-programmes .programmes-container .health-innovation-fund .programme-content ul li p:last-of-type strong {
  font-weight: 600;
}
.support-for-innovators .section-title {
  background-color: var(--hiem-darkblue);
  margin-bottom: 80px;
  color: var(--white);
}
.support-for-innovators .section-title .intro {
  max-width: 1000px !important;
  text-align: left;
}
.support-for-innovators .row.intro {
  margin: 50px auto 50px auto;
  max-width: 1050px;
  font-size: 21px;
  line-height: 140%;
}
.support-for-innovators .row.intro strong {
  color: var(--hiem-darkblue);
  font-size: 22px;
}
.support-for-innovators .sub-section {
  margin-bottom: 80px;
  padding-top: 100px;
}
.support-for-innovators .sub-section .innovation-exchange .service-images {
  margin-top: 80px;
}
.support-for-innovators .sub-section .evaluation-fund .service-background-icon {
  top: unset !important;
  bottom: 0 !important;
}
.support-for-innovators .service-container .service-icon img {
  border-radius: 100%;
  box-shadow: 10px 10px 0px rgba(0,0,0,0.4);
}
.support-for-innovators .service-container .service-icon.blue img {
  background-color: var(--hiem-blue);
}
.support-for-innovators .service-container .service-icon.pink img {
  background-color: var(--hiem-pink);
}
.support-for-innovators .service-container .service-icon.green img {
  background-color: var(--hiem-green);
}
.support-for-innovators .service-container .info h4 {
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 21px;
  line-height: 140%;
}
.support-for-innovators .service-container .info ul li {
  margin-bottom: 15px;
  font-weight: 700;
}
.support-for-innovators .service-container .info.blue ul li {
  color: var(--hiem-blue);
}
.support-for-innovators .service-container .info.pink p,
.support-for-innovators .service-container .info.pink ul li {
  color: var(--hiem-pink);
}
.support-for-innovators .health-innovation-fund .service-content ul li p:first-of-type strong {
  color: var(--hiem-darkblue);
}
.support-for-innovators .health-innovation-fund .service-content ul li p:last-of-type strong {
  font-weight: 600;
}
.our-programmes {
  background-color: var(--white);
  color: var(--hiem-text);
  padding: 50px 0px 0px;
}
.our-programmes .background-icon-top {
  position: absolute;
  opacity: 0.5;
  top: 0;
  right: 0;
}
.our-programmes .background-icon-bottom {
  position: absolute;
  opacity: 0.5;
  z-index: 0;
  left: -250px;
  bottom: 0;
}
.our-programmes .section-title {
  margin-bottom: 30px;
  position: relative;
}
.our-programmes .section-title h2 {
  font-size: 60px;
}
.our-programmes .section-title .title-icon {
  position: absolute;
  top: -100px;
  right: 160px;
  z-index: 1;
}
.our-programmes .section-title .title-icon img {
  box-shadow: 10px 10px 0px rgba(0,0,0,0.4);
  background-color: var(--hiem-yellow);
  border-radius: 100%;
  width: 150px;
  height: 150px;
}
.our-programmes .intro {
  max-width: 1000px;
  margin: 0px auto 30px auto;
}
.our-programmes .intro p strong {
  color: var(--hiem-darkblue);
  font-size: 22px;
  line-height: 130%;
  font-weight: 900;
}
.our-programmes .intro h3 {
  text-align: center;
  margin-top: 30px;
}
.our-programmes .programmes-content {
  display: flex;
  margin-top: 20px;
  width: 100%;
}
.our-programmes ul {
  list-style-image: url("../icons/bullet-darkblue.svg");
  padding-left: 20px;
  z-index: 1;
}
.our-programmes ul li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 30px;
  width: 100%;
}
.our-programmes ul li h3 {
  margin-bottom: 5px;
  position: relative;
  font-weight: 900;
  font-size: 22px;
}
.our-programmes ul li h3 a {
  color: var(--hiem-darkblue);
  text-decoration: none;
  font-weight: 900;
}
.our-programmes ul li h3 a:hover {
  color: var(--hiem-pink);
}
.our-programmes ul li .sub-programme strong {
  position: relative;
  font-size: 22px;
}
.our-programmes ul li .sub-programme strong:before {
  -webkit-mask-image: url('../icons/bullet-pink.svg');
  background-color: var(--hiem-pink);
  -webkit-mask-size: cover;
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  content: '';
  left: -22px;
  top: 8px;
}
.our-programmes .current-programmes {
  max-width: 1000px;
  margin: 0 auto;
}
.our-programmes .current-programmes ul {
  flex: 0 0 50%;
}
.our-programmes .sustained-programmes {
  color: var(--white);
  padding-left: 15px;
  flex: 0 0 35%;
}
.our-programmes .sustained-programmes .title {
  background-color: var(--hiem-yellow);
  color: var(--hiem-darkblue);
  margin-bottom: 0px;
  line-height: 140%;
  font-weight: 900;
  font-size: 22px;
  padding: 25px;
}
.our-programmes .sustained-programmes ul {
  list-style-image: url('../icons/bullet-white.svg');
  background-color: var(--hiem-darkblue);
  padding: 20px 10px 10px 45px;
  margin-bottom: 0px;
}
.our-programmes .sustained-programmes ul li {
  padding-left: 20px;
}
.our-programmes .sustained-programmes h3 a {
  color: var(--white);
}
.contact-us {
  background-color: var(--hiem-blue);
  padding: 80px 0px 50px 0px;
  line-height: 150%;
  font-size: 25px;
  color: var(--white);
}
.contact-us .background-icon-left {
  position: absolute;
  left: -60px;
  bottom: 0;
}
.contact-us .background-icon-right {
  position: absolute;
  top: 0;
  right: 0;
}
.contact-us .background-icon-right .icon {
  position: relative;
  top: -220px;
  right: -20px;
}
.contact-us .background-icon-right .icon img {
  box-shadow: 10px 10px 0px rgba(0,0,0,0.4);
  background-color: var(--hiem-pink);
  border-radius: 100%;
  width: 180px;
  height: 180px;
}
.contact-us .container {
  max-width: 900px !important;
}
.contact-us .title {
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.contact-us .title h2 {
  background-color: var(--hiem-darkblue);
  box-shadow: 8px 8px rgba(0,0,0,0.4);
  text-transform: uppercase;
  text-align: center;
  padding: 10px 30px;
  font-weight: 400;
  font-size: 26px;
  font-size: 40px;
  color: var(--white);
}
.contact-us .intro {
  margin-bottom: 20px;
}
.contact-us .intro p {
  font-weight: 500;
}
.contact-us .contact {
  gap: 20px;
}
.contact-us .contact p {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.contact-us .contact p a {
  text-decoration-color: transparent;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
  color: var(--white);
  font-weight: 700;
}
.contact-us .contact p a:hover {
  text-decoration-color: var(--hiem-white);
}
.contact-us .contact p i {
  vertical-align: middle;
  margin-right: 20px;
  font-size: 30px;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 100%;
  position: relative;
  color: var(--hiem-blue);
}
.contact-us .contact p i:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.contact-us .contact p i.fa-bluesky:before {
  margin-top: 1px;
}
.footer .container,
.subfooter .container {
  max-width: 1200px !important;
}
.footer {
  background-color: var(--hiem-grey);
  padding: 30px 0;
}
.footer .footer-left p {
  text-align: left;
  margin: 0;
  padding: 0;
}
.footer .footer-left p img {
  height: 61px;
  width: auto;
}
.footer .footer-left p img:first-of-type {
  margin-right: 20px;
}
.footer .footer-right {
  text-align: right;
}
.footer .footer-right .social-icons ul {
  list-style: none;
  padding-left: 0;
  height: 40px;
  margin: 0;
}
.footer .footer-right .social-icons ul li {
  display: inline-block;
  margin-left: 10px;
}
.footer .footer-right .social-icons ul li a {
  color: transparent;
  line-height: 0;
  font-size: 0;
}
.footer .footer-right .social-icons ul li a:before {
  transition: .25s ease;
  -webkit-mask-size: cover;
  background: var(--white);
  display: block;
  height: 40px;
  width: 40px;
  content: "";
}
.footer .footer-right .social-icons ul li.x a:before {
  -webkit-mask-image: url(../icons/x-circle.svg);
  background: var(--hiem-purple);
}
.footer .footer-right .social-icons ul li.bluesky a:before {
  -webkit-mask-image: url(../icons/bluesky-circle.svg);
  background: var(--hiem-pink);
}
.footer .footer-right .social-icons ul li.linkedin a:before {
  -webkit-mask-image: url(../icons/linkedin-circle.svg);
  background: var(--hiem-orange);
}
.footer .footer-right .social-icons ul li.vimeo a:before {
  -webkit-mask-image: url(../icons/vimeo-circle.svg);
  background: var(--hiem-green);
}
.footer .footer-right .green-energy {
  margin-top: 20px;
  display: flex;
  justify-content: right;
}
.footer .footer-right .green-energy .flip-card {
  background-color: transparent;
  width: 240px;
  height: 68px;
  perspective: 1000px;
}
.footer .footer-right .green-energy .flip-card .flip-container {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.footer .footer-right .green-energy .flip-card .flip-container .front,
.footer .footer-right .green-energy .flip-card .flip-container .back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.footer .footer-right .green-energy .flip-card .flip-container .back {
  transform: rotateY(180deg) rotateZ(180deg);
}
.footer .footer-right .green-energy .flip-card:hover .flip-container {
  transform: rotateX(180deg);
}
.subfooter {
  background-color: #E4E4E4;
  padding: 15px 0;
  font-size: 18px;
}
.subfooter p {
  margin: 0;
}
.subfooter a {
  text-decoration: none;
  font-weight: 700;
}
.subfooter a:hover {
  color: var(--hiem-darkblue);
  text-decoration: underline;
}
.subfooter .subfooter-left {
  text-align: left;
}
.subfooter .subfooter-right {
  text-align: right;
}
.projects-header h2 {
  font-size: 70px;
  font-weight: bold;
  border-bottom: 3px solid var(--hiem-pink);
  padding-bottom: 10px;
  display: inline-block;
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1300px;
  }
  .support-for-innovators .container {
    max-width: 1140px;
  }
}
