.s-section .owl-stage-outer {

	border: none;
	border-radius: unset;

}


/*.s-section .owl-stage-outer .owl-item img:before {
    content: url(/local/templates/cph/img/item2.png);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}*/


.s-section .owl-stage-outer .owl-item img {
	position: relative;
	border-radius: 50%;
}

.image-container {
    position: relative;
    display: inline-block; /* или block, в зависимости от макета */
}

.image-container img {
    display: block; /* убираем лишние отступы под img */
    width: 100%; /* или нужный вам размер */
    height: auto;
	
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/local/templates/cph/img/item2.png);
    background-size: cover; /* или contain, в зависимости от потребностей */
    pointer-events: none; /* чтобы клики проходили сквозь псевдоэлемент */
    opacity: 1; /* регулируем прозрачность при необходимости */
	z-index: 100;
}