html,
body {
	background: #e0e0e0;
	font-family: 'Source Sans Pro', sans-serif;
	color: #666;
}

a	{
	color: #0275d8;
	}

a:hover	{
	color: #3366bb;
	}

/* START OF BACKGROUND ROWS */
div.bg1	{
	background: #fff;
}

div.bg2	{
	background: #eee;
}

div.bg3	{
	background: #666;
	color: #fff;
}

div.bg3 *	{
	color: #fff;
}
/* END OF BACKGROUND ROWS */


/* START OF FRAMEWORK CSS */
h1, h2, h3, h4, h5, h6	{
	margin-top: 50px;
	margin-bottom: 20px;
	padding: 0;
	font-family: 'Roboto';
	font-weight: 800;
}

h1.first_h, h2.first_h, h3.first_h, h4.first_h, h5.first_h, h6.first_h	{
	margin-top: 20px;
}

/* END OF FRAMEWORK CSS */

/* START OF TOP BANNER */
div.top_banner	{
	background: #4b74b2;
}

div.top_banner div.phone,
div.top_banner div.email {
	padding: 5px 0;
}

div.top_banner div.phone a,
div.top_banner div.email a {
	text-decoration: none;
}

div.top_banner p,
div.top_banner a  {
	color: #fff;
}
/* END OF TOP BANNER */


/* START OF HEADER */
div.header_outer{
	background: #fff;
	}
	
div.header_outer div.contact_details p	{
	margin: 0;
	padding: 5px 0;
	color: #666;
	line-height: 1em;
	font-size: 125%;
	}

div.header_outer div.contact_details p a	{
	color: #666;
	text-decoration: none;
	}

div.header_outer div.contact_details p.phone	{
	font-size: 200%;
	}
/* END OF HEADER */


/*  START OF NAVIGATION */
/* Change for navigation container background */
div.navigation	{
	background: rgba(0,0,0,.8);
	padding: 0!important;
	}

nav.navbar	{
	width: 100%;
	}

/* Change all 'end' to 'start' to place hamburger on left */
nav.navbar-light button.navbar-toggler {
	border-color: #fff;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
	}

/* To change the hamburger color, edit the RGBA attribute below */
nav.navbar-light span.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(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
	}

/* Holds the logo */
a.navbar-brand {
	max-width: 75%;
	}

img.logo {
    margin: 0 auto;
    padding: 5px;
    max-height: 100px;
	}
	
@media (max-width: 768px){
	img.logo {
		max-width: 100%;
		}
	}

/* Change properties for all links */
a.nav-link,
div.dropdown-menu a.dropdown-item	{
	padding: 10px!important;
	color: #fff!important;
	font-family: 'Roboto';
	/* Fade Property */
	-o-transition: 1s;
	-ms-transition: 1s;
	-moz-transition: 1s;
	-webkit-transition: 1s;
	font-size: 120%;
	transition: 1s;
	}

/* Add fixed width to any fa icons so the text lines up */
a.nav-link span.fa_holder,
span.fa_holder {
    width: 30px;
    display: inline-block;
	}

/* Change properties for nav link hover */
a.nav-link:hover	{
	}

/* Reduce padding to 0 for medium and smaller devices */
@media (max-width: 768px) {
	a.nav-link	{
		padding: 5px!important;
	}
}


/* Change background of dropdown menu */
div.dropdown-menu  {
	margin: 0;
	border: 0;
	border-radius: 0;
	padding: 0;
	background: #4b74b2;
	}

/* Enable dropdown menu on hover */
li.dropdown:hover div.dropdown-menu {
	display: block;
	}
	
/* Change properties for dropdown item hover */
div.dropdown-menu a.dropdown-item:hover	{
	background-color: #96b5e5!important;
	color: #fff;
	}

li.nav-item a div{
	transition: .3s;
	background: #fff;
	height: 1px;
	display: block;
	float: none;
	width: 0;
	}

li.nav-item.active a div,
li.nav-item:hover a div{
	width: 100%;
	}

/* END OF NAVIGATION */


/* START OF CAROUSEL */
.carousel-item#slide0{
	background: url('../images/carousel/slide0.jpg') top center no-repeat;
	}

.carousel-item#slide1{
	background: url('../images/carousel/slide1.jpg') top center no-repeat;
	}

.carousel-item#slide2{
	background: url('../images/carousel/slide2.jpg') top center no-repeat;
	}

.carousel-item#slide3{
	background: url('../images/carousel/slide3.jpg') top center no-repeat;
	}

.carousel-item#slide4{
	background: url('../images/carousel/slide4.jpg') top center no-repeat;
	}

.carousel-item#slide5{
	background: url('../images/carousel/slide5.jpg') top center no-repeat;
	}

.carousel-item#slide0,
.carousel-item#slide1,
.carousel-item#slide2,
.carousel-item#slide3,
.carousel-item#slide4,
.carousel-item#slide5{
	height: 100vh;
	background-attachment: fixed;
	background-size: cover;
	}
	
/* Fix the image height issue for mobile devices */
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
	display: block;
}

/* If the carousel is full width, remove this pairing and move the include outside of the webpage */
#carouselSlider	{
	/* margin-left: -15px; */
	/* margin-right: -15px; */
	}
	
/* Customise the styling for the carousel overlay */
.carousel-overlay {
	padding: 10px 20px;
	text-align: center;
	color: #fff;
	z-index: 9;
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translate(-50%,0);
	width: 90%;
	}

.carousel-overlay h1 {
	margin: 0 0 10px 0;
	padding: 10px 0;
	font-size: 450%;
	}
	
.carousel-overlay p { 
	font-size: 150%;
	}

/* END OF CAROUSEL */

/* START OF BUTTON COLOURING */
.btn-primary {
	background: #333;
	border-color: #333;
	color: #fed03d;
}

.btn-primary:hover {
	background:  #fed03d;
	border-color: #fed03d;
	color: #333;
}

.btn-secondary {
	background:  #fed03d;
	border-color: #fed03d;
	color: #333;
}

.btn-secondary:hover {
	background: #333;
	border-color: #333;
	color: #fed03d;
}

.btn-success {
	background:  #5de35d;
	border-color: #5de35d;
}

.btn-success:hover {
	background:  #91e391;
	border-color: #5de35d;
}
/* END OF BUTTON COLOURING */

/* START OF WEBPAGE */

/* Webpage container styling */
.webpage {
	background: #fff;
	margin-top: 110px;
	}
	
.webpage.index {
	border: 1px solid #ccc;
	border-bottom: 0;
	margin-top: -300px;
	position: relative;
	z-index: 9;
	}

.container {
	max-width: 1400px;
	width: 100%;
	}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 992px) { 
	/* Container width auto to remove webpage gap on mobile */
	.container {
		/* width: auto; */
	}
}

@media (max-width: 992px) {
	div.fixed_social_media {
		display: none;
	}
}

div.fixed_social_media {
    border-radius: 5px 0 0 5px;
    padding: 3px 8px 5px;
    position: absolute;
    top: 274px;
    right: 0;
    z-index: 9999;
    position: fixed;
    width: 55px;
    background: rgba(255,255,255,0.5);
	}
	
img.fixed_social_icon	{
	margin: 2px 0;
	}	

/* END OF WEBPAGE */

/* START OF HOVER PANELS */

div.overlay_heading h2 {
    margin: 0;
    padding: 10px;
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 150%;
	background: #4b74b2;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

div.overlay_heading h2:hover {
	background: #7495c7;
}

div.sidebar a:hover {
	text-decoration: none!important;
}

/* END OF HOVER PANELS */

/* START OF COOKIE CONSENT */

div.cc-window {
	padding: 10px 60px!important;
}

/* END OF CALENDAR PANELS */

/* START OF RECAPTCHA ERROR */

p#form_error_message {
	margin: 10px 0;
	padding: 10px;
	border: 2px solid #dc1818;
	border-radius: 4px;
	display: inline-block;
	text-align: center;
	width: 100%;
	}

div.recaptcha_error {
	margin: 10px 0;
	padding: 6px 5px 5px 6px;
	border: 2px solid #dc1818;
	border-radius: 4px;
	display: inline-block;
	}

/* END OF RECAPTCHA ERROR */

/* START OF FOOTER */

/* General styling for the footer */
footer {
	background: #333333;
	border-top: 10px solid #fed03d;
}

footer h3	{
	margin: 0;
	padding: 10px 0;
}

/* Change the default link colour from blue */
footer a,
footer a:hover, 
footer a:focus {
	color: #fff;
}

/* Overwrite/reduce the padding for the footer navbar links */
footer a.nav-link {
	padding: 0!important;
	font-family: 'Source Sans Pro', sans-serif;
}

/* Remove the dropdown menu and dropdown favicon (footer quicklinks only) */
footer .dropdown-toggle::after,
footer li.nav-item.dropdown div.dropdown-menu {
    display:none;
}

/* Remove the background colour from the quicklinks */
footer a.nav-link:hover,
footer li.nav-item.active a.nav-link {
	background: none!important;
}

/* Underline the quicklinks when you hover */
footer a.nav-link:hover {
	text-decoration: underline;
}

/* Styling for the copyright information strip underneath the footer */
.copyright_info {
	background: #111;
	font-size: 80%;
}

/* END OF FOOTER */


/* Broadbiz panel CSS for use on home page and sidebars */
div.panel	{
	border: 1px solid #ccc;
	background: #fff;
	text-align: center;
	box-shadow: 3px 3px #eee;
}

/* Amend padding to move image away from edge */
div.panel img	{
	padding: 10px 10px 0 10px;
	width: 100%;
}

div.panel div	{
	margin: 10px;
}

div.panel div h2	{
	margin: 0;
	padding: 10px 0;
}

div.panel div p	{
	padding: 0 0 10px;
	line-height: 1.25rem;
}

div.sidebar div.panel	{
	margin-bottom: 10px;
}

img.backtotop	{
	border-radius: 10px;
	opacity: 0.8;
	bottom: 10px;
	right: 10px;
	position: fixed;
	z-index: 9999999;
	background: rgba(100, 100, 100, .8);
	}

/* Checkbox for Bootstrap Form */

.checkbox .cr {
	position: relative;
	display: inline-block;
	border: 1px solid #a9a9a9;
	border-radius: .25em;
	width: 1.3em;
	height: 1.3em;
	float: left;
	margin-right: .5em;
}

.checkbox .cr .cr-icon {
	position: absolute;
	font-size: .8em;
	line-height: 0;
	top: 20%;
	left: 20%;
}

.checkbox label#checkbox {
	float: right;
}

.checkbox label input[type="checkbox"] {
	display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon {
	transform: scale(3) rotateZ(-20deg);
	opacity: 0;
	transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon {
	transform: scale(1) rotateZ(0deg);
	opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr {
	opacity: .5;
}

.row-striped:nth-child(odd) {
	background: #fff;
	}
	
.row-striped:nth-child(even) {
	background: #f0f0f0;
	}
	
hr.hr-yellow {
	border-top: 1px solid rgb(254, 208, 61);
	}

ul.quick-links{
	list-style-type: none;
	}
	
ul.quick-links li{
	float: left;
	padding: 10px;
	}
	
ul.quick-links li a:hover{
	text-decoration: none;
	}

.card-up{
	height: 100px;
    margin-bottom: -30px;
    background: #d1ae2e;
	}
	
.avatar{
	background: #fff;
    padding: 20px;
    border-radius: 100%;
	min-width: 150px;
	min-height: 150px;
	text-align: center;
	}
	
.process {
	margin: 20px auto;
	background: #fff;
	}
	
div.bg-grey {
	background: #eee;
	}

@media (max-width: 1200px){
	.webpage.index {
		margin-top: -200px;
		}
	}

@media (max-width: 992px){
	.webpage.index {
		margin-top: -100px;
		}
	}

@media (max-width: 768px){
	.carousel-overlay h1	{
		font-size: 250%;
		}
	}

@media (max-width: 576px){
	}