        .slider_velher {
            width: 529px;
            max-width: 800px;
            border: 5px solid #47cc3c87;
            height: 506PX;
            overflow: hidden;
            top: -56px;
            left: 0px;
            position: relative;
            border-radius: 137% 71% 153% 60% / 63% 92% 56% 93%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .slider_velher img {
            width: 100%;
            /* height: 100%; */
            /* object-fit: cover; */
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 6s;
        }

        .slider_velher img:nth-child(1) {
            animation: fade 6s infinite 0s;
        }

        .slider_velher img:nth-child(2) {
            animation: fade 6s infinite 2s;
        }

        .slider_velher img:nth-child(3) {
            animation: fade 6s infinite 4s;
        }

        @keyframes fade {
            0%, 33.33% {
                opacity: 1;
            }
            66.66%, 100% {
                opacity: 0;
            }
        }