/* Define colors and default sizes */
:root {
	--text-primary: #424242;
	--primary: #62979c;
	--primary-dark: #37597a;
	--primary-light: #97d1a9;
	--primary-alt: #b08358;
	--neutral-light: #d9d9d9;
	--accent-1: #d1cec8;
	--accent-1-dark: #9b9388;
	--accent-2: #c3bab6;
	--accent-2-dark: #94806d;
	--accent-3: #cba188;
	--accent-3-dark: #76695c;
	--accent-3-darker: #5a504b;
	--error: rgb(253, 146, 85);
	--success: #5dbd54;
	--accent-4: #e17984;
	--accent-5: #FFD2AC;

	--max-width: 840px;
	--leaderboard-width: 640px;
	--animate-duration: 5000ms;
  --animate-delay: 0.9s;
  --max-width-xl: 1400px;
  --max-width-lg: 1200px;
  --max-width-md: 1000px;
  --max-width-sm: 840px;
  --padding-x: 40px;
}

/* CSS RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Global Styles */

html, body{
	width: 100%;
	height: 100%;
}

body {
  font-family: 'Lato', sans-serif;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.8em;
}

h3 {
	font-size: 1.6em;
}

h4 {
	font-size: 1.4em;
}

h1, h2, h3, h4, strong {
	font-weight: 700;
}

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

input, textarea, select {
	border-radius: 10px;
	padding: 10px;
	border: 1px solid #333;
	font-size: 1.2em;
}

input[type="submit"], button {
	font-size: 1.3em;
	padding: 10px 20px;
	background-color: var(--primary);
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
input[type="submit"]:hover {
	background-color: var(--primary-dark);
}
/* Reusable utilities */
.block {
	display: block;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.bullets li {
	list-style-type: disc;
	margin-bottom: 1em;
	line-height: 1.2em;
}

.bt-1 {
	border-top: 1px dotted #999;
}

.bottom-border, .bb-1 {
	border-bottom: 1px solid #e2e2e2;
}

.mw-1 {
	max-width: 420px;
	margin: auto;
	width: calc(100% - 40px);
}

.mw-2 {
	max-width: 640px;
	margin: auto;
	width: calc(100% - 40px);
}

.mw-3 {
	max-width: 780px;
	margin: auto;
	width: calc(100% - 40px);
}

.mw-4 {
	max-width: 900px;
	margin: auto;
	width: calc(100% - 40px);
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-05 {
	margin-bottom: 10px !important;
}

.mb-1 {
	margin-bottom: 20px !important;
}

.mb-2 {
	margin-bottom: 40px !important;
}

.mt-05 {
	margin-top: 10px !important;
}

.mt-1 {
	margin-top: 20px !important;
}

.mt-2 {
	margin-top: 40px !important;
}

.p-1 {
	padding: 10px !important;;
}

.p-2 {
	padding: 20px !important;
}

.p-05 {
	padding: 5px !important;
}

.pt-05 {
	padding-top: 10px;
}

.pt-1 {
	padding-top: 20px;
}

.pt-2 {
	padding-top: 40px;
}

.pb-05 {	
	padding-bottom: 5px;
}

.pb-1 {
	padding-bottom: 10px;
}

.pb-2 {
	padding-bottom: 20px;
}

.pb-4 {
	padding-bottom: 40px;
}

.mh-1 {
	min-height: calc(100svh - 320px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	width: 100%;
}

.mh-2 {
	min-height: calc(100svh - 420px);
	display: flex;
	justify-content: center;
	align-items: center;
}

.fs-08 {
	font-size: 0.8em;
}

.fs-09 {
	font-size: 0.9em;
}

.fs-11 {
	font-size: 1.1em;
}

.fs-12 {
	font-size: 1.2em;
}

.fs-13 {
	font-size: 1.3em;
}

.fs-14 {
	font-size: 1.4em;
}

.bg-1 {
	background-color: var(--accent-1) !important;
}

.bg-2 {
	background-color: var(--accent-2) !important;
}

.bg-3 {
	background-color: var(--accent-3) !important;
}

.bg-red {
	background-color: var(--accent-4) !important;
}

.bg-green {
	background-color: var(--primary) !important;
}

.bg-1 > .btn {
	background-color: var(--accent-1-dark) !important;
	color:#fff;
}

.lh-1 {
	line-height: 1em;
}

.lh-15 {
	line-height: 1.5em;
}

.lh-2 {
	line-height: 2em !important;
}

.flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

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

.min-table {
	font-size: 0.9em;
}

.min-table tr, .min-table td {
	padding: 2px;
	border:1px solid #ccc;
}

.min-table td {
	max-width: 200px;
	line-break: anywhere;
}

.box-shadow, .bs-1 {
	box-shadow: 4px 21px 29px -28px rgba(0,0,0,0.75);
-webkit-box-shadow: 4px 21px 29px -28px rgba(0,0,0,0.75);
-moz-box-shadow: 4px 21px 29px -28px rgba(0,0,0,0.75);
}

.bs-2 {
	box-shadow: 2px 10px 47px -8px rgba(0,0,0,0.83);
	-webkit-box-shadow: 2px 10px 47px -8px rgba(0,0,0,0.83);
	-moz-box-shadow: 2px 10px 47px -8px rgba(0,0,0,0.83);
}

.col-2 {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
}

.col-2-1 {
	display: grid;
	grid-template-columns: 2fr 1fr;
	align-items: start;
}	

.col-3 {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
}

.col-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.no-break {
	grid-template-columns: 1fr 1fr !important;
}

.w-75 {
    width: 75%;
}

.span-2 {
  grid-column: 1 / -1;
}

.form-group label {
	margin-bottom: 4px;
	text-transform: uppercase;
	color: #444;
	letter-spacing: 1px;
	font-weight: 700;
	font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
	font-size: 1.1em;
	padding: 10px;
	border: 1px solid #ccc;
	background-color: #fff;
}

.form-group textarea {
	width: calc(100% - 20px);
	height: 200px;
	border: 1px solid #ccc;
	background-color: #fff;
}

.form-group.col-2 {
	display: grid;
	grid-template-columns: 1fr 3fr !important;
	align-items: start;
}

.form-group > div.col-2 {
	display: grid;
	grid-template-columns: 2fr 1fr !important;
	align-items: start;
}

.form-group .bb-1 {
	border-bottom: 1px dotted #ccc;
}

.form-col-13 {
	display: grid;
	grid-template-columns: 1fr 3fr !important;
	align-items: start;
}

.form-col-2 {
	display: grid;
	grid-template-columns: 1fr 1fr !important;
}

.img-square {
width: 100%;
padding-top: 100%;
background-color: rgba(200,200,200,0.1);
border-radius: 5px;
}

.img-square > span {
	display: none;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.top-bar {
	background-color: var(--primary);
	color: #fff;
	padding: 10px 0;
}

.top-bar p {
	font-size: 0.8em;
}

.top-bar p a {
	color: #fff;
	font-weight: bold;
}



.content {
	padding-bottom: var(--padding-x);
}
.content p, .content ul {
	margin-bottom: 2em;
	line-height: 1.5em;
}

.content h1, .content h2, .content h3, .content h4, .content h5 {
	margin-bottom: 1em;
	font-weight: 700;
}

.content ul {
	padding-left: 2em;
	list-style-type: disc;
}

.content ul li {
	margin-bottom: 0.75em;
}

.btn {
	display: inline-block;
	border-radius: 10px;
	background: var(--accent-1-dark);
	color: #fff;
	padding: 8px 16px;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.1em;
	box-shadow: 0px 12px 19px -11px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 12px 19px -11px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 12px 19px -11px rgba(0,0,0,0.2);
	transition: box-shadow 0.5s, background-color 0.5s;
}

.btn:hover {
	box-shadow: -2px 0px 5px -3px rgba(0,0,0,0.05);
	-webkit-box-shadow: -2px 0px 5px -3px rgba(0,0,0,0.05);
	-moz-box-shadow: -2px 0px 5px -3px rgba(0,0,0,0.05);
	transition: box-shadow 0.5s, background-color 0.5s;
	background: var(--primary-light);
	color: #fff;
}

.btn-alt {
	background-color: var(--primary-light);
	color: #fff;
	text-shadow: 0px 1px 2px rgba(21, 68, 32, 0.9);
	box-shadow: 0px 12px 19px -11px rgba(0,0,0,0.2), inset 0px 0px 8px rgba(151, 209, 169, 0.2);
}

.btn-alt:hover {
	background-color: var(--accent-3-darker);
	color: #fff;
}

.btn-small, .btn-sm {
	font-size: 0.9em;
	padding: 4px 12px;
}

.btn-large {
	font-size: 2.8em;
	border-radius: 100px;
	padding: 15px 30px;
}

.btn-disabled {
	background-color: var(--neutral-light);
}

.btn-disabled:hover {
	background-color: var(--neutral-light);
}

.btn-donate, #menu ul li a.btn-donate {
	font-size: 1.2em;
	border: 2px solid var(--primary);
  color:#111;
  font-weight:bold;
  border-radius: 30px;
  background: transparent;
	padding: 0 20px;
	margin-top: 2px;
}

.btn-join:hover {
	color: var(--primary-dark);
	background-color: var(--accent-3);
}

.error {
	line-height: 1.5em;
	color: var(--error);
	font-weight: bold;
}

.color-text {
	color: var(--primary);
}

.red-text {
	color: var(--accent-4);
}

.green-text {
	color: var(--primary);
}

.white-text {
	color: #fff;
}	

.page-header, .page-header-title {
	color: var(--accent-3);
	text-transform: uppercase;
	letter-spacing: 0 !important;
	font-size: 2.2em !important;
	text-shadow: none !important;
}

.page-header-title {
	line-height: 200px;
}

.animate-in-left {
  opacity: 0;
}

.animate-up {
  opacity: 0;
}

.hide {
	display: none !important;
}

.w-80 {
	width: 80%;
	margin: auto;
}

.error-message {
	line-height: 3em;
	text-align: center;
	font-size: 1.1em;
	color: #bd2727;
}

.unsee {
	position: absolute;	left: -5000px;
}

.form-item {
	margin-bottom: 1em;
}

.form-item > label {
	display: block;
	margin-bottom: 4px;
	text-transform: uppercase;
	color: #444;
	letter-spacing: 3px;
}

.card {
	background-color: #f9f9f9;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 12px 19px -11px rgba(0,0,0,0.4);
	border: 1px solid #e2e2e2;
}

.card-alt {
	background-color: var(--neutral-light);
	border: 1px solid var(--accent-1);
}

.card.flex {
  flex-wrap: wrap;
}

.card.flex li {
  flex: 1 0 auto;
  white-space: nowrap;
}

.mini-card-title {
	font-size: 0.8em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--accent-3);
	position:relative;
	top: 10px;
	margin: 0 20px;
}

.gap-05 {
	gap: 5px;
}	

.gap-1 {
	gap: 10px;
}	

.gap-2 {
	gap: 20px;
}


/* Table utilities */
.table-auto {
  width: 100%;
  margin-bottom: 1rem;
}

.table-header-group {
  background-color: var(--neutral-light);
}

.table-row-group {
  background-color: #fff;
}

.table-row:nth-child(even) {
  background-color: rgba(0,0,0,0.02);
}

.table-cell {
  padding: 12px;
  border-bottom: 1px solid var(--neutral-light);
}

.table-header-cell {
  padding: 12px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--neutral-light);
}

.table-hover tr:hover {
  background-color: rgba(93, 189, 84, 0.05);
}

.table-striped tr:nth-child(odd) {
  background-color: rgba(0,0,0,0.02);
}

.table-compact td, 
.table-compact th {
  padding: 8px;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid var(--neutral-light);
}

.question-group > .question {
	font-weight: 700;
	font-size: 1.1eml
}

.profile-pic, #profile-pic {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
		display: block;
		margin: auto;
}

.profile-img {
    width: 100%;
    height: 100%;
    background: var(--neutral-light) url('../img/default-profile.png') center center no-repeat;
    background-size: cover;
}

.alert {
	padding: 10px;
	border-radius: 12px;
	color: var(--error);
	border: 1px solid;
	border-color: var(--error);
	font-weight: bold;
	text-align: center;
}

.alert-success {
	border-color: var(--success);
	color: var(--success);
}


/* Page content */

#wrapper {
	background-size: contain;
	min-height: 100vh;
	width: 100%;
	margin: auto;
}

#header {
	display: grid;
	grid-template-columns: 340px 1fr;
	width: calc(100% - var(--padding-x) * 2);
	margin: auto;
	max-width: var(--max-width-xl);
	height: 40px;
	margin-top: 20px;
}

#logo {
	padding: 4px 0 4px 0px;
}

#logo, #logo h1, #logo h1 a {
	width: 250px;
	height: 40px;
}

#logo h1 a {
	display: block;
	background: url('../img/logo.png') left center no-repeat;
	background-size: contain;
}

#logo h1 a span {
	position: absolute;
	left: -5000px;
}

#menu ul {
	line-height: 38px;
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	padding-right: 18px;
}

#menu ul li a {
	display: inline-block;
	padding: 4px 20px;
	text-decoration: none;
	font-weight: 600;
	color: var(--text-primary);
}

#mobile-menu {
	z-index: 99;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100svh;
	background-color: var(--primary);
}

#mobile-menu ul {
	padding: 120px 20px 20px 20px;
}

#mobile-menu ul li {
	line-height: 2.5em;
	font-size: 1.8em;
	margin-bottom:10px;
	text-align: center;
}

#mobile-menu ul li a {
	text-decoration: none;
	color: #fff;
}

#mobile-menu-icon {
	display: none;
}

#mobile-menu-icon span {
	position: absolute;
	left: -5000px;
}

#mobile-menu-close {
	width: 24px;
	height: 24px;
	position: absolute;
	background: url(../img/mobile-menu-close.png) no-repeat center center;
	background-size: contain;
	margin-top: 45px;
	right: 60px;
	text-align: right;
}

#mobile-menu-close span {
	position: absolute;
	left: -5000px;
}

#mobile-menu ul li a.menu-btn {
	border-radius: 10px;
	padding: 10px 18px;
	color: #fff;
	font-weight: bold;
}

#menu ul li a.btn {
	padding: 0 15px;
	font-size: 1em;
	background-color: var(--primary);
	color: #fff;
	margin-top: 3px;
}

#user-subnav {
		width: calc(100% - var(--padding-x) * 2);
		max-width: var(--max-width-xl);
		margin: auto;
		padding-right: 50px;
}

#user-subnav ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}



.menu-login-btn {
	margin-right: 10px;
}

#footer {
	background-color: var(--neutral-light);
	padding: 20px;
}

#footer-grid, .copyright {
    max-width: var(--max-width-xl);
    margin: auto;
    width: calc(100% - var(--padding-x) * 2);
}

#footer-logo a {
	display: block;
	width: 150px;
	height: 20px;
	background: url('../img/logo.png') left center no-repeat;
	background-size: contain;
	border: none !important;
}

#footer-logo a span {
	position: absolute;
	left: -5000px;
}

#footer-menu > div {
	display: grid;
	grid-template-columns: minmax(150px, 150px) 1fr 1fr;
}

#footer a {
	font-size: 0.9em;
	line-height: 1.5em;
	color: var(--text-primary);
	text-decoration: none;
	border-bottom: 1px solid var(--accent-3-dark);
}

.copyright {
	color: var(--accent-3-dark);
	font-size: 0.8em;
}

.content form.ml-form {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 20px;
  background-color: #f6f6f6;
  text-align: center;
  max-width: 400px;
  margin: auto;
  margin-bottom: 40px;
}

.content form ul {
	list-style-type: none;
	padding-left: 0;
}

.page-header-img {
	margin: auto;
	border-radius: 14px;
	width: 100%;
	height: 0;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
	margin-bottom: 50px;
	max-width: 840px;
	background-size: cover;
	box-shadow: 2px -2px 33px -15px rgba(0,0,0,0.66) inset;
	-webkit-box-shadow: 2px -2px 33px -15px rgba(0,0,0,0.66) inset;
	-moz-box-shadow: 2px -2px 33px -15px rgba(0,0,0,0.66) inset;
	background-position: center center !important;
}

/* Cookie consent popup */

#cookie-consent {
    background-color: rgba(50,50,50,0.9);
    position: fixed;
    z-index: 99;
    width: calc(100vw - 80px);
    bottom: 0;
    padding: 20px 40px;
    font-size: 0.8em;
    color: #fff;
}

#inner-consent {
	display: grid;
	grid-template-columns: 70% 20%;
	grid-gap: 10%;
}



#mlpopup {
	position: fixed;
	width: 300px;
	left: -5000px;
	top: 30%;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 3px 10px 17px -3px rgba(0,0,0,0.7);
	-webkit-box-shadow: 3px 10px 17px -3px rgba(0,0,0,0.7);
	-moz-box-shadow: 3px 10px 17px -3px rgba(0,0,0,0.7);
	border: 2px solid #fff;
	background: rgb(219,219,219);
}

#mlpopup.mlpopup-position {
	left: calc(50% - 170px) !important;
}

#mlpopup-close {
	margin-bottom: 20px;
	color: #ccc;
	font-size: 0.9em;
	text-align: right;
}

#mlpopup-close a {
	font-weight: bold;
	text-decoration: none;
	border: 1px solid var(--primary);
	padding: 4px 8px;
	border-radius: 5px;
}

#mlpopup-close a:hover {
	font-weight: bold;
	text-decoration: none;
	border: 1px solid #fff;
	background-color: var(--primary-light);
	color: #fff;
	padding: 4px 8px;
	border-radius: 10px;
}

#mlpopup-inner h4 {
	margin-bottom: 20px;
	font-size: 1.8em;
	text-align: center;
} 

#mlpopup-inner p {
	text-align: center;
	line-height: 1.5em;
	width: 95%;
	margin: auto;
	margin-bottom: 20px;
}

#mlpopup-inner form {
	text-align: center;
}

#mlpopup-inner form input[type="email"] {
  font-family: Arial, sans-serif;
  padding: 10px;
  margin: 5px 0 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* CSS animations */

.animate__animated.animate__fadeInUp {
  --animate-duration: 2s;
}


/* ---------------------------------------------------------------------- */

@media screen and (max-width: 1400px) {
	
	#donation-options > div {
		grid-template-columns: 1fr 1fr 1fr;
	}

	:root {
		--max-width-xl: var(--max-width-lg);
	}

}

@media screen and (max-width: 1150px) {


	#menu {
		display: none;
	}

	#mobile-menu-icon {
		display: block;
		height: 24px;
		width: 24px;
		background: url(../img/mobile-menu-icon.png) no-repeat center center;
		background-size: contain;
		position: absolute;
		margin-top:11px;
		right: 60px;
	}
}

@media screen and (min-width: 1000px) {
	
	#wrapper {
	background-size: contain;
	}

}

@media screen and (max-width: 900px) {
	

	#cta-signup .btn {
		background-color: var(--accent-4) !important;
	}

}

@media only screen and (max-width: 860px) {

	#header {
		margin: auto;
		width: calc(100% - 40px);
	}

	.col-2 {
		grid-template-columns: 1fr;
	}

	#footer-menu > div {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.col-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .col-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	

}

@media screen and (max-width: 580px) {

	#wrapper {
		background-size: 150% auto;
	}

	#footer-menu {
		text-align: left;
	}

	#google_translate_element {
		margin-top: 10px;
	}

	#content {
		width: calc(100% - 40px);
		padding: 20px 20px 20px 20px;
	}

	.mw-3 {
		width: calc(100% - 20px);
	}
	
	.col-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .col-4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

	.no-break {
		grid-template-columns: auto auto !important;
	}

	.card {
		padding: 14px 20px;
	}

	.content > div.mw-3 {
		width: calc(100% - 20px);
	}

	.content h2 {
		font-size: 1.4em;
	}

	.content h3 {
		font-size: 1.2em;
	}

	.content h4 {
		font-size: 1.1em;
	}

	.content h5 {
		font-size: 1em;
	}

	.content .mw-4 {
		width: 100%;
	}

}

@media screen and (max-width: 440px) {
	#logo {
		width: 200px;
		padding-left: 0;
	}

	#mobile-menu-icon {
		right: 46px;
	}

	#mobile-menu-close {
		right: 48px;
		margin-top: 45px;
	}

	.

}

@media screen and (max-width: 380px) {

	#logo, #logo h1, #logo h1 a {
		width: 230px;
	}

	#logo h1 a {
		background-size: contain;
	}

}

@media screen and (max-width: 340px) {

	#wrapper {
		font-size: 0.9em;
		background-position: top left;
	}

	#header {
		grid-template-columns: 200px 1fr;
	}

	#logo, #logo h1, #logo h1 a {
		width: 200px;
	}

	#logo h1 a {
		background-size: contain;
	}

	.mw-1 {
		width: calc(100% - 40px);
	}

}