h1, h2, h3, h4, h5, h6
{
	color: #000;
	line-height: 145%;
}


h1
{
	color: #fff;
    margin: 0;
    padding: 0;
    font-size: 300%;
    font-weight: 700;
    margin-bottom: 8px;
}

h2
{
	font-size: 180%;
	padding: 80px 0;
	font-weight: 500;
	text-align: center;
}



h4, h5, h6
{
	font-size:110%;
}

.padding-default{
	padding: 50px;
}

.image-float-left{
    float: left;
    margin: 0 50px 50px 0;
}
.image-float-right{
    float: right;
    margin: 0 0 50px 50px;
}

.flex{
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex.column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.flex.reverse{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex.nowrap{
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.flex.start{
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	text-align: start;
}
.flex.center{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}
.flex.end{
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	text-align: end;
}
.flex.top{
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.flex.middle{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex.bottom{
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.flex.around{
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.flex.between{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
/* elements of flexbox container */
.flex > *{
	box-sizing: border-box;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.flex > .first{
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}
.flex > .last{
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

@media screen and (max-width: 795px){
	h1{font-size: 180%;}
}