@charset "utf-8";
/* CSS Document */

@media screen and (min-width: 1000px) {

	#mobile {
		display: none;
	}

	#desktop {
		display: block;
	}

}

@media screen and (max-width: 999px) {

	#desktop {
		position: absolute;
		display: none !important;
		}
	#mobile {
		display: block;
	}
}

html {
  scroll-behavior: smooth;
}

body {
	margin:0;
	font-family: 'Raleway', sans-serif;
	font-size: 14px;
	color: #000000; 
	font-weight: normal; 
	text-decoration: none;
	background-color: #000;
}

h2 {
font-size: 32px;
color: #000;

}

video#bgvid { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(../images/transparant.png) no-repeat top center;
    background-size: cover; 
}

video { display: block; }

.bgdiv {
  width: 100%;
  height: 100%;
  animation: myanimation 10s infinite;
  background: #000000;
  z-index: -20;
opacity: 0.4;
}

#menu {
  position: fixed;
  width: 100%;
  z-index: 2;
  padding-top: 10px;
  top: 0;
 
}

#menumob {
  position: fixed;
  width: 100%;
  z-index: 2;
  padding-top: 10px;
  top: 0;
	background-color: #000;
}

ul {
	padding: 0;
	list-style: none;
	position: relative;
	display: inline-table;
	 left: 50%;
	 transform: translate(-50%);
}

	ul li {
		float: left;
		position: relative;
		left: 0;
		
	}
		ul li a:hover {
			color: #fff70e;
			font: 22px 'Lalezar', cursive;
			text-decoration:none;
		}
		
		ul li a {
			display: block; padding: 5px 10px;
			color: #FFF; text-decoration: none;
			font: 22px 'Lalezar', cursive;
		}

ul ul {
	background: #fefc25;
	border-radius: 0px;
	position: absolute;
	left: 125px;
	}
	
	ul ul li {
		float: none; 
		width: 250px;

	}
	
		ul ul li a:hover {
			color: #0027d4;
			font: 16px 'Lalezar', cursive;
			text-decoration:none;
		}
			
		ul ul li a {
			display: block; padding: 5px 5px;
			color: #000; text-decoration: none;
			font: 16px 'Lalezar', cursive;
		}		

ul ul {
	display: none;
}

	ul li:hover > ul {
		display: block;
	}		

a.cssmouseover {
	display: block;
	height:15px;
	background-position:0px 0px;
}
a.cssmouseover:hover {
	background-position:0px -15px;
}


a.book:hover {
	color: #fff70e;
}

.pa-fixed-header {
	background-color: #000000 !important;
	-webkit-transition: background-color 1s ease-out;
	-moz-transition: background-color 1s ease-out;
	-o-transition: background-color 1s ease-out;
	transition: background-color 1s ease-out;
}

.newsletter {
   padding: 10px;
   border: 1px solid #fff;
   border-radius:15px;
   background-color: #0121ac;
   font-family: Raleway;
   color: #fff;
   width: 90%;
   font-size: 15px;
   margin: 5px;
   
}

.newsletterbutton {
 padding: 5px;
 padding-left: 20px;
 padding-right: 20px;
 background-color: #fff70e;
 color: #000;
 font-family: Lalezar;
 border: 0px;
 font-size: 26px;
 vertical-align: center;
 text-align: center;
 
}

.artistbutton {
 padding: 5px;
 padding-left: 20px;
 padding-right: 20px;
 background-color: #fff;
 color: #000;
 font-family: Lalezar;
 border: 0px;
 font-size: 20px;
 vertical-align: center;
 text-align: center;
 cursor: pointer;
 
}

*, *::after, *::before {
  box-sizing: border-box;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  z-index: 10;
  background-color: #0727cb;
  width: 600px;
  max-width: 80%;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid white;
}

.modal-header .title {
  font-size: 1.25rem;
  font-weight: bold;
  color:#fff70e;
}

.modal-header .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
}

.modal-body {
  padding: 20px 20px;
	font-size: 30px;
	line-height: 40px;
}

#overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}
