/* Audio Play */
	.audioplayer {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    height: 30px;
    width: 160px;
    background: none;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2133347483647;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.4);
    transition: opacity 0.5s;
    opacity: 1;
    pointer-events: auto;
}
.audioplayer.hidden {
    opacity: 0;
	pointer-events: auto;
 }
.audioplayer audio {
	width: 95%;
	height: 32px;
	background: transparent;
	pointer-events: auto;
 }		
/* Global */
@font-face {
	font-family: 'SystemMedium';
	src: url('s-md.eot');
	src: url('s-md.eot?#iefix') format('embedded-opentype'),
		url('s-md.woff') format('woff'),
		url('s-md.ttf') format('truetype'),
		url('s-md.svg#s-md') format('svg');
	font-weight: normal;
	font-style: normal;
	}
/* Gallery */
* {margin: 0; padding: 0;} 
html{background: url(img/mask0.png) no-repeat center center fixed; -webkit-background-size: cover;-moz-background-size: cover; -o-background-size: cover; background-size: cover; font-size: 80%; background-color: none;}
 
}body {}

.mask{background:url(img/mask0.png) repeat;z-index:99999999;position:fixed;width:100%;height:100%;opacity:1;}
}
	.frame{background:url(000img/firework.gif) no-repeat center center fixed; background-size: cover;z-index:99999;position:fixed; width:100%; height:100%; opacity:1;}
	.image{background:url(000img/statue=.png) /*liberty/soon.png*/ no-repeat center center fixed; background-size: cover;z-index:0;position:fixed; left:0; top:0em; right:0; bottom:0; width:100%; height:100%; opacity:1;}
	.curtain{background:url(../img/curtain.png) no-repeat center center fixed; background-size: cover;z-index:0;position:fixed; left:0; top:0em; right:0; bottom:0; width:100%; height:100%; opacity:1;}

}
.fullscreen-video-container {
  position: absolute;
  height: 100vh; 
  width: 100vw;
  overflow: hidden;
  opacity: 0.5;
  z-index:-2;
}
.fullscreen-video-container video {
  position: absolute;
  width: auto;
  height: 0%;
  min-width: 100%;
  min-height: 100%;
  right: 0;
  bottom: 0;
  transform: translateX(calc((100% - 100vw) / 2));
}
html,
.rsSlide {
	background: none;
}
.royalSlider {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.hideZone {
	width: 100%;
	height: 35px;
	position: absolute;
	right: 198px;
	top: 0;
	z-index: 100;
}
.hideZone.disabled {
	height: 5px;
}
.marquee {
	max-width: 100vw;			/* iOS braucht das was 100vw*/
	white-space: nowrap;		/* keeps txt in on line */
	overflow: hidden;
	font-size: 23px;
	position:fixed;				/* center for detach */
	top:0;
	width:100%;
	height:33px;				/* Height of the footer #ff0077 */
	background:black;
	z-index:1;
	pointer-events: auto;
}
	.marquee span {
	font-family: Times;
	color: silver;
	margin:0;
	padding:3px;
	text-align: center;	
	display: inline-block;
	
	padding-right: 105%;	/* die zusätzlichen 5% erzeugen einen verzögerten Start und vermeiden so ein Ruckeln auf langsamen Seiten */
	padding-left: 105%;		/* die zusätzlichen 5% erzeugen einen verzögerten Start und vermeiden so ein Ruckeln auf langsamen Seiten */
	animation: marquee 60s linear infinite;}
}
	.marquee span:hover {
	animation-play-state: paused 
}
	@keyframes marquee {
		0%   {transform: translate3d(0,0,0);}
	    100% {transform: translate3d(-90%,0,0);}}

.rsArrow,
.menu {
	opacity: 1;
	/* Controls Fade In : 0.25s easeOutCirc */
	-webkit-transition: opacity 0.25s cubic-bezier(0.075, 0.820, 0.165, 1.000);
	-moz-transition: opacity 0.25s cubic-bezier(0.075, 0.820, 0.165, 1.000);
	-o-transition: opacity 0.25s cubic-bezier(0.075, 0.820, 0.165, 1.000);
	transition: opacity 0.25s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}
.rsHidden {
	opacity: 0;
	visibility: hidden;
	/* Controls Fade Out : 1.6s easeOutCirc */
	-webkit-transition: opacity 1.6s cubic-bezier(0.075, 0.820, 0.165, 1.000), visibility 1.6s;
	-moz-transition: opacity 1.6s cubic-bezier(0.075, 0.820, 0.165, 1.000), visibility 1.6s;
	-o-transition: opacity 1.6s cubic-bezier(0.075, 0.820, 0.165, 1.000), visibility 1.6s;
	transition: opacity 1.6s cubic-bezier(0.075, 0.820, 0.165, 1.000), visibility 1.6s;
}
#contact:hover,
#insta:hover,
.rsArrow:hover .rsArrowBtn,
.homeBtn:hover,
.rsFullscreenBtn:hover { /* removed on touchscreen */
	/* Btns Hover Cut In */
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	mix-blend-mode: lighten;
}
#contact,
#insta,
.rsArrowBtn,
.homeBtn,
.rsFullscreenBtn {
	/* Btns Hover Fade Out : 0.8s easeOutCirc */
	-webkit-transition: background-color 0.8s cubic-bezier(0.075, 0.820, 0.165, 1.000), opacity 0.8s cubic-bezier(0.075, 0.820, 0.165, 1.000);
	-moz-transition: background-color 0.8s cubic-bezier(0.075, 0.820, 0.165, 1.000), opacity 0.8s cubic-bezier(0.075, 0.820, 0.165, 1.000);
	-o-transition: background-color 0.8s cubic-bezier(0.075, 0.820, 0.165, 1.000), opacity 0.8s cubic-bezier(0.075, 0.820, 0.165, 1.000);
	transition: background-color 0.8s cubic-bezier(0.075, 0.820, 0.165, 1.000), opacity 0.8s cubic-bezier(0.075, 0.820, 0.165, 1.000);
}

/* Content & Images */
.rsContent {
	display: table;
}
.rsContentCenter {
	display: table-cell;
	vertical-align: middle;
}
.rsContentCenter > * {
	display: block;
	margin: auto;
}
#intro {
	width: 555px; /*464 / 373 */
	height: 500px;
}
#contact {
	width: 333px;
	height: 37px;
	cursor: pointer;
	background: url('../img/contactred.svg');
	opacity: 0.33;
	mix-blend-mode: lighten;

}
#insta {
	width: 198px;
	height: 30px;
	cursor: pointer;
	background: url('../img/insta.svg');
	opacity: 0.27;
}
#contact:hover,
#insta:hover { /* removed on touchscreen */
	opacity: 0.5;
}
#contact:active,
#insta:active {
	opacity: 0.35;
}
<!--
/* Arrows */
.rsArrow {
	width: 70px;
	height: 100%;
	position: absolute;
	top: 0;
	cursor: pointer;
	z-index: 30;
	background-color: rgba(0,0,0,0); /* to avoid ie z-index bug */
}
.rsArrowLeft {
	left: 1.7%;
}
.rsArrowRight {
	right: 0;
}
.rsArrowBtn {
  position: absolute;
  top: 50%;
  left: 50%;               /* Optionally center horizontally */
  transform: translate(-50%, -50%); /* Optional—perfect centering */
  width: 36px;             /* Set an explicit width */
  height: 36px;            /* Height must match width */
  border-radius: 50%;      /* Makes it a circle */
  background-color: rgba(0,0,0,1);
  opacity: 0.25;
  display: flex;           /* Center the arrow icon inside */
  align-items: center;
  justify-content: center;
  /* Optional for pointer interactions and shadow */
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.rsArrowLeft .rsArrowBtn {
	left: 11px;
}
.rsArrowRight .rsArrowBtn {
	right: 11px;
}
.rsArrowIcn {
	width: 35px;
	height: 35px;
	position: relative; /* to avoid chrome shift bug during transition */
	background: url('../img/icons.svg');
}
.rsArrowRight .rsArrowIcn {
	background-position: -50px 0;
}
.rsArrow:hover .rsArrowBtn { /* removed on touchscreen */
	background-color: rgba(0,0,0,0.55);
	opacity: 1;
}
.rsArrow:active .rsArrowIcn,
.rsArrowIcn:active {
	border-radius: 50%;
	background-color: rgba(0,0,0,1);
	opacity: 0.66;
}
.rsArrowDisabled .rsArrowBtn {
	display: none;
}
/* Menu */

.menu {
	width: 100%;
	height: 34px;
	position: absolute;
	bottom: 11px;
	z-index: 40;
	cursor: pointer;
}
.menu.disabled {
	display: none;
}
.menuItems {
	position: absolute;
	right: 23px;
	border:none;
	border-width: 0 8px;
}
.menuItems > * {
	float: left;
	background-color: none;
	opacity: 1.33;
}
.slideNumber {
	height: 35px;
	padding-left: 9px;
	padding-right: 9px;
	font: 10px/35px SystemMedium, Helvetica, Arial, sans-serif;
	color: red;
}
.homeBtn,
.rsFullscreenBtn {
	cursor: pointer;
}
.homeIcn,
.rsFullscreenIcn {
	width: 35px;
	height: 35px;
	background: url('../img/icons.svg');
}
.homeIcn {
	background-position: -100px 0;
}
.rsFullscreenIcn {
	background-position: -150px 0;
}
.rsFullscreen .rsFullscreenIcn {
	background-position: -200px 0;
}
.homeBtn:hover,
.rsFullscreenBtn:hover { /* removed on touchscreen */
	background-color: red;
	opacity: 1;
}
.homeIcn:active,
.rsFullscreenIcn:active {
	background-color: rgba(0,0,0,1);
	opacity: 1.66;
}

/* Preloader */

.rsPreloader {
	width: 71px;
	height: 71px;
	background-image: url('../img/preloader.gif');
	left: 50%;
	top: 50%;
	margin-left: -36px;
	margin-top: -36px;
	mix-blend-mode: multiply;
	opacity: 0.6;
}
/* RS Core CSS v1.0.3 custom */
div {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	/*user-select: none;*/
}
.royalSlider {
	direction: ltr;
}
.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
}
.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
	-webkit-transform: none;
}
.rsOverflow {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	float: left;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.rsContainer {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.rsArrow {
	cursor: pointer;
}
.royalSlider.rsFullscreen {
	position: fixed !important;
	height: auto !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	z-index: 2147483647 !important;
	top: 0 !important;
	left: 0 !important;
	bottom: 0 !important;
	right: 0 !important;
}
.royalSlider .rsSlide.rsFakePreloader {
	opacity: 1 !important;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	-ms-transition: 0s;
	-o-transition: 0s;
	transition: 0s;
	display: none;
}
.rsSlide {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	overflow: hidden;
	height: 100%;
	width: 100%;
}
.rsContent {
	width: 100%;
	height: 100%;
	position: relative;
}
.rsPreloader {
	position: absolute;
	z-index: 0;
}
.rsABlock {
	left: 0;
	top: 0;
	position: absolute;
	z-index: 25;
	-webkit-backface-visibility: hidden;
}
.grab-cursor {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: -o-grab;
	/*cursor: grab;*/
}
.grabbing-cursor {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: -o-grabbing;
	/*cursor: grabbing;*/
}
.grab-cursor-custom {
	cursor: url('grab.cur'), move;
}
.grabbing-cursor-custom {
	cursor: url('grabbing.cur'), move;
}
.rsNoDrag {
	cursor: auto;
}
.video-background {
    top: 0;
  position: absolute;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  color: none;
  pointer-events: none;
  }
.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
	}
	@media (min-aspect-ratio: 16/9) {
  .video-background iframe {
   /* height = 100 * (9 / 16) = 56.25 */
   height: 56.25vw;
	}
	}
	@media (max-aspect-ratio: 16/9) {
	.video-background iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
	}
	/* added this to remove video title */
	@media (max-aspect-ratio: 16/9) {
	.video-background iframe {
    /* width = 100 / (9 / 16) = 222 */
    width: 222vh;
	}