.slideshow {
    position: relative;
    z-index:20;
}
.slideshow ol.slides {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    background:rgba(0,0,0,.6);
}
.no-js .slides {
    height: auto;
}
.slideshow ol.slides > li {
    width: 100%;
    height: 100%;
    position: absolute;
    visibility: hidden;
    -webkit-perspective: 1600px;
    -moz-perspective: 1600px;
    -ms-perspective: 1600px;
    -o-perspective: 1600px;
    perspective: 1600px;
}
.no-js .slides > li {
    position: relative;
    visibility: visible;
}
.slideshow > nav {
    position:absolute;
    width:100%;
    text-align: center;
    margin-top: -50px;
    z-index:200;
}
.slideshow > nav span {
    display: inline-block;
    width: 60px;
    height: 15px;
    border:1px solid #fff;
    cursor: pointer;
    margin: 0 3px;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    -ms-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.slideshow > nav span:hover {
    background-color: #225577;
}
.slideshow > nav span.current {
    background-color: #225577;
}
.description {
    left: 10%;
    padding: 2em 4em;
    position: relative;
    z-index: 1000;
    opacity: 0;
}
.no-js .description {
    opacity: 1;
}
.description h4 {
    text-align: left;
    margin-top: 100px;
    padding-bottom: 25px;
    color: #fff;
    font-size: 28px;
    line-height: 28px;
    text-transform: uppercase;
    text-shadow: 0 0 3px rgba(0,0,0,0.9);
}
.description p {
    text-align:left;
    color: #fff;
    font-size: 20px;
    text-shadow: 0 0 3px rgba(0,0,0,0.9);
    max-width: 35%;
}
.tiltview {
    position: absolute;
    left: 50%;
    width: 40%;
    top: 50%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateY(-50%) rotateX(60deg) rotateZ(35deg);
    -moz-transform: translateY(-50%) rotateX(60deg) rotateZ(35deg);
    -ms-transform: translateY(-50%) rotateX(60deg) rotateZ(35deg);
    -o-transform: translateY(-50%) rotateX(60deg) rotateZ(35deg);
    transform: translateY(-50%) rotateX(60deg) rotateZ(35deg);
}
.tiltview a {
    outline: 1px solid transparent;
    -webkit-backface-visibility: hidden;
}
.tiltview a,
.tiltview a img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.tiltview a:first-child {
    margin-bottom: 30px;
}
.tiltview.row a {
    width: 48%;
    width: calc(50% - 15px);
    margin: 0;
}
.tiltview.row a:nth-child(2) {
    left: 50%;
    left: calc(50% + 15px);
    position: absolute;
    top: 0;
}

/* Show/Hide */
.slideshow .slides > li.current,
.slideshow .slides > li.show {
    visibility: visible;
}
.description {
    -webkit-transition: opacity 0.75s;
    transition: opacity 0.75s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.current .description,
.show .description {
    opacity: 1;
}
.hideslider .description {
    opacity: 0;
}
.parallax-home, .pattern-home {
    background: repeat;
    background-size: cover;
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    bottom: 0;
    z-index: -1;
    width:100%;
}
.pattern-home{
    background-size: inherit;
}

/* Individual effects */

/* Move Up, Move Down, Slide Up, Slide Down, Slide Left, Slide Right */
/* For each effect we'll define the incoming and outgoing animation */

/***********************/
/* Move up */
/***********************/
.hideslider[data-effect-out="moveUpOut"] .tiltview a {
    -webkit-animation: moveUpOut 1.5s both;
    -moz-animation: moveUpOut 1.5s both;
    -ms-animation: moveUpOut 1.5s both;
    -o-animation: moveUpOut 1.5s both;
    animation: moveUpOut 1.5s both;
}
.hideslider[data-effect-out="moveUpOut"] .tiltview a:nth-child(2) {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -ms-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
@-webkit-keyframes moveUpOut {
    25% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateZ(-30px);
    }
    100% {
        -webkit-transform: translateZ(3000px);
    }
}
@-moz-keyframes moveUpOut {
    25% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateZ(-30px);
    }
    100% {
        -moz-transform: translateZ(3000px);
    }
}
@-ms-keyframes moveUpOut {
    25% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateZ(-30px);
    }
    100% {
        -ms-transform: translateZ(3000px);
    }
}
@-o-keyframes moveUpOut {
    25% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateZ(-30px);
    }
    100% {
        -o-transform: translateZ(3000px);
    }
}
@keyframes moveUpOut {
    25% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateZ(-30px);
    }
    100% {
        transform: translateZ(3000px);
    }
}

.show[data-effect-in="moveUpIn"] .tiltview a {
    -webkit-animation: moveUpIn 1.5s 0.5s both;
    -moz-animation: moveUpIn 1.5s 0.5s both;
    -ms-animation: moveUpIn 1.5s 0.5s both;
    -o-animation: moveUpIn 1.5s 0.5s both;
    animation: moveUpIn 1.5s 0.5s both;
}
.show[data-effect-in="moveUpIn"] .tiltview a:nth-child(2) {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

@-webkit-keyframes moveUpIn {
    0% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateZ(-3000px);
    }
    75% {
        -webkit-transform: translateZ(30px);
    }
    100% {
        -webkit-transform: translateZ(0);
    }
}
@-moz-keyframes moveUpIn {
    0% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateZ(-3000px);
    }
    75% {
        -moz-transform: translateZ(30px);
    }
    100% {
        -moz-transform: translateZ(0);
    }
}
@-ms-keyframes moveUpIn {
    0% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateZ(-3000px);
    }
    75% {
        -ms-transform: translateZ(30px);
    }
    100% {
        -ms-transform: translateZ(0);
    }
}
@-o-keyframes moveUpIn {
    0% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateZ(-3000px);
    }
    75% {
        -o-transform: translateZ(30px);
    }
    100% {
        -o-transform: translateZ(0);
    }
}
@keyframes moveUpIn {
    0% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateZ(-3000px);
    }
    75% {
        transform: translateZ(30px);
    }
    100% {
        transform: translateZ(0);
    }
}

/***********************/
/* Move down */
/***********************/
.hideslider[data-effect-out="moveDownOut"] .tiltview a {
    -webkit-animation: moveDownOut 1.5s both;
    -moz-animation: moveDownOut 1.5s both;
    -ms-animation: moveDownOut 1.5s both;
    -o-animation: moveDownOut 1.5s both;
    animation: moveDownOut 1.5s both;
}

.hideslider[data-effect-out="moveDownOut"] .tiltview a:nth-child(2) {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -ms-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

@-webkit-keyframes moveDownOut {
    25% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateZ(30px);
    }
    100% {
        -webkit-transform: translateZ(-3000px);
    }
}
@-moz-keyframes moveDownOut {
    25% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateZ(30px);
    }
    100% {
        -moz-transform: translateZ(-3000px);
    }
}
@-ms-keyframes moveDownOut {
    25% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateZ(30px);
    }
    100% {
        -ms-transform: translateZ(-3000px);
    }
}
@-o-keyframes moveDownOut {
    25% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateZ(30px);
    }
    100% {
        -o-transform: translateZ(-3000px);
    }
}
@keyframes moveDownOut {
    25% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateZ(30px);
    }
    100% {
        transform: translateZ(-3000px);
    }
}

.show[data-effect-in="moveDownIn"] .tiltview a {
    -webkit-animation: moveDownIn 1.5s 0.5s both;
    -moz-animation: moveDownIn 1.5s 0.5s both;
    -ms-animation: moveDownIn 1.5s 0.5s both;
    -o-animation: moveDownIn 1.5s 0.5s both;
    animation: moveDownIn 1.5s 0.5s both;
}

.show[data-effect-in="moveDownIn"] .tiltview a:nth-child(2) {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

@-webkit-keyframes moveDownIn {
    0% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateZ(3000px);
    }
    75% {
        -webkit-transform: translateZ(-30px);
    }
    100% {
        -webkit-transform: translateZ(0);
    }
}
@-moz-keyframes moveDownIn {
    0% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateZ(3000px);
    }
    75% {
        -moz-transform: translateZ(-30px);
    }
    100% {
        -moz-transform: translateZ(0);
    }
}
@-ms-keyframes moveDownIn {
    0% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateZ(3000px);
    }
    75% {
        -ms-transform: translateZ(-30px);
    }
    100% {
        -ms-transform: translateZ(0);
    }
}
@-o-keyframes moveDownIn {
    0% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateZ(3000px);
    }
    75% {
        -o-transform: translateZ(-30px);
    }
    100% {
        -o-transform: translateZ(0);
    }
}
@keyframes moveDownIn {
    0% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateZ(3000px);
    }
    75% {
        transform: translateZ(-30px);
    }
    100% {
        transform: translateZ(0);
    }
}

/***********************/
/* Slide up */
/***********************/
.hideslider[data-effect-out="slideUpOut"] .tiltview a {
    -webkit-animation: slideUpOut 1.5s both;
    -moz-animation: slideUpOut 1.5s both;
    -ms-animation: slideUpOut 1.5s both;
    -o-animation: slideUpOut 1.5s both;
    animation: slideUpOut 1.5s both;
}

.hideslider[data-effect-out="slideUpOut"] .tiltview a:nth-child(2) {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -ms-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

@-webkit-keyframes slideUpOut {
    25% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateY(30px);
    }
    100% {
        -webkit-transform: translateY(-3000px);
    }
}
@-moz-keyframes slideUpOut {
    25% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateY(30px);
    }
    100% {
        -moz-transform: translateY(-3000px);
    }
}
@-ms-keyframes slideUpOut {
    25% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateY(30px);
    }
    100% {
        -ms-transform: translateY(-3000px);
    }
}
@-o-keyframes slideUpOut {
    25% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateY(30px);
    }
    100% {
        -o-transform: translateY(-3000px);
    }
}
@keyframes slideUpOut {
    25% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateY(30px);
    }
    100% {
        transform: translateY(-3000px);
    }
}

.show[data-effect-in="slideUpIn"] .tiltview a {
    -webkit-animation: slideUpIn 1.5s 0.5s both;
    -moz-animation: slideUpIn 1.5s 0.5s both;
    -ms-animation: slideUpIn 1.5s 0.5s both;
    -o-animation: slideUpIn 1.5s 0.5s both;
    animation: slideUpIn 1.5s 0.5s both;
}
.show[data-effect-in="slideUpIn"] .tiltview a:nth-child(2) {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s;
}
@-webkit-keyframes slideUpIn {
    0% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateY(3000px);
    }
    75% {
        -webkit-transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes slideUpIn {
    0% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateY(3000px);
    }
    75% {
        -moz-transform: translateY(-30px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}
@-ms-keyframes slideUpIn {
    0% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateY(3000px);
    }
    75% {
        -ms-transform: translateY(-30px);
    }
    100% {
        -ms-transform: translateY(0);
    }
}
@-o-keyframes slideUpIn {
    0% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateY(3000px);
    }
    75% {
        -o-transform: translateY(-30px);
    }
    100% {
        -o-transform: translateY(0);
    }
}
@keyframes slideUpIn {
    0% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateY(3000px);
    }
    75% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

/***********************/
/* Slide down */
/***********************/
.hideslider[data-effect-out="slideDownOut"] .tiltview a {
    -webkit-animation: slideDownOut 1.5s both;
    -moz-animation: slideDownOut 1.5s both;
    -ms-animation: slideDownOut 1.5s both;
    -o-animation: slideDownOut 1.5s both;
    animation: slideDownOut 1.5s both;
}
.hideslider[data-effect-out="slideDownOut"] .tiltview.row a:nth-child(2),
.hideslider[data-effect-out="slideDownOut"] .tiltview.col a:first-child {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -ms-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
@-webkit-keyframes slideDownOut {
    25% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(3000px);
    }
}
@-moz-keyframes slideDownOut {
    25% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateY(-30px);
    }
    100% {
        -moz-transform: translateY(3000px);
    }
}
@-ms-keyframes slideDownOut {
    25% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateY(-30px);
    }
    100% {
        -ms-transform: translateY(3000px);
    }
}
@-o-keyframes slideDownOut {
    25% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateY(-30px);
    }
    100% {
        -o-transform: translateY(3000px);
    }
}
@keyframes slideDownOut {
    25% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(3000px);
    }
}

.show[data-effect-in="slideDownIn"] .tiltview a {
    -webkit-animation: slideDownIn 1.5s 0.5s both;
    -moz-animation: slideDownIn 1.5s 0.5s both;
    -ms-animation: slideDownIn 1.5s 0.5s both;
    -o-animation: slideDownIn 1.5s 0.5s both;
    animation: slideDownIn 1.5s 0.5s both;
}
.show[data-effect-in="slideDownIn"] .tiltview.row a:nth-child(2),
.show[data-effect-in="slideDownIn"] .tiltview.col a:first-child {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s;
}
@-webkit-keyframes slideDownIn {
    0% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateY(-3000px);
    }
    75% {
        -webkit-transform: translateY(30px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}
@-moz-keyframes slideDownIn {
    0% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateY(-3000px);
    }
    75% {
        -moz-transform: translateY(30px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}
@-ms-keyframes slideDownIn {
    0% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateY(-3000px);
    }
    75% {
        -ms-transform: translateY(30px);
    }
    100% {
        -ms-transform: translateY(0);
    }
}
@-o-keyframes slideDownIn {
    0% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateY(-3000px);
    }
    75% {
        -o-transform: translateY(30px);
    }
    100% {
        -o-transform: translateY(0);
    }
}
@keyframes slideDownIn {
    0% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateY(-3000px);
    }
    75% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0);
    }
}

/***********************/
/* Slide left */
/***********************/
.hideslider[data-effect-out="slideLeftOut"] .tiltview a {
    -webkit-animation: slideLeftOut 1.5s both;
    -moz-animation: slideLeftOut 1.5s both;
    -ms-animation: slideLeftOut 1.5s both;
    -o-animation: slideLeftOut 1.5s both;
    animation: slideLeftOut 1.5s both;
}
.hideslider[data-effect-out="slideLeftOut"] .tiltview a:nth-child(2) {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -ms-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
@-webkit-keyframes slideLeftOut {
    25% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(-5000px);
    }
}
@-moz-keyframes slideLeftOut {
    25% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateX(30px);
    }
    100% {
        -moz-transform: translateX(-5000px);
    }
}
@-ms-keyframes slideLeftOut {
    25% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateX(30px);
    }
    100% {
        -ms-transform: translateX(-5000px);
    }
}
@-o-keyframes slideLeftOut {
    25% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateX(30px);
    }
    100% {
        -o-transform: translateX(-5000px);
    }
}
@keyframes slideLeftOut {
    25% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateX(30px);
    }
    100% {
        transform: translateX(-5000px);
    }
}

.show[data-effect-in="slideLeftIn"] .tiltview a {
    -webkit-animation: slideLeftIn 1.5s 0.5s both;
    -moz-animation: slideLeftIn 1.5s 0.5s both;
    -ms-animation: slideLeftIn 1.5s 0.5s both;
    -o-animation: slideLeftIn 1.5s 0.5s both;
    animation: slideLeftIn 1.5s 0.5s both;
}
.show[data-effect-in="slideLeftIn"] .tiltview a:nth-child(2) {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s;
}
@-webkit-keyframes slideLeftIn {
    0% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateX(3000px);
    }
    75% {
        -webkit-transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}
@-moz-keyframes slideLeftIn {
    0% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateX(3000px);
    }
    75% {
        -moz-transform: translateX(-30px);
    }
    100% {
        -moz-transform: translateX(0);
    }
}
@-ms-keyframes slideLeftIn {
    0% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateX(3000px);
    }
    75% {
        -ms-transform: translateX(-30px);
    }
    100% {
        -ms-transform: translateX(0);
    }
}
@-o-keyframes slideLeftIn {
    0% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateX(3000px);
    }
    75% {
        -o-transform: translateX(-30px);
    }
    100% {
        -o-transform: translateX(0);
    }
}
@keyframes slideLeftIn {
    0% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateX(3000px);
    }
    75% {
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(0);
    }
}

/***********************/
/* Slide right */
/***********************/
.hideslider[data-effect-out="slideRightOut"] .tiltview a {
    -webkit-animation: slideRightOut 1.5s both;
    -moz-animation: slideRightOut 1.5s both;
    -ms-animation: slideRightOut 1.5s both;
    -o-animation: slideRightOut 1.5s both;
    animation: slideRightOut 1.5s both;
}
.hideslider[data-effect-out="slideRightOut"] .tiltview.col a:nth-child(2),
.hideslider[data-effect-out="slideRightOut"] .tiltview.row a:first-child {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -ms-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s;
}
@-webkit-keyframes slideRightOut {
    25% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateX(-30px);
    }
    100% {
        -webkit-transform: translateX(3000px);
    }
}
@-moz-keyframes slideRightOut {
    25% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateX(-30px);
    }
    100% {
        -moz-transform: translateX(3000px);
    }
}
@-ms-keyframes slideRightOut {
    25% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateX(-30px);
    }
    100% {
        -ms-transform: translateX(3000px);
    }
}
@-o-keyframes slideRightOut {
    25% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateX(-30px);
    }
    100% {
        -o-transform: translateX(3000px);
    }
}
@keyframes slideRightOut {
    25% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(3000px);
    }
}

.show[data-effect-in="slideRightIn"] .tiltview a {
    -webkit-animation: slideRightIn 1.5s 0.5s both;
    -moz-animation: slideRightIn 1.5s 0.5s both;
    -ms-animation: slideRightIn 1.5s 0.5s both;
    -o-animation: slideRightIn 1.5s 0.5s both;
    animation: slideRightIn 1.5s 0.5s both;
}
.show[data-effect-in="slideRightIn"] .tiltview.col a:nth-child(2),
.show[data-effect-in="slideRightIn"] .tiltview.row a:first-child {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -ms-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s;
}
@-webkit-keyframes slideRightIn {
    0% {
        -webkit-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -webkit-transform: translateX(-5000px);
    }
    75% {
        -webkit-transform: translateX(30px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}
@-moz-keyframes slideRightIn {
    0% {
        -moz-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -moz-transform: translateX(-5000px);
    }
    75% {
        -moz-transform: translateX(30px);
    }
    100% {
        -moz-transform: translateX(0);
    }
}
@-ms-keyframes slideRightIn {
    0% {
        -ms-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -ms-transform: translateX(-5000px);
    }
    75% {
        -ms-transform: translateX(30px);
    }
    100% {
        -ms-transform: translateX(0);
    }
}
@-o-keyframes slideRightIn {
    0% {
        -o-animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        -o-transform: translateX(-5000px);
    }
    75% {
        -o-transform: translateX(30px);
    }
    100% {
        -o-transform: translateX(0);
    }
}
@keyframes slideRightIn {
    0% {
        animation-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
        transform: translateX(-5000px);
    }
    75% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Fallback for no 3D Transforms and no preserve-3d */
.no-csstransformspreserve3d .show .tiltview a,
.no-csstransformspreserve3d .hideslider .tiltview a,
.no-csstransforms3d .show .tiltview a,
.no-csstransforms3d .hideslider .tiltview a {
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -ms-animation: none !important;
    -o-animation: none !important;
    animation: none !important;
}
.no-csstransforms3d .tiltview.col {
    top: -50%;
}
.no-csstransforms3d .tiltview.row {
    top: 20px;
}




@media only screen and (min-width: 768px) and (max-width: 959px) {
    .slideshow ol.slides {
        height: 450px;
    }
    .description {
        left: 5%;
        padding: 5px 10px;
    }
    .description h4 {
        margin-top: 75px;
        padding-bottom: 20px;
    }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .slideshow ol.slides {
        height: 380px;
    }
    .description {
        left: 5%;
        padding: 5px 10px;
    }
    .description h4 {
        margin-top: 50px;
        padding-bottom: 10px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
    .slideshow ol.slides {
        height: 350px;
    }
    .description {
        left: 3%;
        padding: 0px;
    }
    .description h4 {
        margin-top: 25px;
        padding-bottom: 10px;
    }
}
