@charset "UTF-8";
/* CSS Document */


/* HTML tag styles */
body {
    background-color: #ffffff;
}

h1 {
    font: normal 700 3em/1 bookmania, serif;
    margin: 0px 0px 0px 0px;
    color: #446130;
}


h2 {
    font: normal 700 2em/1 bookmania, serif;
    margin: 0px 0px 0px 0px;
    color: #446130;
}

h3 {
    font: normal 700 1.7em/1 bookmania, serif;
    margin: 0px 0px 0px 0px;
    color: #446130;
}

h4 {
    font: 600 1.4em/1 quasimoda, sans-serif;
    margin: 0px 0px 0px 0px;
    color: #446130;
}

p, ul, li {
    font: 300 1.2em/1.3 quasimoda, sans-serif;
    color: #515151;
}

a {
    font-weight: 600;
    color: #446130;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    transition: .3s;
}

/* General text handling */
.keep {
    white-space: nowrap;
}

.page-heading {
    margin-top: 60px;
}

/* Bold body text */
.strong {
    font-weight: 600;
}

/* Main page content */
.main {
    max-width: 1920px;
    /* Keep main content in the middle of the page */
    margin-left: auto;
    margin-right: auto;
    background-color: #EDF5D7;
 }

/* Header and navigation content */
.banner {
    /* Allow the brand and navigation elements to sit on top of the banner image*/
    position: relative;   
}

/* Landing page image across the top of the page */
.landing {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

/* Banner height for pages other than the home page */
.not-landing {
    height: 350px;
}

/* Container for logo and organisation name */
.brand {
    width: 60%;
    position: absolute;
    top: 60px;
    left: 120px;
}

/* Brand container styles for pages other than the home page */
.not-landing .brand {
    width: 88%;
}

/* Logo */
.brand img {
    width: 150px;
    float: left;
}

/* Organisation name */
.brand h1 {
    color: #fff;
    margin-left: 150px;
    margin-top: 10px;
}

/* Organisation name for pages other than the home page */
.not-landing .brand h1 {
    color:  #446130;
    text-align: right;
}


/* Help the organisation name break nicely at different screen sizes */
.break {
    /* Display contents shows the contents as part of the containing element */
    display: contents;
}

/* Navigation menu styles */
.menu {
    width: 100%;
    height: 60px;
    float: left;
    background-color: #446130;
    bottom: 0px;
    position: absolute;
}

/* Hide the mobile menu (burger icon) when in desktop view */
.mobile-menu {
    display: none;
}

.desktop-menu {
    
}

/* Modify the default left padding and top margin for the ul tag */
.desktop-menu ul {
    padding-left: 2%;
    margin-top: .8em;
}

/* Styles for the desktop menu text */
.desktop-menu ul li {
    display: inline-block;
    margin: 0px 40px 20px 0px;
    list-style-type: none;
    font: 600 1.4em/1.4 quasimoda, sans-serif;
    color: #EDF5D7;
}

/* show a line above the menu item for the current page */
.current {
	border-top: 2px solid #EDF5D7;
}

/* display a line above each menu item when the mouse moves over them */
.desktop-menu ul li:hover {
	border-top: 2px solid #fff;
    transition: 0.2s;
}

.desktop-menu a {
    text-decoration: none;
    color: #EDF5D7;
}

.desktop-menu a:hover {
    text-decoration: none;
    color: #fff;
}

/* Hide the mobile menu items in desktop view */
.mobile-menu-block {
    display: none;
    height: 0px;
}

/* Page content panels and columns for the home page */
.leftPanel {
    width: 100%;
    padding-left: 1%;
    float: left;
    padding: 60px 0px 60px 0px;
}

/* Only using the left panel on this page */
.rightPanel {
    width: 0%;
    padding-right: 1%;
    float: left;
    padding: 60px 0px 60px 0px;
}

.col {
    width: 100%;
    margin: 0px 10px 0px 20px;
    padding: 0px;   
    /* allow the box content to sit on top of the col content */
    position: relative;
}

.leftPanel .col {
	float: left;
	width: 45%;
	height: auto;
    margin: 0px 10px 60px 20px;
    display: block;
}

.leftPanel .col h3, h4, p {
margin-left: 37%;
}

.leftPanel .col ul, li {
    all: revert;
}

.leftPanel .col ul {
    margin-left: 37%;
    font: 300 1.2em/1.3 quasimoda, sans-serif;
    color: #515151;
}

.rightPanel .col {
	width: 100%;
	height: 320px;
    -moz-border-radius : 16px;
    -webkit-border-radius : 16px;
    border-radius: 16px;
	background-color: #446130;
    margin: 20px 10px 20px 0px;
}

.col img {
    float: left;
    width: 35%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    -moz-border-radius : 16px;
    -webkit-border-radius : 16px;
    border-radius: 16px;
}

/* Bendigo Bank logo */
.leftPanel .col .blogo {
    height: 60px;
    width: auto;
    float: none;
    margin-left: 0;
    margin-bottom: 10px;
    margin-top: 20px;
    
}

.hFlip {
  /* flip the image horizontally */
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}


/* Page content for pages other than the home page */

/* Article under h2 tag */
.item {
    margin: 20px 10px 20px 20px;
    padding: 0px;
}


.clear {
    /* clear the floats to allow main to have some height and show the background colour */
    clear: both;
}

.footer {
    width: 100%;
    height: 80px;
    background-color: #446130;
}

.footer-text {
       padding-top: 15px;
}

.footer p {
    color: #EDF5D7;
    margin: 0px 0px 0px 20px;
}

.footer a {
    text-decoration: none;
    font-weight: 600;
    color: #EDF5D7;
}

.footer a:hover {
    text-decoration: underline;
    transition: .3s;
}

/* ---- ANIMATIONS ---- */

    @keyframes open {
      from {height: 0px;}
      to {height: 250px;}
    }

    @keyframes close {
      from {height: 2500px;}
      to {height: 0px;}
    }


/* ---- MEDIA QUERIES ---- */

/* Break for Small Desktop */
@media screen and (max-width: 1350px) {
    
    .brand {
        width: 65%;
        position: absolute;
        top: 50px;
        left: 80px;
    }

    /* Modify the left padding ul tag */
    .desktop-menu ul {
        padding-left: 2%;
    }

    
    .leftPanel {
        width: 100%;
    }
    
    .rightPanel {
        width: 0%;
    }
    
    .leftPanel .col {
        width: 45%;
    }

    .leftPanel .col img {
        height: 250px;
    }
     
    .rightPanel .col {
        
    }
    
    .leftPanel .box {
        width: 80%;
    }
    
    .rightPanel .box {
        width: 80%;
    }
    
  }

/* Break for Tablet */
@media screen and (max-width: 1080px) {

    /* Landing page image across the top of the page */
    .not-landing {
        width: 100%;
        height: 310px;
        object-fit: cover;
        position: relative;   
    }

    .brand {
        width: 80%;
        position: absolute;
        top: 50px;
        left: 80px;
    }

    
    /* Logo */
    .brand img {
        width: 120px;
        float: left;
    }

    /* Organisation name */
    .brand h1 {
        font-size: 2.0em;
        color: #fff;
        text-align: left;
        margin-right: 10%;
        margin-top: 10px;
    }
    
    /* Modify the left padding ul tag */
    .desktop-menu ul {
        padding-left: 2%;
    }

    
    /* Help the organisation name break nicely at different screen sizes */
    .break {
        display: contents;
    }
    
    .leftPanel {
        width: 100%;
    }
    
    .rightPanel {
        width: 0%;
    }
    
    .leftPanel .col {
        width: 96%;
    }
    
    .rightPanel .col {
        margin: 20px 10px 20px 10px;
        height: 680px;

    }
    
    .leftPanel .box {
        width: 80%;
    }
    
    .rightPanel .box {
        width: 80%;
    }
    
  }

/* Break for Mobile */
@media screen and (max-width: 700px) {

    /* Landing page image across the top of the page */
    .not-landing {
        width: 100%;
        height: 250px;
        object-fit: cover;
        position: relative;   
    }

    .brand {
        width: 85%;
        position: absolute;
        top: 20px;
        left: 20px;
    }

    /* Logo */
    .brand img {
        width: 120px;
        float: left;
    }

    /* Organisation name */
    .not-landing .brand h1 {
        font-size: 1.75em;
        margin-left: 140px;
        text-align: left;
        margin-top: 10px;
    }
    
    /* Help the organisation name break nicely at different screen sizes
    Display - none hides the break to stop weird line breaks */
    .break {
        display: none;
    }
    
    /* Show the mobile menu (burger icon) when in mobile view */
    .mobile-menu {
        display: block;
        padding-left: 3%;
        margin-top: 20px;
    }

    /* Hide the desktop menu when in mobile view */
    .desktop-menu {
        display: none;
    }


    /* Big bunch of stuff to try to get the mobile menu to appear without the desktop menu appearing as well! */
    /* Modify the default left padding and top margin for the ul tag */
    
    .mobile-menu-block ul {
        padding-left: 3%;
        margin-top: 0em;
    }

    /* Styles for the desktop menu text */
    .mobile-menu-block ul li {
        display: block;
        margin: 0px 40px 10px 0px;
        padding-left: 20px;
        list-style-type: none;
        font: 600 24px quasimoda, sans-serif;
        color: #EDF5D7;
    }

    /* ---- IMPORTANT: ADD THESE NEXT TWO CLASSES TO THE CORRESPONDING MENU ITEM FOR EACH NEW PAGE ----- */
    /* show a line to the left of the menu item for the current page */
    .current-mobile {
        border-left: 4px solid #EDF5D7;
    }
    
    /* Make the current menu item line up properly with the other menu items */
    .nudge {
        margin-left: -4px;
    }
    
    /* display a line to the left of each menu item when the mouse moves over them */
    .mobile-menu-block ul li:hover {
        border-left: 4px solid #fff;
        transition: 0.2s;
    }

    .mobile-menu-block a {
        text-decoration: none;
        color: #EDF5D7;
    }

    .mobile-menu-block a:hover {
        text-decoration: none;
        color: #fff;
    }

    /* Container to reveal dropdown menu items when called by javascript 
    – this class allows the mobile-menu-block items to appear */
    .show-dropdown {
        display: block;
        height: 250px;
        background-color: #446130;
        animation: open .5s 1;
    }
        
    .leftPanel {
        width: 96%;
        padding: 60px 0px 0px 0px;

    }
    
    .rightPanel {
        width: 96%;
        padding: 0px 0px 60px 0px;
    }
    
    .leftPanel .col {
        width: 96%;
    }
    
    .leftPanel .col img {
        width: 98%;
        height: 300px;
        margin-bottom: 20px;
    }
    
    .leftPanel .col h3, h4, p {
        margin-left: 0%;
    }
    
    .leftPanel .col ul {
        margin-left: 0;
    }

    .rightPanel .col {
         width: 0%;
    }
    
    .leftPanel .box {
        width: 80%;
    }
    
    .rightPanel .box {
        width: 80%;
    }
    
    .box h2 {
        font-size: 1.5em;
    }

    /* Give the footer some more space for small screens */
   .footer {
      height: 120px;
   }

  .footer-text {
         padding-top: 15px;
  }

    
} /* End Mobile media query */

