﻿.image-blocks {
    display: none;
}
.image-slider {
	 overflow: hidden;
	 width: 100%;
     height: 285px;
	 margin: 0 auto;
	 position: relative;
	 display: flex;
}
.image-slider:hover div {
	 animation-play-state: paused;
}
.image-slider div {
	 display: flex;
	 position: relative;
	 animation: marquee 15s linear infinite;
	 justify-content: space-around;
}
.image-slider a {
	 min-width: 210px;
}
.image-slider a:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}
.image-slider h4 {
}
.image-slider:after {
	 position: absolute;
	 width: 100%;
	 height: 100%;
	 left: 0;
	 top: 0;
	 background: linear-gradient(to right, white, rgba(255, 255, 255, 0) 80px, rgba(255, 255, 255, 0) calc(100% - 80px), white);
}
.carousel-inner > .item > a > img, .carousel-inner > .item > img {
	/*margin-left: 35px;*/
}

.news-slider {
	height: 200px;
}
.news-slider > div > a {
	width: 320px;
}
.news-slider > div > a > h3 {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 0px;
}

@keyframes marquee {
	0% {
		transform: translateX(0%);
	}
	100% {
		 transform: translateX(-50%);
	}
}
