@charset "utf-8";
/* CSS Document */

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */

.owl-origin {
	perspective-origin-x : 50%;
	perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
	z-index: 10;
	animation: fadeOut .7s both ease;
}
.owl-fade-in {
	animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
	animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
	animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
	animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
	animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
	animation: scaleUpFrom .5s ease both;
}
.owl-fadeUp-out {
	animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@keyframes empty {
 0% {
opacity: 1
}
}
@keyframes fadeIn {
 0% {
opacity:0;
}
 100% {
opacity:1;
}
}
@keyframes fadeOut {
 0% {
opacity:1;
}
 100% {
opacity:0;
}
}
@keyframes backSlideOut {
 25% {
opacity: .5;
transform: translateZ(-500px);
}
 75% {
opacity: .5;
transform: translateZ(-500px) translateX(-200%);
}
 100% {
opacity: .5;
transform: translateZ(-500px) translateX(-200%);
}
}
@keyframes backSlideIn {
 0%, 25% {
opacity: .5;
transform: translateZ(-500px) translateX(200%);
}
 75% {
opacity: .5;
transform: translateZ(-500px);
}
 100% {
opacity: 1;
transform: translateZ(0) translateX(0);
}
}
@keyframes scaleToFade {
 to {
opacity: 0;
transform: scale(.8);
}
}
@keyframes goDown {
 from {
transform: translateY(-100%);
}
}
 @keyframes scaleUpFrom {
 from {
opacity: 0;
transform: scale(1.5);
}
}
@keyframes scaleUpTo {
 to {
opacity: 0;
transform: scale(1.5);
}
}