.sliderConr {
  
  height: fit-content;
}

.slider {
  display: block;
	height:423px;
  overflow: hidden;
  position: relative;
}

.sliderIn {
  display: none;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  cursor: pointer;
}

.sliderIn::before {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  background-image: linear-gradient(
    to top,
    rgb(0, 0, 0) 4%,
    rgba(0, 0, 0, 0.033) 50%
  );
}

.sliderInActive {
  display: block;
}

/*.slideTit{
  position: relative;
  z-index: 99;
}*/
.sliderIn span {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 6%;
  width: 80%;
}

.sliderIn span h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.sliderIn span h2:hover {
  text-decoration: underline;
  cursor: pointer;
}

.sliderIn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  display: flex;
  width: 100%;
}

.slider-nav button {
  display: block;
  background-color: #2a2b2d;
  border: 0px;
  color: aliceblue;
  width: 80px;
  cursor: pointer;
}

.slider-nav ul {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
}

.slider-nav li {
  width: 100%;
  padding: 8px;
  background-color: #2a2b2d;
  color: aliceblue;
  font-weight: 600;
  border-right: 1px solid #444;
  list-style-type: none;
  text-align: center;
  cursor: pointer;
}

.slider-nav li:first-child {
  border-left: 1px solid #444;
}

.lim.active {
  background-color: #356dc1 !important;
}

@media only screen and (max-width: 576px) {
	.slider {
  height: 215px;
	}
		
}

