.exampleContent {
    .ekd-backend-ctype-slidergallery {
        max-width: 680px;
        ul {
            margin: 1rem 0;
            padding: 0;
            list-style-type: none;
            overflow-x:hidden;
            height: 250px;
            perspective: 1024px;
            display: flex;
            flex-direction: row;
            li {
                width: auto;
                max-height: 200px;

                img {
                    height: 100%;
                    width: auto;
                }
                margin-left: -50%;

                transform-origin: top right;
                transform: rotate3d(0, 1, 0, -80deg);
                transition: transform 0.5s linear;

                &:first-of-type {
                    transform:  rotate3d(0, 1, 0, 0deg);
                    margin-left: 0;
                }

                &:hover {
                    transform:  rotate3d(0, 1, 0, 0deg);
                }

            }
        }
    }
}
