/*
Slider
*****************/

	
	button.owl-prev {
    position: absolute;
    top: 41%;
    left: 10px;
	background: red;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 38px;
	font-weight:900;
    /* background: #fff; */
}
button.owl-next{
	
    position: absolute;
    top: 41%;
    right: 10px;
	background: red;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 38px;
	font-weight:900;
   
}
	button.owl-next span, button.owl-prev span  {
    margin-top: -10px;
}
.custom-nav {
    text-align: center;
    margin-top: 20px;
}

.custom-prev, .custom-next {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
}

.custom-prev:hover, .custom-next:hover {
    background: #0056b3;
}

	