/*
Theme Name: Sydney Child
Theme URI: http://athemes.com/theme/sydney
Author: aThemes
Author URI: http://athemes.com
Template: sydney
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sydney
*/

/* Background page colour
   Blocks on a page are plced onto a canvas. By default the colour of
   this canvas is white. The page background colour can be changed in
   the Customiser > Appearance > Colours > General > Background Colour.
   You can change the white background colour to transparent color instead,
   and then change the background colour in teh customiser.  
*/
#content.page-wrap .content-wrapper {
    background-color: transparent;
}

/* Header
	The header slider generates a large image that is displayed in the full browser window
	This CSS reduces the height of the slider
	30vh = 30% of the window height
	*/

.header-slider {
   height: 50vh !important;
}

/* Controls the opacity-transparency of the header image. This is the header used on all pages except the front page */

.header-image .overlay {
		opacity: 0.7;
	}	


/* Changing the colour of the different headings */

h1, h2, h3, h4, h6 {
    color: #003e60;
}

h5 {
	color: #47425d;
}

/* Stopping the widget-title in the footer being capitalised */
/*
.sidebar-column h3.widget-title {
   text-transform: none;
}	
*/

/* Footer Widget Area */
/*   reducing the padding (whitespace) above the footer widget titles */
/*   
.footer-widgets {
    padding-top: 10px;
	padding-bottom: 10px;
}
*/

/* Reducing the padding at the bottom of the footer wdget area */

#sidebar-footer .widget{
  margin-bottom: 0;
}

/* To right align the right column of the footer */

#sidebar-footer .sidebar-column:last-child{
	text-align: right;
}

/* News - Blog Page */
/* Reduce padding between blog posts */

.content-area .post.hentry {
    padding-top: 0 !important;
}

/* Latest blog post block */
/* Changing the colour of the hyperlink/title for the blog posts */

.wp-block-latest-posts__list a {color: #012c91;}

.wp-block-latest-posts__list a:hover {color: red;}

.wp-block-separator.is-style-default{
height: 4px;
	width: 25%;
}


   