/*colors 
	light grey - #DDD1C7
	grey - #7E8987
	violet - #4B4A67
	light green - #C2CFB2
	green - #8DB580
*/

/*--text: #3E3226;
--white: #FAF8F7;
--brown: #AA5F1E;
--tan: #CE9564;
--sage: #bdcba9;
--green: #98ba8c;
*/

html {
	box-sizing: border-box;
}

body {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}

header {
	background: #4B4A67;

}

.bulk {
	margin-top: 50px;
}

.hero-image img {
	width: 100%;
	object-fit: cover;
	max-height: 500px;
}

.hero-text {
	position: absolute;
	top: 40px;
	right: 0;
	transition: .4s;
	background: seagreen;
	height: ;
	width: 200px;
	padding: 30px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 60px;
}

@media (max-width: 633px) {
	
	.bulk {
		margin-top: 0;
	}

	header {
		height: 250px;
		padding: 5px;
		padding-bottom: 40px;
	}

	.hero-image {
		padding-top: 0;
	}


	.hero-text {
		position: absolute;
		top: 295px;
	}
}
.bulk {
	max-width: 1000px;
	margin: 60px auto 0;
}

.subtitle {
	background: #C2CFB2;
	padding-top: 20px;
	padding-bottom: 10px;
	padding-left: 10px;
	height: fit-content;
}

.faq {
	background: #DDD1C7;
	max-height: 80px;
	overflow: hidden;
	margin-bottom: 20px;
	padding: 10px;
	border-radius: 10px;
}

.faq:hover {
	max-height: fit-content;
}


.faq h3 {
	margin: 0;
	margin-top: 10px;
}

.faq p {
	margin-top: 40px;
}
 
/*more questions form*/
.question-form {
	text-align: center;
	margin: 40px 0;
	background: #C2CFB2;
	padding: 20px;
	border-radius: 10px;
}

.unanswered {
	margin: 10px 0 20px;
}

.here {
	margin: 0;
}
 
input[type=submit] {
	padding: 10px;
	width: 100px;
	border-radius: 10px;
}

input[type=submit]:hover {
	background: #DDD1C7;
}







