

/** Site styling. **/

body,
.content-wrapper
{
	background-color: var(--page_background-color);
}
body
{
	font-family: 'Libre Franklin', sans-serif !important;
	font-size: var(--page_font-size);
}

body,
h1, h2, h3, h4, h5, h6,
p
{
	color: var(--page_color);
}
h1, h2
{
	color: var(--header_color);
}

.title
{
	text-align: center;
	font-weight: 600;
	font-family: 'Playfair Display', sans-serif !important;
	padding: 0 15px;
}
.title h4,
.title h5,
.title h6
{
	font-family: 'Playfair Display SC', sans-serif !important;
}

hr {
	margin: 10px auto;
	margin-bottom: 15px;
	border-top: 1px solid var(--header_color);
	width: 90%;
}
hr.high
{
	margin-top: 60px;
}
.title hr
{
	width: 200px;
	opacity: 0.7;
}

a,
a:hover,
a:focus,
a:active,
a:visited
{
	display: inline-block;
	color: var(--page-a_color);
	text-decoration: none;
}
a:hover,
a:focus
{
	color: var(--page-a-hover_color);
}

p:last-child
{
	margin-bottom: 0px;
}


/** Header. **/
.header-background
{
	/* Make the header background similar to the color of the image to hide the blank space before the image gets loaded. */
	background-color: var(--page-a-hover_color);
	background-image: url(../img/header/header-mobile.png);
	height: var(--header_height);
	width: 100%;
	position: fixed;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: -1;
	max-width: inherit;
}

@media (min-width: 768px)	/* It must fit the width of the smaller (mobile) header image. */
{
	.header-background
	{
		background-image: url(../img/header/header-desktop.png);
	}
}
.header-banner-wrapper
{
	min-height: var(--header_height);	/* Hold the height even if there is no banner. */
}

/* It feeds the facebook with a default image when linking this page.
 * The image itself should remain invisible.
 */
.facebook-cover
{
	position: absolute;
	display: none;
	max-width: 180px;	/* 10% of the original width. */
	height: auto;
	top: -100px;
}

.banner
{
	text-align: center;
	margin: auto;
	display: block;
	width: 90%;
	max-width: 200px;	/* Experimentally, to match the height. */
	height: auto;
	padding-top: 130px;
	padding-bottom: 130px;
}


/** Footer. **/
footer
{
	background-color: var(--footer_background-color);
	text-align: center;
	border-top: 1px solid var(--page_header-color);
	box-shadow: var(--menu_box-shadow);
}

footer,
footer p,
footer a,
footer a:hover,
footer a:focus,
footer a:active,
footer a:visited
{
	color: var(--footer_color);
}

.footer-main
{
	padding: 33px 0;
}
.footer-logo
{
	margin-bottom: 30px;
}
.footer-legal
{
	max-width: 90%;
	margin: 0 auto;
	border-top: 1px solid var(--footer_color);
}


/** Footer social icons. **/
ul.social
{
	list-style: none;
	margin: 0 0 10px 0;
	padding: 0;
}
ul.social li
{
	display: inline-block;
	width: 32px;
}
ul.social li a i
{
	color: var(--footer_color);
	width: 32px;
	height: 32px;
	display: block;
	line-height: 32px;
	text-align: center;
	border-radius: 100%;
	-webkit-transition: all 0.5;
	transition: all 0.5s;
}
ul.social li a i:hover,
ul.social li a i:focus
{
	/* Yes, reversed. */
	background-color: var(--footer_color);
	color: var(--footer_background-color);
}


/** Text. **/
.text-cta,
.text-alert
{
	font-size: calc(var(--page_font-size) * 1.2);
}
.text-alert p
{
	color: red;
	font-weight: bold;
}
.text-small
{
	font-size: calc(var(--page_font-size) * 0.85);
}

.text-justify h1,
.text-justify h2,
.text-justify h3,
.text-justify h4,
.text-justify h5,
.text-justify h6
{
	text-align: left;
}

.long-text h4
{
	margin-top: 40px;
}
.long-text ol
{
	list-style-type: decimal;
}
.long-text ol.sub
{
	list-style-type: lower-alpha;
}
.long-text li
{
	padding: 3px 0;
}


/** Call to action. **/
.call-to-action {
	background-color: #f2f2f2;
	font-weight: bold;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.call-to-action p,
.call-to-action a,
.call-to-action ul
{
	font-size: 18px;
}


/** Images **/
img {
	display: block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border: 0;
}


/** Details/Summary **/
details {
	text-align: justify;
	padding-bottom: 10px;
}

summary {
	outline: none;
}


/** Video **/
.video-wrapper
{
	background-color: rgba(0,0,0,0.8);
	overflow: hidden;
	position: relative;
	width: 100%;
	padding-top: 56.25%;	/* 16:9 ratio */
}
.video-wrapper iframe
{
	position: absolute;
	top: 0;
	left: 0;
	border: none;
	width: 100%;
	height: 100%;
}


/* Step box. */
.step-box {
	display: inline-block;
	vertical-align: top;
	border: 5px white solid;
	text-align: center;
	background-color: #f2f2f2;
	padding: 20px 10px;
	min-height: 240px;
}

.step-box h2,
.step-box h6 {
	color: var(--page-a-hover_color);
	text-transform: none;
	font-weight: bold;
}

.step-box h2 {
	font-size: 48px;
	margin-top: 0;
}

.step-box h6 {
	font-size: 24px;
}

.step-box p {
/*	font-size: 24px;*/
	color: #000;
}

