.gallery { 
    width:120%;
    margin:-4% -12% auto -12%;
    background-color: #000;
    overflow-x: hidden;
    z-index: 90000;
}

.headline {
    width:80%;
    z-index: 150;
    margin:25% 10% 0px 10%;
    float:none;
    position: absolute;
    display:block;
    text-align: center;
}

.slimheader {
    width:10%;
    margin: -10px 0px 0px 0px;
    height: 50px;
    z-index: 9000;
    position:relative;
}

.grid {
	position: relative;
	margin: 0 auto;
    -moz-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
	transform: rotate(-5deg);
    -moz-transform: 1s 0.5s;
	-ms-transform: 1s 0.5s;
	-o-transform: 1s 0.5s;
	-webkit-transform: 1s 0.5s;
	transform: 1s 0.5s;
}

.js .grid::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	background: #000 url(../img/loading.svg) no-repeat 50% 75px;
	background-size: 60px auto;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.js .grid--loaded::after {
	opacity: 0;
}

.grid__item {
	width: 20%;
	padding: 10px;
}

.grid__item--current {
	opacity: 0 !important;
}

.img-wrap {
	display: block;
}

.img-wrap:focus,
.img-wrap:hover {
	outline: none;
}

.img-wrap img {
	display: block;
	max-width: 100%;
}

.preview {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-ms-flex-line-pack: center;
	-webkit-align-content: center;
	align-content: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.preview--open {
	pointer-events: auto;
}


/* circle overlay (generated SVG) */

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.overlay circle {
	-webkit-transition: fill-opacity 0.3s, -webkit-transform 0s 0.5s;
	transition: fill-opacity 0.3s, transform 0s 0.5s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	-webkit-transform: scale3d(0, 0, 1);
	transform: scale3d(0, 0, 1);
	fill: #1f1d1d;
	fill-opacity: 0;
}

.preview--open .overlay circle {
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	fill-opacity: 1;
}

.clone {
	position: fixed;
	z-index: 110;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.2, 1);
	transition: transform 0.6s cubic-bezier(0.5, 1, 0.2, 1);
	-webkit-backface-visibility: hidden;
}

.original {
	position: relative;
	z-index: 120;
	display: block;
	object-fit: contain;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	-webkit-backface-visibility: hidden;
}

.preview--open .animate {
	/* open */
	-webkit-transition: -webkit-transform 0.6s, opacity 0.2s;
	transition: transform 0.6s, opacity 0.2s;
}

.animate {
	/* close */
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	transition: transform 0.3s, opacity 0.2s;
}

.description {
	color: #fff;
}

.js .description--grid {
	display: none;
}

.description--preview {
	position: fixed;
	z-index: 140;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2em 1em;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.preview--open .description--preview {
	opacity: 1;
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}


/* Close button */

.action {
	font-size: 40px;
	margin: -10px;
	padding: 0;
	cursor: pointer;
	vertical-align: top;
	color: #fff;
	border: none;
	background: none;
}

.action:hover,
.action:focus {
	color: #fff;
	outline: none;
}

.action--close {
	position: fixed;
    font-family: FontAwesome;
	z-index: 99999;
	top: 0;
	right: 0;
	padding: 1em;
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: scale3d(0.6, 0.6, 1);
	transform: scale3d(0.6, 0.6, 1);
}

.preview--image-loaded .action--close {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.text-hidden {
	position: absolute;
	display: block;
	overflow: hidden;
	width: 0;
	height: 0;
	color: transparent;
}

@media screen and (max-width: 800px) {

.monly {
	display:block;
}

.dtonly {
	display:none;
}

    
.logo {
    width: 60%;
	margin: 20px auto 20px auto;
}

.slimheader {
    width:10%;
    margin: -10px 0px 0px 0px;
    height: 50px;
    z-index: 9000;
    position:relative;
}
    
.headline {
    width:80%;
    height:300px;
    z-index: 150;
    margin:25% 10% 0px 10%;
    float:none;
    position: relative;
    display:block;
    text-align: center;
}
    
.navigator {
    height: auto;
    width:100%
    margin: 35% 0px 0px -100px;
}

.main {
	width: 100%;
    height: 400px;
	margin:18% 0% 0px 0%;
    padding:100px 0px 0px 0px;
}
    
    
.button {
    height: 50px;
    width: 60%;
    margin: 10px 20% 30px 20%;
}
    
.box_33-L {
    width: 90%;
    margin: 100px 5% auto 5%;
}
    
.box_33 {
    width: 100%;
    height: auto;
    margin: 10px 0px 10px 0px;
    float: left;
    clear: none;
    position: relative;
    z-index: 2000;
}
 
.box_50 {
   width: 100%;
    margin: 30px 0% auto 0%;
    padding:0px;
}
    
.box_50-L {
   width: 90%;
    margin: 0px 5% 0px 5%;
}

.box_50-R {
    width: 90%;
    margin: 0px 5% 0px 5%;
}
    
.overlay {
    height: 100%;
    text-align: center;  
}
    
.image_large_right {
    width: 100%;
    margin: 50px 0px 0px 0px;
}
    

.image_context {
	width: 100%;
	margin: 0px 10px 0px 0px;
}
    

.webdesign {
	float: right;
	margin: auto auto 0px 85%;
	height: auto;
	width: 100%;
	bottom: 0;
	z-index: 10;
    text-align: right;
	position:fixed;
	display:block;
}
}

