/* ================================
   Hero: Base
================================== */
.hero { 
	background:
		radial-gradient(
			circle at top left,
			#6fae3f 0%,
			rgba(111, 174, 63, 0.35) 30%,
			rgba(0, 0, 0, 0) 55%
		),
		radial-gradient(
			circle at top right,
			#6fae3f 0%,
			rgba(111, 174, 63, 0.35) 30%,
			rgba(0, 0, 0, 0) 55%
		),
		linear-gradient(
			180deg,
			#0a4f2d 0%,
			#0a4f2d 100%
		);

	background-color: #0a4f2d;
	background-repeat: no-repeat;
	background-size: cover;
  
	position:relative;
	height:550px;
}

.hero .site-width {
	display: flex;
	align-items: end;
	height: 100%;
	justify-content: space-between;
	margin: 0 auto;
	max-width:1300px;
}

.hero__content {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content:center;
	width: 40%;
}

.hero__logo {
	margin-bottom:20px;
}

.hero__logo img {
	display: block;
	margin: 0 auto;
    max-width: 460px;
	width:100%;
}

.hero__disclaimer p {
	color:#fff;
	font-size:12px;
	line-height: 1.5;
}

.hero__headshot {
	width: 60%;
}

.hero__headshot img {
	display: block;
	margin: 0 auto;
	max-width: 400px;
	width: 100%;
}

@media (max-width: 1000px) {
	.hero {
		height: auto;
	}
	
	.hero .site-width {
        flex-direction: column;
    }

    .hero__content {
		margin: 0 auto;
        width: 80%;
    }

    .hero__headshot {
        width: 100%;
    }
	
	.hero__headshot img {
		max-width:280px;
	}
}