@media (min-width: 1025px) {
	.dir-accordeon-wrapper {
		width: 100%;
		height: 430px;
	}

	.dir-accordeon {
		max-width: 100%;
		width: auto;
		height: 100%;
		transform: translateZ(0);
		display: flex;
		gap: 20px;
	}

	.dir-accordeon .item.unhover {
		width: 10%;
	}

	.dir-accordeon .item {
		position: relative;
		float: left;
		width: 25%;
		height: 100%;
		color: black;
		cursor: pointer;
		transition: 0.5s ease-in-out;
	}

	.dir-accordeon .item .item-content {
		box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
		border-radius: var(--wd-brd-radius);
		height: 100%;
		width: 100%;
		position: relative;
		overflow: hidden;
	}

	.dir-accordeon .item .item-content .gradient {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background-image: linear-gradient(to top right, #fff 0%, #feffc0 100%);
		opacity: 0;
		transition: 0.5s ease-in-out;
	}

	.dir-accordeon .item.hover .item-content .gradient {
		opacity: 1;
	}

	.dir-accordeon .item:last-child {
		border-right: 0;
	}

	.dir-accordeon .item.hover {
		width: 70%;
	}

	.dir-accordeon .item.hover img {
		filter: brightness(0%);
	}

	.dir-accordeon .item .small {
		position: absolute;
		top: 10px;
		left: 20px;
		width: 100px;
		line-height: 78px;
		text-align: center;
		font-size: 24px;
	}

	.dir-accordeon .item .small img {
		transition: 0.5s ease-in-out;
		width: 30px;
	}

	.dir-accordeon .item .full {
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
	}

	.dir-accordeon .item .full .image {
		width: 100%;
		height: 250px;
		background-position: center;
		background-size: cover;
		transition: 0.5s ease-in-out;
	}

	.dir-accordeon .item.hover .full .image {
		height: 0;
	}

	.dir-accordeon .item .full .text .title-with-dot {
		display: flex;
		flex-direction: column;
		transition: 0.5s ease-in-out;
		align-items: center;
	}

	.dir-accordeon .item.hover .full .text .title-with-dot {
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: start;
	}

	.dir-accordeon .item .full .text .title-with-dot .dot {
		width: 30px;
		height: 30px;
		background-color: #ffd0a5;
		border-radius: 100vh;
		margin-bottom: 10px;
		flex-shrink: 0;
	}

	.dir-accordeon .item:nth-child(2) .full .text .title-with-dot .dot {
		background-color: #f2a5ff;
	}
	.dir-accordeon .item:nth-child(3) .full .text .title-with-dot .dot {
		background-color: #a5c9ff;
	}
	.dir-accordeon .item:nth-child(4) .full .text .title-with-dot .dot {
		background-color: #82ffbb;
	}

	.dir-accordeon .item .full .text {
		padding: 20px;
		width: 100%;
	}

	.dir-accordeon .item .full .text .title-with-dot .title {
		font-size: 24px;
		margin-bottom: 20px;
		width: 100%;
		text-align: center;
	}

	.dir-accordeon .item.hover .full .text .title-with-dot .title {
		font-size: 32px;
		text-align: left;
	}

	.dir-accordeon .item .full .text .description {
		font-size: 14px;
		opacity: 0;
		transition: 0.5s ease-in-out;
	}

	.dir-accordeon .item.hover .full .text .description {
		font-size: 16px;
		opacity: 1;
	}

	.dir-accordeon .item .prev {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		transition: 0.5s opacity;
		opacity: 0;
		background-position: center;
		background-size: cover;
		z-index: 1;
	}

	.dir-accordeon .item .prev img {
		width: 30px;
	}

	.dir-accordeon .item.hover .prev {
		opacity: 0;
	}

	.dir-accordeon:hover .prev {
		opacity: 1;
	}
}
