.slider_content {
	display: flex;
	justify-content: center;
	margin: auto;

}.slider__arrow{
    width: 42px;
    height: 29px;
    position: absolute;
    top: 60%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider__arrow::before{
    /* content: ""; */
    width: 100%;
    height: 3px;
    background-color: #61A375;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.slider__arrow::after{
    content: "";
    width: 20px;
    height: 20px;
    border-bottom: 3px solid #61A375;
    border-left: 3px solid #61A375;
    position: absolute;
    top: 50%;
    left: -55px;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
}

.slider__arrow:hover::before{
    background-color: #61A375;
}

.slider__arrow:hover::after{
    border-bottom: 3px solid #61A375;
    border-left: 3px solid #61A375;
}

.slider__arrow_prev{
    left: 20px;
    transform: translateY(-50%);
}

.slider__arrow_next{
    right: 20px;
    transform: translateY(-50%) rotate(180deg);
}
.slider__pagination{
    margin-top: 20px;
}

.slider__pagination .slick-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.slider__pagination .slick-dots li {
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider__pagination .slick-dots li button{
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 50%;
    border: 2px solid #61A375;
    background-color: rgba(0,0,0,0);
    transition: all 0.3s ease;
    font-size: 0;
    outline: none;
}
.slider__pagination .slick-dots li:hover button{
    cursor: pointer;
}
.slider__pagination .slick-dots .slick-active:hover button{
    cursor: default;
}
.slider__pagination .slick-dots .slick-active button{
	background-color: #61A375;;
}
.slider_item{
	display: flex;
	justify-content: center;
	margin: 10px;	/*width: 80%;*/
}
.slider_item .row{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    padding: 0 0 0 0;
    
}