    html {scroll-behavior: smooth;}
    
    body{
        font-family: "Public Sans", Arial, sans-serif;
        margin:0;
    }
    
    header h1 { font-size: 2.75rem; margin-bottom: 10px; margin-top:10px; font-weight:500;}
    header { padding: 60px 20px; text-align: center; background: #003366; color: white; }/*#003366*/
    
    
    .header-all{
       display:flex;
       flex-direction:column;
   }
   
   .header-container {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1200px;
      gap: 30px;
      padding: 20px;
      margin-left:auto;
      margin-right:auto;
    }

    .header-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .header-image {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .header-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }

    .header-text h1 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .header-text p {
      font-size: 1.2rem;
      color: #fff;.
      margin-bottom: 20px; 
    }

    @media (max-width: 768px) {
      .header-container {
        flex-direction: column;
        text-align: center;
      }

      .header-text {
        text-align: center;
      }
    }
    
    
    h2 {font-weight:500; font-size:40px;}
    
    a{color:#8ce0ff; text-decoration:none;}
    a:hover{color:#ccd4d6; text-decoration:underline;}
    
    #header, #highlights, #people, #knowledge, #connectivity, #system, #sustainability, #partnership {
      scroll-margin-top: 80px; /* the height of the sticky menu */
    }

    /* sections */
    section { padding: 20px 0; text-align: center; width:100%;  display:flex; justify-content:center;}
    .section-container{max-width:1280px; }
    .section-title { font-size: 2.5rem; margin-top: 20px; margin-bottom: 40px; color: #003366; }
    
    footer {
      background: #003366;
      color: white;
      padding: 20px;
      text-align: center;
      font-size: 0.9rem;
    }
    
    .footer__wrapper {
        display: flex;
        flex-direction:column;
        margin: 1.25rem auto;
    }
    
    .footer__container-ack {
        font-size: 14px;
        font-weight: 400;
        line-height: 19px;    
        padding: 0 22px 9px;
        margin: 0 auto;
    }
    
    
    .footer__container-divider {
        border-top: 1px solid;
        color: #a0a5ae;
        margin: 16px 16px 0;
        padding: 9px 22px 9px;
        min-width: 90%;
    }
    
    }
    
    .copyright {
        display: flex;
        justify-content: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 19px;
        margin: 0;
    }
    

    
    .header__logo{
        display:flex;
        justify-content: center;
    }
    
    .logo-text {
        color:#fff;
        font-size: 1.2rem;
        margin: 1.3rem 1rem 1.1rem 1rem;
        min-width:140px;
    }
    
    /* navigation */
    .navbar {
      position: sticky;
      top: 0;
      background: rgba(0, 51, 102, 0.95);
      z-index: 1000;
      padding: 10px 0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .quote{
        font-size:1.4rem;
        font-weight:600;
    }
    
    .quote i{
        opacity:.5;
    }
    
    .cite{
         font-size:1.2rem;
         font-style: italic;
    }
    
   /* .navbar ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 30px;
      margin: 0;
      padding: 0;
    }*/
    
    .navbar a {
      text-decoration: none;
      color: white;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    
    .navbar a:hover {
      color: #ffd700;
    }
    
    .navbar a.active {
      
      color: #ffd700;
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    
    .hamburger {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.8rem;
      cursor: pointer;
    }
    
    .nav-links {
      list-style: none;
      display: flex;
      gap: 30px;
    }
    
    .nav-links li {
      margin: 0;
      text-align:center;
    }
    
    
    img.eh-logo
    {
        padding:1rem .3rem;
    }
    
    .img-fluid{
        max-width: 100%;
        height: auto;
    }
   
    @media (max-width: 992px) {
      .hamburger {
        display: block;
      }
    
      .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #003366;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        display: none;
      }
    
      .nav-links.active {
        display: flex;
      }
    }

    
    /*parallax effect*/
    .parallax {
      background-color:#002664;
      background-image: url('https://www.ehealth.nsw.gov.au/__data/assets/image/0019/1032373/waratah-background-blue.webp');
      /*height: 55vh;*/
      background-attachment: fixed;   /* KEY PART */
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    
    .main-content {
      /*height: 130vh;*/
      background-color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1rem 0;
    }
    
    /* back to top button*/
    #toTopbutton {
        display: inline-block;
        background-color: #d7153a;
        width: 50px;
        height: 50px;
        text-align: center;
        border-radius: 50%;
        position: fixed;
        bottom: 30px;
        right: 30px;
        transition: background-color .3s, 
            opacity .5s, visibility .5s;
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
    }
    
    #toTopbutton::after {
        content: "\f077";
        font-family: FontAwesome;
        font-weight: normal;
        font-style: normal;
        font-size: 2em;
        line-height: 50px;
        color: #fff;
    }
    
    #toTopbutton:hover {
        cursor: pointer;
        background-color: #333;
    }
    
    #toTopbutton:active {
        background-color: #555;
    }
    
    #toTopbutton.show {
        opacity: 1;
        visibility: visible;
    }
    
    .fancybox__caption{
        max-width:1200px !important;
    }

    /* video player*/
    /*
     * Mobile layout
     */
    
    .inline-video__outer {
        width: 100%;
    }
    
    .inline-video__wrapper {
        padding: 16px 16px;
        display: flex;
        justify-content: center;
    }
    
    
    .eh-video-container{
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        margin-top:1rem;
        margin-bottom:1rem;
    }
    
    .eh-video-container a{
        color: #ddd;
        opacity:.8;
        transition: opacity .2s ease;
    }
        
    .eh-video-container a:hover{
            opacity:.5;
        }
    
    .inline-video__player-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        max-width: 600px;
    }
    
    
    .inline-video__player {
        width: 100%;
        position: relative;
        border-top: 8px solid #d7153a;
    
        z-index: 0;
    }
    
    /*.inline-video__content-title {
        color: $blue;
    }*/
    
    .eh-video-icon{
        min-height:19rem;
    }
    
    .eh-video-icon i.fa-play {
       position: absolute;
       z-index: 1;
       top: 30%;
       left: 45%;
       font-size:6rem;
    }
    
    .has-youtube .fancybox__content {
        width:100%;
        height:100%;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    
    
    .inline-video__player-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        margin-bottom: 0;
    }
    
    .inline-video__player-wrapper iframe,
    .inline-video__player-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
    }
    
    
    /*@media screen and (min-width: 992px) {
        .footer__container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex: 1;
        }
    
        .footer__container-ack {
            order: -2;
            flex-basis: 70%;
            padding: 0;
            margin: 0;
        }
        .footer__social {
            margin: 24px 0;
            order: -1;
            flex-basis: 185px;
        }
    
        .footer-social__list {
            width: 100%;
            justify-content: space-between;
        }
    
        .footer-social__list-item {
            padding: 0 6px 0 6px;
            &:last-child {
                padding-right: 0;
            }
        }
    
        .footer__navigation-list {
            list-style-type: none;
            display: flex;
            flex-direction: row;
            column-count: auto;
            padding: 30px 0 9px;
        }
        .footer__container-divider {
            width: 100%;
            padding: 0;
            margin: 0;
        }
    }*/
    
    
    
    /*
     * Desktop layout
     */
    
    @media screen and (min-width: 1200px) {
        .inline-video__wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            /*width: 100%;*/
        }
    
        .inline-video__player-container {
            width: 100%;
            max-width: 700px;
            height: 450px;
        }
    
        .inline-video__player {
            width: 100%;
            height: 100%;
        }
    
        .has-youtube .fancybox__content {
            width:100%;
            height:100%;
            padding-left: 7rem;
            padding-right: 7rem;
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
    }
