/* Colors used overall */
:root{
	--white: white;
	--blue: #0160F8;
	--blue-lighter: #337FF9;
	--shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.2);
	--whitegrey-background: #f7f7f7;
}

/* reset styling */
* {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	box-sizing: border-box;
}

html, body {
	height: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	line-height: 1.2;
}

body.no-scroll{
	overflow-y: hidden;
}

button{
	outline: none;
	background: none;
	border: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
}

li, ul {
	list-style: none;
}

a{
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border: 0px;
}

hr {
	border: #929292 solid 1px;
	margin: 0px;
}

@-moz-document url-prefix() {
    hr {
	    float: left;
	    width: 100%;
	}
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

/* general used styling */
body{
	font-size: 16px;
	position: relative;
}

article{
	min-height: 50vh;
	background-color: white;
	width: 100%;
	padding: 75px;
	padding-top: 25px;
}

@media screen and (max-width: 768px){
	article{
		padding: 30px;
	}
}

h1 {
	width: 100%;
	font-size: 50px;
	line-height: 1.1;
}

@media screen and (max-width: 600px) {
	h1 {
		font-size: 30px;
	}
}

h2 {
	width: 100%;
	font-size: 30px;
}

h3 {
	width: 100%;
	font-size: 25px;
	line-height: 25px;
	text-transform: uppercase;
}

h4 {
	width: 100%;
	font-size: 20px;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
}

h5 {
	width: 100%;
	font-size: 20px;
	margin-top: 0;
}

strong{
	font-weight: bold !important;
}

em{
	font-style: italic !important; 
}

.web_page_content{
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.2;
	font-family: 'Open Sans', sans-serif;
	padding: 50px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 70px;
}

.web_page_title{
	width: 100%;
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 20px;
}

.web_page_content > p{
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 16px;
	text-align: left;
}

@media screen and (max-width: 600px) {
	.web_page_content{
		padding-top: 50px;
	}

	.web_page_content > p{
		font-size: 16px;
	}
}

/* Horizontal */
hr {
	border-top: #929292 solid 1px;
	border-bottom: none;
	margin: 0px;
}

@-moz-document url-prefix() {
	hr {
		float: left;
		width: 100%;
	}
}