* {
    margin: 0;
    padding: 0;
}
*,
*::after,
*::before {
    box-sizing: border-box;
}
html {
    background: #0c0c0c;
    color: #fff;
    font-size: calc(100vw / 1920 * 10);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    user-select: none;
    width: 100%;
}

@font-face {
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    src: url("Helvetica.otf") format("opentype");
}

.wp-block-gallery{
    display: none !important;
}

.hidden{
    display: none;
}

body {
    font-size: 15px;
    margin: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-y: none;

    font-family: Helvetica, sans-serif;
    font-weight: bold;
}

.frame__footer{
    font-family: Helvetica, sans-serif;
    font-weight: bold;
}


body:after {
    animation: grain 6s steps(10) infinite;
    background-image: url("background.png");
    background-repeat: repeat;
    content: "";
    height: 300%;
    left: -100%;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: -100%;
    transition: opacity 0.4s ease;
    width: 300%;
    will-change: transform;
    z-index: 3;
}
.loaded body:after {
    opacity: 0.06;
}
body #cdawrap {
    --cda-bottom: 3rem;
    --cda-left: 3rem;
    --cda-width: 400px;
    --cda-footer-fontsize: initial;
    --cda-footer-color: rgba(255, 255, 255, 0.5);
}
body #cdawrap a:hover {
    text-decoration: none;
    opacity: 0.7;
}
img {
    display: block;
	opacity: 0;
}

.popup__iframe{
    z-index: 15; 
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 523px;

    padding: 0;
    border: none;
}

.popup__container{
    position: relative;
}

.popup__close:hover,
.popup__close:focus {
    text-decoration: none;
    cursor: pointer;
}

.popup__close {
    color: whitesmoke;
    position: absolute;
    top: 6vh;
    right: 10vw;
    font-size: 50px;
    font-weight: bold;
    z-index: 50;

    font-family: Arial, sans-serif;
}

.opacity--low{
    opacity: 0.2 !important;
}

@media (max-width: 490px) {
    .popup__close {
        top: 50px;
        right: 11px;
        color: black;
    }

    .popup__iframe {
        width: 100vw;
        height: 100vh;
        left: 0px;
        top: 0px;

        transform: none;
    }
}

canvas {
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 1s ease;
    width: 100%;
}
.loaded canvas {
    opacity: 1;
    transition: opacity 2s ease;
}
a {
    color: #fff;
    outline: none;
    text-decoration: none;
}
a:hover,
a:focus {
    outline: none;
}
@keyframes grain {
    0% {
        transform: translate(20%, -15%);
    }
    10% {
        transform: translate(-20%, -15%);
    }
    20% {
        transform: translate(20%, -5%);
    }
    30% {
        transform: translate(-20%, -5%);
    }
    40% {
        transform: translate(20%, 5%);
    }
    50% {
        transform: translate(-20%, 5%);
    }
    60% {
        transform: translate(20%, 15%);
    }
    70% {
        transform: translate(-20%, 15%);
    }
    80% {
        transform: translate(20%, 5%);
    }
    90% {
        transform: translate(-20%, 5%);
    }
    100% {
        transform: translate(20%, -5%);
    }
}
.frame {
    font-size: 15px;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 1000;
}
.frame__title {
    font-size: 15px;
    margin: 0 0 15px;
    font-weight: normal;
}

.frame__logo-img{
	height: 22.5px;
}


.frame__links {
    margin-top: 15px;
}
.frame__links a:not(:last-child),
.frame__footer a:not(:last-child) {
    margin-right: 15px;
}
.frame__footer {
    margin: 15px 0;
}
@media screen and (min-width: 33em) {
    .frame {
        position: fixed;
        text-align: left;
        z-index: 100;
        top: 0;
        left: 0;
        display: grid;
        align-content: space-between;
        width: 100%;
        max-width: none;
        height: 100vh;
        padding: 3rem;
        pointer-events: none;
        grid-template-columns: 50% 50%;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "title links"
            "... ..."
            "credits footer";
    }
    .frame__title-wrap {
        grid-area: title;
        display: flex;
    }
    .frame__title {
        margin: 0;
    }
    .frame__logo {
        position: relative;
        margin: 0 0 0 1rem;
        padding: 0 0 0 1rem;

        -webkit-user-select: none;
	    -khtml-user-select: none;
	    -moz-user-select: none;
	    -ms-user-select: none;
	    user-select: none;
    }
    .frame__footer {
        margin: 0;
        grid-area: footer;
        justify-self: end;
    }
    .frame__links {
        grid-area: links;
        padding: 0;
        margin: 0;
        justify-self: end;
        white-space: nowrap;
    }
    .frame a {
        pointer-events: auto;
    }
    .frame__credits {
        grid-area: credits;
    }
}

@media screen and (max-width: 32.99em) {
    .frame {
    	position: fixed;
        text-align: left;
        z-index: 100;
        top: 0;
        left: 0;
        display: grid;
        align-content: space-between;
        width: 100%;
        max-width: none;
        height: 100vh;
        padding: 3rem;
        pointer-events: none;
        grid-template-columns: 100%;
        grid-template-areas:
            "title"
            "..."
            "footer";
        grid-template-rows: auto auto auto;
    }
    .frame__title-wrap {
        grid-area: title;
        display: flex;
        margin: auto;
    }
    .frame__title {
        margin: 0;
    }
    .frame__footer {
        margin: auto;
        grid-area: footer;
    }
}


html::after {
    content: "";
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    opacity: 0;
    background: #fff;
    animation: loaderAnim 0.7s linear infinite alternate forwards;
    transition: opacity 0.4s ease;
}
html.loaded::after {
    animation-play-state: paused;
    opacity: 0 !important;
	display: none !important;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}
.frame__demo--current,
.frame__demo--current:hover,
a {
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
}
.frame__demo--current:after,
.frame__demo--current:hover:after,
a:after {
    background: currentColor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transition: transform 0.4s ease;
    width: 100%;
}
.frame__demo--current:after,
.frame__demo--current:hover:after,
a:hover:after {
    transform: scaleX(1);
    transform-origin: left center;
}
.frame__demo--current:hover:after,
a:after {
    transform: scaleX(0);
    transform-origin: right center;
}
.frame__demo--current,
.frame__demo--current:hover {
    display: inline-block;
}
a {
    display: inline-block;
}
.gallery {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}
.gallery__header {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: -2rem;
    width: 100%;
    z-index: 2;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}
.loaded .gallery__header {
    opacity: 1;
    transition: opacity 0.4s ease;
}
.gallery__title {
    font: 800 28rem/1 "moret", serif;
    text-align: center;
}

.gallery_buttons {
    margin-top: 2rem;
}

.gallery_button{
	margin: 0px 10px;
	font-size: 25px;
	font-weight: bold;
	padding: 10px;
	width: 160px;
	border: none;
	background-color: white;

	cursor: pointer;

}

.gallery__body {
    height: 295rem;
    position: relative;
    visibility: hidden;
}
@media (max-width: 1200px) {
    .gallery__body {
        height: 650rem;
    }
}

@media (max-width: 640px) {
    .gallery_buttons {
    	display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .gallery_button{
        margin-top: 10px;
        font-size: 25px;
        width: 150px;
        padding: 5px;
    }

    .gallery__title{
        font-size: 70px;
    }
}

.gallery__body__figure {
    position: absolute;
}
.gallery__body__figure-child1 {
    height: 40rem;
    width: 70rem;
}
.gallery__body__figure-child2 {
    height: 50rem;
    left: 85rem;
    top: 30rem;
    width: 40rem;
}
.gallery__body__figure-child3 {
    height: 50rem;
    left: 15rem;
    top: 60rem;
    width: 60rem;
}
.gallery__body__figure-child4 {
    height: 30rem;
    right: 0;
    top: 10rem;
    width: 50rem;
}
.gallery__body__figure-child5 {
    height: 60rem;
    right: 15rem;
    top: 55rem;
    width: 40rem;
}
.gallery__body__figure-child6 {
    height: 75rem;
    left: 5rem;
    top: 120rem;
    width: 57.5rem;
}
.gallery__body__figure-child7 {
    height: 70rem;
    right: 0;
    top: 130rem;
    width: 50rem;
}
.gallery__body__figure-child8 {
    height: 50rem;
    left: 85rem;
    top: 95rem;
    width: 40rem;
}
.gallery__body__figure-child9 {
    height: 65rem;
    left: 75rem;
    top: 155rem;
    width: 50rem;
}
.gallery__body__figure-child10 {
    height: 43rem;
    right: 0;
    top: 215rem;
    width: 30rem;
}
.gallery__body__figure-child11 {
    height: 50rem;
    left: 70rem;
    top: 235rem;
    width: 80rem;
}
.gallery__body__figure-child12 {
    left: 0;
    top: 210rem;
    height: 70rem;
    width: 50rem;
}
@media (max-width: 1200px) {
    .gallery__body__figure-child1 {
        height: 60rem;
        width: 100rem;
    }
    .gallery__body__figure-child2 {
        height: 110rem;
        left: auto;
        right: 0;
        top: 25rem;
        width: 70rem;
    }
    .gallery__body__figure-child3 {
        height: 80rem;
        left: 12rem;
        top: 80rem;
        width: 89rem;
    }
    .gallery__body__figure-child4 {
        height: 60rem;
        right: 0;
        top: 153rem;
        width: 60rem;
    }
    .gallery__body__figure-child5 {
        height: 110rem;
        left: 0;
        right: auto;
        top: 180rem;
        width: 70rem;
    }
    .gallery__body__figure-child6 {
        height: 135rem;
        left: 95rem;
        top: 230rem;
        width: 87.5rem;
    }
    .gallery__body__figure-child7 {
        height: 110rem;
        left: 0;
        right: auto;
        top: 310rem;
        width: 80rem;
    }
    .gallery__body__figure-child8 {
        height: 50rem;
        left: auto;
        right: 0;
        top: 385rem;
        width: 80rem;
    }
    .gallery__body__figure-child9 {
        height: 100rem;
        left: 110rem;
        top: 450rem;
        width: 70rem;
    }
    .gallery__body__figure-child10 {
        height: 50rem;
        left: 20rem;
        right: auto;
        top: 440rem;
        width: 55rem;
    }
    .gallery__body__figure-child11 {
        height: 70rem;
        left: auto;
        right: 0;
        top: 570rem;
        width: 70rem;
    }
    .gallery__body__figure-child12 {
        left: 0;
        top: 515rem;
        height: 100rem;
        width: 90rem;
    }
}
.gallery__body__image {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

/* loading__animation */
.loading__animation{
    position: fixed;
    z-index: 10;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    border-radius: 50%;
}

.windows8 {
	/* position: relative;
	width: 130px;
	height:130px;
	margin:auto; */
}

.windows8 .wBall {
	position: absolute;
	width: 124px;
	height: 124px;
	opacity: 0;
	transform: rotate(225deg);
		-o-transform: rotate(225deg);
		-ms-transform: rotate(225deg);
		-webkit-transform: rotate(225deg);
		-moz-transform: rotate(225deg);
	animation: orbit 6.96s infinite;
		-o-animation: orbit 6.96s infinite;
		-ms-animation: orbit 6.96s infinite;
		-webkit-animation: orbit 6.96s infinite;
		-moz-animation: orbit 6.96s infinite;
}

.windows8 .wBall .wInnerBall{
	position: absolute;
	width: 16px;
	height: 16px;
	background: #EE4266;
	left:0px;
	top:0px;
	border-radius: 16px;
}

.windows8 #wBall_1 {
	animation-delay: 1.52s;
		-o-animation-delay: 1.52s;
		-ms-animation-delay: 1.52s;
		-webkit-animation-delay: 1.52s;
		-moz-animation-delay: 1.52s;
}

.windows8 #wBall_2 {
	animation-delay: 0.3s;
		-o-animation-delay: 0.3s;
		-ms-animation-delay: 0.3s;
		-webkit-animation-delay: 0.3s;
		-moz-animation-delay: 0.3s;
}

.windows8 #wBall_3 {
	animation-delay: 0.61s;
		-o-animation-delay: 0.61s;
		-ms-animation-delay: 0.61s;
		-webkit-animation-delay: 0.61s;
		-moz-animation-delay: 0.61s;
}

.windows8 #wBall_4 {
	animation-delay: 0.91s;
		-o-animation-delay: 0.91s;
		-ms-animation-delay: 0.91s;
		-webkit-animation-delay: 0.91s;
		-moz-animation-delay: 0.91s;
}

.windows8 #wBall_5 {
	animation-delay: 1.22s;
		-o-animation-delay: 1.22s;
		-ms-animation-delay: 1.22s;
		-webkit-animation-delay: 1.22s;
		-moz-animation-delay: 1.22s;
}



@keyframes orbit {
	0% {
		opacity: 1;
		z-index:99;
		transform: rotate(180deg);
		animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		transform: rotate(300deg);
		animation-timing-function: linear;
		origin:0%;
	}

	30% {
		opacity: 1;
		transform:rotate(410deg);
		animation-timing-function: ease-in-out;
		origin:7%;
	}

	39% {
		opacity: 1;
		transform: rotate(645deg);
		animation-timing-function: linear;
		origin:30%;
	}

	70% {
		opacity: 1;
		transform: rotate(770deg);
		animation-timing-function: ease-out;
		origin:39%;
	}

	75% {
		opacity: 1;
		transform: rotate(900deg);
		animation-timing-function: ease-out;
		origin:70%;
	}

	76% {
	opacity: 0;
		transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		transform: rotate(900deg);
	}
}

@-o-keyframes orbit {
	0% {
		opacity: 1;
		z-index:99;
		-o-transform: rotate(180deg);
		-o-animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		-o-transform: rotate(300deg);
		-o-animation-timing-function: linear;
		-o-origin:0%;
	}

	30% {
		opacity: 1;
		-o-transform:rotate(410deg);
		-o-animation-timing-function: ease-in-out;
		-o-origin:7%;
	}

	39% {
		opacity: 1;
		-o-transform: rotate(645deg);
		-o-animation-timing-function: linear;
		-o-origin:30%;
	}

	70% {
		opacity: 1;
		-o-transform: rotate(770deg);
		-o-animation-timing-function: ease-out;
		-o-origin:39%;
	}

	75% {
		opacity: 1;
		-o-transform: rotate(900deg);
		-o-animation-timing-function: ease-out;
		-o-origin:70%;
	}

	76% {
	opacity: 0;
		-o-transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		-o-transform: rotate(900deg);
	}
}

@-ms-keyframes orbit {
	0% {
		opacity: 1;
		z-index:99;
		-ms-transform: rotate(180deg);
		-ms-animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		-ms-transform: rotate(300deg);
		-ms-animation-timing-function: linear;
		-ms-origin:0%;
	}

	30% {
		opacity: 1;
		-ms-transform:rotate(410deg);
		-ms-animation-timing-function: ease-in-out;
		-ms-origin:7%;
	}

	39% {
		opacity: 1;
		-ms-transform: rotate(645deg);
		-ms-animation-timing-function: linear;
		-ms-origin:30%;
	}

	70% {
		opacity: 1;
		-ms-transform: rotate(770deg);
		-ms-animation-timing-function: ease-out;
		-ms-origin:39%;
	}

	75% {
		opacity: 1;
		-ms-transform: rotate(900deg);
		-ms-animation-timing-function: ease-out;
		-ms-origin:70%;
	}

	76% {
	opacity: 0;
		-ms-transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		-ms-transform: rotate(900deg);
	}
}

@-webkit-keyframes orbit {
	0% {
		opacity: 1;
		z-index:99;
		-webkit-transform: rotate(180deg);
		-webkit-animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		-webkit-transform: rotate(300deg);
		-webkit-animation-timing-function: linear;
		-webkit-origin:0%;
	}

	30% {
		opacity: 1;
		-webkit-transform:rotate(410deg);
		-webkit-animation-timing-function: ease-in-out;
		-webkit-origin:7%;
	}

	39% {
		opacity: 1;
		-webkit-transform: rotate(645deg);
		-webkit-animation-timing-function: linear;
		-webkit-origin:30%;
	}

	70% {
		opacity: 1;
		-webkit-transform: rotate(770deg);
		-webkit-animation-timing-function: ease-out;
		-webkit-origin:39%;
	}

	75% {
		opacity: 1;
		-webkit-transform: rotate(900deg);
		-webkit-animation-timing-function: ease-out;
		-webkit-origin:70%;
	}

	76% {
	opacity: 0;
		-webkit-transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		-webkit-transform: rotate(900deg);
	}
}

@-moz-keyframes orbit {
	0% {
		opacity: 1;
		z-index:99;
		-moz-transform: rotate(180deg);
		-moz-animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		-moz-transform: rotate(300deg);
		-moz-animation-timing-function: linear;
		-moz-origin:0%;
	}

	30% {
		opacity: 1;
		-moz-transform:rotate(410deg);
		-moz-animation-timing-function: ease-in-out;
		-moz-origin:7%;
	}

	39% {
		opacity: 1;
		-moz-transform: rotate(645deg);
		-moz-animation-timing-function: linear;
		-moz-origin:30%;
	}

	70% {
		opacity: 1;
		-moz-transform: rotate(770deg);
		-moz-animation-timing-function: ease-out;
		-moz-origin:39%;
	}

	75% {
		opacity: 1;
		-moz-transform: rotate(900deg);
		-moz-animation-timing-function: ease-out;
		-moz-origin:70%;
	}

	76% {
	opacity: 0;
		-moz-transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		-moz-transform: rotate(900deg);
	}
}
