/**
 * @package     Joomla.Site
 * @subpackage  Templates.rkic60site
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * 
 * File ready for local users to update 
 * REMEMBER to take a copy so that any updates don't over write your settings.
 */

/* on the home page, set the background colour of the header to transparent and make it fixed */
.ishome .container-header {
    background-color: transparent;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s;
}

/* set the background colour of the header on regular pages and when the page has scrolled*/
.container-header,
.container-header.scrolled {
    background-color: #004177; 
    background-image: unset;
}

/* remove the margin from the module containing the logo */
.mod-custom p {
    margin: 0;
}

/* set the large banner to take up the full height of the viewport */
.container-banner .banner-overlay {
    height: 100vh;
}
