.iw-social-icons {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	padding: 0;
	margin: 0;

	list-style: none;
}

.iw-social-icons a {
	color: transparent;
	user-select: none;
	display: block;
	width: 30px;
	height: 30px;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid white;
	line-height: 0;
	background-color: white;
	margin: 0;
}
.iw-social-icons a::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;

	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.iw-social-icons a.instagram::after {
	background-image: url(/img/icons/instagram.png);
}
.iw-social-icons a.linkedin::after {
	background-image: url(/img/icons/linkedin.png);
}
.iw-social-icons a.youtube::after {
	background-image: url(/img/icons/youtube.png);
}
.iw-social-icons a.twitter::after {
	background-image: url(/img/icons/twitter.png);
}