* {
	margin: 0;
	padding: 0;
	outline: 0;
}

.gallery {
	position: absolute;
	display: block;
	/*width: 662px;*/
	width: 750px;
	height: 246px;
	margin: 0 auto;
	top: 982px;
	left: 25px;
}
/*=======================================*/
/*=======================================*/
/*=======================================*/
.gallery-linear .item {
	position: relative;
	display: inline-block;
	float: left;
	width: 328px;
	height: 246px;
	margin-left: 6px;
	color: #fff;
}

.gallery-linear .item:first-child {
	margin-left: 0;
}

.gallery-linear .item:nth-child(even) {

}

.gallery-linear .gallery-block {
	position: relative;
	display: block;
	width: 662px;
	height: 246px;
	margin: 0 auto;
	overflow: hidden;
}

.gallery-linear .gallery-inner {
	position: relative;
	display: inline-flex;
	height: 200px;
}

.gallery .prev {
	position: absolute;
	display: block;
	width: 40px;
	height: 100%;
	background: url(../images/prev.png) no-repeat center;
	top: 0;
	left: 0;
	z-index: 10;
	color: #fff;
}

.gallery .next {
	position: absolute;
	display: block;
	width: 40px;
	height: 100%;
	background: url(../images/next.png) no-repeat center;
	top: 0;
	right: 0;
	z-index: 10;
	color: #fff;
}

.gallery .prev:hover,
.gallery .next:hover {
	-webkit-filter:brightness(1.5); 
	-moz-filter:brightness(1.5); 
	-o-filter:brightness(1.5); 
	filter:brightness(1.5); 
}
/*=======================================*/
/*=======================================*/
/*=======================================*/
.gallery-carousel .gallery-block {
	position: relative;
	display: block;
	width: 930px;
	height: 200px;
	overflow: hidden;
	margin: 0 auto;
	text-align: center;
}

.gallery-carousel .item {
	position: absolute;
	display: block;
	width: 290px;
	height: 200px;
	top: 0;
	left: 50%;
    margin-left: -145px;
	background: #333;
	-webkit-transform: scale(0.0);
    -moz-transform: scale(0.0);
    -o-transform: scale(0.0);
    transform: scale(0.0);
    color: #fff;
    -webkit-transition:all 0.5s ease; 
	-o-transition:all 0.5s ease; 
	-moz-transition:all 0.5s ease; 
	transition:all 0.5s ease;
	z-index: 0;
	opacity: 0;
}

.gallery-carousel .item:nth-child(even) {
	background: #111;
}

.gallery-carousel .item.active {
	-webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -o-transform: scale(1.0);
    transform: scale(1.0);
    z-index: 2;
	opacity: 1;
}

.gallery-carousel .item.prev-item {
	-webkit-transform: scale(0.9) !important;
    -moz-transform: scale(0.9) !important;
    -o-transform: scale(0.9) !important;
    transform: scale(0.9) !important;
    left: 50% !important;
    margin-left: -50% !important;
    z-index: 1;
	opacity: 1;
}

.gallery-carousel .item.next-item {
	-webkit-transform: scale(0.9) !important;
    -moz-transform: scale(0.9) !important;
    -o-transform: scale(0.9) !important;
    transform: scale(0.9) !important;
   	left: 100% !important;
    margin-left: -290px !important;
    z-index: 1;
	opacity: 1;
}
/*=======================================*/
/*=======================================*/
/*=======================================*/