.custom-slider { 
	display: none; 
}
.slide-container {
  max-width: 60%;
  max-height: 200px;
  position: relative;
  margin: 10px auto;
  text-align: center;
  border-radius :20px;
  padding: 10px;
  background-color: rgb(0 0 0 / 0.55);
}
.slide-news{
	display:flex;
/*	background-color:lightblue;*/
	padding: 10px;
	margin: auto;
	align-items: center;
	justify-content: center;
}

.prev, .next {
	cursor: pointer;
	width: 10%;
/*	background-color: red;*/
	color: white;
	border-radius : 50%;
	font-size: 30px;
	background-color: rgba(0,0,0,0);
	transition: background-color 0.6s ease;
}
.prev:hover, .next:hover {
	background-color: white;
	color: black;
	border-radius : 50%;	
}

.slide-img {
	width: 40%;
/*	background-color: yellow;*/
}
 .slide-img img{ 
	height: 140px;
  	border-radius :20px;
 }

.slide-text {
	width: 40%;
	color: white;
	text-transform: uppercase;
    font-weight: bold;
/*	background-color: green;*/
}

.slide-dot{
	text-align: center; 
}
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #999999;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
	background-color: lightblue; 
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}
@keyframes fade {
  from {opacity: 0} 
  to {opacity: 1}
}

@media(max-width: 1000px){
	
.slide-container {
  max-width: 90%;
}
	
}