/* General styling from old website: */
a, button, h1, h2, h3, h4, h5{
    font-family: "Ubuntu Sans", sans-serif;
    font-weight: bold;
}

body, div, p, span, input, textarea, select, option, label, li, ul, ol{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
}

/* Website colors */
:root{
    --gold-primary: #b38a4b;
    --blue-primary: #0f2353;
    --whitegrey-background: #f7f7f7;
    --background-shadow-color: rgba(0, 0, 0, 0.1);
}

/* Color active text header */
.active{
    color: var(--gold-primary) !important;
}

/* General styling sitewide */
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;
}

/* web_page_content */
.web_page_content{
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.2;
    font-family: 'Open Sans', sans-serif;
    padding: 20px 10px;
    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(--gold-primary);
    margin-bottom: 20px;
}

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

@media screen and (max-width: 600px) {
    .web_page_content{
        padding: 0 20px;
        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%;
	}
}