.social {
	position: relative;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: auto;
	grid-template-columns: auto;
	grid-auto-flow: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

.social-item {
    color: var(--gray2-color);
    transition: color 0.2s ease 0s;
    font-size: 0.9rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__actions .social-item {
	font-size: 1.5rem;
}

.social-item:hover {
    color: var(--primary-color);
    text-decoration: none;
}

@media (min-width: 320px) {
	.social {
		height: 43px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
    .social-item {
        padding: 0 16px;
    }
}

@media (min-width: 1280px) {
	.social {
		border-top: 0;
		border-bottom: 0;
        margin-left: auto;
		margin-right: 16px;
		height: 100%;
	}
    .social-item {
        padding-left: calc(8px + (16 - 8) * ((100vw - 1280px) / (1920 - 1280)));
        padding-right: calc(8px + (16 - 8) * ((100vw - 1280px) / (1920 - 1280)));
    }
}

@media (min-width: 1920px) {
	.social-item {
		padding-left: 16px;
		padding-right: 16px;
	}
}