/* ========================================== */
/* ROOT VARIABLES */
/* ========================================== */

:root {
	--font-family: houschka-pro, sans-serif;
	--font-size-base: 16px;
	--font-size-primary: 1.188rem;
	--font-size-heading-xl: 4rem;
	--font-size-heading-l: 3.5rem;
	--font-size-heading-m: 2.25rem;
	--font-size-heading-s: 2.5rem;
	--font-size-heading-xs: 2rem;
	--font-size-heading-xxs: 1.5rem;
	--font-size-subheading: 1.5rem;
	--color-primary-teal: #0E495B;
	--color-primary-medium-teal: #388387;
	--color-primary-light-teal: #62BBB4;
	--color-black: #000000;
	--color-white: #ffffff;
	--color-yellow: #F4DF54;
	--color-light-grey: #F8F8F8;
	--color-beige: #EAE7E1;
	--color-grey: #E5E5E5;
	--border-radius: 5px;
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 3rem;
	--container-width: 87.5rem;
	--letter-spacing: 3px;
	--sectionGaps: 6.5rem;
	--sectionGapsMobile: 3.25rem;
}

/* ========================================== */
/* BASE RESET*/
/* ========================================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-family: houschka-pro, sans-serif;
	font-size: var(--font-size-base);
	overflow-x: hidden;
}

body {
	line-height: 1.5;
	color: var(--color-black, #000000);
	background-color: var(--color-white, #ffffff);
	padding: 0;
	margin: 0;
	font-size: var(--font-size-primary);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
}

img {
	display: block;
	width:100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.colorTeal {
	color: var(--color-primary-teal, #0E495B);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1;
	font-weight: 700;
	vertical-align: top;
	color: var(--color-primary-light-teal, #62BBB4);
}

h1,
h2,
h3 {
	line-height: 1;
	font-weight: 700;
	vertical-align: top;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	color: var(--color-primary-teal, #0E495B);
}

h3,
h4,
h5,
h6 {
	line-height: 1.3;
}

h1 {
	margin-bottom: 0;
	font-size: var(--font-size-heading-l);
	line-height: 0.9;
	letter-spacing: -2px;
}

h2 {
	margin-bottom: var(--spacing-sm);
	font-size: var(--font-size-heading-s);
	line-height: 0.9;
	letter-spacing: -2px;
}

h3 {
	font-size: var(--font-size-heading-m);
	margin-bottom: var(--spacing-sm);
	letter-spacing: -1px;
}

@media (min-width: 54rem) {
	h1 {
		letter-spacing: -2px;
		font-size: var(--font-size-heading-l);
	}
	h2 {
		margin-bottom: var(--spacing-sm);
		font-size: var(--font-size-heading-l);
	}
	h3 {
		font-size: var(--font-size-heading-m);
		margin-bottom: var(--spacing-sm);
	}
}

@media (min-width: 90rem) {
	h1 {
		font-size: var(--font-size-heading-xl);
	}
	h2 {
		margin-bottom: var(--spacing-sm);
		font-size: var(--font-size-heading-xl);
	}
	h3 {
		font-size: var(--font-size-heading-m);
		margin-bottom: var(--spacing-sm);
	}
}

h1 .smaller {
	transform: scale(.8);
	display: block;
	color: var(--color-primary-light-teal, #62BBB4);
}

@media (max-width: 48rem) {
	h1 br,
	h2 br,
	h3 br,
	h4 br,
	h5 br {
		display: none
	}
}

a {
	color: var(--color-primary-medium-teal, #388387);
	text-decoration: none;
}

a:hover {
	color: var(--color-primary-light-teal, #0E495B);
}

blockquote {}

p {
	margin-bottom: 1rem;
}

p:last-of-type {
	margin-bottom: 0;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ========================================== */
/* SECTION CONTAINER */
/* ========================================== */

.sectionContainer {
	max-width: var(--container-width);
	width: 100%;
	margin: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

.sectionContainerLarge {
	max-width: var(--container-width);
	width: 100%;
	margin: auto;
	padding-right: 1rem;
	padding-left: 1rem;
}

.sectionHeader {
	text-align: center;
	margin-bottom: 4.5rem;
}

.sectionHeader p {
	margin-top: 2rem;
	max-width: 61rem;
	margin: 2rem auto 1rem;
}

.sectionHeader p.section-label {
	text-transform: uppercase;
	letter-spacing: var(--letter-spacing);
	font-size: 1rem;
	margin: 0 auto var(--spacing-md);
}

/* ========================================== */
/* LIST STYLES */
/* ========================================== */

ul.customList {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}

ul.customList li {
	position: relative;
	padding-left: 1.75rem;
}

ul.customList li:before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 100%;
	border: 2px solid var(--color-primary-teal, #0E495B);
	position: absolute;
	top: 0.5rem;
	left: 0;
	display: block;
}

/* ====== MAIN CONTENT ====== */

main {
	padding: 0;
}

section {
	margin-bottom: var(--spacing-lg);
}

/* ========================================== */
/* BUTTONS AND LINKS */
/* ========================================== */

button {
	font-family: houschka-pro, sans-serif;
	display: inline-block;
	line-height: 1;
	border-radius: 0;
}

button:focus-visible {
	outline: 0.2rem solid var(--color-black, #000000);
	outline-offset: 0.2rem;
	border-radius: 0;
}

.button {
	padding: 0.75rem 1rem;
	background: transparent;
	color: #fff;
	display: inline-block;
	transition: background-color 0.3s ease;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 0.688rem;
	line-height: 1;
	letter-spacing: 3px;
	text-decoration: none;
}

.button.yellow-btn {
	color: #0E495B;
	border: 1px solid #F4DF54;
}

.button.yellow-btn:hover {
	background-color: #F4DF54;
	color: #0E495B;
	border: 1px solid #F4DF54;
}

.button.blue-btn {
	color: #0E495B;
	border: 1px solid #62BBB4;
}

.button.blue-btn:hover {
	background-color: #62BBB4;
	color: #fff;
}

/* ========================================== */
/* HEADER */
/* ========================================== */

header {
	padding: 1rem 1rem 1rem 1rem;
	position: relative;

	top: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 2.5rem;
}

header.homeHeader {
	position: absolute;
	top: 0;
	width: 100%;
	z-index:9;
}


@media (min-width: 90rem) {
	header {
		padding: 2.25rem 2.25rem 1rem 2.25rem;
		position: relative;

	}
}

#logo {
	height: 5rem;
	width: 5rem;
}

@media (min-width: 90rem) {
	#logo {
		height: 8.5rem;
		width: 8.5rem
	}
}

/* ========================================== */
/* DESKTOP MENU */
/* ========================================== */

.main-nav {
	flex: 1
}

.nav-items {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #0E495B;
}
.main-nav.lightNav .nav-items {
	border-bottom: 1px solid #fff;
}
.nav-items ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-items>li {
	position: relative;
}

.nav-items a.lion, .nav-items .lion a{
	color:#62BBB4;
}

.nav-items a {
	color: var(--color-primary-teal, #0E495B);
	text-decoration: none;
	padding: 0 2rem;
	height: 4.25rem;
	display: flex;
	align-items: center;
	font-size: 0.813rem;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.homeHeader .nav-items a{
	color:#fff;
}

.homeHeader .nav-items{
	border-bottom:1px solid #fff;
}

.home .nav-items a{
	color:#fff;
}
.main-nav.lightNav .nav-items a {
	color:#fff;
}

@media (max-width: 1600px) {
	.nav-items a {
		padding: 0 1rem;
	}
}

.nav-items a:hover,
.nav-items a.current {
	color: var(--color-primary-light-teal)
}

.nav-items>li:last-of-type a {
	padding-right: 0;
}

/* Submenu styles */

.submenu {
	position: absolute;
	top: 100%;
	left: 0%;
	transform: translateX(-50%);
	display: none;
	flex-direction: row;
	padding: 0.5rem;
	border-radius: 4px;
	white-space: nowrap;
	z-index: 1000;
}

.submenu li.has-submenu {
	padding: 0 2rem;
}

@media (max-width: 1600px) {
	.submenu li.has-submenu {
		padding: 0 1rem;
	}
}

.has-submenu:hover .submenu {
	display: flex;
}

.submenu li {
	margin: 0;
}

.submenu a {
	padding: 0 1.2rem;
}

.has-submenu>a {
	position: relative;
	padding: 0 2rem;
}

.has-submenu>a::after {
	content: '';
	position: static;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 0.3rem;
	height: 0.3rem;
	border: solid var(--color-primary-teal, #0E495B);
	border-width: 0 1px 1px 0;
	display: inline-block;
	pointer-events: none;
	transition: transform 0.3s ease;
	margin-left: 0.25rem;
}

.homeHeader .has-submenu>a::after{
	border:none;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.main-nav.lightNav .has-submenu>a::after {
	content: '';
	position: static;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 0.3rem;
	height: 0.3rem;
	border: solid #fff;
	border-width: 0 1px 1px 0;
	display: inline-block;
	pointer-events: none;
	transition: transform 0.3s ease;
	margin-left: 0.25rem;
}
.has-submenu:hover>a::after, 
.main-nav.lightNav .has-submenu:hover>a::after {
	transform: translateY(-50%) rotate(-135deg);
}

@media (max-width: 1100px) {
	.main-nav {
		display: none;
	}
}

/* ========================================== */
/* MOBILE MENU */
/* ========================================== */

.mobile-menu__toggle-wrapper {
	position: absolute;
	top: 2rem;
	right: 1rem;
	z-index: 1001;
	display: none;
}

@media (max-width: 1099px) {
	.mobile-menu__toggle-wrapper {
		display: block;
	}

	footer .footerRight{
		display:none;
	}
}

.mobile-menu__hamburger {
	width: 28px;
	height: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
	font-size:24px;

}

.mobile-menu__hamburger span {
	display: block;
	height: 2px;
	width: 100%;
	background: #000;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.2s ease;
}

.mobile-menu__hamburger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.mobile-menu__hamburger.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu__hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* === Mobile Menu Container === */

.mobile-menu {
	position: relative;
	z-index: 1000;
	display: none;
}

@media (max-width: 1099px) {
	.mobile-menu {
		display: block;
	}


}

/* === Drawer === */

.mobile-menu__drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 400px;
	height: 100%;
	background: #f8f8f8;
	padding: 2rem;
	box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
	transform: translateX(-100%);
	transition: transform 0.3s ease-in-out;
	z-index: 1000;
}

.mobile-menu__drawer.open {
	transform: translateX(0);
}

/* === Menu Items === */

.mobile-menu__drawer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu__item {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 1rem 0;
	font-size: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.mobile-menu__chevron {
	display: inline-block;
	transition: transform 0.3s ease;
	border: solid #000;
	border-width: 0 2px 2px 0;
	padding: 4px;
	transform: rotate(45deg);
}

.mobile-menu__item.open .mobile-menu__chevron {
	transform: rotate(-135deg);
}

/* === Submenu === */

.mobile-menu__submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.mobile-menu__item.open+.mobile-menu__submenu {
	max-height: 300px;
}

.mobile-menu__submenu li a {
	display: block;
	padding: 0.5rem 0 0.5rem 1rem;
	text-decoration: none;
	color: var(--color-primary-teal, #0E495B);
}

/* === Backdrop === */

.mobile-menu__backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 999;
}

.mobile-menu__backdrop.visible {
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu__link {
	display: block;
	padding: 1rem 0;
	text-decoration: none;
	color: #000;
	font-size: 1rem;
	border: none;
	background: none;
}

/* ========================================== */
/* PAGE HEADER */
/* ========================================== */

.pageHeader {
	text-align: center
}

.aboutPageHeader {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 2rem;
}

@media (min-width: 48rem) {
	.aboutPageHeader {
		gap: 5rem;
		margin-bottom: 3.5rem;
	}
}

/* ========================================== */
/* HOME ABOUT*/
/* ========================================== */

.homeAbout {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: var(--sectionGapsMobile, 3.25rem);
	margin-bottom: var(--sectionGapsMobile, 3.25rem);
}

@media (min-width: 64rem) {
	.homeAbout {
		position: relative;
		min-height: 50rem;
		flex-direction: row;
	}
}

.homeAboutContent {
	width: 100%;
	position: relative;
	z-index: 10;
}

.homeAboutContent h2 {
	color: #62BBB4;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

@media (min-width: 64rem) {
	.homeAboutContent {
		max-width: 36rem;
	}
}

.homeAboutMap {
	width: 100%;
	height: auto;
}

@media (min-width: 64rem) {
	.homeAboutMap {
		position: absolute;
		bottom: 0;
		right: 0;
		height: 100%;
		width: auto;
		z-index: 9
	}
}

/* ========================================== */
/* HOME GRID */
/* ========================================== */

.homeGridContainer {
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

.homeGridContainer .sectionContainer {
	max-width: 114rem;
	width:100%;
}

.homeGridContainer .homeGrid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1.5rem;
}

@media (min-width: 48rem) {
	.homeGridContainer {
		margin-top: var(--sectionGaps, 3.25rem);
	}
	.homeGridContainer .homeGrid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 74rem) {
	.homeGridContainer {
		margin-top: var(--sectionGapsMobile, 3.25rem);
	}
	.homeGridContainer .homeGrid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 2rem;
	}
	.homeGridContainer .homeGrid > *:nth-child(even) {
		margin-top: -2rem;
	}
}

.homeGridItem {
	width: 100%;
	max-width: 100%;
	height: 38rem;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.homeGridItem:hover .imageContainer img {
	transform: scale(1.1);
	transition: transform 0.5s ease;
}

.homeGridItem .imageContainer {
	width: 100%;
	height: 100%;
	position: relative;
}

.homeGridItem .imageContainer img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	transition: transform 0.5s ease;
}

.homeGridItem .imageContainer .gradientOverlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	z-index: 1;
	pointer-events: none;
}

.homeGridItem .imageContainer .titleWrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	color: #fff;
	padding: 2rem;
}

@media (min-width: 48rem) {
	.homeGridItem .imageContainer .titleWrapper {
		padding: 3rem;
	}
}

.homeGridItem .imageContainer .titleWrapper h3 {
	margin: 0 0 1.5rem;
	font-size: 3rem;
	color: #fff;
	line-height:1;
}

@media (min-width: 48rem) {
	.homeGridItem .imageContainer .titleWrapper h3 {
		font-size: 4rem;
		line-height:1;
	}
}
.homeGridItem .button.yellow-btn {
	color:#fff;
}
.homeGridItem .button.yellow-btn:hover {
	color:#0E495B;
}

.button.yellow-btn.secondary {
	background-color:#F4DF54;
	padding:1.5rem;
	font-size:1rem;
}

.button.yellow-btn.secondary:hover {
	background-color:#FFF;
}

.flex{
	display:flex;
}

.instagram{
	width:95%;
	margin:0 auto;
	justify-content:space-between;
}

.instagram .pic{
	width:25%;

	margin:0.5%;
}

/* ========================================== */
/* CARD */ggg
/* ========================================== */

.cardSection .sectionContainer {
	display: flex;
	flex-direction: column;
	gap: var(--sectionGaps, 3.25rem);
}

@media (min-width: 48rem) {
	.cardSection .sectionContainer {
		display: flex;
		flex-direction: column;
		gap: var(--sectionGaps, 6.5rem);
	}
}

.card {
	display: flex;
	overflow: hidden;
	background: #F8F8F8;
	flex-direction: column;
}

.card.reverseOrder {}

.card-image {
	width: 100%;
	max-width: 100%;
	min-height: 300px;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.card-content {
	flex: 1;
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
}

.card-content .politzYeshivaLogo {
	margin: 1rem 0 2rem;
	max-width: 9.688rem;
}

@media (min-width: 48rem) {
	.card {
		flex-direction: row;
	}
	.card.reverseOrder {
		flex-direction: row-reverse;
	}
	.card-image {
		flex: 0 0 20rem;
		height: auto;
	}
	.card-content {
		padding: 3.5rem
	}
}

@media (min-width: 60rem) {
	.card {
		flex-direction: row;
	}
	.card.reverseOrder {
		flex-direction: row-reverse;
	}
	.card-image {
		flex: 0 0 28rem;
		height: auto;
	}
	.card-content {
		padding: 4.5rem
	}
}

/* ========================================== */
/* PAGE INTRO */
/* ========================================== */

.pageIntroduction {
	margin: var(--sectionGapsMobile, 3.25rem) 0;
}

.pageIntroduction .card {
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.pageIntroduction .card .card-content {
	flex: 1;
	padding: 0;
}

.pageIntroduction .card .card-content .cardIndent {
	width: 100%;
}

@media (min-width: 48rem) {
	.pageIntroduction {
		margin: var(--sectionGaps, 6.5rem) 0;
	}
	.pageIntroduction .card {
		gap: 2.5rem;
		flex-direction: row;
	}
	.pageIntroduction .card .card-content .cardIndent {
		max-width: 42rem;
		width: 100%;
		align-self: flex-end;
	}
}

@media (min-width: 74rem) {
	.pageIntroduction .card {
		gap: 5.5rem;
		flex-direction: row;
	}
}

/* ========================================== */
/* MEET RAV */
/* ========================================== */

.meetRavBlock {
	display: flex;
	overflow: hidden;
	background: rgba(98, 187, 180, 0.05);
	flex-direction: column;
	margin: 3rem 0;
	gap: 2rem;
	padding: 2rem;
}

@media (min-width: 70rem) {
	.meetRavBlock {
		align-items: center;
	}
}

@media (min-width: 1000px) {
	.meetRavBlock {
		display: flex;
		overflow: hidden;
		background: rgba(98, 187, 180, 0.05);
		flex-direction: row;
		margin: 5rem 0;
		gap: 5rem;
		padding: 4.375rem;
	}


}



@media (max-width: 1099px) {
	.meetRavBlock{
		justify-content:space-between;
	}

	.cardContent, .card-content {
		width:45%;
	}

	.pageIntroduction .card{
		justify-content:space-between;
	}

	.card-image{
		flex-basis:35%;margin:0 5% 0 0;
	}

	.pageIntroduction .card .card-content{
		flex-basis:35%;
	}

	.image-card .card-buttons .button{
		margin:0 20px 0 0;
	}

	#shopping{
		width:90%;
	}
	input, textarea{
		border-radius:0;
	}

}

@media (max-width: 1000px) {
	.cardContent{
		width:100%;
		margin:40px 0 0 0;
	}

	.meetRavBlock .cardImage{
		margin:0 0 40px 0;
	}
}

.meetRavBlock .cardImage {
	width: 100%;
	max-width: 100%;
	flex: 0 0 20rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
}

.meetRavBlock .cardImage h2 {
	color: #0E495B;
	margin: 0;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 3.25rem;
}

.meetRavBlock .cardImage p {
	color: #0E495B;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 0.938rem;
	margin-top: 0;
	margin-bottom: 0;
}

.meetRavBlock .cardImage img {
	width: 100%;
	max-width: 20rem;
	height: auto;
	display: block;
}

.meetRavBlock .card-content {
	flex: 1;
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
}

/* ========================================== */
/* HERO BANNER */
/* ========================================== */

.hero-banner {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: 80vh;
	overflow: hidden;

	height: clamp(100vh, 100vh, 100vh);
	overflow: hidden;
	position: relative;
}



.hero-banner .video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;


}

.hero-banner .video-container video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-banner .video-container iframe {
	width: 100vw;
	height: 56.25vw; /* Maintains 16:9 aspect ratio based on width */
	min-height: 100%;
	min-width: 177.78vh; /* Ensures it covers tall viewports too */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	border: 0;
}

.hero-banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.hero-banner .hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	height: 100%;
	font-size: 2.5rem;
	color: #fff;
	gap: 2rem;
	line-height: 1.1;
}

.hero-banner .hero-content .innerContent {
	max-width: 44rem;
	width: 100%;
	padding-bottom: 4rem;
}

.hero-banner .hero-content .innerContent h1 {
	font-size: 11rem;
	line-height: 0.6;
	color: #fff;
	letter-spacing: -8px;
	margin-bottom: 2rem;
}

.hero-banner .hero-content .innerContent h1 span {
	font-size: 3rem;
	font-weight: 500;
	color: #62BBB4;
	position: relative;
	left: 9rem;
	letter-spacing: 0;
}

.hero-banner .hero-content .innerContent .button.yellow-btn {
	color: #fff;
	margin-top: 2rem;
}
.hero-banner .hero-content .innerContent .button.yellow-btn:hover {
	color:#0E495B;
}

@media (max-width: 48rem) {
	.hero-banner .hero-content {
		font-size: 1.25rem;
		color: #fff;
		gap: 2rem;
		line-height: 1.2;
	}

	.hero-banner .hero-content .innerContent {
		max-width: 20rem;
		padding-bottom: 2rem;
	}

	.hero-banner .hero-content .innerContent h1 {
		font-size: 5rem;
		line-height: 1;
		letter-spacing: -2px;
		margin-bottom: 2rem;
	}

	.hero-banner .hero-content .innerContent h1 span {
		font-size: 2rem;
		left: 0rem;
		letter-spacing: 0;
		display: block;
	}

	.hero-banner .hero-content .innerContent .button.yellow-btn {
		color: #fff;
		margin-top: 2rem;
	}
}

/* ========================================== */
/* QUOTE GRID */
/* ========================================= */

.quoteGrid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1.5rem;
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

@media (min-width: 48rem) {
	.quoteGrid {
		grid-template-columns: repeat(2, 1fr);
		margin-top: var(--sectionGapsMobile, 3.25rem);
	}
}

@media (min-width: 74rem) {
	.quoteGrid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 2rem;
	}
}

.quoteGrid .quote {
	display: flex;
	flex-direction: column;
	background: #F8F8F8;
	padding: 2.5rem;
	position: relative;
	justify-content: space-between;
}

.quoteGrid .quote .quotation {
	color: #F4DF54;
	line-height: 1;
	font-size: 10rem;
	font-weight: 700;
	position: absolute;
	top: 1rem;
	left: 2rem;
	z-index: 1;
	font-weight: 600;
}

.quoteGrid .quote blockquote {
	color: #62BBB4;
	font-size: 1.5rem;
	margin: 0;
	padding: 1.5rem 0 0 0;
	position: relative;
	z-index: 2;
	line-height: 1.2
}

.quoteGrid .quote .quoteInfo {
	margin-top: 1rem;
}

.quoteGrid .quote .quoteName {
	color: #0E495B;
	font-size: 1.3rem;
	font-weight: 700;
}

.quoteGrid .quote .quoteDesignation {
	font-size: 0.813rem;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 3px;
}

/* ========================================== */
/* NEWS GRID */
/* ========================================== */

.newsGrid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 2rem;
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

@media (min-width: 1000px) {
	.newsGrid {
		grid-template-columns: repeat(2, 1fr);
		margin-top: var(--sectionGapsMobile, 3.25rem);
	}
}

@media (min-width: 74rem) {
	.newsGrid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 2.5rem;
	}
}

.image-card {
	position: relative;
	overflow: hidden;
	height: 24rem;
	cursor: pointer;
	width: 100%;
}

.image-card .card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
	display: block;
}

.image-card .image-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
	display:none;
}

.image-card:hover .image-overlay{
	display:block;
	transition:all 1s;
}

.container{
	display: grid
;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.image-card .card-content {
	position: absolute;
	bottom: 0;
	padding: 2rem;
	color: #fff;
	line-height: 1.2;
	z-index: 2;
	width: 100%;
	box-sizing: border-box;
}

.image-card p{
	display:none;
}

.image-card .card-title {
	margin: 0 0 1rem;
	font-size: 2.75rem;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
}

.image-card .card-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.image-card .card-buttons .button.yellow-btn {
	color: #fff;
	border: 1px solid #F4DF54;
}
.image-card .card-buttons .button.yellow-btn:hover {
	color:#0E495B;
}
.image-card .card-buttons .button.blue-btn {
	color: #fff;
	border: 1px solid #62BBB4;
}

.image-card:hover .card-image {
	transform: scale(1.05);
}

/* ========================================== */
/* FEATURE SECTION */
/* ========================================== */
.button.bottom{
	margin:50px auto 0 auto;
	display:block;
	text-align:center;
	width:200px;
}
.feature-section {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	position: relative;
	padding-right: 0;
}

.feature-image {
	width: 100%;
	max-width: 50rem;
	z-index: 1;
}

.feature-image img {
	width: 100%;
	height: auto;
	display: block;
}

.feature-text {
	width: 44rem;
	max-width: 100;
	background: #F8F8F8;
	padding: 4.375rem;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.feature-text h3 {
	margin-bottom: 1.75rem;
}

.feature-text .button {
	margin-top: 2rem;
}

@media (max-width: 768px) {
	.feature-section {
		flex-direction: column;
		min-height: auto;
		padding: 0;
	}
	.feature-text,
	.feature-image {
		position: static;
		transform: none;
		width: 100%;
		max-width: 100%;
	}
	.feature-text {
		padding: 2rem;
	}
}

/* ========================================== */
/* TABS */
/* ========================================== */

.tabs-container {
	padding-top: 3rem;
}

.tabs {
	display: flex;
	position: relative;

}

.tabs button {
	flex: 1;
	padding: 1rem;
	background: none;
	border: none;
	font-size: 1rem;
	position: relative;
	cursor: pointer;
	transition: color 0.3s;
	text-transform: uppercase;
	letter-spacing: var(--letter-spacing);
	color: #818181;

	border-bottom: 1px solid #E5E5E5;
}

.tabs button.active, .tabs .button:hover{
	border-bottom:1px solid #F4DF54;
	color: var(--color-primary-teal, #0E495B);
}

.tabs button[aria-selected="true"] {

}

.tabs button:hover {

}

.tab-indicator {
	/*position: absolute;
	bottom: -2px;
	height: 2px;
	width: 50%;
	background: var(--color-yellow, #F4DF54);
	transition: transform 0.3s ease;*/
}

.tab-panel .album{
	float:left;
	margin: 0 0.5% 15px 0.5%;
	height: 360px;
	width: 24%;

}

.tab-panel .album .image{
	aspect-ratio: 1 / 1; /* square */
	overflow: hidden;
}

.tab-panel .album img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tab-panel .album .desc {
	height: 10px;
}


.frame{
	position:relative;
	padding:60% 0 0 0;
}

.frame iframe{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.tab-panel .album .image{

}

.tab-panel h2{
	text-align:center;
	margin:0 0 30px 0;
}

.tab-panel {
	display: none;
	padding: 4rem 0 0;
	overflow:hidden;
}

.tab-panel.active {
	display: block;
}

.tab-panel .grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 48rem) {
	.tab-panel .grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

@media (min-width: 74rem) {
	.tab-panel .grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
	}
}

.tab-panel .grid a {
	position: relative;
	display: block;
	overflow: hidden;
}

.tab-panel .grid img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.tab-panel .grid  .album.inner a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}


.tab-panel .album.inner .title {
	display:none;
}

.tab-panel .grid  .album.inner a::after {
	content: '⤢';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.5);
	color: var(--color-white, #ffffff);
	font-size: 2.5rem;
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 2;
	pointer-events: none;
}

.tab-panel .grid a[data-type="video"]::after {
	content: '▶';
	font-size: 3rem;
}

.tab-panel .grid .album.inner a:hover::before {
	opacity: 1;
}

.tab-panel .grid .album.inner a:hover::after {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.tab-panel .grid .album.inner a:hover img {
	transform: scale(1.05);
}

.tab-panel .grid .album.inner .title {
	display:none;
}

.tab-panel .title a {
	text-tranform: uppercase !important;
	letter-spacing: 1px;

	line-height: 1.4;
	text-align: center;
	display: block;
	font-size:15px;
	width: 100%;
	margin:5px 0 0 0;
	text-transform:uppercase;
}

.tab-panel .info .desc a {
	text-align:center;
	display:block;
	color:#000;
	font-size:small;
}

/* ========================================== */
/* LIGHTBOX */
/* ========================================== */

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1002;
}

.lightbox.active {
	display: flex;
}

.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 80vh;
	background: var(--color-black, #000000);
	margin-bottom: 1rem;
}

.lightbox-content iframe {
	width: 90vw;
	max-width: 1000px;
	aspect-ratio: 16 / 9;
	background: var(--color-black, #000000);
	margin-bottom: 1rem;
}

.lightbox-content p {
	color: var(--color-white, #ffffff);
	text-align: center;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: var(--letter-spacing);
	margin: 0;
}

.lightbox button {
	position: absolute;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	font-size: 2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}

.lightbox button:hover {
	background: var(--color-white, #ffffff);
}

.lightbox-prev {
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-next {
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-close {
	top: 1rem;
	right: 1rem;
	transform: none;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.5rem;
	background: rgba(255, 255, 255, 0.9);
}

/* ========================================== */
/* VIDEO PANEL */
/* ========================================== */

.videoPanel {
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	max-width: 125rem;
	width:100%;
	margin: 0 auto;
	margin-top: var(--sectionGapsMobile, 3.25rem);
	margin-bottom: var(--sectionGapsMobile, 3.25rem);
}

@media (min-width: 54rem) {
	.videoPanel {
		margin-top: var(--sectionGaps, 3.25rem);
		margin-bottom: var(--sectionGaps, 3.25rem);
	}
}

.videoPanelGrid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.videoPanel .leftColumn {
	flex: 1;
	width: 100%;
}

.videoPanel .rightColumn {
	flex: 0 0 100%;
	width: 100%;
}

@media (min-width: 54rem) {
	.videoPanelGrid {
		display: flex;
		flex-direction: row;
		gap: 4.5rem;
	}
	.videoPanel .leftColumn {
		flex: 1;
		width: 100%;
	}
	.videoPanel .rightColumn {
		flex: 0 0 28rem;
		width: 28rem;
		padding-left: 0;
	}
}

.videoPanel .video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	cursor: pointer;
}

.videoPanel .video-wrapper iframe,
.videoPanel .video-wrapper .video-cover,
.videoPanel .video-wrapper .video-cover img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.videoPanel .video-cover {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-black, #000000);
}

.videoPanel .video-cover::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.videoPanel .play-button {
	width: 64px;
	height: 64px;
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	position: absolute;
	z-index: 2;
	transition: background-color 0.3s;
}

.videoPanel .play-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-40%, -50%);
	border-style: solid;
	border-width: 15px 0 15px 24px;
	border-color: transparent transparent transparent var(--color-white, #ffffff);
}

.videoPanel .video-wrapper:hover .play-button {
	background-color: rgba(0, 0, 0, 0.9);
}

.videoPanel .quotation {
    color: #F4DF54;
    line-height: 1;
    font-size: 10rem;
    font-weight: 700;
    position: absolute;
    top: -1rem;
    left: 0;
    z-index: 1;
}
.videoPanel h2 {
	margin-top:2rem;
	position: relative;
	z-index:2;
	font-size:3.75rem;
	line-height:0.8;
	padding-left:1rem;
}
.videoPanel p {
	font-size:2.25rem;
	line-height:.9;
	color:#0E495B;
	margin:1rem 0 2rem;
	font-weight:500;
	padding-left:2rem;
}

@media (max-width: 54rem) {
	.videoPanel h2 {
		font-size:3rem;
		line-height:1;
	}
	.videoPanel p {
		font-size:1.75rem;
		line-height:1;
	}		
}

.audiowrapper .sectionContainer {
	justify-content:space-between;
	margin:80px auto 0 auto;
}

.audiowrapper .left h2{
	text-align:right;
}

.audiowrapper .left{
	width:16%;
}

.audiowrapper .right{
	width:78%;
	flex-wrap:wrap;
	justify-content:space-between;
}

.audiowrapper .player audio{
	width:100%;
	height:36px;
}

.audiowrapper .button{
	float:right;
}

.audiowrapper .player{
	width:190px;
}

.audiowrapper .title{
	font-size:18px;
	line-height:1;
}

.audiowrapper .info{
	margin:0 10px;
}

.audiowrapper .name{
margin:4px 0;
	color:#0E495B;font-size:14px;
	letter-spacing:2.8px;
	text-transform: uppercase;
}

.audiowrapper .date{
	text-transform:uppercase;
	color:#8A8A8A;
	font-size:12px;
	letter-spacing:2.4px;
}

.audiowrapper .icon img, .icon img{
	border-radius:100%;
}

.audiowrapper .icon, .audio .icon{
	width:60px;
}

.audiowrapper .box{
	border:1px solid #EAE7E1;
	padding:20px;
	margin:0 0 20px 0;
	width:49%;
}
/* ============================
   ANIMATIONS
=============================== */

.animate {
	opacity: 0;
	transition: all 0.8s ease-out;
	will-change: transform, opacity;
}

.fade-up {
	transform: translateY(1.25rem);
}

.fade-left {
	transform: translateX(1.25rem);
}

.fade-right {
	transform: translateX(-1.25rem);
}

.animate.in-view {
	opacity: 1;
	transform: translate(0, 0);
}

/* ========================================== */
/* SHOPPING GRID */
/* ========================================== */

.shoppingContainer {
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

@media (min-width: 90rem) {
	.shoppingContainer {
		margin-top: var(--sectionGaps, 6.5rem);
	}
}

.shoppingContainer .shoppingGrid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 1rem;
}

.shoppingContainer .shoppingGrid h3 {
	font-size: 2rem;
	color: #0E495B;
	font-weight: 700;
	letter-spacing: -1px;
}

@media (min-width: 48rem) {
	.shoppingContainer .shoppingGrid {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
	}
}

@media (min-width: 74rem) {
	.shoppingContainer .shoppingGrid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 4rem;
	}
}

.shoppingGridColOne,
.shoppingGridColThree {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.25rem;
}

.shoppingGridColThree {
	align-items: flex-start;
}

.shoppingGridColThree .button{
	margin:30px 0 0 0;
}

.shoppingGridColTwo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

@media (min-width: 48rem) {
	.shoppingGridColOne h2 {
		text-align: right;
	}
}

/* ========================================== */
/* SHOP DETAILS GRID */
/* ========================================== */

.shoppingDetailsContainer {
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

@media (min-width: 90rem) {
	.shoppingDetailsContainer {
		margin-top: var(--sectionGaps, 6.5rem);
	}

}

.shoppingDetailsContainer .shoppingDetailsGrid h3 {
	font-size: 2rem;
	color: #0E495B;
	font-weight: 700;
	letter-spacing: -1px;
}

.shoppingDetailsContainer .carousel-wrapper {
	position: relative;
	overflow: visible;
}

.shoppingDetailsContainer .shoppingDetailsCarousel {
	overflow: hidden;
	width: 100%;
}

.shoppingDetailsContainer .carousel-track {
	display: flex;
	transition: transform 0.5s ease;
	will-change: transform;
	gap: 15px;
	padding: 0 10px;
}

.shoppingDetailsContainer .shoppingItem {
	flex: 0 0 100%;
	padding: 1rem;
	box-sizing: border-box;
}

@media (min-width: 600px) {
	.shoppingDetailsContainer .shoppingItem {
		flex: 0 0 calc((100% - 20px) / 2);
	}
}

@media (min-width: 1024px) {
	.shoppingDetailsContainer .shoppingItem {
		flex: 0 0 calc((100% - 60px) / 4);
	}
}

.shoppingDetailsContainer .carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: white;
	border-radius: 50%;
	border: none;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	z-index: 10;
}

.shoppingDetailsContainer .carousel-arrow svg {
	width: 1.5rem;
	height: 1.5rem;
	stroke: #0E495B;
}

.shoppingDetailsContainer .carousel-arrow.left {
	left: -2rem;
}

.shoppingDetailsContainer .carousel-arrow.right {
	right: -2rem;
}

.shoppingDetailsContainer .shoppingItem {
	border: 1px solid #62BBB4;
	padding: 1rem;
	line-height: 1.2
}

.shoppingDetailsContainer .shoppingItem h3 {
	color: #0E495B;
	margin-bottom: 0 !important;
	margin-top: 0;
	font-size: 2rem;
	line-height: 1.1
}

.shoppingDetailsContainer .shoppingItem .shoppingDetails {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

.shoppingDetailsContainer .shoppingItem .pic{
	height:260px;
	overflow:hidden;
}

.shoppingDetailsContainer .shoppingItem .shoppingDetailsRow {
	display: flex;
	align-items: flex-start;
	justify-content: start;
}

.shoppingDetailsContainer .shoppingItem .shoppingDetailsRow svg {
	flex: 0 0 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	margin-right: 1rem;
	position: relative;
	top: 4px;
}

.shoppingDetailsContainer .shoppingItem .shoppingDetailsRow.tel a {
	color: #000;
	text-decoration: none;
}

.shoppingDetailsContainer .shoppingItem .innerContent {
	padding: 0 1rem 1rem 1rem;
	display: flex;
	flex-direction: column;
	gap: .75rem;
}

/* ========================================== */
/* AUDIO */
/* ========================================== */

.data .title {
	color:#000;
	font-size:18px;
	text-transform:capitalize;

}

.clear{
	clear:both;
}

.data .line {
	padding: 12px 0px;
	background: none;
	border-bottom: 1px solid #E5E5E5;
	border-radius: 0;
}


.searchform {
	position: relative;
	margin: 50px 0 20px 0;
	font-family: montserrat, sans-serif;
}



 .searchform .input {
	position: relative;
	width: 30%;
	margin: 0 auto;
}

#searchSubmit {
	position: absolute;
	border: none;
	background: none;
	top: 10px;
	right: 28px;
	color: #B5B5B5;
}

.searchform .textfield {
	padding: 0 0 0 4%;
	width: 96%;
	height: 35px;
	color: #303447;
	border: 1px solid #E5E5E5;
	border-radius: 20px;
	font-size: 10px;
	letter-spacing: 3px;
	position: relative;
	text-transform: uppercase;
	display: block;
}

.data .h3header{
	display:none;}

.data hr.h3header{
	display:block;
	width:270px;
}

.data {

	overflow:hidden;

}

.data .filters {
	float:left;
	width:240px;
}

.data .right {
	float:right;
	border-left: 1px solid #E5E5E5;
	width:72%;
	padding:0 0 0 4%;
	margin:20px 0 0 0;
}

.data .content{

	width:100%;
}

.data .title{
	font-size:12px;

}

.data .box{
	padding:0;
	margin:0 0 20px 0;
	box-shadow:none;
}

.data .filters .title{
	letter-spacing:2.4px;
	text-align:left;
	color: #303447;
	font-size:12px;
	padding:0 0 12px 0;
	margin:0 0 12px 0;
	position:relative;
	text-transform: uppercase;
	border-bottom: 1px solid #E5E5E5;
}

.data .title .fa{
	position:absolute;
	right:0;
	top:0px;
	cursor:pointer;
}

.data .box .title .fa-minus{
	display:none;
}

.data .box .title.opened .fa-minus{
	display:block;
}

.data .box .title.opened .fa-plus{
	display:none;
}

.options.opened {
	display:block;
}

.options{
	margin:0px 0 40px 0;
	font-size:12.5px;
	line-height:30px;
	color: #303447;
	text-transform:capitalize;
}

.options input{
	border: 1px solid #E5E5E5;
	width:16px;
	height:19px;
	vertical-align:middle;
	margin:0 5px 5px 0;

}

#dn-center #part1 .dn-head{
	margin:0;
}

.options .textfield{
	width:98%;
	height:35px;
	margin:0 0 10px 0;
	padding:0 0 0 2%;
	border-radius:40px;
}

#pages.audio .list{
	max-height:300px;
	overflow-y:scroll;
	overflow-x:hidden;
}

.arrow{
	position:fixed;
	bottom:15px;
	right: 0px;
	z-index:9;
}

.data .close .fa{
	color:#fff;
}

.arrow a {
	background: rgba(0,0,0,0.5);
	padding: 15px;
	color: #fff;
	position:relative;
	z-index:9;

}

.data .arrow .fa{
	color:#fff;
}


.data #curFilters{
	text-transform: uppercase;
	color: #489bc4;
	font-weight: bold;
	letter-spacing: 2px;
	font-size:18px;
	margin:0 0 15px 0;
	line-height: 130%;
}

.data .audio .line {
	padding:12px 0px;
	background:none;
	border-bottom:1px solid #E5E5E5;
	border-radius:0;
	display:flex;
}



.data  .info {
	float:left;

	width:30%;
	margin:0 1% 0 1%;
}

.data .title, .data .box .title{
	text-align:left;
	text-transform:none;
	letter-spacing:0;
	color:#000000;
	font-size:18px;
}

.data .box .title{
	margin:0 0px 20px 0;
}

.data .info .speaker {

	color:#0E495B;


	padding: 2px 0;

	line-height: 1.2;
	font-size: 15px;
	letter-spacing: 1px;
	text-transform:uppercase;

}

.searchform{

	position:relative;

	margin:50px 0 20px 0;
	font-family: montserrat, sans-serif;
}

.searchform.mobile{
	display:none;
}

.searchform .textfield{
	padding:0 0 0 4%;
	width:96%;
	height:35px;
	color: #303447;
	border:1px solid #E5E5E5;
	border-radius:20px;
	font-size:10px;
	letter-spacing:3px;
	position:relative;
	text-transform:uppercase;

	display:block;
}


.data textarea:focus, .data input:focus{
	outline: none;
}

.sort{
	float:right;
	width:10%;
	text-align:right;


}

.sort select{
	border:none;
	color: #B5B5B5;
	letter-spacing:3px;
	font-family: montserrat, sans-serif;
	font-size:10px;
	text-transform:uppercase;
}

#clearResults{
	padding: 5px 10px;
	font-size: 8px;display: none;
	background: none;
	border: 1px solid #E5E5E5;
	border-radius: 20px;
	float: right;
}

.data .info .date, .data .info .cat {
	color:#B5B5B5;
	text-transform:uppercase;
	text-transform:uppercase;
	letter-spacing:2px;
	font-size:11px;
}


.data .time {
	float:left;
	width:18%;
	color:#B5B5B5;
	text-transform:uppercase;

}

.data  .cat{
	margin:0 15px 0 0;

	font-size:14px;

	width:22%;
	float:left;
}

.data .time{
	width:10%;
}

.data .player {
	float:left;
	width: 26%;
	padding:0 0 3px 0;
}

.data .topsection .player{
	padding:0 0 3px 0;
	margin:0 15px 0 0;
	border-bottom:1px solid #D0AC89;
}

.data .player audio{
	width:100%;
	height:32px!important;
}

.data .download {
	float:right;
	width:100px;
	text-align:right;

	padding:0 0 3px 0;
}

.data .topsection .download{
	padding:0 0 3px 0;
	border-bottom:1px solid #D0AC89;
}


.data .noresult{
	display: block;
	margin: 20px 0 0 0;
	text-transform: uppercase;
	color: #459BBC;
	font-weight: bold;
	letter-spacing: 1px;
	padding: 5px 0;
}

.data .close{
	display:none;
}

.data a{
	text-decoration:none;
	color:#002346;
}

.data .title{


	font-size:13px;
	letter-spacing:2px;
	text-transform:uppercase;
}

.data .fa{
	color:#0E495B;
}

.data .current{
	margin:40px 0 0 0;
	width:60%;
}



.data .topsection .box{
	border:1px solid #E5E5E5;
	padding:12px;
	margin:15px 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.data .but{
	padding: 0 0 3px 0;
	border-bottom: 1px solid #D0AC89;
}

.data .header {
	display: none;
}

/* width */
#pages.audio .filters ::-webkit-scrollbar {
	width:8px;
}

/* Track */
#pages.audio .filters ::-webkit-scrollbar-track {
	background: #fff;
}

/* Handle */
#pages.audio .filters ::-webkit-scrollbar-thumb {
	background: #888;
	border-radius:10px;
}

/* Handle on hover */
.filters ::-webkit-scrollbar-thumb:hover {
	background: #555;
}



/* ========================================== */
/* CONTACT GRID */
/* ========================================== */

.contactContainer {
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

@media (min-width: 90rem) {
	.contactContainer {
		margin-top: var(--sectionGaps, 6.5rem);
	}
}

.contactContainer .contactGrid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 1rem;
}

.contactContainer .contactGrid h3 {
	font-size: 2rem;
	color: #0E495B;
	font-weight: 700;
	letter-spacing: -1px;
}

@media (min-width: 1000px) {
	.contactContainer .contactGrid {
		grid-template-columns: repeat(3, 1fr);
		gap: 4rem;
		margin-top: 1rem;
	}
}

@media (min-width: 74rem) {
	.contactContainer .contactGrid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 4rem;
	}
}

.contactGridColTwo {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 2.5rem 1rem;
}

.contactGridColThree {
	background: #F8F8F8;
	opacity: 1;
	padding: 3rem;
}

.contactGridColThree .form {}

.contactGridColThree .form {
	text-align: left;
	max-width: 100%;
	margin: 0 auto;
}

.contactGridColThree h3 {
	margin-top: 0;
}

.contactGridColThree .form .form-group {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contactGridColThree .form .form-group input,
.contactGridColThree .form .form-group textarea {
	border: none;
	outline: none;
	padding: 0.75rem 0;
	font-size: 0.875rem;
	background: transparent;
	border-bottom: 1px solid #000;
	width: 100%;
	resize: none;
	font-family: houschka-pro, sans-serif;
}

.contactGridColThree .form .form-group textarea {
	min-height: 5rem;
}

.contactDetails {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contactDetailsRow {
	display: flex;
	align-items: flex-start;
	justify-content: start;
}

.contactDetailsRow svg {
	flex: 0 0 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	margin-right: 1rem;
	position: relative;
	top: 6px;
}

.contactDetailsRow.tel a {
	color: #000;
	text-decoration: none;
}

.contactDetails h3 {
	margin-bottom: 0 !important;
}

/* ========================================== */
/* DONATE GRID */
/* ========================================== */

.donateContainer {
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

#dn-center .flex {
	justify-content: space-between;
}

#dn-center .toggle input {
	display: none;
}


#dn-center   .toggle label {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2.6px;
	font-size: 13px;
	text-decoration: none;
	color: #000;

	padding: 10px 0;
	display: block;
	width: 49.4%;

	border: 1px solid #62BBB4!important;
}
#dn-center .script {
	display: block;
	position: relative;
	padding: 2px 0 0 20px;
	cursor: pointer;
	line-height: normal;
	text-transform: capitalize;
}

#dn-center .toggle input[type="radio"]:checked+label {
	background: #62BBB4;
	color:#fff;
}

#dn-center #part1 {
	float: left;
	width: 43%;

}

#dn-center #part2{
	border-left: 1px solid #E8E8E8;
	padding:0 0 0 40px;
}

#pages.donate #step2:checked ~ #part2 {
	opacity: 1;
	height: auto;
}

#pages.donate #part2, #pages.donate #part3, #pages.donate #part4 {
	opacity: 0;
	height: 0;
	overflow: hidden;
}

#dn-center #part2, #dn-center #part3 {
	float: right;
	width: 52%;
}
#pages.donate .donateGridRight{
	padding:0;
}

@media (min-width: 90rem) {
	.donateContainer {
		margin-top: var(--sectionGaps, 6.5rem);
	}
}

.donateContainer .donateGrid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 1rem;
}

.donateContainer .donateGrid h3 {
	font-size: 2rem;
	color: #0E495B;
	font-weight: 700;
	letter-spacing: -1px;
}

@media (min-width: 1000px) {
	.donateContainer .donateGrid {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
		margin-top: 1rem;
	}
}

@media (min-width: 74rem) {
	.donateContainer .donateGrid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
	}
}

.donateGridRight {
	opacity: 1;

}

.donateGridRight .form {}

.donateGridRight .form {
	text-align: left;
	max-width: 100%;
	margin: 0 auto;
}

.donateGridRight h3 {
	margin-top: 0;
}

.donateGridRight .form .form-group {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.donateGridRight .form .form-group input,
.donateGridRight .form .form-group textarea {
	border: none;
	outline: none;
	padding: 0.75rem 0;
	font-size: 0.875rem;
	background: transparent;
	border-bottom: 1px solid #000;
	width: 100%;
	resize: none;
	font-family: houschka-pro, sans-serif;
}

.donateGridRight .form .form-group textarea {
	min-height: 5rem;
}

.donateDetails h3 {
	margin-bottom: 0 !important;
}

/* ========================================== */
/* ABOUT GRID */
/* ========================================== */

.aboutUsContainer {
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

@media (min-width: 90rem) {
	.aboutUsContainer {
		margin-top: var(--sectionGaps, 6.5rem);
	}
}

.aboutUsContainer .aboutUsGrid h3 {
	font-size: 2rem;
	color: #0E495B;
	font-weight: 700;
	letter-spacing: -1px;
}

.aboutUsGrid {
	display: flex;
	flex-direction: column;
}

@media (min-width: 54rem) {
	.aboutUsGrid {
		display: flex;
		flex-direction: row;
	}
}

.aboutUsGridLeft {
	background: #fff;
	flex: 0 0 31rem;
	width: 100%;
	max-width: 31rem;
}

.aboutUsGridRight {
	padding-left: 0rem;
	padding-top: 3rem;
}

@media (min-width: 54rem) {
	.aboutUsGridRight {
		padding-left: 4rem;
		padding-top: 6rem;
	}
}

.aboutUsGridRight h3 {
	margin-top: 0;
}

.aboutUsGridRight blockquote {
	color: #62BBB4;
	font-size: 3rem;
	line-height: .8;
	font-weight: 700;
	letter-spacing: -1px;
	position: relative;
	left: 0rem;
	width: 100%;
	margin-top: 3rem;
}

@media (min-width: 54rem) {
	.aboutUsGridRight blockquote {
		font-size: 4.375rem;
		line-height: .8;
		font-weight: 700;
		letter-spacing: -1px;
		position: relative;
		left: -8rem;
		width: calc(100% + 8rem);
		margin-top: 3rem;
	}
}

/* ========================================== */
/* IMAGE OPTION */
/* ========================================== */

.imageBlockSingle {
	width: 100%;
	max-width: 100%;
	height: 30rem;
	position: relative;
	overflow: hidden;
}

.imageBlockSingle.about {
	height: 38rem;
}

.imageBlockSingle .imageContainer {
	width: 100%;
	height: 100%;
	position: relative;
}

.imageBlockSingle .imageContainer img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.imageBlockSingle .imageContainer .gradientOverlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	z-index: 1;
	pointer-events: none;
}

.imageBlockSingle .imageContainer .titleWrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	color: #fff;
	padding: 2rem;
}

@media (min-width: 48rem) {
	.imageBlockSingle .imageContainer .titleWrapper {
		padding: 3rem;
	}
}

.imageBlockSingle .imageContainer .titleWrapper .title {
	margin: 0 0 1rem;
	font-size: 2.5rem;
	color: #fff;
}

@media (min-width: 48rem) {
	.imageBlockSingle .imageContainer .titleWrapper .title {
		font-size: 3.25rem;
	}
}

/* ========================================== */
/* ABOUT US SECOND SECTION */
/* ========================================== */

.aboutUsContainerTwo {
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

@media (min-width: 90rem) {
	.aboutUsContainerTwo {
		margin-top: var(--sectionGaps, 6.5rem);
	}
}

.aboutUsContainerTwo .innerContainer {
	display: flex;
	flex-direction: column;
	max-width: 74rem;
	margin: 0 auto;
}

@media (min-width: 80rem) {
	.aboutUsContainerTwo .innerContainer {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		justify-content: space-between;
		max-width: 74rem;
		margin: 0 auto;
	}
}

.aboutUsContainerTwo .innerContainerLeft {
	width: 100%;
	padding-top: 2rem;
	margin-bottom: 2rem;
}

@media (min-width: 80rem) {
	.aboutUsContainerTwo .innerContainerLeft {
		width: 45%;
		align-self: flex-end;
		margin-bottom: 0;
	}
}

.aboutUsContainerTwo .innerContainerRight {
	padding: 2rem;
	background: #F8F8F8;
	width: 100%;
}

@media (min-width: 80rem) {
	.aboutUsContainerTwo .innerContainerRight {
		padding: 4rem 3rem;
		width: 45%;
		position: relative;
		margin-top: -4rem;
		z-index: 9
	}
}

.aboutUsContainerTwo .innerContainer h2 {
	color: #0E495B;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	line-height: 1.2;
}



/* ========================================== */
/* DONATE */
/* ========================================== */

/* Hidden Parts */
section.donateContainer #part3, section.donateContainer #part4 {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Show Step 2 & Hide Step 1 */
section.donateContainer #step2:checked ~ #part2 {
  opacity: 1;
  height: auto;
}

/* Show Step 3  & Hide Step 2 */
section.donateContainer #step3:checked ~ #part3 {
  opacity: 1;
  height: auto;
}

section.donateContainer #step3:checked ~ #part2 {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Show Step 4  & Hide Step 3 */
section.donateContainer #step4:checked ~ #part4 {
  opacity: 1;
  height: auto;
}

section.donateContainer #step4:checked ~ #part3 {
  opacity: 0;
  width: 0;
  height: 0;
}


#dn-center{
	font-family: Helvetica, sans-serif;
	font-size:14px;
	 
	
}

#dn-center .amount{
	font-size:36px;
	letter-spacing:1.8px;

	color:#0E495B;
	line-height: 0.9;
	margin: 0 0 8px 0;
	font-family: houschka-pro, sans-serif;
}

#dn-center .amount input{
	border:none;
	width:85%;
	color: #0E495B;
	font-family: houschka-pro, sans-serif;
	font-size: 36px;
}

#dn-center .options{

	margin:0 0 20px 0;
}

#dn-center .options.amounts .other .amount{
	font-size:29px;
}

#dn-center .options.amounts .other input{
	display:inline;
	background:none;
	width:50%;
	font-size:29px;
	height: 26px;
	border-bottom:1px solid #000;
}

#dn-center .cccover.options.border input{
	display:none;
}

#dn-center .options.amounts label{
	border:1px solid #F4DF54;
	width: 31%;
	cursor: pointer;
	text-align:center;
	margin:0 0 5px 0;
	min-height: 65px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

}

#dn-center .options.amounts input[type="radio"]:checked+label, #dn-center .options.amounts label:hover {
	background-color: #F4DF54;

}

#dn-center .options.amounts .title{
	color:#000;
	margin:5px 0;
	font-size:10px;
	line-height: 1;
}

#dn-center .options.amounts {
	flex-wrap:wrap;
}

#dn-center .options.amounts input{
	display:none;
}

#dn-center .options .ticket{
	color:#0E495B;
	font-family: houschka-pro, sans-serif;
	font-size:29px;
}

#dn-center .options .flex{
	justify-content:left;
}

#dn-center .btn-group{
	clear:both;
}

#dn-center .btn-group.btn-group-lg.btn-group-justified .button.left {
	float:left;
}

#dn-center .btn-group.btn-group-lg.btn-group-justified .button.right{
	float:right;
}

#dn-center .dn-title.rel{
	position:relative;
	pointer-events: auto;
}

#dn-center .checkbox{
	vertical-align:middle;
}

#dn-center .script {
	display: block;
	position: relative;
	padding:0px 0 0 20px;
	cursor: pointer;
	text-transform:capitalize;           
}
	      
#dn-center .newmark {
	position: absolute;
	top: 1px;
	left: 0;
	height: 12px;
	width: 12px;
	background-color: #fff;
	border:1px solid #1A80D9;
}
         
#dn-center .newmark:after {
	content: "";
	display: none;
}

#dn-center .script input:checked ~ .newmark:after {
    display: block;
}
 
#dn-center .script .newmark:after {
	width: 100%;
	height: 100%;
	background: #1A80D9;				 
}

#dn-center .script .text {
	text-transform: none;
}

#dn-center .dn-field {
	position: relative;
	margin:0 0 20px 0;
	font-size:14px;		 
}

#dn-center .dn-field.float{
	float:left;
	width:50%;
}

#dn-center .dn-field.float.half{	 
	width:50%;
}
 
#dn-center .dn-field.float.third{	 
	width:33%;
}

#dn-center .dn-field select.dn-textfield{
	height:23px;
}
	
#dn-center .dn-field .dn-textfield {
	width: 100%;
	outline: none;
	border: none;
	font-size:14px;
	margin:0 0 10px 0;

	padding:0 0 5px 0;
	border-bottom: 1px solid #022859;
			 
}

#dn-center .dn-field .dn-textfield.longer{
	margin:10px 0;
}
		
#dn-center .dn-field .dn-textfield:focus {
	border-color: #022859;
	border-width: medium medium 2px;
	font-size:11px;		 
}

#dn-center .dn-field #honorName.textfield:focus, #dn-center .dn-field #honorAddress.textfield:focus{
	font-size:14px;
	border-width: medium medium 1px;
}

#dn-center .edit {
	color:#1A80D9;
	cursor:pointer;
	font-size:x-small;
	font-weight:600;
	text-decoration:underline;
	letter-spacing:1px;
	text-transform:uppercase;
}

#dn-center textarea{
	resize:none;
}

#dn-center .dn-star {
    color: #000;
	font-size:8px;
	position:absolute;
}

#dn-center .dn-head{
	color:#0E495B;
	font-size:13px;
	letter-spacing:1.3px;
	text-transform:uppercase;
	margin:0px 0px 20px 0px;
}

#dn-center .textarea{
	resize:none;
}

#dn-center .dn-title{
	position: absolute;
    pointer-events: none;
    top: 0px;
    left: 0px;
    letter-spacing: 0.65px;
    color: #000;
    transition: 0.2s ease all;
}

#dn-center .dn-field input:focus ~ .dn-title,
#dn-center .dn-field input:not([value='']) ~ .dn-title {
	top: -15px;
	left: 0px;
	opacity: 1;
	font-size:10px;
}

#dn-center .dn-field textarea:focus ~ .dn-title,
#dn-center .dn-field textarea:not([value='']) ~ .dn-title {
	top: -15px;
	left: 0px;
	opacity: 1;
	font-size:10px;
}

#dn-center .dn-spacer {
	clear:both;
	height:15px;
}

#dn-center .dn-title img{
	position:absolute;
}

#dn-center .button{


	cursor:pointer;
	color:#0E495B;
	width:100px;

	padding:10px 0;
	text-transform:uppercase;
	max-width:100px;
	font-size:13px;
	text-align:center;
	letter-spacing:3px;
	border:1px solid #F4DF54;
 
}

#dn-center .dn-smalltext {
	font-size:12px;
}

#dn-center .edit{
	display:block;
	margin:10px 0 0 0;
	color: #284264;
}

.dn-clear {
	clear:both;
}


#dn-center .red {
	color:red;
	padding:5px 0px 15px 0px;
}

#dn-center .more {
		display:none;
}
	
#dn-center .expand {
	cursor:pointer;
	text-transform:uppercase;
	letter-spacing:1px;
}

#dn-center .expand i{
	padding:0 10px 12px 0;
}

#dn-center #CreditCardTable {
	margin:0px 0px 25px 0px;
}


@media (max-width:550px) {
	#dn-center .dn-field.float.third, #dn-center .dn-field.float{
		float:none;
		width:100%;
	}
	
	#dn-center{
		border:1px solid #eee;
		padding:20px;
	}
}

/* ========================================== */
/* PRIVACY POLICY */
/* ========================================== */

.privacyContainer h2{
	margin-top: var(--spacing-lg);
	font-size: var(--font-size-heading-m);
	letter-spacing: -1px;

}

.privacyContainer h3{
	font-size: 1.75rem;
}

.privacyContainer ul{
	margin:0 0 1rem 1rem;
}

/* ========================================== */
/* FOOTER */
/* ========================================== */

footer {
	padding: 1.5rem 3.125rem;
	font-size: 0.75rem;
	line-height: 1.2;
	border-top: 1px solid #E5E5E5;
	margin-top: var(--sectionGapsMobile, 3.25rem);
}

footer.nomargin {
	margin-top: 0;
}

@media (min-width: 90rem) {
	footer {
		padding: 1.5rem 1rem;
		font-size: 0.75rem;
		margin-top: var(--sectionGaps, 6.5rem);
	}
}

footer .footerInner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	margin-bottom: 1.5rem;
	text-align: center;
}

@media (min-width:65rem) {
	footer .footerInner {
		display: flex;
		flex-direction: row;
		gap: 1rem;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 1.5rem;
	}
}

footer .footerOne {
	font-size: 0.875rem;
	line-height: 1.3;
}

footer .footerTwo {
	font-size: 0.875rem;
	line-height: 1.3;
}

footer .footerRight {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (max-width: 1099px) {
	footer .footerRight {
		display: none;
	}

	footer .footerInner{
		justify-content:center;
	}
}



@media (min-width: 74rem) {
	footer .footerRight {
		display: flex;
		flex-direction: row;
		gap: 5rem;
		justify-content: space-between;
		align-items: flex-start;
	}


}

footer .footerRight .pageLinkColumn {
	display: flex;
	flex-direction: column;
	gap: 0;
}

footer .footerRight .pageLinkColumn .pageLink,
footer .footerRight .pageLinkColumn .pageLink.alternative,
footer h4 {
	font-size: 0.75rem;
	line-height: 1;
	padding: 0.25rem;
	color: var(--color-primary-teal, #0E495B);
	text-decoration: none;
	text-align: left;
	display: block;
	transition: 0.2s;
	width: 100%;
	font-weight: 500;
}

footer .footerRight .pageLinkColumn .pageLink.alternative,
footer h4 {
	text-transform: uppercase;
	letter-spacing: 2px;
}

footer .footerRight .pageLinkColumn .pageLink:hover {
	color: var(--color-primary-light-teal, #62BBB4);
}

footer .footerfour {}

footer .footerCopyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #E5E5E5;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	line-height: 1;
}

footer .footerCopyright a {
	color: #000;
	transition: 0.2s;
	text-decoration: none;
}

.footerCopyright .footerOne,
.footerCopyright .footerTwo {
	font-size: 0.75rem;
}

footer .footerCopyright a:hover {
	color: var(--color-primary-light-teal, #62BBB4);
}

#footerlogo {
	width: 6.25rem;
	flex: 0 0 6.25rem;
	height: auto;
}

/* ========================================== */
/* PLACEHOLDERS */
/* ========================================== */

.placeholders {
}

@media (max-width: 1400px) {
	.donateContainer .donateGrid {

		grid-template-columns: auto;
	}

}

@media (max-width: 1400px) {

.sort {
		width: auto;
		margin: 0 0 -70px 0;
	}

	.data .h3header {
		display: block;
		margin: 20px 0;
		color: #B5B5B5;
		text-align: center;
		text-transform: uppercase;
		letter-spacing: 3px;
		font-size: 14px;
		cursor: pointer;
	}

	 .content {
		display: none;
	}

	 .data .content {

		position: fixed;
		width: 100%;
		top: 0%;
		background: rgba(0, 0, 0, 0.7);
		padding: 5%;
		left: 0px;
		height: 100%;
		z-index: 99;
	}

	.data .close {
		color: #fff;
		padding: 40px 0 20px 0;
		font-size: 30px;
		cursor: pointer;
		text-align:right;
		display: block;
	}

	.data .filters {
		width: 49.8%;
		border: 1px solid #eee;
		background: #fff;
	}

	.data .h3header .fa-plus, .data .h3header .fa-minus {
		display: none;

	}

	.data .filters .box {
		background: #fff;
		padding: 20px;
		margin: 0 0 20px 0;
	}

	 .data .right {
		width: 100%;
		padding: 0;
		border-left: 0;
	}

	.data .filters {
		border: 0;
		float: right;
		width: 350px;
		max-width: 100%;
	}

	.data .box .title {

		font-size: 15px;
	}

	.data .header {
		display: block;
		margin: 20px 0;
		color: #B5B5B5;
		text-align: center;
		text-transform: uppercase;
		letter-spacing: 3px;
		font-size: 14px;
		cursor: pointer;
	}

	.data .filters {
		width: 200px;
		border: 1px solid #eee;
		float: none;

		cursor: pointer;

	}

	.frame{
		padding:80% 0 0 0;
	}

}

@media (max-width: 1200px) {
	.frame {
		padding: 90% 0 0 0;
	}

	.audiowrapper .sectionContainer{
		flex-direction:column;
	}

	.audiowrapper .left{
		width:100%;
	}

	.audiowrapper .left h2{
		text-align:left;
	}

	.audiowrapper .left br{
		display:none;
	}

	.audiowrapper .left .button{
		float:none;
	}

	.audiowrapper .right{
		width:100%;
		margin:40px 0 0 0;
	}
}

@media (max-width: 960px) {
	.tab-panel .album{
		width:49%;
	}

	.tab-panel .album{
		height:400px;
	}

	.frame {
		padding: 120% 0 0 0;
	}

	.audiowrapper .right{
		flex-direction:column;
	}

	.audiowrapper .box{
		width:100%;
	}

}

@media (max-width: 750px) {

}

@media (max-width: 650px) {
	#dn-center #part2, #dn-center #part3, #dn-center #part1{
		float:none;
		width:100%;
		padding:0;
		border:none;
		margin:0 0 30px 0;
	}

	.tab-panel .album{
		float:none;
		width:100%;
		height:auto;
	}

	.data .player {
		clear: left;
		width: 300px;
		max-width: 90%;
	}

	.data .time {
		width: 22%;
		font-size: 12px;
	}

	.data .cat {
		width: 25%;
		margin: 0 3% 0 0;
		font-size: 12px;
	}

	.data .download {
		width: 10%;
		text-align: right;
	}

	.data .info {
		width: 50%;
	}
}

@media (max-width: 550px) {
	.cardContent, .meetRavBlock .cardImage {

		margin: 0px 0 0 0;
	}

	.mobile-menu__hamburger .fa{
		color:#000;
	}

	.mobile-menu__item{
		color:#000;
	}

	.pageIntroduction .card .card-content {
		flex-basis: 100%;
		width:100%;
	}

	.cardContent, .card-content {
		width: 100%;
	}

	.searchform .input{
		width:100%;
	}



	.data  .download{
		margin:5px 0 0;
	}

	.audiowrapper .player{
		clear:both;
		padding:10px 0 0 0;
	}

	.audiowrapper .icon{
		float:left;

	}

	.audiowrapper .info{
		float:left;
	}

	.audiowrapper .box{
		display:block;
	}



}