/**
 * global_socials
 * @version	2.0
 * @release	01-04-2021
 * @author	msolowski Marcin Sołowski
 * @website	http://msolowski.pl
 */

.global_socials
{
	font-size: var(--global_size_60);
}

.global_socials > *
{
	margin-right: var(--global_size_30);
}

.global_socials > *:last-child
{
	margin-right: 0;
}

.global_socials a
{
	color: var(--root_color_lead_3);
	position: relative;
	overflow: hidden;
	border-radius: 50%;
}

.global_socials a::before
{
	z-index: 2;
	position: relative;
}

.global_socials a::after
{
	content: '';
	display: block;
	position: absolute;
	bottom: 15%;
	left: 20%;
	width: 60%;
	background-color: var(--root_color_white);
	border-radius: 50%;
	aspect-ratio: 1/1;
	transform: scaleY(0);
	transform-origin: 50% 100%;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	transition: var(--global_transition);
	z-index: 1;
}

.global_socials a:hover::after
{
	transform: scaleY(1.2);
}

.global_socials a:hover
{
	color: var(--root_color_lead);
}

/**********************************************************************************/

@media screen and (max-width: 1680px)
{
}

@media screen and (max-width: 1600px)
{
}

@media screen and (max-width: 1440px)
{
}

@media screen and (max-width: 1366px)
{
}

@media screen and (max-width: 1300px)
{
}

@media screen and (max-width: 1200px)
{
}

@media screen and (max-width: 1024px)
{
	.global_socials
	{
		font-size: 50px;
	}

	.global_socials > *
	{
		margin-right: var(--global_size_20);
	}
}

@media screen and (max-width: 800px)
{
}

@media screen and (max-width: 640px)
{
}

@media screen and (max-width: 480px)
{
	.global_socials
	{
		justify-content: flex-start;
	}
}

@media screen and (max-width: 360px)
{
}