@font-face{
    font-family: "Pragmatica Bold";
    src: url("https://db.onlinewebfonts.com/t/0869b08cb8a452307e0f54738cefd782.eot");
    src: url("https://db.onlinewebfonts.com/t/0869b08cb8a452307e0f54738cefd782.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/0869b08cb8a452307e0f54738cefd782.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/0869b08cb8a452307e0f54738cefd782.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/0869b08cb8a452307e0f54738cefd782.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/0869b08cb8a452307e0f54738cefd782.svg#Pragmatica Bold")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family: "Pragmatica ExtraLight";
    src: url("https://db.onlinewebfonts.com/t/617d5f1697c695120f15b139cc8e29fe.eot");
    src: url("https://db.onlinewebfonts.com/t/617d5f1697c695120f15b139cc8e29fe.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/617d5f1697c695120f15b139cc8e29fe.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/617d5f1697c695120f15b139cc8e29fe.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/617d5f1697c695120f15b139cc8e29fe.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/617d5f1697c695120f15b139cc8e29fe.svg#Pragmatica ExtraLight")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family: "Gotham Regular";
    src: url("https://db.onlinewebfonts.com/t/0ff8990774ec4865c7f45befbafd4910.eot");
    src: url("https://db.onlinewebfonts.com/t/0ff8990774ec4865c7f45befbafd4910.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/0ff8990774ec4865c7f45befbafd4910.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/0ff8990774ec4865c7f45befbafd4910.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/0ff8990774ec4865c7f45befbafd4910.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/0ff8990774ec4865c7f45befbafd4910.svg#Gotham Regular")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

:root {
  --clr-dark: #070a13;
  --clr-light: #f1f5f9;
  --clr-slate400: #94a3b8;
  --clr-slate600: #475569;
  --clr-slate800: #1e293b;
  --clr-rose: #e11d48;
  --clr-indigo: #4f46e5;

  /* rose rgb(225, 29, 72) */
  /* indigo rgb(79, 70, 229) */

  /* sizes */
  --size-xxs: 0.5rem;
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-lg: 1.125rem;
  --size-xl: 1.25rem;
  --size-2xl: 1.5rem;
  --size-3xl: 1.875rem;
  --size-4xl: 2.25rem;
  --size-5xl: 3rem;
  --size-6xl: 3.75rem;
  --size-7xl: 4.5rem;
  --size-8xl: 6rem;
  --size-9xl: 8rem;
  --size-10xl: 10rem;

  --ft-family-regular: "Gotham Regular";
  --ft-family-bold: "Pragmatica Bold";
  --ft-family-light: "Pragmatica ExtraLight";
  
  --fs-900: 3rem;
  --fs-800: 2.5rem;
  --fs-700: 2rem;
  --fs-400: 1rem;

  --fw-400: 400;
  --fw-700: 700;

  --size-400: 1.5rem;
  --size-500: 3rem;
  --size-600: 6rem;

  --clr-neutral-900: hsl(0, 9%, 11%);
  --clr-neutral-200: hsl(36, 24%, 96%);
  --clr-neutral-100: hsl(0, 0%, 100%);

  --clr-primary-200: hsl(213, 43%, 79%);
  --clr-primary-300: hsl(190, 84%, 50%);
  --clr-primary-400: hsl(217, 100%, 50%);
  --clr-primary-500: hsl(190, 100%, 28%);
  
  --clr-bg-default:#EDDBBA;
  --clr-bg-dark: #34312d;
  --clr-white: #fff;
  --clr-bg-darkorange: #7E1C14;

  --container-width: 100%;
}


/* general styling */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}


* {
  margin: 0;
  line-height: calc(1em + 0.5rem);
}

html {
  scroll-behavior: smooth;
}

.light-mode {
  --clr-light: #070a13;
  --clr-dark: #f1f5f9;
  --clr-slate400: #1e293b;
  --clr-slate600: #1e293b;
  --clr-slate800: #1e293b;
}

body {
  font-family: 'General Sans', sans-serif;
  background-color: var(--clr-dark);
  color: var(--clr-light);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  user-select: none;
}

button {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

a {
  color: var(--clr-rose);
}

strong {
  font-weight:700
}

/* Scrollbar */
/*
body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--clr-rose);
  outline: 1px solid var(--clr-rose);
}
*/





/*
 * START CUSTTOM
 */
  




/* Set core body defaults */
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

a {
	color: inherit;
	-webkit-text-decoration-color: rgb(107, 107, 107);
	text-decoration-color: rgb(107, 107, 107);
}

a:where(:hover, :focus) {
	-webkit-text-decoration-color: currentColor;
	text-decoration-color: currentColor;
}

code {
	font-family: monospace;
}

/* Make images easier to work with */
img,
picture {
	max-width: 100%;
	display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Utilities */

.text-center {
  text-align: center;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: var(--gap, var(--size-400));
}

.flex-flow {
  display: flex;
  flex-direction: column;
  gap: var(--flow-space, var(--size-400));
}

.text-center .flex {
  margin: 0 auto;
}

.container {
  --max-width: 75rem;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}



/* general styling */

body {
  font-family:var(--ft-family-regular);
  font-size: var(--fs-400);
  line-height: 1.6;
  color: var(--clr-neutral-900);
  background-color: var(--clr-neutral-200);
}

[class*="grid-"] {
  display: grid;
  gap: 1rem;
}

.grid-even-columns {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

@media (min-width: 50em) {
  .grid-auto-flow {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
  }
}

.grid-stack {
  display: grid;
  place-items: center;
}

.grid-stack > * {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.grid-stack > img {
  aspect-ratio: 16/3;
  min-height: 30vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}



.wrapper {
	position: relative;
	z-index: 1;
	width: auto;
	min-height: 100%
}

.wrapper:after {
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 991;
	background: rgba(19,22,25,0.6);
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: ease-out 0.2s;
	transition: ease-out 0.2s
}

.wrapper.overlay:after {
	visibility: visible;
	opacity: 1
}




/** Header **/
#header--layout {
	position:relative;
	background-color: var(--clr-bg-default);
}

.navbar {
	font-size: 18px;
	padding-bottom: 10px;
}

.main-nav {
	list-style-type: none;
	display: none;
}

.nav-links {
	text-decoration: none;
	color:#000;
	font-family: var(--ft-family-bold);
	text-transform:uppercase;
	font-size: var(--size-base)
}

.logo img {
    height: 50px;

    width: auto;
    max-width: unset;
}

.main-nav li {
	text-align: center;
	margin: 15px auto;
}

.logo {
	display: inline-block;
}

.navbar-toggle {
	cursor: pointer;
	color: rgba(0, 0, 0, 0.9);
	font-size: 24px;
	
	position: absolute;
	right: 20px;
	top: 50px;
	-webkit-transform: translateY(-50%);
  	-moz-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
  	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	
}

#chkToggle {
	display: none;
}

#chkToggle:checked + ul.main-nav {
	display: block;
}

@media screen and (min-width: 980px) {
	.navbar {
		display: flex;
		justify-content: space-between;
		padding-bottom: 0;
		height: 110px;
		align-items: center;
	}
	
	#chkToggle:checked + ul.main-nav {
		display: flex;
	}
	
	.main-nav {
		display: flex;
		margin-right: 0;
		flex-direction: row;
		justify-content: flex-end;
		gap:25px
	}
	
	.main-nav, 
	.main-nav li {
		margin: 0;
	}
	
	.nav-links {
		/* margin-left: 15px; */
	}
	
	.logo {
		margin-top: 0;
	}
	
	.navbar-toggle {
		display: none;
	}
	
	.logo:hover,
	.nav-links:hover {
		color: rgba(255, 255, 255, 1);
	}
}


/*

#header--layout .navbar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 10px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

#header--layout .logo {
    grid-column: 1;
}

#header--layout .logo img {
    height: 100px;
}

#header--layout .menu {
    grid-column: 2;
    text-align: right;
}

#header--layout .menu a {
    text-decoration: none;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 5px;
	color:#000;
	font-family: var(--ft-family-bold);
	text-transform:uppercase
}

#header--layout .menu a:hover {
}
*/

/** end Header **/


.shadow {
}

.shadow.top {
  box-shadow: 0px -15px 10px -15px #cacaca;
}

.shadow.bottom {
  box-shadow: 0px 15px 10px -5px #cacaca;
}

.shadow.left {
  box-shadow: -15px 0px 10px -15px #cacaca;
}

.shadow.right {
  box-shadow: 15px 0px 10px -15px #cacaca;
}



#wrapper {
    position: relative;
    z-index: 1;
    width: auto;
    min-height: 100%;
}

#wrapper:after {
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 991;
	background: rgba(19,22,25,0.6);
	width: 100%;
	height: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: ease-out 0.2s;
	transition: ease-out 0.2s
}

.parallax {
	background-image: url("../images/transp-bg.png");
	height: auto; 
	/* background-attachment: fixed; */
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index:1
}

.parallax::before {
	content:'';
	display:table;
}


/** START **/

.clip {
	max-width:100%;
	width:100%;
	height:300px;
	object-fit:cover
}

.subsection {
	--padding: 50px;
	--min-height: 500px;
	position:relative;
	padding:var(--padding) 0;
	margin:0 auto;
	min-height:var(--min-height);
}

#main--layout .grid {
	display: grid;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	/* grid-template-columns: 1fr  45%; */
	grid-template-columns: minmax(600px, 1fr) 1fr  ;
	grid-gap: 20px;
	align-items: center;
}



#main--layout .clip--none {
	width:100%;
	max-width:unset;
	height:auto
}

#main--layout h1 {
	display:block;
	font-family: var(--ft-family-bold);
	font-size: clamp(1.5625rem, 0.5542rem + 4.2453vw, 4.375rem);
	line-height:1em;
	margin-bottom:40px;
	text-align:center
}

#main--layout h1 span {
	display:block;
	font-family: var(--ft-family-light);
	font-size: clamp(1.25rem, 0.7571rem + 2.0755vw, 2.625rem);
	line-height: 2.5rem;
}

#main--layout p {
	display:block;
	width:max(200px, 75%)
}




h2 {
	display:block;
	font-family: var(--ft-family-bold);
	font-size:35px;
	line-height:1em;
	margin-bottom:0;
	text-transform:uppercase
}

h2 span {
	display:inline-block;
	font-family: var(--ft-family-light);
	font-size:25px;
	line-height: 2.5rem;
}





#events--layout .grid {
	display: grid;
	grid-gap: 25px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr) );
	text-align: center;
}

#events--layout .grid > div {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 15px;
	text-align:left;
	background-color: var(--clr-bg-dark);
	color:var(--clr-white);
	
	padding-bottom:15px;
	height:auto
}

/* #events--layout .card div:has(:not(img)) {*/
.new-event-title {
	padding-left:10px;
	padding-right:10px
}


.left--offset {
	position:relative;
	width:calc(100% - 50px);
	margin-left:50px
}

.floating--header {
		position: absolute;
		top: 230px;
		left: -310px;
		transform: rotate(90deg);
		height: auto;
		width: 500px;
	}
	



.info--box {
	display: grid;
	grid-gap: 50px;
	grid-template-columns: 150px minmax(200px, 600px) ;
	align-items: center;
	padding:25px 0
}

.new-event-title span {
	display:block
}


	#gallery--layout {
	}

	#gallery--layout .grid {
		width:100%;
		display: grid;
		grid-gap: 50px;
		grid-template-columns: 300px minmax(300px, 1fr);
		text-align: center;
		align-items: center;
	}

	#gallery--layout .grid > div:first-child {
		text-align: right;
	}

	#gallery--layout img {
		display:block;
		max-width:100%;
		height:auto
	}

	#gallery--layout .box {
		width:100%;
		display: grid;
		grid-gap: 0;
		grid-template-columns: 100px 1fr;
		text-align: right;
		align-items: center;
		justify-content: end;
		align-content: center;
	}

	#carousel--frame .box > div:nth-child(2) {
		position:relative;
		padding:0 10px; 
		height:70px;
		background-color:#000;
		color:#fff;
		justify-content: end;
		align-content: center;
		font-size:50px;
		font-family:var(--ft-family-bold);
		text-transform:uppercase
	}

	#gallery--layout a {
		display:block;
		position:relative;
		padding-top:25px;
		color:#000;
		text-align:center;
		font-size:20px;
		font-family: var(--ft-family-bold);
		text-decoration:none;
		text-transform:uppercase
	}

	#gallery--layout a:after {
		content: "";
		position: absolute;
		bottom: -10px;
		left: 0;
		width: 100%;
		height: 15px;
		background-image: url('../images/btn-bg.png');
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
	}


/* END */

#contact--layout {
	/*
	background:linear-gradient(
		to left, 
		rgba(255,255,255,0) 0%, 
		rgba(255,255,255,0) 40%, 
		#000000 40%, 
		#000000 100%
	  );
	 */
	background:#000;
	color:#fff
}


#contact-form {
	display: grid;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	grid-template-columns: 1fr 1fr;
	grid-gap: 50px;
	align-items: center;
}

#ep_single_event_image img {
    border-radius: 5px;
}

/** FOOTER **/
#footer--layout {
	background:var(--clr-bg-darkorange);
	color: var(--clr-white);
	padding:50px 0
}

#footer--layout > div > div {
	display: grid;
	grid-gap: 25px;
	grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
	text-align: center;
}
 
 
 
 
@media screen and (max-width:800px) {
	
	.container {
		--max-width: 100%;
		width: 100%;
		max-width: var(--max-width);
		margin-inline: auto;
	}

	#main--layout .grid {
		grid-template-columns: 1fr;
	}
	
	.navbar-toggle {
		top: 30px !important;
	}
	
	.logo {
		padding-top: 13px;
	}

}

@media screen and (max-width:575px) {
	#main--layout p {
		display: block;
		width: 100%;
	}

	.floating--header {
		position: absolute;
		top: 230px;
		left: -310px;
		transform: rotate(90deg);
		height: auto;
		width: 500px;
	}
	
}