/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 06 2024 | 09:18:28 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

#site-header #site-navigation ul li a {
	padding: 0 20px;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.hero-image {
	position: relative;
	width: 100%;
	height: 350px;
	background-image: url("/wp-content/uploads/2020/01/header.jpg");
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-text-over-image {
    position: absolute;
    top: 250px;
	left: 0;
    font-size: 22px;
    line-height: 22px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    background-color: rgb(18, 158, 195);
    padding: 20px 20px 20px 40px;
    border-radius: 0px 50px 50px 0px;
}

@media only screen and (max-width: 992px) {
	.hero-text-over-image {
    font-size: 16px;
	}
}