@keyframes zoomSlide {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.2)
    }
}

@keyframes zoomSlide1 {
    0% {
        transform: scale(1.2)
    }

    100% {
        transform: scale(1)
    }
}

#Slideshow {
    position: relative;
    height: 500px;
    width:100%;
    overflow: hidden;
    z-index: 5
}

    #Slideshow img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0
    }

    #Slideshow .photo {
        height: 100%;
        margin: 0;
        padding: 0
    }

        #Slideshow .photo li {
            height: 100%;
            position: absolute;
            display: none;
            width: 100%;
            top: 0;
            left: 0
        }

            #Slideshow .photo li:nth-child(2n+1) img {
                transform: scale(1.2)
            }

            #Slideshow .photo li:nth-child(2n) img {
                transform: scale(1)
            }

    #Slideshow .next {
        cursor: pointer;
        width: 50px;
        height: 50px;
        background-size: 100% 100%;
        position: absolute;
        z-index: 8;
        bottom: 50%;
        right: 20px;
        opacity: .5
    }

    #Slideshow .prev {
        cursor: pointer;
        width: 50px;
        height: 50px;
        background-size: 100% 100%;
        position: absolute;
        z-index: 8;
        bottom: 50%;
        left: 20px;
        opacity: .5
    }

        #Slideshow .next:hover, #Slideshow .prev:hover {
            opacity: 1
        }

        #Slideshow .prev:before {
            content: "\f104";
            font-family: fontawesome;
            font-size: 70px;
            color: #fff
        }

    #Slideshow .next:before {
        content: "\f105";
        font-family: fontawesome;
        font-size: 70px;
        color: #fff
    }

    #Slideshow .caption-over {
        position: absolute;
        width: 100%;
        height: 100%;
        display: table;
        position: relative;
        z-index: 5
    }

    #Slideshow .caption {
        margin: auto;
        transform: translateY(10%);
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        color: #fff
    }

        #Slideshow .caption h4 {
            font-size: 63px;
            text-transform: uppercase
        }

        #Slideshow .caption p {
            font-size: 23px;
            margin-top: 10px
        }

        #Slideshow .caption a {
            background: #2fb11a;
            padding: 12px 35px;
            display: inline-block;
            color: #fff;
            border-radius: 4px;
            text-transform: uppercase;
            margin-top: 25px;
            font-weight: 700;
            box-sizing: border-box
        }

            #Slideshow .caption a + a {
                margin-left: 10px;
                border: 2px solid #fff;
                background: 0 0
            }

            #Slideshow .caption a:hover {
                background: #e98727
            }

            #Slideshow .caption a + a:hover {
                border-color: #fff;
                color: #313131;
                background: #fff
            }

        #Slideshow .caption .child {
            visibility: hidden
        }

    #Slideshow svg {
        position: absolute;
        z-index: 5;
        bottom: 20px;
        left: 49%;
        animation: Continue 1s infinite
    }

@media only screen and (max-width :1023px) {
    #Slideshow {
        height: 600px
    }

        #Slideshow .caption {
            margin-top: 20px
        }

            #Slideshow .caption h4 {
                font-size: 40px
            }

            #Slideshow .caption p {
                font-size: 18px
            }
}

@media only screen and (max-width :467px) {
    #Slideshow {
        height: 350px
    }
}
