/********************
*	Fonts
********************/

@font-face {
	font-family: "Mango";
	src: url(../fonts/MangoGrotesque/MangoGrotesque-Bold.woff2);
	font-style: normal;
	font-weight: bold;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: "Public";
	src: url(../fonts/PublicSans/PublicSans-Regular.woff2);
	font-style: normal;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: "Public";
	src: url(../fonts/PublicSans/PublicSans-Bold.woff2);
	font-style: normal;
	font-weight: 700;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: "Trirong";
	src: url(../fonts/Trirong/Trirong-MediumItalic.woff2);
	font-style: italic;
	font-weight: 500;
	text-rendering: optimizeLegibility;
}


/********************
*	Root
********************/

:root {

	--clr-neutral-800: #363636;
	--clr-neutral-900: #000;
	--clr-burnt-sienna: #ed5f59;
	--clr-apricot: #f08565;
	--clr-tulip-tree: #edad40;
	--clr-sweet-mango: #f9d672;

	--ff-primary: "Mango", sans-serif;
	--ff-secondary: "Public", sans-serif;
	--ff-ternary: "Trirong", sans-serif;
}


/********************
*	Reset
********************/

*,
*::before,
*::after {
	font: inherit;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
}

html,
body {
	min-height: 100%;
}

html {
	font-size: 62.5%;
}

body {
	font-family: var(--ff-primary);
	font-size: 1.6rem;
	color: var(--clr-neutral-900);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	width: 100%;
}

picture,
video,
canvas,
svg {
	display: block;
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
	text-wrap: pretty;
}

p {
	text-wrap: pretty;
}


@media(prefers-reduced-motion: no-preference) {
	:has(:target) {
		scroll-behavior: smooth;
		scroll-padding-top: 2rem;
	}
}

/********************
*	Animation
********************/

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes modalFadeUp {
	from {
		opacity: 0;
		transform: translate(-50%, -40%);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

@keyframes marquee {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-100%);
	}
}

/********************
*	Container
********************/

.container {
	display: block;
	margin-inline: auto;
	width: calc(100% - max(4rem, 2.60416666667vw));
}


/********************
*	Sections
********************/

.section-padding-xs {
	padding: max(2rem, 1.30vw);
}

.section-padding-sm {
	padding: max(3rem, 1.30vw);
}

.section-padding-md {
	padding: max(5rem, 3.255vw);
}

.section-padding-lg {
	padding: max(7rem, 4.255vw) max(3rem, 1.30vw);
}

.section-padding-top-lg {
	padding-top: max(7rem, 4.255vw);
}

.section-padding-bottom-lg {
	padding-bottom: max(7rem, 4.255vw);
}

.section-padding-top-xl {
	padding-top: max(10rem, 6.51041666667vw);
}

.section-padding-bottom-xl {
	padding-bottom: max(10rem, 6.51041666667vw);
}

.section-margin-top-xl {
	margin-top: max(10rem, 6.51041666667vw);
}

.section-margin-bottom-xl {
	margin-bottom: max(10rem, 6.51041666667vw);
}


/********************
*	Typography
********************/

.heading-xl {
	font-size: max(20rem, 13.0208333333vw);
	line-height: max(18rem, 11.71875vw);
	text-transform: uppercase;
}

.heading-lg {
	font-size: max(10rem, 6.51041666667vw);
	line-height: max(9rem, 5.859375vw);
	text-transform: uppercase;
	max-width: 40ch;
}

.heading-md {
	font-size: max(6rem, 3.90625vw);
	line-height: max(6rem, 3.90625vw);
	text-transform: uppercase;
	max-width: 50ch;
}

.text-sm-container .text-sm:not(:first-of-type) {
	margin-top: max(1.5rem, 0.9765625vw);
}

.text-sm {
	font-family: var(--ff-secondary);
	font-size: max(1.6rem, 1.041vw);
	line-height: max(2.5rem, 1.627vw);
	font-weight: 400;
}

.text-md-container .text-md:not(:first-of-type) {
	margin-top: max(1.5rem, 0.9765625vw);
}

.text-md {
	font-family: var(--ff-secondary);
	font-size: max(2rem, 1.30208333333vw);
	font-weight: 400;
	line-height: max(2.6rem, 1.69270833333vw);
	max-width: 65ch;
}

.text-md b {
	font-weight: 600;
}

.text-alt-md {
	font-family: var(--ff-ternary);
	font-size: max(2rem, 1.30208333333vw);
}

.text-alt-lg {
	font-family: var(--ff-ternary);
	font-size: max(3.6rem, 2.34vw);
}

.page-content {
	font-family: var(--ff-secondary);
	font-size: max(1.6rem, 1.041vw);
}

.page-content ul {
	padding-left: max(2rem, 1.302vw);
}

/********************
*	Button
********************/

.button {
	font-family: var(--ff-secondary);
	font-size: max(1.6rem, 1.04166666667vw);
	font-weight: 700;
	line-height: 2.08rem;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background-color: var(--clr-neutral-900);
	display: inline-block;
	padding: max(1.5rem, 0.9765625vw) max(5rem, 3.25520833333vw);
	border-radius: 1000vmax;
	border: 0.1rem solid var(--clr-neutral-900);
	cursor: pointer;
	transition: all 250ms;

}

.button-primary {
	color: #fff;
	background-color: var(--clr-neutral-900);
	border-color: var(--clr-neutral-900);
}

.button-primary:hover {
	color: var(--clr-neutral-900);
	background-color: #fff;
}

.button-white {
	background-color: #fff;
	color: #000;
	border-color: #fff;
}

.button-white:hover {
	color: #fff;
	background-color: transparent;
}

/********************
*	Modal
********************/

.modal {
	display: none;
	background-color: #fff;
	width: 100%;
	max-width: max(60rem, 39.0625vw);
	border-radius: max(2rem, 1.302vw);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -45%);
	z-index: 10;
	opacity: 0;
}

.modal.padding {
	padding: max(2rem, 1.302vw);
}

.modal.active {
	display: block;
	animation-name: modalFadeUp;
	animation-duration: 250ms;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

.modal-close {
	background-color: var(--clr-neutral-900);
	padding: max(1.2rem, 0.78125vw);
	border: none;
	border-radius: 1000vmax;
	cursor: pointer;
	transition: all 300ms;
}

.modal-close .icon {
	fill: #fff;
	width: max(1.6rem, 1.0416vw);
	height: max(1.6rem, 1.0416vw);
}

.modal-close:hover {
	background-color: #fff;
}

.modal-close:hover .icon {
	fill: var(--clr-neutral-900);
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal-body .text-sm-container .text-sm {
	max-width: 50ch;
}

.modal-body .text-sm-container.h-center {
	display: flex;
	flex-direction: column;
	align-items: center;
}


/********************
*	Overlay
********************/

.overlay {
	display: none;
	background-color: rgba(0, 0, 0, 0.8);
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.overlay.active {
	display: block;
}

/********************
*	Pre-Loader
********************/

.pre-loader {
	display: none;
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	opacity: 0;

}

.pre-loader.active {
	display: block;
	animation-name: fadeIn;
	animation-duration: 250ms;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
}

.pre-loader.inactive {
	display: block;
	animation-name: fadeOut;
	animation-duration: 250ms;
	animation-timing-function: linear;
}

.pre-loader.pre-active {
	display: block;
	opacity: 1;
}

/********************
*	Primary Header
********************/

.primary-header {
	padding-block: max(2rem, 1.30208333333vw);
	position: sticky;
	top: 0;
	z-index: 10;
}

.primary-navigation {
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: max(0.5rem, 0.32552083333vw) max(2rem, 1.30208333333vw) max(0.5rem, 0.32552083333vw) max(2rem, 1.30208333333vw);
	border: 0.1rem solid var(--clr-neutral-900);
	border-radius: 1000vmax;
}

.primary-navigation .logo-container svg {
	color: #000;
	height: max(4rem, 2.60416666667vw);
	width: auto;
}

.primary-navigation .logo-container img {
	height: max(5rem, 3.255vw);
	width: auto;
}

.primary-navigation-list {
	display: flex;
	gap: max(2rem, 1.30208333333vw);
	list-style: none;
}

.primary-navigation-list li a {
	font-family: var(--ff-secondary);
	font-size: max(1.6rem, 1.04166666667vw);
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--clr-neutral-900);
	transition: all 0.3s;
}

.primary-navigation-list li a:hover {
	opacity: 0.5;
}

.menu-icon {
	display: none;
	width: max(2.4rem, 1.6vw);
	height: max(2.4rem, 1.6vw);
	cursor: pointer;
}

.menu-icon-close {
	display: none;
	background-color: #fff;
	fill: var(--clr-neutral-900);
	width: 4rem;
	height: 4rem;
	padding: 0.8rem;
	border-radius: 1000vmax;
	position: fixed;
	top: 3rem;
	right: 3rem;
	z-index: 10;
	cursor: pointer;
}

/********************
*	Page Header
********************/

.page-header {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: max(10rem, 6.51041666667vw);
}

.page-description {
	font-family: var(--ff-ternary);
	font-size: max(3.6rem, 2.34375vw);
	max-width: 45ch;
}

/********************
*	Cards
********************/

.cards {
	display: flex;
	flex-wrap: wrap;
}

.cards .card {
	text-decoration: none;
	color: inherit;
	position: relative;
}

.cards>.card.height-xl {
	min-height: max(66rem, 42.96875vw);
}

.card-footer {
	display: flex;
	justify-content: space-between;
	padding: max(1.5rem, 0.9765625vw);
	width: 100%;
	position: absolute;
	bottom: 0;
	transition: all 250ms;
}

.card-footer-heading {
	display: block;
	margin-top: max(1rem, 0.65104166666vw);
}

.card-footer-meta {
	font-family: var(--ff-secondary);
	font-size: max(1.2rem, 0.78125vw);
	font-weight: 700;
	text-align: right;
	display: flex;
	gap: max(1rem, 0.65104166666vw);
	flex-direction: column;
	justify-content: center;
}

.card-footer-meta span.big {
	font-size: max(1.4rem, 0.911vw);
}

.card-footer.bg-neutral-900 {
	color: #fff;
}

.card:hover .card-footer.bg-neutral-900 {
	color: var(--clr-tulip-tree);
}

.cards-1>.card {
	width: 100%;
}

.cards-2 {
	gap: max(2rem, 1.30208333333vw);
}

.cards-2>.card {
	width: calc(50% - max(1rem, 0.66vw));
}

.cards-3 {
	gap: max(2rem, 1.30208333333vw);
}

.cards-3>.card {
	min-height: max(50rem, 32.55vw);
	width: calc(33.33% - max(1.33rem, 0.86588541666vw));
}

.cards-3-sticky {
	align-items: flex-start;
	/* height: max(73rem, 47.5260416667vw); */
}

.cards-3-sticky .card {
	height: max(53rem, 34.5052083333vw);
	position: sticky;
	top: max(20rem, 23.1481481481vh);
}

.cards-3-sticky .card:nth-of-type(2) {
	margin-top: max(10rem, 6.51041666667vw);
}

.cards-3-sticky .card:nth-of-type(3) {
	margin-top: max(20rem, 13.0208333333vw);
}

.cards-5 {
	gap: max(2rem, 1.30208333333vw);
}

.cards-5>.card {
	width: calc(20% - max(1.6rem, 1.07vw));
}

.card-poster {
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.card-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-sticky-text-container {
	width: 100%;
	height: 100%;
	padding-top: max(4rem, 2.60416666667vw);
	position: absolute;
}

.card-sticky-text-container.text-align-center {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.card-sticky-text-container.text-align-center.v-center {
	justify-content: center;
}

.card-sticky-text {
	max-width: 20ch;
	position: sticky;
	top: max(10rem, 6.51041666667vw);
}

.card-sticky-sub {
	font-family: var(--ff-ternary);
	font-size: 3.6rem;
	line-height: 4.7rem;
}

.card-centered-text-container {
	display: flex;
	justify-content: center;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.card-centered-text {
	font-family: var(--ff-ternary);
	font-size: max(2.4rem, 1.5625vw);
	text-align: center;
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 30ch;
}

.card-image {
	max-height: max(43rem, 27.994vw);
	object-fit: cover;
}

.card-image-2 {
	max-height: max(55rem, 35.80vw);
	object-fit: cover;
}

.slide-controller-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: max(2rem, 1.30vw);
}

.slide-controller-card-heading {
	font-family: var(--ff-ternary);
	font-size: max(2.4rem, 1.5625vw);
	line-height: max(3.1rem, 2.01vw);
	margin-bottom: max(3rem, 2.01vw);
}

.slide-controller-card-description {
	max-width: 20ch;
}

.slide-controller {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: max(3rem, 1.95vw);
	user-select: none;
	margin-top: max(3rem, 2.01vw);
}

.slide-controller span svg {
	fill: #fff;
	width: max(1.9rem, 1.23vw);
	height: max(1.9rem, 1.23vw);
}

.slide-controller span:first-of-type,
.slide-controller span:last-of-type {
	background-color: var(--clr-neutral-900);
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: max(1rem, 0.65vw);
	border-radius: 1000vmax;
	cursor: pointer;
}

.slide-controller span:first-of-type svg {
	transform: rotate(-180deg);
}

.slide-controller span:nth-of-type(2) {
	font-size: max(3.6rem, 2.34vw);
	line-height: max(4.6rem, 2.99vw);
}

.music-cards {
	display: flex;
	justify-content: space-between;
	gap: max(2rem, 1.302vw);
}

.music-card {
	width: 50%;
	background-color: var(--clr-neutral-800);
	display: flex;
	border-radius: max(2rem, 1.302vw);
	overflow: hidden;
}

.music-card>.right {
	padding: max(2rem, 1.302vw) max(3rem, 1.95vw);
}

.music-card-image {
	max-width: max(22rem, 14.32vw);
	height: 100%;
	object-fit: cover;
}

.music-card-heading {
	font-family: var(--ff-secondary);
	font-size: max(2.6rem, 1.69vw);
	font-weight: 600;
	color: #fff;
}

.music-card-description {
	font-family: var(--ff-secondary);
	font-size: max(2rem, 1.302vw);
	font-weight: 300;
	color: #fff;
	margin-top: max(0.3rem, 0.19vw);
}

.music-card-button {
	font-size: max(1.5rem, 0.97vw);
	margin-top: max(2rem, 1.302vw);
	padding: max(1.4rem, 0.911vw) max(3rem, 1.95vw);
}

.bg-1 {
	background-color: #000;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

/********************
*	Accordion
********************/

.accordion {
	background-color: var(--clr-neutral-900);
	border-radius: max(2rem, 1.30vw);
}

.accordion.active {
	grid-template-rows: auto 1fr;
}

.accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: max(2rem, 1.30vw) max(2rem, 1.95vw);
	cursor: pointer;
}

.accordion-heading {
	font-family: var(--ff-ternary);
	color: #fff;
}

.accordion-close {
	background-color: #fff;
	padding: max(1.2rem, 0.78125vw);
	border: none;
	border-radius: 1000vmax;
	border: 0.1rem solid transparent;
	cursor: pointer;
}

.accordion-close .icon {
	fill: var(--clr-neutral-900);
	width: max(1.6rem, 1.0416vw);
	height: max(1.6rem, 1.0416vw);
}

.accordion:hover .accordion-close {
	background-color: var(--clr-neutral-900);
	border-color: #fff;
}

.accordion:hover .accordion-close .icon {
	fill: #fff;
}

.accordion-body {
	font-family: var(--ff-secondary);
	color: #fff;
	display: grid;
	grid-template-rows: 0fr;
	padding: 0rem max(3rem, 1.95vw) 0rem max(3rem, 1.95vw);
	transition: all 250ms;
}

.accordion-body>* {
	overflow: hidden;
}

.accordion.active .accordion-body {
	grid-template-rows: 1fr;
	padding: 0rem max(3rem, 1.95vw) max(3rem, 1.95vw) max(3rem, 1.95vw);
}

/********************
*	Info Section
********************/

.info-section.style-1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: max(7rem, 4.55729166667vw);
	padding: max(2rem, 1.30208333333vw);
}

.info-section.style-1>.left,
.info-section.style-1>.right {
	width: calc(50% - max(3.5rem, 2.28vw));
}

.info-section.style-1.as-page-header>.right {
	padding: max(5rem, 3.255vw);
}

.info-section.style-1 .info-section-image,
.info-section.style-1 video {
	min-height: max(50rem, 32.55vw);
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: max(2rem, 1.30208333333vw);
}

.info-section.style-1 .heading-lg {
	max-width: 20ch;
}

.info-section.style-2 {
	display: flex;
	flex-wrap: wrap;
	gap: max(2rem, 1.30vw);
}

.info-section.style-2>.left {
	width: calc(66% - max(1rem, 0.66vw));
}

.info-section.style-2>.right {
	width: calc(34% - max(1rem, 0.66vw));
}

.info-section.style-3 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: max(7rem, 4.55729166667vw);
	padding: max(2rem, 1.30208333333vw);
}

.info-section.style-3>.left {
	width: calc(36% - max(3.5rem, 2.28vw));
}

.info-section.style-3>.right {
	width: calc(64% - max(3.5rem, 2.28vw));
}

.info-section.style-3 .info-section-image {
	height: 100%;
	border-radius: max(2rem, 1.30208333333vw);
	object-fit: cover;
}


/********************
*	Gallery
********************/

.galleries {
	display: flex;
	flex-wrap: wrap;
	gap: max(2rem, 1.30208333333vw);
}

.gallery {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: max(2rem, 1.30208333333vw);
}

.gallery .image-container {
	width: calc(50% - max(1rem, 0.66vw));
	border-radius: max(2rem, 1.30208333333vw);
}

.gallery .image-container.action {
	background-color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: max(27.35rem, 17.80vw);
}

.gallery .image-container img {
	height: 100%;
	border-radius: max(2rem, 1.30208333333vw);
	object-fit: cover;
}

.gallery .image-container:nth-of-type(3n) {
	width: 100%;
}

.gallery.reverse,
.gallery.reverse .image-container:nth-of-type(3n) {
	width: calc(50% - max(1rem, 0.66vw));
}

.gallery.gallery.reverse .image-container:first-of-type {
	width: 100%;
}

.galleries .gallery {
	width: calc(32% - max(1.34rem, 0.88vw));
}

.galleries .gallery:nth-of-type(2) {
	width: calc(36% - max(1.33rem, 0.87vw));
}

.galleries .gallery:nth-of-type(2) .image-container {
	width: 100%;
}

.galleries .gallery:nth-of-type(2) .image-container img {
	height: max(57rem, 37.10vw);
}

/********************
*	Marquee
********************/

.marquee-container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow-x: hidden;
}

.marquee {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-block: 2rem;
	animation-name: marquee;
	animation-duration: 20s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.marquee-item {
	white-space: nowrap;
	padding-inline: 3rem;
}

.marquee-item p {
	white-space: nowrap;
}


/********************
*	Category
********************/

.category-card {
	text-decoration: none;
	color: inherit;
}

.category-card .category-picture {
	border-radius: max(2rem, 1.30vw);
	min-height: max(35rem, 22.786vw);
	object-fit: cover;
}

.category-card .category-heading {
	font-family: var(--ff-secondary);
	font-size: max(1.8rem, 1.171vw);
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	margin-top: max(1rem, 0.651vw);
	transition: all 250ms;
}

.category-card:hover .category-heading {
	opacity: 0.5;
}

/********************
*	Footer
********************/

footer>.container {
	padding: max(6rem, 3.90625vw) max(4rem, 2.60vw) max(4rem, 2.60vw) max(4rem, 2.60vw);
}

.footer-social {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.footer-social ul {
	list-style: none;
	display: flex;
	gap: max(2rem, 1.30vw);
}

.footer-social ul li a {
	font-size: max(2.4rem, 1.5625vw);
	color: #fff;
	transition: all 250ms;

}

.footer-social ul li a:hover {
	opacity: 0.5;
}

.footer-bottom {
	font-family: var(--ff-secondary);
	font-size: max(1.4rem, 0.911vw);
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	display: flex;
	justify-content: space-between;
	margin-top: max(6rem, 3.90vw);
}

.footer-bottom ul {
	display: flex;
	gap: max(3rem, 1.95vw);
	list-style: none;
}

.footer-bottom ul li a {
	color: #fff;
	text-decoration: none;
	transition: all 250ms;
}

.footer-bottom ul li a:hover {
	opacity: 0.5;
}

/********************
*	Utility 
********************/

.text-align-center {
	text-align: center;
}

.color-white {
	color: #fff;
}

.bg-neutral-900 {
	background-color: var(--clr-neutral-900);
}

.d-flex {
	display: flex;
}

.flex-direction-column {
	flex-direction: column;
}

.justify-content-center {
	justify-content: center;
}

.align-items-center {
	align-items: center;
}

.width-100 {
	width: 100%;
}

.max-width-100 {
	max-width: 100%;
}

.margin-top-2 {
	margin-top: 2rem;
}

.margin-top-5 {
	margin-top: 5rem;
}

.margin-bottom-1 {
	margin-bottom: 1rem;
}

.margin-bottom-2 {
	margin-bottom: 2rem;
}

.padding-bottom-0 {
	padding-bottom: 0;
}

.border-radius-2 {
	border-radius: 2rem;
}

.overflow-hidden {
	overflow: hidden;
}

.bg-neutral-900 {
	background-color: var(--clr-neutral-900);
}

.bg-burnt-sienna {
	background-color: var(--clr-burnt-sienna);
}

.bg-apricot {
	background-color: var(--clr-apricot);
}

.bg-tulip-tree {
	background-color: var(--clr-tulip-tree);
}

.bg-sweet-mango {
	background-color: var(--clr-sweet-mango);
}

.margin-top-5 {
	margin-top: max(5rem, 3.255vw) !important;
}

.margin-top-3 {
	margin-top: max(3rem, 1.95vw) !important;
}

.margin-top-2 {
	margin-top: max(2rem, 1.30208333333vw) !important;
}

.margin-bottom-1 {
	margin-bottom: max(1rem, 0.651vw);
}

.margin-bottom-2 {
	margin-bottom: max(2rem, 1.30208333333vw) !important;
}

.margin-bottom-3 {
	margin-bottom: max(3rem, 1.9531vw);
}

.content-padding-left {
	padding-left: max(4rem, 2.60vw);
}

.border-radius-2 {
	border-radius: max(2rem, 1.30208333333vw) !important;
}

.border-top-right-radius-2 {
	border-top-right-radius: max(2rem, 1.30208333333vw);
}




/********************
*	Splide
********************/


#music,
#books,
#films,
#testimonials,
#shorts {
	position: relative;
}

#music .splide__arrow,
#books .splide__arrow,
#films .splide__arrow,
#testimonials .splide__arrow,
#shorts .splide__arrow {
	background-color: transparent;
	position: absolute;
	top: min(-3rem, 1.95vw);
	right: max(1rem, 0.651vw);
	left: unset;
}

#music .splide__arrow--prev,
#books .splide__arrow--prev,
#films .splide__arrow--prev,
#testimonials .splide__arrow--prev,
#shorts .splide__arrow--prev {
	right: max(4rem, 2.60vw);
}

.splide__pagination {
	display: none !important;
}

.splide__slide {
	cursor: grab;
}

.splide__slide:active {
	cursor: grabbing;
}

/********************
*	Media Queries
********************/

@media(max-width:1250px) {
	.cards>.card.height-xl {
		min-height: auto;
	}

	.info-section.style-1 {
		align-items: stretch;
	}

	.info-section.style-3 {
		align-items: stretch;
	}

}

@media(max-width: 992px) {
	.container {
		width: calc(100% - 3rem);
	}

	.heading-xl {
		font-size: max(12rem, 7.8vw);
		line-height: max(10.8rem, 7.03vw);
	}

	.heading-lg {
		font-size: max(6rem, 3.90vw);
		line-height: max(6rem, 3.90vw);
	}

	.text-alt-lg {
		font-size: max(2rem, 1.30vw);
	}

	.section-padding-top-xl {
		padding-top: max(5rem, 3.25vw);
	}

	.section-padding-bottom-xl {
		padding-bottom: max(5rem, 3.25vw);
	}

	.primary-navigation {
		padding: max(0.5rem, 0.32552083333vw) max(1.8rem, 1.17vw) max(0.5rem, 0.32552083333vw) max(0.5rem, 0.32552083333vw);
	}

	.primary-navigation .primary-navigation-list {
		display: none;
	}

	.primary-navigation.active .primary-navigation-list {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: max(1rem, 0.65vw);
		background-color: var(--clr-neutral-900);
		width: calc(100% - max(1rem, 0.6vw));
		height: calc(100% - max(1rem, 0.6vw));
		border-top-right-radius: max(2rem, 1.30vw);
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 10;
		box-shadow: 0px -2rem 0px 0 #fff;
	}

	.primary-navigation.active .menu-icon-close {
		display: block;
	}

	.primary-navigation-list li a {
		font-family: var(--ff-primary);
		font-size: max(5rem, 3.25vw);
		color: #fff;
	}

	.menu-icon {
		display: block;
	}

	.page-header {
		padding-top: max(3rem, 1.9vw);
	}

	.cards-3-sticky {
		height: unset;
	}

	.cards-3-sticky .card {
		position: relative;
		top: 0;
		height: unset;
		margin-top: 0 !important;
	}

	.cards {
		flex-direction: column;
	}

	.cards>.card {
		width: 100%;
		height: auto;
		min-height: auto;
	}

	.info-section.style-1 {
		flex-direction: column;
		gap: max(2rem, 1.30208333333vw);
	}

	.info-section.style-1>.left,
	.info-section.style-1>.right {
		width: 100%;
	}

	.info-section.style-2 {
		flex-direction: column;
	}

	.info-section.style-2>.left,
	.info-section.style-2>.right {
		width: 100%;
	}

	.info-section.style-3 {
		flex-direction: column;
		gap: max(2rem, 1.30208333333vw);
	}

	.info-section.style-3>.left,
	.info-section.style-3>.right {
		width: 100%;
	}

	.info-section.style-1.as-page-header {
		text-align: center;
	}

	.info-section.style-1.as-page-header>.right {
		padding: 0;
		padding-top: max(3rem, 1.9vw);
	}

	.galleries {
		flex-direction: column;
		align-items: center;
	}

	.galleries .gallery,
	.galleries .gallery:nth-of-type(2) {
		width: 100%;
	}

	.galleries .gallery:nth-of-type(2) .image-container img {
		height: 30rem;
	}

	.music-cards {
		flex-direction: column;
	}

	.music-card {
		width: 100%;
	}
}

@media(max-width: 768px) {
	.height-100vh-on-md {
		height: 100vh !important;
	}

	.heading-xl {
		font-size: max(8.5rem, 5.5vw);
		line-height: max(8.5rem, 5.5vw);
	}

	.heading-lg {
		font-size: max(4.8rem, 3.125vw);
		line-height: max(4.8rem, 3.125vw);
	}

	.heading-md {
		font-size: max(3.6rem, 2.34vw);
		line-height: max(3.6rem, 2.34vw);
	}

	.text-md {
		font-size: max(1.5rem, 0.97vw);
		line-height: max(2.2rem, 1.43vw);
	}

	.section-padding-lg {
		padding: max(3rem, 1.953vw) max(2rem, 1.30vw);
	}

	.section-padding-md {
		padding: max(2rem, 1.30vw);
	}

	.modal {
		max-width: min(60rem, 90%);
	}

	.button-block-on-md {
		width: 100%;
	}

	.primary-navigation {
		padding: max(0.5rem, 0.32552083333vw) max(1.8rem, 1.17vw) max(0.5rem, 0.32552083333vw) max(1.8rem, 1.17vw);
	}

	.primary-navigation .logo-container img {
		height: max(4.5rem, 2.92vw);
	}

	.slide-controller-card-description {
		max-width: 100%;
	}

	.slide-controller span svg {
		width: max(1.5rem, 0.97vw);
		height: max(1.5rem, 0.97vw);
	}

	.accordion-close .icon {
		width: max(1.2rem, 0.78vw);
		height: max(1.2rem, 0.78vw);
	}

	.music-card {
		height: max(18.9rem, 12.30vw);
		position: relative;
	}

	.music-card>.right {
		padding: max(1rem, 0.65vw) max(2rem, 1.30vw);
	}

	.music-card-heading {
		font-size: max(2rem, 1.30vw);
	}

	.music-card-description {
		font-size: max(1.6rem, 1.04vw);
	}

	.music-card-button {
		font-size: max(1.4rem, 0.911vw);
		padding: max(1rem, 0.65vw) max(2rem, 1.30vw);
		position: absolute;
		bottom: max(1rem, 0.65vw);
	}

	.music-card-image {
		width: max(15rem, 9.76vw);
	}


	footer>.container {
		padding: max(3rem, 1.95vw);
	}

	.footer-social {
		text-align: center;
		flex-direction: column;
		align-items: center;
		gap: max(3rem, 1.953vw);
	}

	.footer-bottom ul {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-bottom {
		flex-direction: column-reverse;
		align-items: center;
		gap: max(3rem, 1.953vw);
		margin-top: max(3rem, 1.953vw);
	}


}

@media(max-width: 476px) {
	.info-section.style-2 .card {
		height: max(30rem, 1.95vw);
	}

	.music-card-image {
		width: max(13rem, 0.84vw);
	}
}