     /* CSS Variables */
     @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,500i,700&display=swap');

     :root {
       --dark-blue: #21235A;
       --light-blue: #46A2DF;
       --white: #FFF;
       --light-grey: #f3f3f3;
       --dark-grey: #333745;
       --accent-pink: #F31475;
       --accent-purple: #731FD6;
       --complementary-blue: #0780D0;
       --accent-orange: #F7331C;
     }

     /* General Styling */
     body {
       margin: 0;
       padding: 0;
       background-color: var(--dark-blue);
       color: var(--dark-blue);
       font-family: 'Roboto', sans-serif;
       letter-spacing: 0.01em;
     }

     section {
       margin: 0;
       padding: 0;
       background-color: var(--white);
     }

     .freeze {
       overflow: hidden;
     }

     /* ----- General Text Styling ----- */
     /** Standard web font sizes used with custom styling as needed. Line-height 150% **/
     h1 {
       font-size: 42px;
       line-height: 66px;
       font-weight: 700;
       color: var(--light-grey);
     }

     h2 {
       font-size: 36px;
       line-height: 54px;
       font-weight: 500;
     }

     .h2-custom {
       font-size: 28px;
       line-height: 42px;
     }

     .h2-custom1 {
       font-size: 20px;
       line-height: 30px;
     }

     h3 {
       font-size: 28px;
       line-height: 42px;
       font-weight: 500;
     }

     .h3-custom {
       font-size: 20px;
       line-height: 30px;
       font-weight: 400;
     }

     h4 {
       font-size: 18px;
       line-height: 27px;
       font-weight: 400;
     }

     .h4-custom {
       font-size: 20px;
       line-height: 30px;
       font-weight: 700;
       color: var(--light-blue);
     }

     h5 {
       font-size: 16px;
       line-height: 24px;
     }

     .h5-custom {
       font-size: 20px;
       line-height: 30px;
       font-weight: 400;
     }

     /* Blue lines, shown underneath headings */
     .blue-line {
       height: 4px;
       border-radius: 6.5px;
       background-color: var(--light-blue);
     }

     p {
       font-size: 16px;
       line-height: 24px;
       font-weight: 400;
     }

     /* General Button + Link Styling */
     .btn {
       border-radius: 0.5rem;
       font-style: normal;
       font-weight: 500;
       font-size: 16px;
       line-height: 27px;
       padding-right: 1.25rem;
       padding-left: 1.25rem;
       border-color: var(--white);
       color: var(--white);
     }

     .btn-outline-info:hover,
     .btn-outline-info:focus,
     .btn-outline-info:active {
         background-color: var(--light-blue);
         border-color: var(--light-blue);
         color: var(--white);
         box-shadow: 0 0 0 0.2rem rgba(70, 162, 223, 0.5);
     }

     /* ----- Navbar ----- */
     .navbar {
       margin: 0;
       background-color: rgba(33, 35, 90, 0.95);
       z-index: 10;
     }

     .navbar-nav {
       padding-top: 7px;
     }

     .logo-top {
       height: auto;
       transition: 0.5s;
     }

     .logo-scrolled {
       width: 100px;
       height: auto;
       transition: 0.5s;
     }

     button.navbar-toggler {
       margin-top: auto;
       margin-bottom: auto;
     }

     .navbar-dark .navbar-toggler-icon {
       background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(70, 162, 223, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
     }

     .navbar-dark .navbar-toggler {
       border-color: rgba(70, 162, 223, 0.5);
     }

     .navbar-toggler:focus {
       box-shadow: none;
       /* outline-color: rgba(70, 162, 223, 0.25); */
       outline: none;
     }

     .navbar-toggler:active {
       outline-color: rgba(70, 162, 223, 0.25);
     }

     .navbar-nav a.nav-item.nav-link,
     .navbar-nav a.nav-item.nav-link.active {
       padding: 0.5em 1.3em 0.5em 1.3em;
       position: relative;
       color: var(--white);
       font-style: normal;
       line-height: 1rem;
       font-size: 0.875rem;
       letter-spacing: 0.05em;
     }

     .navbar-nav a.nav-item.nav-link.active {
       font-weight: bold;
     }

     .navbar-nav a.nav-item.nav-link:hover {
       color: var(--light-blue);
     }

     .navbar-nav a.nav-item.nav-link.active::before {
       content: "";
       height: 4px;
       background: var(--light-blue);
       position: absolute;
       top: 90%;
       left: 0.875rem;
       right: 0.875rem;
       border-radius: 6.5px;
     }

     .navbar-inner {
       background: transparent;
     }

     /* ----- Page Title Sections ----- */
     #page-heading {
       display: flex;
       flex-direction: column;
       background-color: var(--dark-blue);
     }

     #page-heading .container {
       min-height: 210px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-top: 65px;
     }

     #page-heading h1 {
       margin-bottom: 0px;
       text-align: center;
     }

     /* ----- General Section Styling ----- */
     .section-basic-styling {
       padding-top: 7%;
       padding-bottom: 7%;
     }

     /* News */
     #news-display {
       background-color: var(--white);
       padding-top: 5%;
       padding-bottom: 5%;
     }

     .news-article {
       background: rgba(255, 255, 255, 0.8);
       box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
       padding: 20px;
     }

     .news-image {
       display: flex;
       justify-content: center;
       align-items: center;
       overflow: hidden;
       max-height: 280px;
     }

     .news-image img {
       flex-shrink: 0;
       min-width: 100%;
       min-height: 100%
     }

     .article-caption {
       padding-bottom: 20px;
     }

     .article-caption h2 {
       position: relative;
     }

     .article-caption h2:hover {
       color: var(--light-blue);
     }

     .article-caption h2::before {
       content: '';
       border-radius: 6.5px;
       position: absolute;
       bottom: -10px;
       left: 0;
       height: 4px;
       width: 160px;
       background-color: var(--light-blue);
     }

     .article-caption p {
       padding-top: 15px;
       padding-bottom: 5px;
       margin-bottom: 0;
     }

     /* ----- Footer ----- */
     #footer {
       height: 200px;
       background-color: var(--dark-blue);
       color: var(--white);
       padding-top: 40px;
       margin-top: 40px;
       display: flex;
       align-items: center;
       justify-content: center;
     }

     #footer h2 {
       font-size: 24px;
       line-height: 30px;
       font-weight: bold;
       color: var(--light-grey);
       padding-bottom: 8px;
     }

     #footer p {
       margin: 0;
       color: var(--light-grey);
     }

     #footer p.contact-name,
     #footer h3 {
       font-weight: bold;
     }

     #footer h3 {
       font-size: 18px;
       line-height: 21px;
       color: var(--light-grey);
     }

     #footer div {
       padding-bottom: 8px;
     }

     #footer ul {
       list-style-type: none;
       padding-left: 0;
     }

     #footer ul li a {
       text-decoration: none;
       font-size: 18px;
       color: var(--light-grey);
       line-height: 27px;
       font-weight: bold;
     }

     #footer a[href^="mailto"]:hover,
     #footer a:hover,
     #footer .social-links a i:hover,
     #footer h2.h2-link:hover {
       color: var(--light-blue);
       text-decoration: none;
     }

     #footer hr {
       height: 1px;
       background-color: var(--light-grey);
       display: none;
     }

     .city,
     .postal-code {
       display: inline-block;
     }

     #footer .social-links i {
       padding: 0;
       margin: 0;
       font-size: 1.5rem;
       width: 15%;
       color: var(--white);
     }

     #footer a.contact-number,
     #footer a.contact-number:hover {
       color: var(--white);
     }

     #footer a[href^="mailto"] {
       color: var(--white);
     }

     #footer ul li a.privacy-policy {
       font-weight: 300;
     }

     /* ----- Back to top button ----- */
     .back-to-top {
       position: fixed;
       /*use with alternative jquery code*/
       /* opacity: 0; */
       display: none;
       background: var(--light-blue);
       color: var(--white);
       width: 44px;
       height: 44px;
       text-align: center;
       line-height: 1;
       font-size: 17px;
       border-radius: 50%;
       right: 15px;
       bottom: 15px;
       /*use with alternative jquery code*/
       /* transition: 0.5s; */
       z-index: 11;
     }

     .back-to-top i {
       padding-top: 12px;
       color: var(--white);
     }

     /* Contact Form */
     #contact-form-section {
       background-color: var(--light-grey);
       padding: 30px 0;
     }

     #contact-form-section .section-header {
       display: flex;
       justify-content: center;
     }

     #contact-form-section .section-header h2 {
       margin-bottom: 30px;
     }

      #contact-form-section .blue-line {
         width: 120px;
         margin-top: -20px;
         margin-bottom: 30px;
     }

     #submit-contact-btn {
       background-color: var(--light-blue);
     }

     #submit-contact-btn:hover,
     #submit-contact-btn:focus,
     #submit-contact-btn:active {
       background-color: var(--light-blue) !important;
       border-color: var(--light-blue) !important;
       box-shadow: 0 0 0 0.2rem rgba(70, 162, 223, 0.5) !important;
     }

     label[for=enquiry-topic]{
       font-size:x-large;
     }

     #contact-form-success,
     #contact-form-global-error {
       display:none;
       margin-top:10px;
     }

     #contact-form-global-error > p {
       font-size: inherit;
       line-height: inherit;
       font-weight: inherit;
       color: inherit;
       margin-bottom:0;
     }

     #id_captcha_1 {
       width: initial;
       display: inline-block;
       box-shadow: none;
     }

     #captcha-img {
       min-width: 100px;
       height: 50px;
     }

     #reset-captcha {
       color: white;
       background-color: var(--accent-purple);
       margin-right: 5px;
     }

     #reset-captcha:hover,
     #reset-captcha:focus,
     #reset-captcha:active {
       background-color: var(--accent-purple);
       border-color: var(--accent-purple);
       box-shadow: 0 0 0 0.2rem rgba(115, 31, 214, 0.5) !important;
     }

     section.search-form {
      padding-top: 1%;
     }

     section.search-results {
      padding-top: 1%;
      padding-bottom: 5%;
     }
