.carousel-section {
	width: 100%;
	padding: 30px 0;
	display: inline-block;
	text-align: center;
	margin: 0 auto;
}

#carousel {
	position: relative;
	height: 400px;
	top: 50%;
	overflow: hidden;
}

#carousel div {
	position: absolute;
	transition: transform 1s, left 1s, opacity 1s, z-index 0s;
	opacity: 0;
}

/*hide left*/
#carousel div:first-child {
	left: 0%;
	opacity: 0;
	transform: translateY(50%) translateX(-50%);
}

#carousel div:first-child img {
	width: 200px;
}

/*prevLeftSecond*/
#carousel div:nth-child(2) {
	z-index: 4;
	left: 15%;
	transform: translateY(50%) translateX(-50%);
	opacity: 0.7;
}

#carousel div:nth-child(2) img {
	width: 200px;
}

/*prev*/

#carousel div:nth-child(3) {
	z-index: 5;
	left: 30%;
	opacity: .9;
	transform: translateY(50px) translateX(-50%);
}

#carousel div:nth-child(3) img {
	width: 300px;
}

/*selected*/
#carousel div:nth-child(4) {
	z-index: 10;
	left: 50%;
	opacity: 1;
	transform: translateY(0px) translateX(-50%);
}

/*next*/

#carousel div:nth-child(5) {
	z-index: 5;
	left: 70%;
	opacity: .9;
	transform: translateY(50px) translateX(-50%);
}

#carousel div:nth-child(5) img {
	width: 300px;
}

/*nextRightSecond*/

#carousel div:nth-child(6) {
	z-index: 4;
	left: 85%;
	transform: translateY(50%) translateX(-50%);
	opacity: 0.7;
}

#carousel div:nth-child(6) img {
	width: 200px;
}

/*hideRight*/
#carousel div:last-child {
	left: 100%;
	opacity: 0;
	transform: translateY(50%) translateX(-50%);
}

#carousel div:last-child img {
	width: 200px;
}


#carousel div img {
	width: 400px;
	transition: width 1s;
	/* height: 110px !important; */
	/* object-fit: cover !important; */
}

#carousel div.hideLeft {
	left: 0%;
	opacity: 0;
	transform: translateY(50%) translateX(-50%);
}

#carousel div.hideLeft img {
	width: 200px;
}

#carousel div.hideRight {
	left: 100%;
	opacity: 0;
	transform: translateY(50%) translateX(-50%);
}

#carousel div.hideRight img {
	width: 200px;
}

#carousel div.prev {
	z-index: 5;
	left: 30%;
	opacity: .9;
	transform: translateY(50px) translateX(-50%);
}

#carousel div.prev img {
	width: 300px;
}

#carousel div.prevLeftSecond {
	z-index: 4;
	left: 15%;
	transform: translateY(50%) translateX(-50%);
	opacity: 0.7;
}

#carousel div.prevLeftSecond img {
	width: 200px;
}

#carousel div.selected {
	z-index: 10;
	left: 50%;
	opacity: 1;
	transform: translateY(0px) translateX(-50%);
}

#carousel div.selected img {
	width: 400px !important;
	height: 250px;
	object-fit: cover;
}

#carousel div.next {
	z-index: 5;
	left: 70%;
	opacity: .9;
	transform: translateY(50px) translateX(-50%);
}

#carousel div.next img {
	width: 300px;
}

#carousel div.nextRightSecond {
	z-index: 4;
	left: 85%;
	transform: translateY(50%) translateX(-50%);
	opacity: 0.7;
}

#carousel div.nextRightSecond img {
	width: 200px;
}

.buttons {
	display: inline-block;
	width: 100%;
	text-align: center;

}

#carousel a.btn,
button,
input[type="submit"],
.Actions .action {
	float: none !important;
	background: #C8161C;
	padding: 10px 20px;
	color: #fff;
	text-align: center;
	border: 0;
	border-radius: 10px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	transition: .3s ease;
}

#carousel a.btn:hover,
button:hover,
input[type="submit"]:hover,
.Actions .action:hover {
	background: #000
}



#gal_container {
	width: 100%;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
}

#gal_container img {
	width: 30%;
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
}

.carousel-mobile {
	display: none;
}

@media screen and (max-width:750px) {
	.carousel-desktop {
		display: none;
	}

	.carousel-mobile {
		display: inline-block;
	}
}

@media screen and (max-width:450px) {
	#gal_container img {
		width: 45%;
	}
}