/*  SLIDERSHOW  */
a.more:before {
    content: "\f107";
    font-family: 'Fontawesome';
    color: #fff;
    font-size: 3rem;
    z-index: 20;
    display: block;
    position: absolute;
    bottom: 10rem;
    text-align: center;
    -webkit-animation-name: scroll;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-name: scroll;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@media (max-width: 768px) {
    .slideshow a.more:before {
        left: 0;
        right: 0;
        text-align: center;
    }
}
@-webkit-keyframes scroll {
    from {
        bottom: 10rem;
    }
    to {
        bottom: 7rem;
    }
}
@keyframes scroll {
    from {
        bottom: 10rem;
    }
    to {
        bottom: 7rem;
    }
}
.homepage .t3-mainbody .t3-content {
    padding: 0;
}