.widget-opinions{
	padding:100px 20px;
	background:var(--background-03);
}
.widget-opinions .ui-title{
	text-align: center;
	/*opacity: 0;
	transition: 1.5s;*/
}
.widget-opinions .ui-title[data-scroll="in"]{
    opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-opinions .container{
	overflow: hidden;
}
.widget-opinions ul{
	position:relative;
	margin-top:80px;
	overflow: visible;
}
.widget-opinions ul li{
	
}
.widget-opinions ul li .opinion-content{
	background: #fff;
	padding:20px;
	width: 100%;
	box-sizing: border-box;
	color:#333;
	font-size: 14px;
	font-weight: 300;
	border-radius: 5px;
	position:relative;
	box-shadow: 0px 0px 50px 0px rgb(85 139 251 / 20%);
    -webkit-box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 50px 0px rgba(85,139,251,0.2);
}
.widget-opinions ul li .opinion-content::after {
	content: "";
    position: absolute;
    height: 10px;
    width: 25px;
    bottom: -10px;
    left: 20px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.widget-opinions ul li .opinion-data{
	padding:20px 10px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color:#fff;
	font-size: 14px;
}
.widget-opinions ul li .opinion-data .opinion-client{
	
}
.widget-opinions ul li .opinion-data .opinion-client .opinion-client-image{
	background-color: #fff;
	background-size: cover;
	background-position: center;
	border-radius: 100%;
	width: 50px;
	height: 50px;
	overflow: hidden;
	float:left;
	border-radius: 100%;
	border: 2px solid var(--color-01);
}
.widget-opinions ul li .opinion-data .opinion-client .opinion-client-image img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.widget-opinions ul li .opinion-data .opinion-client p{
	margin-left:60px;
	color:#000;
	line-height: 120%;
}
.widget-opinions ul li .opinion-data .opinion-client p strong{
	display:block;
	font-weight: 500;
}
.widget-opinions ul li .opinion-data .opinion-client p span{
	font-style:italic;
}
.widget-opinions ul .slick-list{
	padding:0px !important;
	overflow: visible;
}
.widget-opinions ul .slick-arrow{
	position: absolute;
    top: -60px;
    color: #000;
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
	background: none;
    border: none;
	cursor:pointer;
	border-radius: 3px;
}
.widget-opinions ul .slick-arrow:hover{
	color: rgba(0,0,0,1);
	background: rgba(0,0,0,0.1);	
}
.widget-opinions ul .slick-prev:before,
.widget-opinions ul .slick-next:before{
		display:none;
}
.widget-opinions ul .slick-prev{
	left:0;
}
.widget-opinions ul .slick-next{
	right:0;
}
.widget-opinions ul .slick-slide{
	padding:0px 10px;
	/*opacity: 0.4;
	transform: scale(0.9);*/
}
.widget-opinions ul .slick-slide.slick-current{
	/*opacity: 1;
	transform: scale(1);*/
}/*
.widget-opinions ul .slick-slide.slick-current li .opinion-content{
	background: var(--color-01);	
}
.widget-opinions ul .slick-slide.slick-current li .opinion-content::after {
	background-color: var(--color-01);
}*/