@media (max-width:600px) {
.main-image.carousel {
    overflow: hidden;
    width: calc(200px * 12);
    position: relative;
}

.panes {
    list-style: none;
    position: relative;
    width: 112%!important;
    overflow: hidden;
	display: inline-flex;
    -webkit-animation: carousel 50s infinite;
    -moz-animation: carousel 50s infinite;
    animation: carousel 50s infinite;
	animation-timing-function: linear;
}

.panes a.topmenu {
    position: relative;
    float: left;
    width: 200px;
}

.carousel img {
    display: block;
    width: 100%;
}

.carousel h2 {
    position: absolute;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.8);
}

/*
@-moz-keyframes carousel{
    0%    { left:0; }
    100% { left:-100%; }
}

@-webkit-keyframes carousel{
    0%    { left:0; }
    100% { left:-100%; }
}

*/


@keyframes carousel{
    0%    { left:0; }
    100% { left:-80%; }
   
}


	
	
}

