* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

#main{
	position:relative;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

body {
    background: white; /*#eee;*/
    color: #444;
    -webkit-font-smoothing: antialiased;
    font-family: 'SansationLight'; /*"HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; */
    font-weight: 400;
    height: auto !important;
    min-height: 100%;
    text-rendering: optimizeLegibility;
}

h1{
	font-size: 24px;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	text-align: center;
	padding: 25px 20px 0px;
}
#howitworkschart {
	width: 100%;
	margin: auto;
		max-width: 1025px;
}

#qa  {
/*	
	background-image: url("./img/Household.jpg");
	background-size: cover;
	background-position: -200px;

	height: 400px;
*/	
	margin: auto;
	max-width: 1025px;
	background-color: white;
}

#qa > div {
	height: 100%;
	border-bottom: 12px solid white;
}
#qa > p {
	height: auto;
	width: 90%;
	text-align: center;
	padding: 5px 20px 5px 20px;
	margin-left: auto;
	margin-right: auto;
}	
	
/* Medium screens */
@media all and (min-width: 715px) 
{
	h1{
		height: auto;
	}
	
	#qa {
		background-color: white;
	}
	#qa > div {
		height: 100%;
		
	}
	#qa > p {
		padding: 5px 10px 15px 10px;
	}	

}

@media(min-width: 1025px){
/*	
	#main{
		max-width:1025px;
		border-right: 12px solid white;
		border-left: 12px solid white;
	}
*/	
	#qa > p {
		height: auto;
		width: 90%;
		text-align: left;
		padding: 5px 20px 5px 20px;
	}	
}

