﻿.boxes {
	border-radius: 4px;
	margin: 10px;
	min-width: 190px;
	min-height: 300px;
	color: #000
}

.boxes:hover {
	transform: scale(1.2, 1.2);
	cursor: pointer;
	text-decoration: none;
	color: #000
}

@media only screen and (max-width:991px) {
	.boxes:hover {
		transform: scale(1.1, 1.1);
		cursor: pointer;
		text-decoration: none;
		color: #000
	}
}

.gallery {
	max-width: 75%;
	height: 75px;
	margin: 0 auto;
	border-radius: 4px;
	overflow: hidden
}

.sliding {
	margin: 0 20px
}

.sliding-background {
	height: 75px;
	width: 4800px
}

.sliding-first {
	-webkit-animation: slide 35s linear infinite;
	-moz-animation: slide 35s linear infinite;
	-ms-animation: slide 35s linear infinite;
	-o-animation: slide 35s linear infinite;
	animation: slide 35s linear infinite
}

.sliding-background img {
	margin-right: 15px;
	border-radius: 4px;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease
}

.slide-item-size {
	height: 75px;
	width: 75px;
}

@keyframes slide {
	0% {
		margin-left: 0
	}

	100% {
		margin-left: -7160px
	}
}