@charset "UTF-8";
/* CSS Document */

.slider {
	position: relative;
}

.slick-arrow  {
	width: 30px;
	height: 30px;
	font-weight: 700;
	background: #e1e1e3;
    z-index: 2;
}
.slick-prev {
	position: absolute;
	top: 47%;
    left: 0;
}

.slick-next {
	position: absolute;
	top: 47%;
	right: 0;
}

.slick-dots {
	display: flex;
	justify-content: center;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #e1e1e3;
	border-radius: 50%;
}

.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
	.slick-prev, .slick-next {
		top: 40%;
	}

}