/* 

Style for brtpmj-carousel

*/

.brtpmj-carousel-container {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.brtpmj-carousel {
	display: flex;
    transition: transform 0.5s ease-in-out;
	gap: 0.37%;
}

.brtpmj-carousel-item{
	min-width: 33%; 
    box-sizing: border-box;
}
.brtpmj-carousel-item.active {
	display: block;
}
.brtpmj-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.3);
	color: white;
	border: none;
	cursor: pointer;
	padding: 10px;
	font-size: 18px;
	z-index:9999;
}
.brtpmj-slider-prev {
	left: 0px;
}
.brtpmj-slider-next {
	right: 0px;
}
 /*---------- Mobile Layout -------- */
 @media only screen and (max-device-width: 767px) { 
.brtpmj-carousel-item {
	min-width: 100%;
}
} /*----- Mobile CSS ends here ------ */