.palette-sets {
	margin-bottom: 50px;
}

.palette-sets__list {
	max-width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 50px;
}

.palette-sets__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	width: 150px;
	cursor: pointer;
	transition: 0.3s;
}

.palette-sets__item-img {
	display: block;
	height: 150px;
	width: 150px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #FFFFFF;
	border: 2px solid #000;
}

.palette-sets__item-info {
	width: 100%;
}

.palette-sets__item-title {
	font-style: normal;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	color: #000;
	padding: 0;
	margin: 0;
	max-width: 100%;
	overflow: hidden;
	text-align: center;
	transition: 0.3s;
}

.palette-sets__item:hover,
.palette-sets__item:active,
.palette-sets__item:visited {
	text-decoration: none;
}

.palette-sets__item:hover .palette-sets__item-title {
	color: #787878;
	text-decoration: none;
}

.palette-sets__item-counter {
	font-weight: 500;
	font-size: 13px;
	line-height: 20px;
	color: #121212;
	opacity: 0.4;
}

@media (min-width: 640px) {
	.palette-sets {
		padding: 0;
	}
}

@media (min-width: 1024px) {
	.palette-sets {
		padding: 15px 0 0 0;
	}
}

@media (min-width: 1280px) {
	.palette-sets {
		padding: 0 15px 0 15px;
	}
}

@media (min-width: 1600px) {
	.palette-sets {
		padding: 0 80px 0 80px;
	}
}

@media (max-width: 767px) {
	.palette-sets__list {
		gap: 30px;
	}
}

@media (max-width: 575px) {
	.palette-sets__item {
		width: 100px;
	}

	.palette-sets__item-img {
		width: 100px;
		height: 100px;
	}

	.palette-sets__item-title {
		font-size: 18px;
	}
}