/* СЛАЙДЕР */
.container {
	/* display: flex; */
	/* flex-direction: row; */
	align-items: center;
	justify-content: space-between;
}

.karusel {
	border: 18px solid rgba(138, 138, 138, 0.137);
	border-radius: 40px;
}

.slideshow {
	width: 670px;
	height: 440px;
	position: relative;
	overflow: hidden;
	background: rgba(138, 138, 138, 0);
	/* margin: 10px 0; */
	border-radius: 20px;
}

.slideshow-item {
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	animation: slideanim 40s infinite;
	pointer-events: none;
}

.slideshow-item:nth-child(1),
.slideshow-item:nth-child(1) img {
	animation-delay: 0;
}

.slideshow-item:nth-child(2),
.slideshow-item:nth-child(2) img {
	animation-delay: 10s;
}

.slideshow-item:nth-child(3),
.slideshow-item:nth-child(3) img {
	animation-delay: 20s;
}

.slideshow-item:nth-child(4),
.slideshow-item:nth-child(4) img {
	animation-delay: 30s;
}

.slideshow-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: zoom 40s infinite;
}

@keyframes slideanim {
	12.5% {
		opacity: 1;
		pointer-events: auto;
	}

	25% {
		opacity: 1;
		pointer-events: auto;
	}

	37.5% {
		opacity: 0;
	}
}

@keyframes zoom {
	50% {
		transform: scale(1.3);
	}
}