
.slider {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 7px;
}
.slider__wrapper {
  position: relative;
  overflow: hidden;
}
.slider__items {
  display: flex;
  transition: transform 0.6s ease;
}
.slider__item {
  flex: 0 0 100%;
  max-width: 100%;
}
.slider__control {
  position: absolute;
    top: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    height: 50px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
}
.slider__control_show {
  display: flex;
}
.slider__control:hover,
.slider__control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.slider__control_prev {
  left: 0;
}
.slider__control_next {
  right: 0;
}
.slider__control::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.slider__control_prev::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.slider__control_next::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.slider__indicators {
  position: absolute;
  right: 0;
  top: 0px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0.5;
}
.slider__indicators:hover {
  opacity: 1;
}
.slider__indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 20px;
  height: 8px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  background-clip: padding-box;
  border-top: 5px solid transparent;
  border-bottom: 10px solid transparent;
}
.slider__indicators li.active {
  background-color: #fff;
}
.img-fluid {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

.slider_item_block {
	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	gap: 5rem;
	align-items: center;
	text-decoration: none;
	max-width: 1000px;
    margin: 0 auto;
	justify-content: center;
}
.slider_item_block:hover {
	text-decoration: none;
	cursor: pointer;
}
.slider_item_block h2 {
	color: #000;
    text-transform: uppercase;
    margin-bottom: 5px;
	font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 47px;
} 
.slider_item_block p {
	color: #656565;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.5em;
} 
.slider_item_block img {
    max-height: 200px;
	max-width: 360px;
} 
.slider_item_left_col {
	text-align: center;
    min-width: 180px;
	width: 300px;
    height: 200px;
}
.slider_item_right_col {
	flex: 300px;
}
@media screen and (min-width:100px) and (max-width:750px) {
	.slider_item_block {
		gap: 2rem;
	}
	.slider_item_left_col {
		width: inherit;
		height: inherit;
	}
	.slider {
		margin-top: 0px;
		margin-bottom: 0px;
	}
}