@charset "utf-8";
	
/* CSS Document */
.exmpl {
	float: left;
	width: 20%;
	height: auto;
	display: inline-block;
	
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;		
}

.exmpl:after {
    content: "";
    display: block;
    padding-bottom: 50%;
}

.exmpl:hover {
    transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-webkit-transform: rotateY(360deg);
	 transform-origin: center;
	-moz-transform-origin: center;
	-webkit-transform-origin: center;
	 transition: 2.0s ease-in-out;
	-moz-transition: 2.0s ease-in-out;
	-webkit-transition: 2.0s ease-in-out;
	animation-iteration-count: 1
}

.design-exmpl {
	float: left;
	width: 15%;
	height: auto;
	display: inline-block;
	margin: 0.5%;
	
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;		
}

.design-exmpl:after {
    content: "";
    display: block;
    padding-bottom: 105%;
}

.design-exmpl:hover {
    transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-webkit-transform: rotateY(360deg);
	 transform-origin: center;
	-moz-transform-origin: center;
	-webkit-transform-origin: center;
	 transition: 2.0s ease-in-out;
	-moz-transition: 2.0s ease-in-out;
	-webkit-transition: 2.0s ease-in-out;
	animation-iteration-count: 1
}

.webs-exmpl {
	float: left;
	width: 18%;
	height: auto;
	display: inline-block;
	margin: 1%;
	
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;		
}

.webs-exmpl:after {
    content: "";
    display: block;
    padding-bottom: 90%;
}

.webs-exmpl:hover {
    transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-webkit-transform: rotateY(360deg);
	 transform-origin: center;
	-moz-transform-origin: center;
	-webkit-transform-origin: center;
	 transition: 2.0s ease-in-out;
	-moz-transition: 2.0s ease-in-out;
	-webkit-transition: 2.0s ease-in-out;
	animation-iteration-count: 1
}

.solv-exmpl {
	float: left;
	width: 22%;
	height: auto;
	display: inline-block;
	margin: 1rem;	
	
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;		
}

.solv-exmpl:after {
    content: "";
    display: block;
    padding-bottom: 63%;
}

.solv-exmpl:hover {
    transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-webkit-transform: rotateY(360deg);
	 transform-origin: center;
	-moz-transform-origin: center;
	-webkit-transform-origin: center;
	 transition: 2.0s ease-in-out;
	-moz-transition: 2.0s ease-in-out;
	-webkit-transition: 2.0s ease-in-out;
	animation-iteration-count: 1
}

/** LIGHTBOX MARKUP **/

.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	text-align: center;		
	z-index: 9999;	
}

.lightbox img {
	position: relative;	
	width: auto;
	height: auto;
	margin: 4rem 0 0 0;	
	
	-webkit-filter: drop-shadow(0.2rem 0.2rem 0.2rem rgba(0,0,0,0.5));
            filter: drop-shadow(0.2rem 0.2rem 0.2rem rgba(0,0,0,0.5));			
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;
	/** Unhide lightbox **/
	display: block;
	-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s;		
}

@media screen and (max-width: 1024px) {
.exmpl {	
}
}

@media screen and (max-width: 768px) {
.exmpl {   
}
}

@media screen and (max-width: 600px) {
.exmpl {   
}
}

@media screen and (max-width: 480px) {
.exmpl {  
}
}

@media screen and (max-width: 380px) {
.exmpl { 
}
}