/**
 *  Variables
*/
:root {
	--color-red: #9F1818;
	--color-blue: 0, 130, 201;
	--color-dark-blue: 41, 44, 105;
	--color-yellow: 248, 221, 151;
	--color-purple: 172, 100, 234;
	--color-pink: 254, 130, 142;
	--color-lavender: 243, 229, 255;
}

/**
 *  Reset
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: border-box;
}

/**
 *  Base elements
*/
html {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
	background-color: rgba(var(--color-lavender));
	font-size: 24px;
	font-family: "Montserrat", sans-serif;
	line-height: 1.3;
	max-width: 100vw;
	overflow-x: hidden;
	position: relative;
}

@media(max-width: 768px) {
    body {
        font-size: 18px;
    }
}

h2 {
	font-size: 1.875em;
	font-weight: 400;
	padding-bottom: .5em;
	color: rgba(var(--color-purple));
	font-family: arial-rounded-mt-pro, sans-serif;
}

h3 {
	font-size: 1.5em;
	font-weight: 600;
	padding-bottom: .5em;
	color: rgba(var(--color-blue));
}

p {
    line-height: 1.65;
    font-size: 1.125rem;
	margin-bottom: 1.666em;
}

a {
    color: white;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/**
 *  Misc.
*/

.clearfix {
    zoom: 1;
}

.clearfix:before,
.clearfix:after {
    content: ' ';
    display: table;
}

.clearfix:after {
    clear: both;
}

.visually-hide {
    position: absolute;
    left: -999em;
    top: 0;
}

.hide-on-mobile {
	display: block;
}

@media(max-width: 768px) {
	.hide-on-mobile {
		display: none;
	}
}

.hide-on-desktop {
	display: none;
}

@media(max-width: 768px) {
	.hide-on-desktop {
		display: block;
	}
}

.text-center {
	text-align: center;
}

.btn {
    font-size: .866em;
    background-color: rgba(var(--color-blue));
    padding: 14px 93px;
    border-radius: 26px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
	text-transform: uppercase;
    position: relative;
    cursor: pointer;
    color: white;
    border-radius: 3em;
    display: inline-block;
    transition: .3s;
}

@media(max-width: 768px) {
	.btn {
		padding-inline: 1em;
		width: 100%;
	}
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-pause:before {
	font-family: "fontello";
	content: "\e800";
}

.icon-play:before {
	font-family: "fontello";
	content: "\e801";
}

.btn:hover {
	background-color: rgba(189, 130, 142);
	transition: .3s;
}

/**
 *  Vendor Overrides
*/
.container {
    max-width: 1400px;
}

.row {
    margin-top: 0;
}

/**
 *  Header
*/
.nav-menu {
	background-image: url("/images/global/bkg-red.jpg");
	background-color: rgba(107, 37, 35, 1);
	color: rgba(255, 255, 255, 1);
	width: 100%;
	height: 100%;
	position: absolute;
	top: -100%;
	left: 0;
	z-index: -1;
	opacity: 0;
	font-size: 16px;
}

.nav-menu ul {
	padding-left: 0;
	width: 100%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.nav-menu li {
	text-align: center;
}

.nav-menu.open ul {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	-webkit-column-width: 100%;
	-moz-column-width: 100%;
	column-width: 100%;
}

.nav-menu.kc {
	z-index: 210 !important;
}

.nav-menu.kc ul {
	width: 90%;
	margin: 0 5%;
}

.nav-menu a:link,
.nav-menu a:visited {
	color: rgba(255, 255, 255, 1);
	font-size: 4em;
	line-height: 1.3em;
	text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:active,
.nav-menu a:focus,
.nav-menu a.active {
	color: rgba(254, 57, 57, 1);
}

.nav-menu a.active:hover {
	color: rgba(194, 44, 44, 1);
}

.nav-menu a.button:link,
.nav-menu a.button:visited {
	color: rgba(255, 255, 255, 1);
	font-size: 1em;
	line-height: 1.3em;
}

.mobile-menu {
	background-color: transparent;
	height: 70px;
	position: relative;
}

.mobile-menu > a {
	position: absolute;
	left: 10px;
	top: 1.3em;
	z-index: 200;
}

.mobile-button-wrapper {
    display: block;
    position: relative;
    top: 1em;
    width: fit-content;
    /*margin-inline: auto 4em;*/
	float: right;
	margin-right: 30px;
	/* -webkit-filter: drop-shadow(2px 2px 4px #5a5a5a);
  	filter: drop-shadow(2px 2px 4px #5a5a5a);*/
	z-index: 207;
}

.mobile-button-wrapper::after {
	color: rgba(0, 0, 0, 1);
	content: 'Menu';
	font-size: 0.75em;
	font-weight: 400;
	line-height: 1em;
	text-transform: uppercase;
	opacity: 1;
	transition: opacity 0.3s ease 0s;
	position: absolute;
	left: 6px;
	top: 48px;
	display: block;
	height: 20px;
	width: 100%;
	z-index: 210;
	letter-spacing: 1px;
	margin-left: 33px;
}

.mobile-button-wrapper.open {
	/*position: fixed;*/
	z-index: 210;
}

.mobile-button-wrapper.open:after {
	opacity: 0;
}

.menu-toggle {
	display: block;
	position: relative;
	overflow: visible;
	margin: 0px 0 0 23px;
	padding: 0;
	width: 50px;
	height: 50px;
	font-size: 0;
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
	z-index: 206;
}

.menu-toggle:focus {
	outline: none;
}

.menu-toggle span {
	display: block;
	position: absolute;
	top: 23px;
	left: 15px;
	right: -5px;
	height: 4px;
	background: rgba(0, 0, 0, 1);
}

.menu-toggle span::before,
.menu-toggle span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: rgba(0, 0, 0, 1);
	content: "";
}

.open .menu-toggle span,
.open .menu-toggle span::before,
.open .menu-toggle span::after{
	background-color: rgba(255, 255, 255, 1);
}

.menu-toggle span::before {
	top: -13px;
}

.menu-toggle span::after {
	bottom: -13px;
}

.menu-toggle-tox {
	background-color: transparent;
}

.menu-toggle-tox span {
	-webkit-transition: background 0s 0.3s;
	transition: background 0s 0.3s;
}

.menu-toggle-tox span::before,
.menu-toggle-tox span::after {
	-webkit-transition-duration: 0.3s, 0.3s;
	transition-duration: 0.3s, 0.3s;
	-webkit-transition-delay: 0.3s, 0s;
	transition-delay: 0.3s, 0s;
}

.menu-toggle-tox span::before {
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, transform;
}

.menu-toggle-tox span::after {
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
}

.menu-toggle-tox.active {
	background-color: transparent;
}

.menu-toggle-tox.active span {
	background: none;
}

.menu-toggle-tox.active span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu-toggle-tox.active span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu-toggle-tox.active span::before,
.menu-toggle-tox.active span::after {
	-webkit-transition-delay: 0s, 0.3s;
	transition-delay: 0s, 0.3s;
}

.menu-wrapper {
	position: absolute;
	left: 32em;
	top: 1.5em;
	font-size: 1.25em;
	color: rgba(255, 255, 255, 1);
	border-left: 2px solid rgba(255, 255, 255, 1);
	padding-left: 0.75em;
	z-index: 200;
}

.menu-wrapper > a {
	color: #FFF;
}

.menu-wrapper > a:hover {
	color: rgba(181, 35, 35, 1);
}

body > header {
	position: absolute;
	inset: 0 0 auto;
	font-size: 16px;
}

body > header .mobile-menu .logo {
	/* width: 260px; */
	float: left;
	/*margin-top: 15px;
	margin-left: 36px;
	-webkit-filter: drop-shadow(2px 2px 4px #5a5a5a);
  	filter: drop-shadow(2px 2px 4px #5a5a5a); */
}

body > header .caption {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.825em;
	font-style: italic;
	position: absolute;
	bottom: 0;
	right: 2em;
	line-height: 1.25em;
	z-index: 200;
}

/**
 *  Hero Section
*/
.hero-section {
	position: relative;
	width: 100%;
	padding: 2em;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: rgba(var(--color-lavender));
	border-bottom: 30px solid rgba(var(--color-dark-blue));
}

	.hero-section img {
		max-height: 350px;
	}

@media(max-width: 768px) {
    .hero-section {
        max-height: 250px;
    }
}

/**
 *  Beneficiary Section
*/

.beneficiary-section {
	position: relative;
	min-height: 75vh;
	padding-top: 80px;
	overflow: hidden;
	background-color: white;
}

@media(max-width: 768px) {
	.beneficiary-section {
		display: flex;
		flex-direction: column-reverse;
	}
}

.beneficiary-section > div {
	position: relative;
	z-index: 1;
}

.beneficiary-section:after {
	content: '';
	height: 350px;
	width: 350px;
	background-image: url(/images/yule-store/2025/tea-stain-1.png);
	position: absolute;
	pointer-events: none;
	right: 0;
	top: calc(73% - 250px);
	background-size: contain;
	opacity: .4;
}

@media(max-width: 768px) {
	.beneficiary-section:after {
		content: none;
	}
}

.beneficiary-section video {
	position: absolute;
	min-width: 100%;
	inset: 50% 0 0 50%;
	min-height: 100.1%;
	max-width: none;
	transform: translate(-50%, -50%);
}

@media(max-width: 768px) {
	.beneficiary-section video {
		position: static;
		transform: unset;
		min-height: none;
		height: auto;
	}
}

.beneficiary-section .play-pause {
	position: absolute;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	font-size: 1em;
}

/**
 *  Donations Section
*/
.donation-section {
	padding-block: 2em;
	background-color: white;
	border-top: 30px solid rgba(var(--color-dark-blue));
	position: relative;
}

.donation-section:before{
	content: '';
	height: 350px;
	width: 350px;
	background-image: url(/images/yule-store/2025/tea-stain-1.png);
	position: absolute;
	pointer-events: none;
	left: 20px;
	top: 20px;
	background-size: contain;
	opacity: .4;
}

.donation-section .video-wrapper {
	margin: auto;
	float: none;
}

.donation-section .donation-actions {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

/**
 *  Chart Section
*/
.chart-section {
	background-color: rgba(var(--color-lavender));
	padding-block: 3em 5em;
}

.chart-section .row > div{
	margin: auto;
	float: none;
}

.chart-section .raised-graph {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}

@media(max-width: 768px) {
	.chart-section .raised-graph > div {
		flex: 0 0 100%;
	}
}

.chart-section .raised {
	color: rgba(var(--color-blue));
	text-transform: uppercase;
	font-weight: 500;
}

.chart-section .raised-amount {
	font-size: 3.666em;
	margin: 0 .5em 0 0;
}

@media(max-width: 768px) {
    .chart-section .raised-amount {
        margin-block: .5em .25em;
    }
}

.chart-section .raised-precentage {
    font-size: 1em;
	color: rgba(var(--color-blue));
}

@media(max-width: 768px) {
	.chart-section .raised-precentage {
		display: block;
	}
}

.chart-section .raised-graph > div {
	width: auto;
}

@media(max-width: 768px) {
	.chart-section .raised-graph > div {
		width: 100%;
	}
}

.chart-section .raised-graph .chart-wrapper {
	position: relative;
	height: 244px;
	width: 787px;
}

@media(max-width: 768px) {
	.chart-section .raised-graph .chart-wrapper {
		max-width: 100%;
		aspect-ratio: 861/323;
		height: auto;
		top: 20%;
	}
}

.chart-section .raised-graph .chart-wrapper:after{
	content: '';
	position: absolute;
	inset: 35px -15px -65px -15px;
	background-image: url(/images/yule-store/2025/chart-grid.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.chart-section .raised-graph .chart-percentage {
	position: absolute;
	inset: 0 auto 0 0;
	max-width: 100%;
	overflow: hidden;
}

@media(max-width: 768px) {
	.chart-section .raised-graph .chart-percentage {
		top: 20%;
	}
}

.chart-section .raised-graph img {
	display: block;
	position: relative;
	z-index: 1;
	width: 787px;
	max-width: none
}

@media(max-width: 768px) {
	.chart-section .raised-graph img {
		max-width: calc(100vw - 41px);
	}
}


/**
 *  Past Events Section
*/
.past-events-section {
    padding-block: 3.833em;
	background-color: white;
	font-size: 16px;
	position: relative;
	overflow: hidden;
}

.past-events-section:after {
	content: '';
	height: 600px;
	width: 600px;
	background-image: url(/images/yule-store/2025/tea-stain-2.png);
	position: absolute;
	pointer-events: none;
	right: -200px;
	top: 0;
	background-size: contain;
	opacity: .4;
}

@media(max-width: 768px) {
	.past-events-section:after {
		top: calc(50% - 300px);
		right: -400px;
	}
}

.past-events-section h2 {
	color: rgba(var(--color-blue));
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 2em;
}

@media(max-width: 768px) {
	.past-events-section h2 {
		font-size: 1.25em;
	}
}

.past-events-section h3{
	color: black;
	font-weight: 600;
	font-size: 1.25em;
}

.past-events-section .eyebrow{
	color: rgba(var(--color-purple));
	font-weight: 600;
}

.past-events-section header {
    margin-bottom: 0;
}

.past-events-section header p {
	margin-bottom: 0;
}

.past-events-section .past-events > div {
    margin-bottom: 2.666em;
}

.past-events-section .past-events{
	margin-bottom: 0;
}

/**
 *  Footer
*/
footer {
	background-color: rgba(var(--color-dark-blue));
	padding: 4em 3em 3em 3em;
	font-size: 16px;
}

	footer a:link,
	footer a:visited {
		font-weight: 400;
		text-decoration: none;
	}

	footer a:hover,
	footer a:active,
	footer a:focus {
		color: rgba(255, 255, 255, 1);
	}

	footer nav.main {
		width: 60%;
		float: left;
	}

		footer nav.main ul {
			padding: 0;
		}

		footer nav.main li {
			display: inline-block;
			width: 24%;
			padding-bottom: 1em;
		}

	footer nav.social {
		width: 40%;
		float: right;
		text-align: right;
	}

		footer nav.social ul {
			padding: 0;
		}

		footer nav.social li {
			display: inline-block;
		}

		footer nav.social a:link,
		footer nav.social a:visited {
			font-size: 2em;
			display: inline-block;
			margin-left: 12px;
			color: white;
		}

	footer .copyright,
	footer .divisions {
		font-size: 0.75em;
	}

	footer .copyright {
		float: left;
		color: white;
	}

	footer .divisions {
		float: right;
	}

@media(max-width: 768px) {
	.nav-menu ul {
		position: static;
		top: auto;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	.nav-menu a:link,
	.nav-menu a:visited {
		font-size: 3em;
	}

	.hero-area {
		background-size: cover;
		background-position: top right, top center;
	}

		.hero-area .container {
			min-height: 480px;
		}

		.hero-area .content {
			top: 35%;
			width: 90%;
		}

			.hero-area .content h1 {
				font-size: 2em;
			}

	body > header .caption {
		right: 0;
		text-align: center;
		padding: 0 1em;
	}

	body > header .mobile-menu .logo {
		margin-left: 0px;
		margin-top: 5px;
		max-width: 80px;
	}

	.header-bottom > div {
		padding: 2em;
	}

	.header-bottom .column {
		position: static;
		height: auto;
	}

		.header-bottom .column .content-wrapper {
			position: static;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
		}

		.header-bottom .column.third {
			text-align: center;
		}

	.header-top .tag {
		font-size: 0.60em;
	}

	.header-top h3 {
		font-size: 1.125em;
	}

	.subpage .header-top {
		background-size: 150%;
	}

	.subpage header {
		background-size: cover;
	}

	.menu-wrapper {
		left: 19em; /* 7.25em; */
		top: 1em;
	}

	.mobile-menu {
		left: .5em;
	}

		.mobile-menu > a {
			top: 0.9em;
			left: .5em;
		}

	.mobile-button-wrapper {
		top: 0.5em;
	}

		.mobile-button-wrapper::after {
			content: 'Menu';
			font-size: 0.68em;
			left: 7px;
		}

	.menu-toggle span {
		display: block;
		position: absolute;
		top: 23px;
		left: 15px;
		right: -5px;
		height: 4px;
		background: black;
	}

		.menu-toggle span::before {
			top: -12px;
		}

		.menu-toggle span::after {
			bottom: -12px;
		}

	footer {
		padding: 2em;
	}

		footer nav.main,
		footer nav.social,
		footer .copyright,
		footer .divisions {
			width: 100%;
			text-align: center;
		}

		footer nav.main,
		footer nav.social {
			margin-bottom: 2em;
		}

			footer nav.main li {
				width: auto;
				white-space: nowrap;
				padding-inline: 4px;
			}

		footer .copyright,
		footer .divisions {
			margin-bottom: 0;
		}
}