/* FONT */
@font-face {
	font-family: "OpenSans";
	src: url("/font/open-sans/OpenSans-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "OpenSans";
	src: url("/font/open-sans/OpenSans-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "OpenSans";
	src: url("/font/open-sans/OpenSans-Italic.ttf") format("truetype");
	font-weight: normal;
	font-style: italic;
}

@font-face {
	font-family: "OpenSans";
	src: url("/font/open-sans/OpenSans-BoldItalic.ttf") format("truetype");
	font-weight: bold;
	font-style: italic;
}

@font-face {
	font-family: "Oswald";
	src: url("/font/oswald/oswald-regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Oswald";
	src: url("/font/oswald/oswald-bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}





/* TRIVIALS */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	color: #000;
	background-color: #e5f6fd;
	font-size: 16px;
	font-family: "OpenSans", "Helvetica Neue", "Helvetica", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 1rem;
	font-family: "Oswald", sans-serif;
	font-weight: bold;
	color: #00466e;
}

h3, h4 {
	margin-top: 3rem;
}

h1 {
	font-size: 320%;
}

h2 {
	font-size: 200%;
}

h3 {
	font-size: 140%;
}

h4 {
	font-size: 130%;
}

h5 {
	font-size: 120%;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
	margin-top: 0;
}

p {
	line-height: 1.42857143em;
	margin-top: 0.25rem;
	margin-bottom: 1rem;
	text-align: justify;
}

p:first-child {
	margin-top: 0;
}

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

a {
	color: #00a5eb;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 165, 235, 0);
	transition: color 0.3s ease, border-bottom 0.3s ease;
}

main a:hover:not(.btn):not(.noborder),
main a:focus:not(.btn):not(.noborder) {
	color: inherit;
	border-bottom: 1px solid rgba(0, 165, 235, 1);
}

a.dark {
	color: inherit;
}

hr {
	height: 2px;
	width: 70px;
	margin: 1.5em auto;
	background-color: #c80000;
	border: none;
}





/* SEMANTICS */

header,
footer {
	position: relative;
	color: #fff;
	text-align: center;
	overflow: hidden;
}

header {
	padding: 0 0.5rem;
	background-color: #fff;
	border-bottom: 6px solid #c80000;
}

@media screen and (min-width: 768px) {
	header {
		padding: 0 1rem;
	}
}

@media screen and (min-width: 992px) {
	header {
		padding: 0.5rem;
	}
}

@media screen and (min-width: 1200px) {
	header {
		padding: 1.5rem;
	}
}

#logo {
	max-width: 70%;
	max-height: 200px;
}

aside.share {
	display: none;
	z-index: 10;
	position: fixed;
	bottom: 25%;
	left: 1rem;
	font-size: 1.5rem;
}

@media screen and (min-width: 992px) {
	aside.share {
		display: flex;
	}
}

aside.share a,
aside.share a:hover {
	border-width: 0;
}

aside.share a div {
	width: 3rem;
	height: 3rem;
	margin-top: 0.5rem;
	border-radius: 50%;
	border: 2px solid #fff;
	background-color: #00466e;
	transition: background-color 0.2s ease, margin 0.2s ease;
}

aside.share a:first-of-type div {
	margin-top: 0;
}

aside.share a:hover div {
	background-color: #c80000;
	margin-left: 0.5em;
}

aside.share i {
	color: #fff;
}

footer {
	padding: 0.5rem;
	font-size: 85%;
	background-color: #00466e;
	border-top: 3px solid #fff;
}

.ref {
	padding: 0.5rem;
	color: #fff;
	font-size: 85%;
	font-weight: bold;
	text-align: center;
	background-color: #00466e;
}

.ref a,
footer a {
	color: inherit;
}

.ref ul,
footer ul {
	list-style: none;
}

.ref li,
footer li {
	display: inline;
	margin: 0rem;
	padding: 0;
}

.ref li {
	margin: 1rem;
}

.ref li span {
	margin-left: 8px;
}

.ref li .fa {
	vertical-align: middle;
}

footer li + li::before {
	content: "| ";
}

main {
	position: relative;
	margin: 3rem 10px;
	overflow: hidden;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

section {
	position: relative;
	padding: 5rem 1rem 2rem;
}

section:first-of-type {
	padding-top: 2rem;
}

@media screen and (min-width: 768px) {
	main {
		margin-left: 20px;
		margin-right: 20px;
	}
	section {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media screen and (min-width: 992px) {
	main {
		margin-left: 10%;
		margin-right: 10%;
	}
	section {
		padding: 6rem 3rem 3rem;
	}
	section:first-of-type {
		padding-top: 3rem;
	}
}

@media screen and (min-width: 1200px) {
	main {
		margin-left: 15%;
		margin-right: 15%;
	}
	section {
		padding: 6rem 4rem 4rem;
	}
	section:first-of-type {
		padding-top: 4rem;
	}
}

section:nth-child(even) {
	background-color: #FFF;
}

section:nth-child(odd) {
	background-color: #EEE;
}

section + section::before {
	position: absolute;
	display: block;
	top: 0px;
	left: 50%;
	transform: translate(-50%,0);
	content: "";
	width: 0;
	height: 0;
	border-left: 90px solid transparent;
	border-right: 90px solid transparent;
}

section:nth-child(even) + section::before {
	border-top: 40px solid #FFF;
}

section:nth-child(odd) + section::before {
	border-top: 40px solid #EEE;
}

abbr {
	cursor: help;
}





/* LAYOUT */

.row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}

.column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}

.align-left {
	justify-content: flex-start;
}

.row-space > *:first-of-type {
	margin-left: 0;
}

.row > .weight25 {
	width: 25%;
}

.row > .weight75 {
	width: 75%;
}

.row-space > .weight75 {
	width: calc(75% - 1em);
}

.weight75 + .weight25 {
	margin-left: 1em;
}

.weight25 + .weight75 {
	margin-left: 1em;
}

div.center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.shrunk {
	width: 100%;
	max-width: 700px;
	margin: auto;
}

.row > * {
	width: 100%;
	padding: 1rem;
}

form .row > * {
	padding: 0;
}

@media screen and (min-width: 768px) {
	.row > * {
		width: 50%;
	}
	.row-space > * {
		width: calc(50% - 0.5em);
	}
	.row-space > *:nth-child(even) {
		margin-left: 1em;
	}
}

@media screen and (min-width: 992px) {
	.items3 > * {
		width: 33.33%;
	}
	.items3.row-space > * {
		width: calc(33.33% - 0.67em);
		margin-left: 1em;
	}
	.items3.row-space > *:nth-child(3n-2) {
		margin-left: 0;
	}
}

@media screen and (min-width: 1200px) {
	.items4 > * {
		width: 25%;
	}
	.items4.row-space > * {
		width: calc(25% - 0.75em);
		margin-left: 1em;
	}
	.items4.row-space > *:nth-child(4n-3) {
		margin-left: 0;
	}
}

@media screen and (max-width: 768px) {
	.hide-mobile {
		display: none;
	}
}





/* DONATION METHOD */

#methods {
	margin: 0 0 1.5em;
}

#methods a,
#methods button {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	height: 175px;
	width: 175px;
	margin: 16px;
	padding: 1rem;
	color: rgba(31, 31, 31, 0.7);
	font-weight: bold;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.1);
	border: 6px solid rgba(0, 70, 110, 0);
	border-radius: 2px;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3), 0 0 8px 0 rgba(0, 0, 0, 0.3);
	transition: border .3s ease;
}

#methods a:hover,
#methods button:hover {
	border: 6px solid rgba(0, 70, 110, 1);
}

#methods .disabled {
	display: none;
}

#methods a > *,
#methods button > * {
	max-height: 100%;
	max-width: 100%;
	transition: transform .3s ease;
}

#methods a:hover > *,
#methods button:hover > * {
	transform: scale(1.2,1.2);
}

#methods a i,
#methods button i {
	color: #00466e;
	font-size: 500%;
}

.icon {
	width: 100%;
}





/* FORMS */

label[for] {
	cursor: pointer;
}

form.form {
	margin: 3rem auto 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	max-width: 800px;
}

form.nospace {
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

form > .row > p {
	display: block;
	margin: 2px 0;
	padding: 0 6px 0 0;
	line-height: 1;
}

input {
	margin-bottom: 8px;
}

form textarea,
input[type="text"],
form input[type="number"],
input[type="email"] {
	padding: .25rem;
	background-color: #fff;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1) inset, 0 0 4px 0 rgba(0, 0, 0, 0.1) inset;
	border: 1px solid rgba(31, 31, 31, 0.4);
	border-radius: 2px;
	transition: background-color .3s ease, box-shadow .3s ease;
}

form textarea,
form input[type="text"],
form input[type="number"],
form input[type="email"] {
	width: 100%;
}

form textarea:focus,
input[type="text"]:focus,
form input[type="number"]:focus,
input[type="email"]:focus {
	border-color: rgba(200, 0, 0, 1);
	box-shadow: 0 0 4px 0 rgba(200, 0, 0, .1) inset, 0 0 4px 0 rgba(200, 0, 0, .1) inset;
}

input[type="checkbox"] {
	position: relative;
	top: -1px;
	width: 13px;
	height: 13px;
	margin: 0 8px 0 0;
	padding: 0;
	vertical-align: bottom;
}

label {
	display: block;
	margin-bottom: 2px;
	font-size: 80%;
	text-transform: uppercase;
}

label.space {
	margin: 0.6em 0 1em;
	padding-left: 15px;
	text-indent: -15px;
}

.btn {
	position: relative;
	display: block;
	z-index: 1;
	cursor: pointer;
	overflow: hidden;
	width: 300px;
	max-width: 98%;
	margin: 0.5rem auto;
	padding: .8rem;
	color: rgba(31, 31, 31, 0.7);
	font-size: 90%;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	background-color: rgba(0, 0, 0, .1);
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1) inset, 0 0 4px 0 rgba(0, 0, 0, .1) inset;
	border: none;
	border-radius: 2px;
	transition: color .3s ease;
}

.btn.btn-default {
	color: rgba(255, 255, 255, 1);
}

.btn:hover {
	color: rgba(255, 255, 255, 1);
}

.btn.btn-default:hover {
	color: rgba(31, 31, 31, 0.7);
}

.btn::after {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	height: 0%;
	width: 100%;
	background-color: rgba(200, 0, 0, 1);
	transition: height 0.3s ease 0s;
}

.btn.btn-default::after {
	height: 100%;
}

.btn:hover::after {
	height: 100%;
}

.btn.btn-default:hover::after {
	height: 0%;
}

.grp-transfer-outer {
	display: flex;
}

.grp-transfer {
	margin: auto;
}

.grp-amount,
.grp-interval {
	margin: 0 auto 16px;
}

.grp-amount > input,
.grp-interval > input {
	display: none;
}

.grp-amount > label,
.grp-interval > label {
	display: block;
	width: auto;
	margin: 6px;
	border-radius: 2px;
}

.grp-amount > label {
	padding: 8px;
	color: rgba(31, 31, 31, 0.7);
	font-size: 1rem !important;
	font-weight: bold;
	background-color: rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1) inset, 0 0 4px 0 rgba(0, 0, 0, 0.1) inset;
	transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.grp-amount > label::after {
	content: "€";
	margin-left: 3px;
}

.grp-amount > input[type="radio"]:checked + label,
.grp-amount > input[type="radio"] + label:hover {
	color: rgba(255, 255, 255, 1);
	background-color: rgba(200, 0, 0, 1);
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0) inset, 0 0 4px 0 rgba(0, 0, 0, 0) inset;
}

.grp-interval > label {
	padding: 2px;
	cursor: pointer;
	text-transform: uppercase;
	border-bottom: 2px solid rgba(200, 0, 0, 0);
	transition: all .3s ease;
}

.grp-interval > input[type="radio"]:checked + label,
.grp-interval > input[type="radio"] + label:hover {
	padding: 2px 4px;
	color: rgba(255, 255, 255, 1);
	font-weight: bold;
	background-color: rgba(200, 0, 0, 1);
}

.amount-input {
	width: 50px;
	margin: 0 !important;
	padding: 0;
	color: rgba(31, 31, 31, 0.7);
	font-weight: bold;
	background-color: rgba(0, 0, 0, 0);
	border: none;
	transition: color .3s ease;
}

input[type="radio"]:checked + label > .amount-input,
input[type="radio"] + label:hover > .amount-input {
	color: rgba(255, 255, 255, 1);
}

.required > label::after {
	content: " *";
	color: rgba(200, 0, 0, 1);
}





/* OTHER */

.hidden {
	display: none !important;
	margin: 0 !important;
}

.noselect {
	-webkit-touch-callout: none !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
}

span.center,
p.center,
div.center > p {
	text-align: center;
}

.small {
	font-size: 80%;
}

.border {
	margin: 2rem auto;
	padding: 1rem;
	border: 3px solid rgba(31, 31, 31, 0.7);
	border-radius: 2px;
}

#donationbar {
	position: relative;
	height: 50px;
	margin: 2em auto 1em;
	text-align: center;
	color: #fff;
	font-weight: bold;
	background-color: #00a5eb;
	border-radius: 2px;
	overflow: hidden;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3), 0 0 8px 0 rgba(0, 0, 0, 0.3);
}

#donationbar div {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0px;
	background-color: #00466e;
	border-radius: 0 8px 8px 0;
	transition: width 2s ease;
}

#donationbar span {
	z-index: 10;
}

#campaign ul {
	margin-left: 1.5em;
	padding: 1ex;
}



/* PACKAGES */

#packages > a {
	display: block;
	color: inherit;
	border: none;
}

#packages > a:hover {
	border: none;
}

#packages .column {
	margin-top: 1.5em;
	padding-top: 2em;
	padding-bottom: 1.5em;
	background-color: #EEE;
	border-bottom: 2px solid RGBA(200, 0, 0, 0);
	border-radius: 2px;
	text-align: center;
	transition: all 0.3s ease;
}

#packages .column:hover {
	border-bottom: 2px solid RGBA(200, 0, 0, 1);
	transform: translateY(-0.8em);
}

#packages .amount,
#sponsors .amount {
	font-weight: bold;
	font-size: 1.4rem;
}

#packages .amount {
	margin-top: 1em;
}

#packages .amount::after,
#sponsors .amount::after {
	content: "€";
	margin-left: 0.2em;
}

#packages ul {
	max-width: 75%;
	margin: auto;
	text-align: left;
}

#packages li {
	margin: 1rem 0.4rem;
	list-style: none;
	text-indent: -15px;
}

#packages li::before {
	content: "⏹";
	margin-right: 0.2em;
	color: #00466e;
	vertical-align: bottom;
}





/* SPONSORS */

#sponsors > .group {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

#sponsors .box {
	display: block;
	position: relative;
	width: 350px;
	max-width: 80vw;
	margin: 16px 16px 0 0;
	padding: 1rem 0.5rem;
	text-align: center;
	color: inherit;
	background-color: #EEE;
	border: none;
	border-radius: 2px;
}

#sponsors .box p {
	font-size: 85%;
}

#sponsors .box:hover {
	border: none;
}

#sponsors h5 {
	width: 100%;
	padding: .2rem .5rem .5rem;
	color: inherit;
}

#sponsors img {
	width: auto;
	max-width: 100%;
	margin: auto;
}

#sponsors .amount {
	width: 100%;
	padding: .2rem;
}

#sponsors p {
	margin: 1rem 0;
	padding: 0 1rem;
}

div.shrink {
	margin: auto;
	width: 100%;
}

@media screen and (min-width: 992px) {
	div.shrink {
		width: 90%;
	}
}

@media screen and (min-width: 1200px) {
	div.shrink {
		width: 75%;
	}
}

img.profile {
	width: 250px;
	max-width: 100%;
}





/* slick specific */

.slick-slider {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.slick-list.draggable {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
