.cycle-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cycle-slide img {
    width: 100%;
    position: absolute;
    top: 50%;

    -webkit-transform:rotate(0deg) scale(1) translate(0px, -50%);
    -moz-transform:rotate(0deg) scale(1) translate(0px, -50%);
    -o-transform:rotate(0deg) scale(1) translate(0px, -50%);
    -ms-transform:rotate(0deg) scale(1) translate(0px, -50%);
    transform:rotate(0deg) scale(1) translate(0px, -50%);

    -webkit-transition: all 12000ms cubic-bezier(0.44, 0.185, 0.575, 0.86) 0s;
    -moz-transition: all 12000ms cubic-bezier(0.44, 0.185, 0.575, 0.86) 0s;
    -o-transition: all 12000ms cubic-bezier(0.44, 0.185, 0.575, 0.86) 0s;
    transition: all 12000ms cubic-bezier(0.44, 0.185, 0.575, 0.86) 0s;
}

.cycle-slide.cycle-slide-active img {
    -webkit-transform:rotate(0.01deg) scale(1.15) translate(0px, -50%);
    -moz-transform:rotate(0.01deg) scale(1.15) translate(0px, -50%);
    -o-transform:rotate(0.01deg) scale(1.15) translate(0px, -50%);
    -ms-transform:rotate(0.01deg) scale(1.15) translate(0px, -50%);
    transform:rotate(0.01deg) scale(1.15) translate(0px, -50%);
}

.cycle-pager {
    position: absolute;
    z-index: 1000;
    bottom: 30px;
    left: 50%;

    -webkit-transform:translate(-50%, 0px);
    -moz-transform:translate(-50%, 0px);
    -o-transform:translate(-50%, 0px);
    -ms-transform:translate(-50%, 0px);
    transform:translate(-50%, 0px);
}
.cycle-pager span {
    width: 18px;
    height: 18px;
    background: transparent;
    display: inline-block;
    overflow: hidden;
    text-indent: -18px;
    margin: 0 4px;
    cursor: pointer;
    border: 3px solid #fff;

    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.cycle-pager span.cycle-pager-active,
.cycle-pager span:hover {
    background: rgba(255,255,255,1);
}


.cycle-caption {
    position: absolute;
    top: 50%;
    right: 5%;
    z-index: 300;
    line-height: 100px;
}
.cyCaption {
    /*position: absolute;*/
    /*left: 50px;*/

    /*filter: alpha(opacity=0);*/
    /*opacity: 0;*/

    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.cyCaption.cShow {
    left: 0;

    filter: alpha(opacity=100);
    opacity: 1;
}
.cyTitle {
    color: #aaa9ab;
    font-family: 'OpenSans_Light';
    font-size: 74px;
    font-weight: normal;
    text-transform: uppercase;
}
.cyDesc {
    font-family: 'OpenSansBold';
    font-size: 112px;
    font-weight: normal;
    color: #ffffff;
}
.cyLink {
    text-align: center;
    padding-top: 10px;
}
.cyLink a {
    color: #fff;
    background: #e4322c;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'OpenSans';
    padding: 0 29px;
    display: inline-block;
    line-height: 48px;
    font-weight: normal;
    border: 1px solid #e4322c;

    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.cyLink a:hover {
    background: rgba(255,255,255,0.7);
    color: #e4322c;
}