* { 
	box-sizing: border-box; 
}
@font-face {
	font-family: Antagonia Sans;
	font-weight: 600;
  	src: url("/fonts/Antagonia-Regular.otf");
}
@font-face {
	font-family: Antagonia Sans;
	font-weight: 700;
  	src: url("/fonts/Antagonia-Medium.otf");
}
@font-face {
	font-family: Antagonia Sans;
	font-weight: 800;
  	src: url("/fonts/Antagonia-Bold.otf");
}
@font-face {
	font-family: Antagonia Sans;
	font-weight: 500;
  	src: url("/fonts/Antagonia-Light.otf");
}
html {
    scroll-behavior: auto;
}
body {
	margin: 0;
	background-color: #242628;
	background-attachment:scroll;
	background-image:url("../assets/Page_Background.svg");
	background-position:left top;
	background-repeat:repeat;
	background-size:cover;
	overflow-x: hidden;
}
body::selection {
	background-color: #ed0d61;
	color: #242628;
}
.os-theme-custom {
	--os-size: 8px;
	--os-padding-perpendicular: 5px;
	--os-padding-axis: -x;
	--os-track-border-radius: 0;
	--os-track-bg: none;
	--os-track-bg-hover: #242628;
	--os-track-bg-active: #191919;
	--os-track-border: none;
	--os-track-border-hover: none;
	--os-track-border-active: none;
	--os-handle-border-radius: 0;
	--os-handle-bg: #ED0D61;
	--os-handle-bg-hover: #F4F4F4;
	--os-handle-bg-active: #FFFFFF;
	--os-handle-border: none;
	--os-handle-border-hover: none;
	--os-handle-border-active: none;
	--os-handle-min-size: 33px;
	--os-handle-max-size: none;
	--os-handle-perpendicular-size: 100%;
	--os-handle-perpendicular-size-hover: 100%;
	--os-handle-perpendicular-size-active: 100%;
	--os-handle-interactive-area-offset: 0;
}
.os-theme-hidden {
	--os-size: 0;
}
.os-scrollbar {
	transition: all 0.3s ease-in-out;
}
#nav {
	mix-blend-mode: exclusion;
    display: flex;
    height: 80px;
    justify-content: space-between;
    max-height: 100px;
    min-width: 100%;
    position: fixed;
    z-index: 100;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.2s ease-in-out;
}
#top_nav {
	display: flex;
    height: 80px;
	justify-content: space-between;
	max-height: 100px;
    min-width: 100%;
}
#logo_nav_container {
	z-index: 100;
	mix-blend-mode: exclusion;
	opacity: 1;
	align-self:center;
	display:block;
	height:45px;
	left:0%;
	margin:0px 11% 0px;
	object-position:center center;
	right:0%;
}
#logo_nav {
	cursor: pointer;
	display: block;
	height: 45px;
}
#logo_nav, #hamburger-icon {
    z-index: 101;
}
#hamburger-icon {
	align-self:center;
	color:black;
	cursor:pointer;
	height:50px;
	width: 50px;
	margin:0% 11% 0% 11%;
}
.lottie-hamburger {
    height: 50px;
    width: 50px;
}
.menu {
	isolation: isolate;
    visibility: hidden;
	display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #191919;
    color: #f4f4f4;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 10vw;
    z-index: 99;
    transition: all 0.4s ease-in-out;
    transform: translateY(-100%);
}
.menu.open {
	visibility: visible;
	transition: all 0.4s ease-in-out;
	transform: translateY(0);
}
.menu_link {
	isolation: isolate;
	color: #ed0d61;
	font-family: "Antagonia Sans", sans-serif;
	font-weight: 600;
	font-size: 15vh;
	text-decoration: none;
	margin-left: 11%;
	margin-bottom: 0px;
	letter-spacing: 3pt;
}
.menu_link:hover {
	color: #f4f4f4;
	font-family: "Antagonia Sans", sans-serif;
	font-weight: 800;
	letter-spacing: 0pt;
}
#GalleryTitleContainer {
	width: 100%;
	display: flex;
	align-content: center;
	padding-bottom: 20px;
}
#GalleryTitle {
	margin: auto;
	width: 100%;
	max-width: 1165px;
	display: flex;
	flex-direction: column;
	align-content: center;
}
.GalleryTitleH1 {
	font-family: "Fira Code", monospace;
	font-weight: 700;
	color: #F4F4F4;
}
#GalleryBody {
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	max-width: 1300px;
	margin: 0 auto;
}
.grid-wrapper {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.gallery-grid {
	width: 100%;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.gallery-grid:after {
	content: '';
	display: block;
	clear: both;
}
.gallery-item {
	position: relative;
	cursor: pointer;
	width: 280px;
	margin-bottom: 15px;
	margin-right: 15px;
	background: #f9f9f9;
	border-radius: 0px;
	overflow: hidden;
}
.gallery-item img {
	user-select: none;
	width: 100%;
	height: auto;
	display: block;
}
.gallery-item:hover {
	transform: scale(1.05);
	transition: transform 0.1s ease-in-out;
}
.protected-image {
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

/* MODAL STRUCTURE */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	inset: 0;
	background-color: rgba(0,0,0,0.8);
}
.modal_container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.modal_section {
	display: flex;
	align-items: center;
}
.modal_content-wrapper {
	display: flex;
	flex-direction: row;
	max-width: 1000px;
	width: 90vw;
	max-height: 80vh;
}
.modal_section--image {
	flex: 0 0 60%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.modal_section--info {
	flex: 0 0 40%;
	justify-content: center;
}
.modal-content {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
.modal_content-wrapper.horizontal-layout {
	max-width: 1300px;
	width: 95vw;
	max-height: 70vh;
}
.modal_content-wrapper.horizontal-layout .modal_section--image {
	flex: 0 0 70%;
}
.modal_content-wrapper.horizontal-layout .modal_section--info {
	flex: 0 0 30%;
}
.modal-content.horizontal {
	max-width: 100%;
	max-height: 70vh;
}
.modal-content.vertical {
	max-width: 100%;
	max-height: 80vh;
	width: auto;
	height: auto;
	object-fit: contain;
}
.modal-info {
	padding: 30px;
	background-color:#242628;
	text-align: left;
}
.modal_date {
	font-family:"Fira Code", monospace;
	font-size:0.8rem;
	color: #f4f4f4;
}
.modal_description {
	font-family: "Fira Code", monospace;
	font-size: 1.2rem;
	color: #f4f4f4;
}
.modal_tags {
	font-family: "Fira Code", monospace;
	font-size: 1rem;
	color: #f4f4f4;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}
.tag-chip {
	cursor: pointer;
	display: inline-block;
	padding: 3px 8px;
	border-radius: 0px;
	background-color: #ed0d61;
	color: #242628;
	font-family: "Fira Code", monospace;
	font-weight: 700;
	font-size: 0.8rem;
	line-height: 1.2;
}
.tag-chip.selected {
	background-color: #f4f4f4;
	color: #ed0d61;
	font-weight: 800;
}
.close {
	position: relative;
	float: right;
	top: -20px;
	right: -10px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
}

/* FILTERS */
#filter-sidebar {
	margin: auto;
	width: 100%;
	max-width: 1165px;
	display: flex;
	flex-direction: column;
	align-content: center;
	color: #f4f4f4;
	font-family: "Fira Code", monospace;
	font-size: 0.9rem;
	grid-area: filter;
}
.filter-section {
	margin-bottom: 20px;
	display: flex; 
	flex-direction: row;
}
.filter_label {
	font-size: 14pt;
	padding-right: 20px;
	white-space: nowrap;
	flex: 0 0 auto;
}
.bold_t {
	font-weight: 800;
}
#filter-type {
	font-family: "Fira Code", monospace;
	font-weight: 700;
	font-size: 12pt;
	background-color: #ed0d61;
	color: #191919;
}
#filter-type option {
	background-color: #191919;
	color: #F4F4F4;
}
#filter-tags-row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
#filter-tags-row .filter_label {
	white-space: nowrap;
	flex: 0 0 auto;
}
#filter-tags {
	flex: 1 1 auto;
	display: flex;
	gap: 6px;
	max-height: 25px;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
#filter-tags.expanded {
	flex-wrap: wrap;
	max-height: 200px;
}
.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	max-height: 32px;
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.tags-list.expanded {
	max-height: 1000px;
}
.tags-list + .toggle-tags {
    margin-top: 10px;
    font-family: "Fira Code", monospace;
    font-weight: 700;
    background: #ed0d61;
    color: #242628;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 10pt;
}
#toggle-tags {
	font-size: 10pt;
	background-color: #191919;
	color: #F4F4F4;
}
.date-filter button {
	padding: 5px 10px;
	background: #ed0d61;
	border: none;
	color: #242628;
	cursor: pointer;
	font-weight: 700;
}
#date-toggle {
	font-family: "Fira Code", monospace;
	font-weight: 700;
	font-size: 10pt;
	background-color: #191919;
	color: #F4F4F4;
}
#filter-date-row .date-wrapper {
	flex: 1 1 auto;
	min-width: 0;
}
.date-filter {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
#calendar-container {
	margin-top: 10px;
	font-size: 0.85rem;
	color: #f4f4f4;
	max-height: 200px;
	overflow-y: auto;
	padding: 10px;
	border-radius: 4px;
	background-color: transparent;
}
.day-cell {
	display: inline-block;
	height: 26px;
	margin: 2px;
	padding: 0 5px;
	line-height: 26px;
	text-align: center;
	cursor: pointer;
	border-radius: 0;
	user-select: none;
	background: transparent;
	color: #f4f4f4;
	white-space: nowrap;
}
.day-cell.has-image {
	background-color: #ed0d61;
	color: #242628;
	font-weight: 700;
}
.day-cell.selected {
	outline: 2px solid #f4f4f4;
}

#reset_filters_container {
	display: flex;
	flex-direction: column;
	align-content: center;
}
.reset-filters-btn {
	align-self: center;
	margin-top: 10px;
	padding: 5px 10px;
	cursor: pointer;
	font-family: "Fira Code", monospace;
	font-weight: 700;
	background-color: #ed0d61;
	color: #242628;
	border: none;
}
.load-more-btn {
	margin: 20px auto;
	padding: 10px 20px;
	cursor: pointer;
	font-family: "Fira Code", monospace;
	font-weight: 700;
	background-color: #ed0d61;
	color: #242628;
	border: none;
	display: block;
}
#footer {
	bottom: 0;
	display: flex;
	flex-direction: column;
	min-height: 200px;
	background-color: #2C2C2C;
}

/* CONTACT FORM */
#contact {
	max-width: 700px;
	margin: 40px auto;
	padding-top: 30px;
	padding-left: 30px;
	padding-right: 30px;
	font-family: "Fira Code", monospace;
	color: #f4f4f4;
}
label {
	margin-left: 20px;
}
input, textarea, select {
	background-color: #242628;
	color: #A5A5A5;
	border: none;
}
input:focus, textarea:focus, select:focus {
	background-color: #191919;
	outline: none;
}
input.filled, textarea.filled, select.filled {
	background-color: #191919;
	color: #f4f4f4;
}
select:hover option:hover {
	background-color: #ed0d61;
	color: #191919;
}
.contact_title {
	font-size: 1.4rem;
	margin-bottom: 20px;
}
.contact_label {
	display: block;
	margin-top: 15px;
	margin-bottom: 5px;
	font-size: 0.9rem;
}
.contact_input,
.contact_select,
.contact_textarea {
	width: 100%;
	padding: 8px 10px;
	border: none;
	font-family: "Fira Code", monospace;
	font-size: 0.9rem;
}
.contact_textarea {
	min-height: 120px;
	resize: vertical;
}
.contact_section,
.contact_info {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, opacity 0.5s ease;
}
.contact_section--visible,
.contact_info--visible {
	max-height: 1000px;
	opacity: 1;
}
.contact_section-inner {
	margin-top: 10px;
}
.contact_button {
	margin-top: 20px;
	padding: 10px 20px;
	border: none;
	background-color: #ed0d61;
	color: #242628;
	font-family: "Fira Code", monospace;
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
	display: none;
}
.contact_feedback {
	margin-top: 10px;
	font-size: 0.85rem;
}
input.email-error {
	background-color: #ed0d61 !important;
	color: #191919 !important;
	font-weight: 800;
	border: none;
	padding: 5px;
	border-radius: 0;
}
#social_container {
	display: flex;
	align-content: center;
	justify-content: center;
	padding-bottom: 50px;
	padding-left: 20px;
	padding-right: 20px;
}
.social_phrase {
	font-family: "Fira Code", monospace;
	font-weight: 500;
	color: #f4f4f4
}
.social_link {
	text-decoration: none;
	background-color: #ed0d61;
	color: #191919;
	cursor: pointer;
	font-weight: 800;
}
.social_link:hover {
	background-color: #f4f4f4;
	color: #ed0d61;
}
.policy-content {
	overflow-y: auto;
}
body.modal-open {
    overflow: hidden;
}
.policy-link {
	font-family: "Fira Code", monospace;
	text-decoration: none;
	background-color: #ed0d61;
	color: #191919;
	cursor: pointer;
	font-weight: 800;
}
.policy-link:hover {
	background-color: #f4f4f4;
	color: #ed0d61;
}
.policy-flex {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
#policy_container {
	display: flex;
	align-self: center;
	justify-content: center;
}
.policy-title {
	font-family: "Fira Code", monospace;
	font-weight: 700;
	color: #F4F4F4;
	margin-bottom: 10px;
}
.policy-text {
	font-family: "Fira Code", monospace;
	font-size: 1.2rem;
	color: #f4f4f4;
	margin-bottom: 15px;
}
.policy-chapter {
	font-family: "Fira Code", monospace;
	font-weight: 700;
	color: #ed0d61;
	margin-top: 15px;
	margin-bottom: 5px;
}
.policy-text {
	font-size: 12pt;
}
.span-highlight {
	background-color: #ed0d61;
	color: #191919;
	font-weight: 800;
}
.policy-list {
	margin-left: 20px;
	color: #f4f4f4;
}
.policy-list-element {
	font-family: "Fira Code", monospace;
	font-size: 1.2rem;
	color: #f4f4f4;
}
.policy-date {
	font-family: "Fira Code", monospace;
	font-size: 0.8rem;
	color: #f4f4f4;
}
.modal-scrollable {
	max-height: 70vh;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #ED0D61 transparent;
}
.modal-scrollable::-webkit-scrollbar {
	width: 8px;
}
.modal-scrollable::-webkit-scrollbar-track {
	background: none;
}
.modal-scrollable::-webkit-scrollbar-thumb {
	background-color: #ED0D61;
	border-radius: 0;
}
.modal-scrollable::-webkit-scrollbar-thumb:hover {
	background-color: #F4F4F4;
}
.modal-scrollable::-webkit-scrollbar-thumb:active {
	background-color: #FFFFFF;
}

/* MEDIA BREAKOUT */
@media (max-width: 1164px){
	#GalleryTitle {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 992px){
	.menu_link {
		font-size: 9vh;
	}
}
@media (max-width: 575px) {
	.menu_link {
		font-size: 14vw;
	}
	.gallery-item {
		position: relative;
		width: 150px;
	}
	.gallery-grid {
		position: relative;
		width: 150px;
	}
	.modal_content-wrapper {
		flex-direction: column !important;
		max-width: 95vw;
		max-height: 90vh;
		width: 95vw;
	}
	.modal_section--image {
		flex: 0 0 auto;
		width: 100%;
		max-height: 60vh;
	}
	.modal_section--info {
		flex: 0 0 auto;
		width: 100%;
	}
	.modal-info {
		padding: 20px;
	}
	.modal-content {
		max-height: 55vh;
		width: 100%;
		height: auto;
		object-fit: contain;
	}
	.modal-content.vertical {
		max-height: 55vh;
		width: 100%;
		height: auto;
		object-fit: contain;
	}
	.close {
		top: -15px;
		right: -5px;
		font-size: 32px;
	}
	.filter-section {
        flex-direction: column;
    }
    .filter_label {
        padding-right: 0;
        margin-bottom: 10px;
    }
    #filter-type {
        width: auto;
        margin: 0 auto;
    }
	.tags-wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
	.date-wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 1024px) and (min-height: 1200px) {
	.menu_link {
		font-size: 9vh;
	}
}
button:focus,
a:focus,
input:focus,
div:focus {
	-webkit-tap-highlight-color: transparent;
}
.touch-device button:focus,
.touch-device a:focus,
.touch-device input:focus,
.touch-device div:focus {
    outline: none;
}
@media (pointer: fine) {
    button:focus,
    a:focus,
    input:focus,
    div:focus {
        -webkit-tap-highlight-color: #ed0d61;
    }
}