/*
Theme Name: Divi Child Theme
Description: A child theme to house custom coding which modifies the Divi parent theme by Elegant Themes. Includes default line numbers where the code was taken from in the parent theme.
Author:   Brad Dalton http://wpsites.net
Template: Divi
*/

@import url("../Divi/style.css");

.et_header_style_left #et-top-navigation nav > ul > li > a, .et_header_style_split #et-top-navigation nav > ul > li > a {
    color: #0aa84b;
}

h1, h2, h4
{
   color: #0aa84b;
}

h1
{
	font-weight: bold;
}

/* Set the space between modules */
:not(.et_pb_fullwidth_section).et_pb_section
 { 
   padding-top: 5px !important; 
   padding-bottom: 5px !important;
}

@media only screen and ( min-width: 981px )
{
    /* Set the slider height */
    .et_pb_slider, .et_pb_slider .et_pb_container
	{ 
        height: 500px !important; 
    }
	
    .et_pb_slider, .et_pb_slider .et_pb_slide
	{ 
        max-height: 500px; 
    }
	
    .et_pb_slider .et_pb_slide_description
	{ 
        position: relative; 
        top: 25%; 
        padding-top: 0 !important; 
        padding-bottom: 0 !important; 
        height: auto !important; 
    }
}

.et_pb_gallery_grid .et_pb_gallery_image
{
	position:relative;
	height: 100px;
}

.et_pb_gallery_grid .et_pb_gallery_image img
{
	position: absolute;
	left: 50%;
	top: 50%;
	height: auto;
	-webkit-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
			transform: translate(-50%,-50%);
}