@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
.wrapper{
  width: 100%;
}
.carouselR{
  max-width: 1600px;
  margin: auto;
  padding: 0 30px;
  position: inherit!important;
}
.carouselR .card{
  color: #fff;
  background: #1b1b1b;
  text-align: center;
  margin: 20px 0;
  line-height: 250px;
  min-height: 250px;
  font-size: 90px;
  font-weight: 600;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

.carouselR .card .cardimg{
	background: #f00;
	float: left;
	max-width: 30%;
	width: 100%;
	display: flex;
    justify-content: center;
    overflow: hidden;
	min-height: inherit;
}

.cardimg .img{
	width: 100%;
	display: block;
	object-fit: cover;
}

.carouselR .card .cardrev{
	margin: 10px;
	color: #777;
	float: left;
	max-width: 65%;
	font-size: 0.85em;
	padding-top: 10px;
}

.carouselR .owl-nav{
  background: #630460;
}

.carouselR .owl-nav .owl-next{
  float: right;
}
.carouselR .owl-nav .owl-prev{
  float: left;
}

.carouselR .owl-dots{
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.carouselR .owl-dot{
  height: 20px;
  width: 20px;
  margin: 0 5px;
  outline: none;
  border-radius: 14px;
  border: 3px solid #6e0000!important;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  float: left;
}
.carouselR .owl-dot.active,
.carouselR .owl-dot:hover{
  background: #f00!important;
}

@media only screen and (max-width: 600px) {
	.carouselR .card .cardimg{
		visibility: hidden;
		position: absolute;
	}
	
	.carouselR .card .cardrev{
		max-width: 100%;
		overflow: auto;
		word-wrap: break-word;
		
	}
	
	.carouselR .card {
		contain: content;
		
	}
}