@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
	--br-def: 0;
	--br-def2: calc(var(--br-def) / 2);
	--nav-hide: 0px;
	--nav-height: 0px;
	--transition-def: 0.3s;
	--primary-font: "Inter", sans-serif;

	--gutter-width: calc(1rem + 5vw);
}

/* General Styling */
.SmoothScroll {
	position: fixed;
	width: 100%;
	z-index: 1000;
}
.body-grow {
	flex-grow: 1;
	background-color: var(--page-bg-color);
	position: relative;
	z-index: 250;
	min-height: 100vh;
}
@media (max-width: 1200px) {
	:root {
		--gutter-width: 1rem
	}
	.narrow {
		--gutter-width: calc(1rem + 5vw) !important;
	}
}
@media (max-width: 900px) {
	.narrow {
		--gutter-width: 1rem !important;
	}
}
.c-container {
	width: 100%;
	padding: 0 var(--gutter-width);
}
.narrow {
	--gutter-width: calc(5rem + 10vw);
}
.lock-movement {
	overflow: hidden;
}
.no-br {
	border-radius: 0;
}
.vh-100 {
	height: 100vh !important;
	height: calc(var(--vh, 1vh) * 100) !important;
}
.img-left {
	float: left;
	max-width: 50%;
	padding: 10px 10px 10px 0px;
	height: auto;
}
.img-right {
	float: right;
	max-width: 50%;
	padding: 10px 0px 10px 10px;
	height: auto;
}
.row {
	margin: 0;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-thumb {
	border: 1px solid var(--page-bg-color);
	background-color: var(--primary-color);
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
}
::-webkit-scrollbar-track {
	background-color: var(--page-bg-color);
}
::-webkit-scrollbar-thumb:hover {
	background-color: var(--primary-hover-color);
}
a {
	text-decoration: none;
	color: var(--primary-color);
	transition: var(--transition-def);
	-webkit-transition: var(--transition-def);
	-moz-transition: var(--transition-def);
	-ms-transition: var(--transition-def);
	-o-transition: var(--transition-def);
}
a:hover {
	color: var(--primary-hover-color);
}
a.hover-line {
	position: relative;
}
a.hover-line::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 0%;
	background-color: var(--primary-hover-color);
	border-radius: var(--br-def);
	-webkit-border-radius: var(--br-def);
	-moz-border-radius: var(--br-def);
	-ms-border-radius: var(--br-def);
	-o-border-radius: var(--br-def);
	transition: var(--transition-def);
	-webkit-transition: var(--transition-def);
	-moz-transition: var(--transition-def);
	-ms-transition: var(--transition-def);
	-o-transition: var(--transition-def);
}
a.hover-line:hover::after {
	width: 100%;
}
.card {
	border-radius: var(--br-def);
}

/* Outside Curves */
.oc {
	position: relative;
}
.oc::after {
	content: "";
	-webkit-mask-image: url(/images/corner-curve.svg);
	mask-image: url(/images/corner-curve.svg);
	mask-size: cover;
	-webkit-mask-size: cover;
	background-color: var(--page-bg-color);
	position: absolute;
	height: var(--br-def);
	width: var(--br-def);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}
.oc-2::before {
	content: "";
	-webkit-mask-image: url(/images/corner-curve.svg);
	mask-image: url(/images/corner-curve.svg);
	mask-size: cover;
	-webkit-mask-size: cover;
	background-color: var(--page-bg-color);
	position: absolute;
	height: var(--br-def);
	width: var(--br-def);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}
.oc-top-left::after, .oc-2-top-left::before {
	top: calc(var(--br-def) * -1);
	left: 0;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
}
.oc-top-right::after, .oc-2-top-right::before {
	top: calc(var(--br-def) * -1);
	right: 0;
}
.oc-left-top::after, .oc-2-left-top::before {
	top: 0;
	left: calc(var(--br-def) * -1);
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
}
.oc-left-bottom::after, .oc-2-left-bottom::before {
	bottom: 0;
	left: calc(var(--br-def) * -1);
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}
.oc-bottom-left::after, .oc-2-bottom-left::before {
	bottom: calc(var(--br-def) * -1);
	left: 0;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}
.oc-bottom-right::after, .oc-2-bottom-right::before {
	bottom: calc(var(--br-def) * -1);
	right: 0;
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
}
.oc-right-top::after, .oc-2-right-top::before {
	top: 0;
	right: calc(var(--br-def) * -1);
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}
.oc-right-bottom::after, .oc-2-right-bottom::before {
	bottom: 0;
	right: calc(var(--br-def) * -1);
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
}

/* Testimonials */
.blockquote-footer {
	background: none;
}
.testimonial-custom {
	min-height: 350px;
	background-color: #ebebeb;
}
.testimonial-panel {
	width: 100%;
	min-height: 350px;
	background-color: #dddddd;
}
@media only screen and (max-width: 576px) {
	.testimonial-panel {
		min-height: 600px;
	}
}
.testimonial-overlay {
	text-align: center;
	width: 100%;
	height: 100%;
	position: relative;
}
.blockquote {
	font-size: 1.15rem;
}
.testimonial-overlay .blockquote {
	line-height: 1.67;
	color: black;
	font-style: italic;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.blockquote-footer {
	font-weight: 800;
}
.testimonial-overlay cite {
	font-style: normal;
}
.fade {
	transition: opacity 0.4s linear !important;
}
.show {
	opacity: 1 !important;
}
.hide {
	opacity: 0 !important;
}



/* Forms */
.nostyle-form {
	display: block;
	width: 100%;
	font-size: 1rem;
	font-weight: 400;
	color: #212529;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0 0 10px 10px;
	padding: 0.2rem 0.5rem;
	border: 0 !important;
	outline: 0 !important;
	background-color: #ffffff75 !important;
	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	-ms-border-radius: 0 0 10px 10px;
	-o-border-radius: 0 0 10px 10px;
}
.nostyle-form-box {
	border: 1px solid rgba(214, 214, 214, 0.514);
	background-color: #ffffff75;
	border-radius: var(--br-def);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
}
.form-control {
	border-radius: var(--br-def);
}

/* Navbar */
#overlayDark {
	position: fixed;
	z-index: 1450;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #0000009d;
	opacity: 0%;
	pointer-events: none;
	transition: var(--transition-def);
	-webkit-transition: var(--transition-def);
	-moz-transition: var(--transition-def);
	-ms-transition: var(--transition-def);
	-o-transition: var(--transition-def);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
#overlayDark.active {
	opacity: 100%;
	pointer-events: all;
}
#overlayDark.active + body {
	overflow-y: hidden;
}


/* 404 Page */
.title-404 {
	font-size: calc(1.2rem + 3vw);
}
.links-404 {
	list-style: none;
	font-size: calc(1.2rem + 0.5vw);
	font-weight: 800;
	padding: 0;
}
.links-404 li {
	margin: 0 1.5rem 0 0;
}
.links-404 a {
	color: white;
}
.links-404 a:hover {
	color: #ffffffb2;
}

/* Gallery */
.galpreview {
	overflow: hidden;
	height: 10rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


/* General Page Formatting */
.overflow-h {
	overflow: hidden;
}
.page-hero {
	background-color: var(--primary-color);
	background-position: center;
	background-size: cover;
}



.fill-img {
	width: 100%;
	height: 10rem;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
}
.sticky-container {
	position: relative;
}
.sticky-block {
	position: sticky;
	top: 0;
	width: 100%;
	left: 0;
	right: 0;
	padding: calc(1rem + var(--true-nav-height)) 0;
}
.full-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.half-page {
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.image-sep img {
	height: 20rem;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.news-block .img-fluid {
	width: 100%;
	height: 30rem;
	object-fit: cover;
	object-position: center;
}

.page-top {
	padding: calc(var(--nav-height) + 5rem) var(--gutter-width) 5rem var(--gutter-width);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 5rem;
	background-color: var(--page-bg-color-alt);
	color: var(--page-text-color-alt);
}
.page-top .info {
	width: calc(30vw + 20rem);
	max-width: 100%;
}
.page-top .info h1 {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 4.5rem;
}
.page-top .info p {
	font-size: 1.2rem;
	font-weight: 300;
	margin-bottom: 2rem;
}
.page-top .info p:last-of-type {
	margin-bottom: 0;
}
.page-top .images {
	width: 30vw;
	max-width: 100%;
	display: flex;
	align-items: end;
	position: relative;
	padding-left: 1.5rem;
}
.page-top .images img {
	width: 75%;
	position: absolute;
	bottom: 0;
	right: 0;
}
.page-top .images img:nth-child(2) {
	position: relative;
	margin-bottom: 4rem;
	transform: rotate(-15deg);
	-webkit-transform: rotate(-15deg);
	-moz-transform: rotate(-15deg);
	-ms-transform: rotate(-15deg);
	-o-transform: rotate(-15deg);
}
.image-group {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	padding: 0 var(--gutter-width);
}
.image-group .image-block {
	width: 25%;
	flex-grow: 1;
}
.image-group .image-block img {
	width: 100%;
}
.image-group .image-block h6 {
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 0;
}
.image-group .image-block p {
	font-size: 0.9rem;
	margin-top: 0.8rem;
	margin-bottom: 0.15rem;
}
.text-area {
	display: flex;
	flex-wrap: wrap;
	column-gap: 10rem;
	row-gap: 1.5rem;
}
.text-area h3 {
	width: 100%;
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0;
}
.text-area .text-block {
	width: 25rem;
}
.text-area .text-block p {
	font-size: 0.95rem;
	font-weight: 300;
	margin: 0;
}
.text-area .image {
	width: 100%;
	position: relative;
}
.text-area .image img {
	width: 100%;
	height: 30rem;
	object-fit: cover;
	object-position: center;
}
.text-area .image p {
	font-size: 0.8rem;
	font-weight: 500;
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	background-color: var(--primary-color);
	color: white;
	padding: 0.25rem 0.75rem;
	margin: 0;
}
@media (max-width: 900px) {
	.page-top .info h1 {
		font-size: 4rem;
		margin-bottom: 3.75rem;
	}
	.page-top .info p {
		font-size: 1.1rem;
	}
	.page-top .images {
		width: 100%;
		padding: 0;
	}
	.page-top .images img:nth-child(2) {
		position: relative;
		margin-bottom: 4rem;
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
	}
	.image-group .image-block {
		width: 30rem;
		max-width: 100%;
		flex-grow: 0;
	}
	.text-area h3 {
		font-size: 2.75rem;
	}
	.text-area .text-block {
		width: 35rem;
	}
}
@media (max-width: 500px) {
	.text-area h3 {
		font-size: 2.25rem;
	}
	.page-top .info h1 {
		font-size: 3rem;
		margin-bottom: 3.75rem;
	}
	.page-top .info p {
		font-size: 1rem;
	}
}

.marquee {
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	padding: 0;
}
.marquee li {
	width: 15rem;
	height: 15rem;
	flex-grow: 1;
	margin: 0;
	max-width: 100%;
	min-width: auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;

}
.marquee li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.marquee__content {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	width: auto;
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
	min-width: 100%;
}

@keyframes scroll {
	from {
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
}
	to {
		transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
		-moz-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
}
}

@media (prefers-reduced-motion: reduce) {
	.marquee__content {
		animation-play-state: paused !important;
	}
}
.marquee__content {
	animation: scroll 50s linear infinite;
}

/* Reverse animation */
.marquee--reverse .marquee__content {
	animation-direction: reverse;
}
.marquee--fit-content {
	max-width: fit-content;
}
.marquee--pos-absolute .marquee__content:last-child {
	position: absolute;
	top: 0;
	left: 0;
}
.marquee--pos-absolute .marquee__content:last-child {
	animation-name: scroll-abs;
}

@keyframes scroll-abs {
	from {
		transform: translateX(calc(100% + var(--gap)));
	}
	to {
		transform: translateX(0);
	}
}

.learn-to-play-schedule {
	padding: 0 var(--gutter-width);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.learn-to-play-schedule .block {
	width: 45%;
}
.learn-to-play-schedule .block:nth-child(2) {
	text-align: end;
}
.learn-to-play-schedule h2 {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 0.1rem;
}
.learn-to-play-schedule p.name {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0;
}
.learn-to-play-schedule p.type {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
.learn-to-play-schedule p.date {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0;
	margin-top: 0.5rem;
	line-height: 2rem;
}
.learn-to-play-schedule p.time {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	line-height: 1.9rem;
}
.learn-to-play-schedule p.location {
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 0;
}
.learn-to-play-schedule p.address {
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 0;
}
@media (max-width: 980px ) {
	.learn-to-play-schedule {
		justify-content: space-between;
		row-gap: 4rem;
	}
	.learn-to-play-schedule .block {
		width: 100%;
	}
	.learn-to-play-schedule .block:nth-child(2) {
		text-align: start;
	}
}
@media (max-width: 500px ) {
	.learn-to-play-schedule h2 {
		font-size: 2.5rem;
	}
	.learn-to-play-schedule p.date {
		font-size: 1.5rem;
	}
	.learn-to-play-schedule p.time {
		font-size: 1.5rem;
	}
	.learn-to-play-schedule p.location {
		font-size: 1.2rem;
	}
	.learn-to-play-schedule p.address {
		font-size: 1rem;
	}
	.learn-to-play-schedule p.address {
		font-size: 1rem;
	}
}
.learn-to-play-gallery {
	padding: 0 var(--gutter-width);
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.learn-to-play-gallery .image {
	width: 20rem;
	flex-grow: 1;
	max-width: 100%;
	height: 100%;
	overflow: hidden;
}
.learn-to-play-gallery .image img {
	width: 100%;
	height: 15rem;
	object-fit: cover;
	transition: var(--transition-def);
	-webkit-transition: var(--transition-def);
	-moz-transition: var(--transition-def);
	-ms-transition: var(--transition-def);
	-o-transition: var(--transition-def);
}
.learn-to-play-gallery .image img:hover {
	transform: scale(1.08);
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
}
.learn-to-play-gallery .image h5 {
	font-size: 1rem;
	font-weight: 600;
	width: 100%;
	padding: 0.5rem 0.75rem;
	margin: 0;
	background-color: var(--page-bg-color-alt);
	transition: var(--transition-def);
	-webkit-transition: var(--transition-def);
	-moz-transition: var(--transition-def);
	-ms-transition: var(--transition-def);
	-o-transition: var(--transition-def);
}
.learn-to-play-gallery .image a {
	color: var(--page-text-color-alt);
}
.learn-to-play-gallery .image a:hover {
	color: white;
}
.learn-to-play-gallery .image a:hover h5 {
	background-color: var(--primary-color);
}
.lightboxOverlay {
    background-color: rgba(var(--page-bg-color-rgb),0.8) !important;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
    filter: unset;
    opacity: 1;
    display: none;
    -webkit-filter: unset;
}
.lb-outerContainer {
    border-radius: var(--br-def);
    background-color: var(--page-bg-color-alt);
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
}
.lightbox .lb-image {
    border-radius: var(--br-def);
    -webkit-border-radius: var(--br-def);
    -moz-border-radius: var(--br-def);
    -ms-border-radius: var(--br-def);
    -o-border-radius: var(--br-def);
	border: 0;
}
.lightbox {
    position: fixed;
	top: 0 !important;
	bottom: 0 !important;
    left: 0 !important;
	right: 0 !important;
    width: 100%;
    z-index: 10000;
    font-weight: 400;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.home-top {
	position: relative;
}
.tunes-album-block {
	padding: 1.5rem var(--gutter-width);
	width: 50rem;
	max-width: 100%;
	margin: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.tunes-album-block .image {
	width: 12rem;
	height: 12rem;
	max-width: 100%;
	border-radius: 100%;
	transform: rotate(15deg) !important;
	-webkit-transform: rotate(15deg) !important;
	-moz-transform: rotate(15deg) !important;
	-ms-transform: rotate(15deg) !important;
	-o-transform: rotate(15deg) !important;
	padding: 1.5rem;
	background-color: white;
	display: flex;
	align-items: center;
	overflow: hidden;
	justify-content: center;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	margin-bottom: 1rem;
}
.tunes-album-block .image img {
	width: 100%;
}
.tunes-album-block .text {
	width: 40rem;
	max-width: 100%;
}
.tunes-album-block .text h4 {
	margin-bottom: 1rem;
	font-weight: 900;
	font-size: 2rem;
}
.tunes-album-block .text p {
	margin: auto;
	margin-bottom: 1rem;
	max-width: 30rem;
	font-size: 0.9rem;
}
.tartan-bar {
	width: 100%;
	height: 1rem;
	background-color: hsl(2, 57%, 40%);
	background-image: 
		repeating-linear-gradient(transparent, transparent 50px, rgba(0,0,0,.4) 50px, rgba(0,0,0,.4) 53px, transparent 53px, transparent 63px, rgba(0,0,0,.4) 63px, rgba(0,0,0,.4) 66px, transparent 66px, transparent 116px, rgba(0,0,0,.5) 116px, rgba(0,0,0,.5) 166px, rgba(255,255,255,.2) 166px, rgba(255,255,255,.2) 169px, rgba(0,0,0,.5) 169px, rgba(0,0,0,.5) 179px, rgba(255,255,255,.2) 179px, rgba(255,255,255,.2) 182px, rgba(0,0,0,.5) 182px, rgba(0,0,0,.5) 232px, transparent 232px),
		repeating-linear-gradient(270deg, transparent, transparent 50px, rgba(0,0,0,.4) 50px, rgba(0,0,0,.4) 53px, transparent 53px, transparent 63px, rgba(0,0,0,.4) 63px, rgba(0,0,0,.4) 66px, transparent 66px, transparent 116px, rgba(0,0,0,.5) 116px, rgba(0,0,0,.5) 166px, rgba(255,255,255,.2) 166px, rgba(255,255,255,.2) 169px, rgba(0,0,0,.5) 169px, rgba(0,0,0,.5) 179px, rgba(255,255,255,.2) 179px, rgba(255,255,255,.2) 182px, rgba(0,0,0,.5) 182px, rgba(0,0,0,.5) 232px, transparent 232px),
		repeating-linear-gradient(125deg, transparent, transparent 2px, rgba(0,0,0,.2) 2px, rgba(0,0,0,.2) 3px, transparent 3px, transparent 5px, rgba(0,0,0,.2) 5px);
}
.bg-tartan {
	background-color: hsl(2, 57%, 40%);
	background-image: 
		repeating-linear-gradient(transparent, transparent 50px, rgba(0,0,0,.4) 50px, rgba(0,0,0,.4) 53px, transparent 53px, transparent 63px, rgba(0,0,0,.4) 63px, rgba(0,0,0,.4) 66px, transparent 66px, transparent 116px, rgba(0,0,0,.5) 116px, rgba(0,0,0,.5) 166px, rgba(255,255,255,.2) 166px, rgba(255,255,255,.2) 169px, rgba(0,0,0,.5) 169px, rgba(0,0,0,.5) 179px, rgba(255,255,255,.2) 179px, rgba(255,255,255,.2) 182px, rgba(0,0,0,.5) 182px, rgba(0,0,0,.5) 232px, transparent 232px),
		repeating-linear-gradient(270deg, transparent, transparent 50px, rgba(0,0,0,.4) 50px, rgba(0,0,0,.4) 53px, transparent 53px, transparent 63px, rgba(0,0,0,.4) 63px, rgba(0,0,0,.4) 66px, transparent 66px, transparent 116px, rgba(0,0,0,.5) 116px, rgba(0,0,0,.5) 166px, rgba(255,255,255,.2) 166px, rgba(255,255,255,.2) 169px, rgba(0,0,0,.5) 169px, rgba(0,0,0,.5) 179px, rgba(255,255,255,.2) 179px, rgba(255,255,255,.2) 182px, rgba(0,0,0,.5) 182px, rgba(0,0,0,.5) 232px, transparent 232px),
		repeating-linear-gradient(125deg, transparent, transparent 2px, rgba(0,0,0,.2) 2px, rgba(0,0,0,.2) 3px, transparent 3px, transparent 5px, rgba(0,0,0,.2) 5px);
}

.galleries-holder {
	display: flex;
	flex-wrap: wrap;
	column-gap: 2rem;
}
.galleries-holder h1 {
	width: 100%;
}
.galleries-holder h2 {
	width: 100%;
	font-size: 2rem;
	font-weight: 900;
}
.galleries-holder h5 {
	width: 100%;
}
.galleries-holder h6 {
	width: 100%;
}
.galleries-holder .image {
	width: 15rem;
	margin-bottom: 2rem;
}
.galleries-holder .image img {
	width: 100%;
	height: 20rem;
	object-fit: cover;
	object-position: center;
}
.galleries-holder .sub-gallery-holder {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 4rem;
	width: 100%;
}
.galleries-holder .sub-gallery-holder .gallery-block {
	width: 18rem;
	background-color: white;
	padding: 0.5rem;
}
.galleries-holder .sub-gallery-holder .gallery-block a {
	color: black;
}
.galleries-holder .sub-gallery-holder .gallery-block a:hover {
	color: var(--primary-color);
}
.galleries-holder .sub-gallery-holder .gallery-block img {
	width: 100%;
	height: 15rem;
	object-fit: cover;
	object-position: center;
}
.galleries-holder .sub-gallery-holder .gallery-block h4 {
	padding: 2rem 0 0 0;
	margin: 0;
	font-size: 1.1rem;
}
@media (max-width: 623px) {
	.galleries-holder .sub-gallery-holder .gallery-block {
		width: calc(50% - 1rem);
	}
	.galleries-holder .sub-gallery-holder .gallery-block img {
		height: 40vw;
	}
}
@media (max-width: 450px) {
	.galleries-holder .sub-gallery-holder .gallery-block {
		width: 100%;
	}
	.galleries-holder .sub-gallery-holder .gallery-block img {
		height: 80vw;
	}
}

.videos-row {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
	column-gap: 2rem;
}
.videos-row h2 {
	width: 100%;
	font-size: 2rem;
	font-weight: 900;
}
.videos-row .video-holder {
	margin-bottom: 2rem;
	background-color: var(--page-bg-color-alt);
	color: var(--page-text-color-alt);
	padding: 0.5rem;
	width: 30rem;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.videos-row .video-holder h3 {
	font-size: 1.2rem;
	font-weight: 500;
	padding: 0.25rem 0;
}
.videos-row .video-holder .aspect-ratio {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}
.videos-row .video-holder .aspect-ratio iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 1023px) {
	.videos-row {
		column-gap: 1rem;
	}
	.videos-row .video-holder {
		width: calc(50% - 0.5rem);
	}
}
@media (max-width: 500px) {
	.videos-row .video-holder {
		width: 100%;
	}
}

.tunes-tunes {
	padding: 4rem var(--gutter-width);
}
.tunes-tunes .tune-top {
	padding-bottom: 1.6rem;
}
.tunes-tunes .tune-top h2 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0;
}
.tunes-tunes .tune-top p {
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 0;
}
.tunes-tunes .tune-set {
	width: 20rem;
	max-width: 100%;
	padding: 1rem 0;
}
.tunes-tunes .tune-set h5 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
}
.tunes-tunes .tune-set h6 {
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 0.1rem;
}
