:root {
 --scroll-padding-top: 100px;
 --scroll-padding-top-menu: 110px;
 --background-color: #ffffff;
 --color: #000000;
 --font-size: 1rem;
 --font-weight: 400;
 --font-family: 'Montserrat';
 --menu-font-size: 1.6rem;
 --menu-color: #ffffff;
 --menu-color-hover: #b68b5e;
 --sticker-bg: #b68b5e;
 scroll-padding-top: var(--scroll-padding-top);
 --button: #b68b5e;
 --button-hover: #000000;
 --button-color: #ffffff;
 --button-color-hover: #ffffff;
 --hr: #c02309;
 --header-font-size: 1.6rem;
}

html {
  scroll-behavior: smooth;
}
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}
body {
 background-color: var(--background-color);
 margin: 0;
 padding: 0;
 color: var(--color);
 direction: ltr;
 font-family: var(--font-family);	
 font-weight: var(--font-weight);
 font-size: var(--font-size);
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-content: center;
 align-items: center;
}
::-webkit-input-placeholder,
:-ms-input-placeholder, 
::placeholder {
  color: #666666;
}
abbr, 
address {
 text-decoration: none; 
 font-style: normal;
}
img {
 display: block;
 max-width: 100%;
}
input, 
textarea {

}

figure,
header,
footer,
main,
aside,
section, 
article, 
div, 
span, 
figcaption, 
input, 
textarea, 
iframe, 
label,
h1,
h2,
h3,
h4,
h5,
p,
img {
 padding:0; 
 margin:0;
}
ul, 
ol, 
li {
 text-align:left;
 margin-right: 0;
 padding-right: 0;
 margin-left: 1rem;
}
p,ul,ol {line-height: 1.5rem;}

iframe {
 width: 100% !important;
 max-width: 560px !important;
 height: 350px !important;
}

input:focus-within, 
select:focus-within, 
textarea:focus-within, 
button:focus-within, 
a:focus-within {
 /*outline: solid 1px #00b8e9;*/
}

input:focus, 
select:focus, 
textarea:focus, 
button:focus, 
a:focus {
 /*outline: solid 1px #00b8e9;*/
}
button {
 cursor: pointer;
 border: 0;
 background-color: transparent;
 font-size: inherit;
}
textarea {
	width: 100%;
	height: 90px;
	font-size: calc(var(--font-size) + 0.3rem);
}
input[type="text"], input[type="email"], input[type="tel"] {
	width: 100%;
	height: calc(var(--font-size) + 0.8rem);
	font-size: calc(var(--font-size) + 0.3rem);
}
select.course {
	width: 100%;
	height: calc(var(--font-size) + 0.8rem);
	font-size: calc(var(--font-size) + 0.3rem);
}
#passkey {
	width: 50%;
	height: calc(var(--font-size) + 0.8rem);
	font-size: calc(var(--font-size) + 0.3rem);
}

.button.small {
  border: 2px #ffffff solid;
  border-radius: 100%;
  
  background: #ffffff;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;	
  text-decoration: none;
  transition: 250ms;
  &:hover {
	background: #ffffff;
	width: 50px;
    height: 50px;
  }
  &:focus {
	background: #ffffff;	
	width: 50px;
    height: 50px;
  }
}
.button_holder {
  display: flex;
  width:50px;
  height: 50px;
  justify-content: center;
  align-content: center;
  align-items: center;	
}


.enterData {
	display: flex;
	width: 90%;
	max-width: 520px;
	flex-direction: column;
	gap: 15px;
}
.enterData section {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

/* Video element */
video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures no black bars */
            position: absolute;
}
.video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            
        }
.video-overlay {
  width: 100%;
  height: 100vh;
  display: flex;
  color: var(--menu-color);
  font-size: 3rem !important;
	align-content: center;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 1;
}
.video-overlay h1 {
  display: flex;
  width: 100%;
  flex-direction: column;
  font-weight: 300;	
  align-content: center;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
}
#video_loader.hidden {display: none;}
	#video_loader {
		width: 100%;
        height: 100vh;
        display: flex;
    background-color: #000000;
	align-content: center;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 2;
	}
header {
	position: fixed;
	display: flex;
	top:0;
	width: 100%;
    flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	z-index: 100;
	height: 200px;
	transition: 250ms;
}
header.scrolled {
	height: 90px;
	background: rgba(0,0,0,0.95);
	animation: fadeInHeader 1.3s ease-out forwards;
}

@keyframes fadeInHeader {
    from {
        background: rgba(0,0,0,0);
    }
    to {
        background: rgba(0,0,0,0.95);
    }
}

header #logo_section {
 display: flex;
 margin-left: 5%;
 height: inherit;
}
header #logo_section img {
 display: flex;
 height: 180px;
 padding-bottom: 10px;
 padding-top: 10px;
	transition: 250ms;
}
header.scrolled #logo_section img {
 display: flex;
 height: 85px;
 padding-bottom: 10px;
 padding-top: 10px;
	transition: 250ms;
}
header #menu_section {
 display: flex;
 margin-right: 5%;
}
header #menu_section nav {
 display: flex;
 gap: 1rem;
 flex-direction: row;
 padding-top: 24px;
}
header #menu_section a {
  font-size: var(--menu-font-size);	
  color: var(--menu-color);
  text-decoration: none;
  transition: 250ms;
	&:hover {
	 font-size: var(--menu-font-size);	
     color: var(--menu-color-hover);
     text-decoration: none;
	}
	&:focus {
	 font-size: var(--menu-font-size);	
     color: var(--menu-color-hover);
     text-decoration: none;	
	}
	
}
header #menu_section a.selected {
  font-size: var(--menu-font-size);	
  color: var(--menu-color-hover);
  text-decoration: none;
  transition: 250ms;
	&:hover {
	 font-size: var(--menu-font-size);	
     color: var(--menu-color-hover);
     text-decoration: none;
	}
	&:focus {
	 font-size: var(--menu-font-size);	
     color: var(--menu-color-hover);
     text-decoration: none;	
	}
	
}
.ltr {direction: ltr;}
.rtl {direction: rtl;}
.hide_ {display: none;}
.NoScrolling {overflow: hidden;}

.show1 {
	-webkit-animation: fadein 2s forwards; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s forwards; /* Firefox < 16 */
        -ms-animation: fadein 2s forwards; /* Internet Explorer */
         -o-animation: fadein 2s forwards; /* Opera < 12.1 */
            animation: fadein 2s forwards;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


.BackToTop {
  display: flex;
	 position: fixed;
		z-index: 100;
		right: 1rem;
		bottom: 1rem;
}

.BackToTop
  button {
		 display: flex;
			width: 2.5rem;
			height: 2.5rem;
	        
			border-radius: 1.25rem;
			background-color: var(--sticker-bg);
			color: #ffffff;
			justify-content: center;
			align-content: center;
			align-items: center;
			
			font-size: 1.6rem;
			font-weight: 600;
			
		}
dialog.hide {display: none;}
dialog.show {
    background-color: rgba(0,0,0,0.9); 
	border: 1px #cccccc solid !important;
	height: calc(100vh - 50px);
	margin-top: 25px;
	width: 98%;
	overflow: hidden;
	display: flex;
	justify-content:center;
	left:1%;
	flex-direction: column;
	position: relative;
	transform: scale(0.5);
    animation: growDialog 0.3s ease-out forwards;
}
 dialog.show::backdrop {background-color: rgba(0,0,0,0.55);}

dialog.show2 {
    background-color: rgba(255,255,255,1); 
	border: 1px #cccccc solid !important;
	height: calc(100vh - 50px);
	margin-top: 25px;
	width: 98%;
	max-width: 650px;
	overflow: hidden;
	display: flex;
	justify-content:center;
	left:1%;
	flex-direction: column;
	position: relative;
	transform: scale(0.5);
    animation: growDialog 0.3s ease-out forwards;
}
 dialog.show2::backdrop {background-color: rgba(0,0,0,0.55);}
 dialog.show2 #dialog_buttons {display: none;}

.close_button {font-weight: 700; font-size: 1.1rem; align-items: center;  display: flex; line-height: 2rem;height: 2rem;}
.close_button:before {
	  content: "\2716";
	  font-weight: 900;
	  font-size: 3.2rem;
	  color: #ffffff;
	  text-shadow: 0px 0px 0px #ffffff;
}
.show2 .close_button:before {
	  content: "\2716";
	  font-weight: 900;
	  font-size: 3.2rem;
	  color: #000000;
	  text-shadow: 0px 0px 0px #ffffff;
}
.show2 .content_holder {
  display: flex;
  width: 100%;
  height: calc((100vh - 50px) - 3.4rem);
  overflow: auto;
  margin-top: 3.4rem;
  justify-content:center;
}
.show2 .content_holder iframe {
  display: flex;
  width: 90%;
  height: calc((100vh - 70px) - 3.4rem) !important;
  overflow: auto;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
}
.show2 .content_holder form {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: calc((100vh - 70px) - 3.4rem);
  overflow: auto;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
	gap:0.4rem;
}

.show2 .content_holder form section {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: none;
  padding: 0.3rem;
  margin: 0;
  
}
.show2 .content_holder article {
  display: flex;
  flex-direction: column;
  padding: 0.8rem;
  gap: 1rem;
  border: none;
  width: 100%;
  
}
.show2 .content_holder form p {
  
  width: 100%;
  margin-top: 0.3rem;
  
}
.show2 .content_holder form fieldset {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: none;
  margin: 0;
  font-size: var(--header-font-size);
  font-weight: 700;
  width: 100%;
}
.show2 .content_holder form fieldset label {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: none;
  margin: 0;
  margin-bottom: 0.4rem;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
.asterisk {position: relative;padding-left: 0.8rem;}
.asterisk::before {
	content:'*';
	color: red;
	position: absolute;
	left:0;
}
.error {
	color:red;
	font-size: 1rem;
	font-weight: 700;
	width: 100%;
}
/* form */
.form1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0; 
}
.form1 fieldset {
  display: flex;
  flex-direction: column;
  
  border: none;
  margin: 0;
  margin-top:0.3rem;
  font-size: var(--header-font-size);
  font-weight: 700;
  width: 100%;
}
.form1 fieldset label {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: none;
  margin: 0;
  margin-top: 0.4rem;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
.form1 section.in_form1, .form1 div.in_form1 {
  display: flex;
  flex-direction: column;
  width: 100% !important;
  border: none;
  padding: 0.3rem;
  margin: 0;
  align-content: flex-start;
	align-items: flex-start;
}
.form1 article {
  display: flex;
  flex-direction: column;
  padding: 0.8rem;
  gap: 1rem;
  border: none;
  width: 100%;
  
}
.form1 p {
  width: 100%;
  margin-top: 0.3rem;
  
}
.form1 input {
  width: 100%;
  
}
.form1 div.in_form1 {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100% !important;
}
.form1 .submit_button {
	display: flex;
	background-color: var(--button);
	color: var(--button-color);
	padding: 0.6rem;
	border: 2px var(--hr) dashed;
	transition: 120ms;
	&:hover {
	 background-color: var(--button-hover);
	 color: var(--button-color-hover);	
	}
	&:disabled {
	 background-color: #cccccc !important;
	 color: var(--button-color);
	 cursor: not-allowed;
	}
}
/* form */
.next_button {font-weight: 700; font-size: 1.1rem; align-items: center;  display: flex; line-height: 2rem;height: 2rem; margin: 0.5rem;}
.next_button:before {
	  content: "\276F";
	  font-weight: 900;
	  font-size: 3.2rem;
	  color: #ffffff;
	  text-shadow: 0px 0px 0px #ffffff;
}
.prev_button {font-weight: 700; font-size: 1.1rem; align-items: center;  display: flex; line-height: 2rem;height: 2rem; margin: 0.5rem;}
.prev_button:before {
	  content: "\276E";
	  font-weight: 900;
	  font-size: 3.2rem;
	  color: #ffffff;
	  text-shadow: 0px 0px 0px #ffffff;
}
#dialog_buttons_close {
	display: flex;
	flex-direction: row;
	
	
	z-index: 150;
	position: absolute;
	top:1rem;
	left: 1rem;
}
#dialog_buttons {
	display: flex;
	flex-direction: row;
	justify-content:space-between;
	z-index: 150;
	position: absolute;
	top: 50%;
	width: inherit;
}
.image_holder {
	width: 100%;
	height: inherit;
	display: flex;
	position: relative;
	justify-content: center;
}
.image_holder img {
	display: flex;
	width: 100%;
	height: inherit;
	object-fit: contain;
	object-position: center center;
}
.image_holder figcaption {
	display: flex;
	flex-direction: column;
	width: auto;
	height: auto;
	
    color: var(--menu-color);
    background: #000000;
    padding: 15px;
    border-top: 2px #ffffff solid;
    border-bottom: 2px #ffffff solid;
	z-index: 150;
	position: absolute;
	bottom: 40px;
}
.content_holder {
	width: 100%;
	height: inherit;
	display: flex;
	position: relative;
	justify-content: center;
}
.content_holder iframe {
	width: 100%;
	height: inherit;
	display: flex;
	position: absolute;
	justify-content: center;
}

@keyframes growDialog {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.mobile_menu {
 display: none;	
}
main {
 display: flex;
 width: 100%;
 flex-direction: column;
 align-content: center;
 align-items: center;
}
.banner {
 display: flex;
 width: 100%;
 height: 100vh;
 flex-direction: column;
 align-content: center;
 align-items: center;	
}
.banner_pages {
 display: flex;
 width: 100%;
 height: 70vh;
 flex-direction: column;
 align-content: center;
 align-items: center;
 
}

.image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures no black bars */
            position: absolute;
}
.image-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 70vh;
            overflow: hidden;
            
        }

.contact-container {
	display: flex;
	width: 90%;
	max-width: 1280px;
	flex-direction: column;
	
	align-content: center;
    align-items: center;
	justify-content: center;
	margin-top: 30px;
	gap: 50px;
}
.contact-container #form_holder {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 500px;
}
.contact-container #contact_form section {
	display: flex;
	flex-direction: column;
}
.text-container {
	display: flex;
	width: 90%;
	max-width: 1280px;
	flex-direction: column;
	margin-top: 30px;
	gap: 1rem;
}
.text-container h2, .text-container h1 {
  display: flex;
  width: 100%;
  border-left: 6px var(--sticker-bg) solid;
  padding: 10px;
  font-size: var(--header-font-size);
}

.text-container .section2 {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 10%;
  
}
.text-container article {
  display: flex;
  width: 60%;
  flex-direction: column;
  gap: 1rem;
  
}
.text-container figure {
  display: flex;
  width: 40%;
  flex-direction: column;
  gap: 1rem;
  
  
}
.text-container section {
  display: flex;
  width: 40%;
  flex-direction: column;
  gap: 1rem;
  
  
}
.text-container div {
  display: flex;
  width: 40%;
  flex-direction: column;
  gap: 1rem;
  
  
}
.text-container div figure, .text-container div section{
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1rem;
  
  
}
.text-container figure img {
  display: flex;
  width: 100%;
  border-bottom: 6px var(--sticker-bg) solid;
}

.text-container2 {
	display: flex;
	width: 90%;
	max-width: 980px;
	flex-direction: column;
	margin-top: 30px;
	gap: 1rem;
	align-content: center;
	align-items: center;
}
.text-container2 article {
	display: flex;
	width: 100%;
	flex-direction: column;
	gap:1rem;
}
.text-container2 ol, .text-container2 ul {
	display: flex;
	flex-direction: column;
	gap:1rem;
}
#order_data {
 display: flex;
 width: 100%;
 flex-direction: column;
 gap:1rem;
}
#order_data div {
 display: flex;
 width: 100%;
 flex-direction: row;
 align-content: center;
	align-items: center;
 gap:0;
}
.order_qty {
    display: flex;
	flex-direction: row !important;
	gap:0.5rem;
}
.order_qty  select {
    display: inline-block;
	text-align: center;
	padding: 0.3rem;
	font-size: calc(var(--font-size) + 0.3rem);
	
	background: transparent;
	border:0;
}
.order_qty  button {
    display: flex;
	
}
.order_button {
	display: flex;
	background-color: var(--button);
	color: var(--button-color);
	padding: 0.6rem;
	border: 2px var(--hr) dashed;
	transition: 120ms;
	&:hover {
	 background-color: var(--button-hover);
	 color: var(--button-color-hover);	
	}
	&:disabled {
	 background-color: #cccccc !important;
	 color: var(--button-color);
	 cursor: not-allowed;
	}
}
.qty_button {
	display: flex;
	background-color: var(--button);
	color: var(--button-color);
	padding: 0.6rem;
	border: 2px var(--hr) dashed;
	transition: 120ms;
	border-radius: 100%;
	padding: 0.5rem;
	width: 1.9rem;
	height: 1.9rem;
	align-content: center;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	&:hover {
	 background-color: var(--button-hover);
	 color: var(--button-color-hover);	
	}
}
.policy {
	text-decoration: underline;
}
h2.faq {
  display: flex;
  align-content: center;
  align-items: center;
  border-bottom: 6px var(--sticker-bg) solid;
  padding: 10px;
}

.people-container {
	display: flex;
	width: 90%;
	max-width: 1280px;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
    align-items: center;
	justify-content: center;
	margin-top: 30px;
	gap: 50px;
}
.people-container a {
	display: flex;
	width: 200px;
	flex-direction: column;
	align-content: center;
    align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: var(--color);
	transition: 120ms;
	&:hover {
	 color: var(--menu-color-hover);	
	}
	&:focus {
	 color: var(--menu-color-hover);	
	}
	
}
.people-container a figure {
	display: flex;
	width: 200px;
    height: 200px;
	border: 3px var(--sticker-bg) dotted;
	border-radius: 100%;
	overflow: hidden;
}
.people-container a figure img{
	display: flex;
	width: 200px;
    height: 200px;
	object-fit: cover;
	object-position: top center;
}
.people-container a figcaption{
	display: flex;
	flex-direction: column;
	align-content: center;
    align-items: center;
}

.events-container {
	display: flex;
	width: 90%;
	max-width: 1280px;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
    align-items: flex-start;
	justify-content: center;
	margin-top: 30px;
	gap: 50px;
}
.events-container a {
	display: flex;
	width: 320px;
	flex-direction: column;
	align-content: center;
    align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: var(--color);
	transition: 120ms;
	border-bottom: 6px var(--sticker-bg) solid;
	border-top: 2px var(--sticker-bg) solid;
	
	padding-bottom: 10px;
	&:hover {
	 color: var(--color);
	 background-color: #EDEDED;
	}
	&:focus {
	 color: var(--color);
	 background-color: #EDEDED;
	}
	
}
.events-container a figure {
	display: flex;
	width: 320px;
    
	
}
.events-container a figure img{
	display: flex;
	width: 320px;
    
}
.events-container a figcaption {
	display: flex;
	flex-direction: column;
	align-content: center;
    align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 10px;
}
.events-container a figcaption b, .events-container a figcaption span {
	display: inline-block;
	text-align: center;
}



.packs-container {
	display: flex;
	width: 90%;
	max-width: 1280px;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
    align-items: flex-start;
	justify-content: center;
	margin-top: 30px;
	gap: 50px;
}
.packs-container article {
	display: flex;
	width: 300px;
	flex-direction: column;
	align-content: center;
    align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: var(--color);
	
}
.packs-container article section.button {
	display: flex;
	
	align-content: center;
    align-items: center;
	gap: 1rem;
	
	
}
.packs-container article ul {
	display: flex;
	flex-direction: column;
	align-content: flex-start;
    align-items: flex-start;
	gap: 0.5rem;
	
	
}


.gallery-container {
	display: flex;
	width: 90%;
	max-width: 1280px;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
    align-items: center;
	justify-content: center;
	margin-top: 30px;
	gap: 50px;
}
.gallery-container a {
	display: flex;
	width: 200px;
	flex-direction: column;
	align-content: center;
    align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: var(--color);
	transition: 120ms;
	&:hover {
	 color: var(--menu-color-hover);	
	}
	&:focus {
	 color: var(--menu-color-hover);	
	}
}
.gallery-container a figure {
	display: flex;
	width: 200px;
    height: 200px;
	border: 3px var(--sticker-bg) dotted;
	border-radius: 100%;
	overflow: hidden;
}
.gallery-container a figure img{
	display: flex;
	width: 200px;
    height: 200px;
	object-fit: cover;
	object-position: top center;
}
.gallery-container a figcaption{
	display: flex;
	flex-direction: column;
	align-content: center;
    align-items: center;
}
hr {
            border: none;
            height: 5px;
            width: 100%;
            background: repeating-linear-gradient(
                to right,
                var(--hr),
                var(--hr) 10px,
                transparent 10px,
                transparent 20px
            );
            margin: 20px auto;
	        display: flex;
  }
.title {
	display: flex;
	border-bottom: 6px var(--sticker-bg) solid;
	padding: 10px;
	font-size: var(--header-font-size);
}
footer {
	display: flex;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 25px;
	padding-bottom: 25px;
	width: 100%;
	
	background-image: url('/pics/footer.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 50px;
	align-content: space-between;
	align-items: center;
}
footer nav {
 display: flex;
 flex-direction: row;
	align-content: flex-start;
	width: 100%;
	gap:15px;
}
footer figure {
 display: flex;	
 width: 100%;
 align-content: center;
 align-items: center;
 justify-content: center;
}
footer figure img {
 display: flex;	
 height: 90px;
}
footer section {
 display: flex;	
 width: 100%;
 align-content: flex-end;
 align-items: flex-end;
 justify-content: flex-end;
 gap: 6px;
}
footer div {
 display: flex;	
 width: 100%;
 flex-direction: column;
 gap: 10px;
 color: #ffffff;
}
footer a {
	color: #ffffff;
	transition: 120ms;
	font-weight: 600;
	&:hover {
	 text-decoration: none;	
	}
	&:focus {
	 text-decoration: none;		
	}
	&:visited {
	 text-decoration: none;		
	}
}
.mobile_menu {
 display: none;	
}

.SubTitle {
	display: flex;
    width: 100%;
    border-bottom: 2px var(--sticker-bg) solid;
	border-left: 0px !important;
    padding: 10px;
	
}
.big_title {
	height: 3rem;
}

.button button, span.button, a.button {
	display: flex;
	background-color: var(--button);
	color: var(--button-color);
	padding: 0.6rem;
	border: 2px var(--hr) dashed;
	transition: 120ms;
	&:hover {
	 background-color: var(--button-hover);
	 color: var(--button-color-hover);	
	}
}

.loader, .loader2 {
  width: fit-content;
  font-size: 2rem;
  font-family: 'Asistant';
  font-weight: bold;
  text-transform: uppercase;
  color: #0000;
  -webkit-text-stroke: 1px #000;
  background: conic-gradient(#000 0 0) 0/1ch 100% no-repeat text;
  animation: l14 1.5s steps(7,jump-none) infinite alternate;
}
.loader:before {
  content: "please wait...";
}
.loader2:before {
  content: "please wait...";
}
@keyframes l14 {
  to {background-position: 100%}
}
#pager {
  display: flex;
  flex-direction: row;
  
  gap: 20px;
  
  
  align-items: center;
}
#next_button {
  display: flex;
  color: var(--button-color);
  
  background: var(--button);
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  transition: 250ms;
  text-decoration: none;
  &:hover {
	background: var(--button-hover);	
	color: var(--button-color-hover);
  }
  &:visited {
	color: var(--button-color-hover);	
  }
  &:focus {
	background: var(--button-hover);	
	color: var(--button-color-hover);
  }	
  &:disabled {
	background: #e1e1e1;
	color: #999999;
	cursor: not-allowed;
  }
}
#prev_button {
  display: flex;
  color: var(--button-color);
  
  background: var(--button);
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  transition: 250ms;
  text-decoration: none;
  &:hover {
	background: var(--button-hover);	
	color: var(--button-color-hover);
  }
  &:visited {
	color: var(--button-color-hover);	
  }
  &:focus {
	background: var(--button-hover);	
	color: var(--button-color-hover);
  }	
  &:disabled {
	background: #e1e1e1;
	color: #999999;
	cursor: not-allowed;
  }
}
#pg_drop {
 display: flex;
 border: 0;
 font-size: var(--font-size);
 padding: 0;
 margin:0;
}
#settings_section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin-top: 1rem;
}
.strong {
	font-weight: 800 !important;
	font-size: var(--font-size);
}
@media screen and (min-width: 1px) and (max-width: 1280px) {   /*Mobile devices*/
	
	footer {flex-direction: column; gap: 20px;}
	footer figure {display: none;}
	footer section {
		align-content: center;
        align-items: center;
        justify-content: center;
	}
	footer div {
		align-content: center;
        align-items: center;
        justify-content: center;
	}
	footer nav {
		align-content: center;
        align-items: center;
        justify-content: center;
	}
	
	.text-container .section2 {
      flex-direction: column;
      gap: 20px;
  
    }
	.text-container article {width: 100%;}
    .text-container figure {width: 100%;}
    .text-container section {width: 100%;}
	.text-container section.event_data {width: 100%; display: flex;}

.menu_button {font-weight: 700; font-size: 2.1rem; align-items: center;  display: flex;}
.menu_button:before {
	  content: "\2630";
	  font-weight: 900;
	  font-size: 2.2rem;
	  color: #ffffff !important;
}
.menu_button_close {font-weight: 700; font-size: 1.1rem; align-items: center;  display: flex; margin: 1rem;}
.menu_button_close:before {
	  content: "\2716";
	  font-weight: 900;
	  font-size: 2.2rem;
	  color: #ffffff !important;
}	
	
.banner {
 display: flex;
 width: 100%;
 height: 100vh;
 flex-direction: column;
 align-content: center;
 align-items: center;	
}
.banner_pages {
 display: flex;
 width: 100%;
 height: 50vh;
 flex-direction: column;
 align-content: center;
 align-items: center;
 
}

.image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures no black bars */
            position: absolute;
}
.image-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50vh;
            overflow: hidden;
            
        }
video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures no black bars */
            position: absolute;
}
.video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            
        }
.video-overlay {
  width: 100%;
  height: 100vh;
  display: flex;
  color: var(--menu-color);
  font-size: 3rem !important;
	align-content: center;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 5;
}
.video-overlay {
   font-size: 2rem !important;	
}

	
header #menu_section {
 display: none;
 
}
header #menu_section.show {
 display: flex;
 flex-direction: column;
 position: fixed;
 top:0;
 left:0;
 z-index: 200;
 width: 90%;
 min-width: 300px;
 max-width: 690px;
	padding: 10px;
 height: 100vh;
 background: rgba(0,0,0,0.95);
}
header #menu_section.show nav {
 display: flex;
 gap: 5px;
 flex-direction: column;
 padding-left: 5%;
}
header #logo_section img {
  height: 120px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.mobile_menu {
 display: flex;	
 margin-right: 5%;
 margin-top: 18px;
}
	
.event_img {display: none !important;}
.event_data {
	width:100% !important;
	position: fixed;
	bottom:0;
	left:0;
	padding: 10px;
	z-index: 10;
	background-color: rgba(255,255,255,0.9) !important;
	border-top: 2px var(--sticker-bg) solid;
}
	.event_data #qty {
	  margin-left: 70px;
	}
}