.move-button {
	width: 100%;
	margin: 5px 0 50px;
}

.move-button__list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.move-button__item {
	display: flex;
	flex: 1 1 0;
	min-width: 0;
	height: 100px;
	transition: flex-grow 0.3s ease-out;
}

.move-button__item:hover {
	flex-grow: 2;
}

.move-button__link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #fff !important;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: filter 0.3s ease-out, letter-spacing 0.3s ease-out;
}

.move-button__link:hover,
.move-button__link:focus,
.move-button__link:visited {
	color: #fff !important;
	text-decoration: none;
}

.move-button__link::before {
	display: block;
	margin-bottom: 1em;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
}

.move-button__link.fab::before {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
}

.move-button__item:hover .move-button__link {
	filter: brightness(1.04);
	letter-spacing: 0.02em;
}

.move-button__label {
	display: block;
}

.move-button__item--profile {
	background: linear-gradient(45deg, #6c7a89, #5e6d7a, #4f5e6a, #3f4d59, #2f3c48);
}

.move-button__item--twitter,
.move-button__item--x {
	background: linear-gradient(45deg, #1da1f2, #34b0e8, #45c0f0, #5dbde8, #6ac2e8);
}

.move-button__item--instagram {
	background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.move-button__item--youtube {
	background: linear-gradient(45deg, #ff3d57, #ff5c66, #ff6d7b, #ff857a, #ff9d89);
}

.move-button__item--profile .move-button__link::before {
	content: "\f007";
}

.move-button__item--twitter .move-button__link::before {
	content: "X";
	font-family: inherit;
	font-weight: 800;
}

.move-button__item--x .move-button__link::before {
	content: "X";
	font-family: inherit;
	font-weight: 800;
}

.move-button__item--instagram .move-button__link::before {
	content: "IG";
	font-family: inherit;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.move-button__item--youtube .move-button__link::before {
	content: "\f167";
}

@media (max-width: 767px) {
	.move-button {
		margin-bottom: 36px;
	}

	.move-button__list {
		flex-direction: column;
		gap: 10px;
	}

	.move-button__item {
		height: 78px;
	}

	.move-button__item:hover {
		flex-grow: 1;
	}

	.move-button__link::before {
		margin-bottom: 0.7em;
	}
}
