/* ELEMENTS */
p, ul, ol {
	margin-bottom: 1.15rem;
}

h1, h2, h3, h4, h5 {
  margin: 2.75rem 0 1.05rem;
  font-weight: 400;
  line-height: 1.15;
  font-family: var(--primary-font);
  font-weight: var(--heading-weight);
}

h1 {
  margin-top: 0;
  font-size: 3.052em;
}

h2 {
	margin-top: 0;
	font-size: 2.441em;
}

h3 {
	font-size: 1.953em;
}

h4 {
	font-size: 1.563em;
}

h5 {
	font-size: 1.25em;
}

h1.secondary,h2.secondary,h3.secondary,h4.secondary,h5.secondary,h6.secondary,p.secondary,ul.secondary,ol.secondary{
	font-family: var(--secondary-font);
}

small, .text_small {
	font-size: 0.8em;
}

a {
	color:var(--dark);
	text-decoration: none;
	border-bottom:1px solid var(--dark);
}

a:hover{
	color:var(--primary-bright);
}

section{
	position: relative;
	max-width:100%;
	overflow:hidden;
}

label{
	width:100%;
	display:block;
}

label span{
	float:right;
	color:#880000;
	font-size:0.8rem;
}

input,textarea,select{
	border:2px solid var(--primary);
	width:100%;
	margin-bottom:2em;
	padding:0.3em;
}

input:focus,input:active,textarea:focus,textarea:active,select:focus,select:active{
	background:#fffcd4;
	border:2px solid var(--primary-bright);
}

textarea{
	height:140px;
}

iframe{
	max-width:100%;
}

header{
	z-index:1002;
	position: relative;
	overflow:visible;
}

.text-right{
	text-align: right;
}

.text-center{
	text-align: center;
}

@media screen and (max-width:990px){
	header .row div:first-child{
		max-width:100%;
		flex-basis: 100%;
	}
	header .row div:first-child img{
		margin:0 auto;
	}
}

/* FACILITIES */

ul.facilities{
	text-align: center;
	padding-top: 2em;
	width:100%;
}

ul.facilities li{
	display: inline-block;
	background: var(--primary);
	color: var(--white);
	border-radius: 2rem;
	padding: 10px 20px;
	margin: 10px;
	text-align: center;
}

ul.facilities li::before {
    content: "✔ ";
}