/* Site title */
.component.site_title {
	position: relative;
	height: 218px;
	width: 100%;
	margin: 0 0 40px;
}
.component.site_title .title {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
    float: none;
    margin: 0;
	height: 218px;
    width: 100%;
	background-color: #006BB3;
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	line-height: 218px;
    text-align: center;
	z-index: 2;
	transition: opacity .3s ease;
}
.component.site_title .background {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 218px;
    width: 100%;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
}
.component.site_title .title:before,
.component.site_title .background:before {
    content: '';
    position: absolute;
	top: 0;
	left: 0;
    width: 0;
    height: 0;
	border-style: solid;
	border-width: 70px 1200px 0 0;
	border-color: #fff transparent transparent transparent;
}
.component.site_title .title:after,
.component.site_title .background:after {
    content: '';
    position: absolute;
	bottom: 0;
	left: 0;
    width: 0;
    height: 0;
	border-style: solid;
	border-width: 0 0 70px 1200px;
	border-color: transparent transparent #fff transparent;
}

/* Legal notice */
.component.legal_notice { padding: 0 50px; }
.component.legal_notice.title_view > .title {
    width: 100%;
	margin: 20px 0 40px;
	color: #222;
	font-size: 36px;
	font-weight: 400;
	line-height: 36px;
    text-align: center;
	text-transform: uppercase;
}
.component.legal_notice.default_view {
	width: 100%;
	margin-bottom: 30px;
	border-radius: 4px;
}
.component.legal_notice.default_view > div:first-child { margin-top: 10px; }
.component.legal_notice.default_view > div {
	width: 100%;
	border-radius: 4px;
	font-size: 12px;
	line-height: 16px;
}
.component.legal_notice.default_view .field-list li {
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	color: #656565;
}
.component.legal_notice.default_view .field-list .field-label,
.component.legal_notice.default_view .field-list .field-delimiter { font-weight: bold; }