    /* Custom styles for the page */

    body {
      background-color: rgba(0, 25, 75, 1);
    }

    /* Header and Logo */

    .nhp-header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 10;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: rgba(0, 25, 75, 1);
    }

    .nhp-header .nhsuk-header__container {
      display: contents;
    }

    .logo {
      padding-top: 5px;
      width: 100px;
    }

    .nhp-header .menu-items {
      display: flex;
      align-self: center;
    }

    .nhp-header a {
      display: block;
      align-self: center;
      color: #ffffff;
      text-decoration: none;
      margin: 0 10px;
      font-weight: bold;
    }

    .nhp-header a:visited {
      color: #ffffff;
      text-decoration: none;
    }

    .nhp-header a:hover, .nhp-header a:hover:visited {
      color: #ffffff;
      text-decoration: underline;
    }

    .video-background {
      display: flex;
      position: relative;
      width: 100vw;

      overflow: hidden;
    }

    .video-background video {
      width: 100vw;
      object-fit: cover;
      min-width: 100%;
    }

    .video-background img {
      position: absolute;
      top: 100%;
      bottom: 0px;
      left: -9999px;
      right: -9999px;
      margin: auto;
      min-width: 100%;
      object-fit: cover;
    }

    .video-overlay {

      color: white;
      z-index: 1;
      background-color: rgba(0, 25, 75, 0.7);
      max-width: 920px;
      margin: 120px 50px 50px;
      padding: 30px;
    }

    .section {
      display: flex;
      margin: 50px 7%;
    }

    .section:nth-child(odd) {
      background: #005eb8;
      color: #ffffff;
    }

    .section:nth-child(even) {
      background: #003087;
      color: #ffffff;
      text-align: left;
    }

    .section h2 {
      margin-bottom: 20px;
    }

     .section a {
      color: #ffffff;
      text-decoration: none;
      font-weight: bold;
    }

    .section-image {
      position: relative;
      min-height: 400px;
      flex-grow: 1;
      overflow: hidden;
    }

    .section-image img {
      position: absolute;
      min-width: 100%;
      min-height: 100%;
      max-height: 400px;
      top: -9999px;
      bottom: -9999px;
      left: -9999px;
      right: -9999px;
      margin: auto;
      object-fit: cover;
    }

    .section-text {
      padding: 50px;
    }

    #partners .section-text {
      padding-bottom: 0px;
    }

    #partners h2 {
      text-align: center;
    }

    .partner-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin: 50px -50px 0px;
      padding: 40px 50px 20px;
      background: #ffffff;
    }

    .partner-logos img {
      padding: 15px;
      height: 100px;
    }
  
    @media only screen and (max-width: 600px) {
      .logo {
        padding-top: 7px;
        width: 80px;
      }

    }

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

      .mobile-hidden-image {
        display: none;
      }
    }