/* global */
body{
	font-family: 'Raleway', Arial, sans-serif;
}
h1,h2,h3,h4,h5,h6,p{
    margin-bottom: 1rem;
}
p{
	font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

/* header */

.legal-docs-header{
	padding: 20px 0;
	background-color: #ddd;
}
.legal-docs-logo{
	text-align: center;
}
.legal-docs-logo img{
	width: auto;
	height: auto;
	max-width: 300px;
	padding: 0 15px;
}

/* content */

.legal-docs-content{
	background: #fff;
}
.legal-docs-title{
	padding: 20px 15px;
	background-color: #b1b1b1;
	overflow: hidden;
}
.legal-docs-title h1{
	text-align: center;
	font-size: 2.1rem;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 0;
	color: #fff;
}
.legal-docs-title h1 span{
	position: relative;
}
.legal-docs-title h1 span:before,
.legal-docs-title h1 span:after{
	content: "";
	position: absolute;
	width: 100vw;
	height: 3px;
	background: #fff;
	top: 50%;
}
.legal-docs-title h1 span:before{
	left: calc(100% + 15px);
}
.legal-docs-title h1 span:after{
	right: calc(100% + 15px);
}
.legal-docs-info{
	padding: 1rem 0 50px;
}
.legal-docs-content h2{
	margin-top: 50px;
	font-size: 1.3rem;
	text-transform: uppercase;
	font-weight: 600;
}

/* footer */
.legal-docs-footer{
	background: #b1b1b1;
	padding: 20px 0;
}
.copyright{
	text-align: center;
	color: #fff;
	font-weight: 500;
	padding: 0 15px;
}

/* media */

@media only screen and (max-width:576px) {
	.legal-docs-title h1 span:before, 
	.legal-docs-title h1 span:after{
		display: none;
	}
}
@media only screen and (max-width:375px) {
	.legal-docs-title h1{
		font-size: 2rem;
		letter-spacing: 1px;
	}
}