.v-social {
	display: flex;
	flex-direction: column;
	max-width: var(--section-max-width); 
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 46px;
}

.v-social__title {
	position: relative;
	padding: 42px 0;
	margin-top: 42px;
	margin-bottom: 42px;
	text-align: center;
}
.v-social__title::after,
.v-social__title::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	max-width: 420px;
	width: 100%;
	height: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .25);
}
.v-social__title::before {
	top: 0;
}
.v-social__title::after {
	bottom: 0;
}
.v-social__title h2 {
	font-family: Mulish;
	font-weight: 300;
	font-size: 32px;
	line-height: 28px;
	margin: 0;
}
.v-social__images-group {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 42px;
}

.v-social__card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 108px;
	height: 108px;
	border-radius: 50%;
	background: radial-gradient(99.52% 107% at 28% 100%, #4199F8 0%, #75E18D 100%);
	overflow: hidden;
}

.v-social__card img {
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	object-position: center;
	object-fit: cover;
    border-radius: 50%;
}

.v-social__link {
	text-align: center;
	padding: 4px 0;
}



.v-social__link a:hover {
	opacity: .5;
}

@media (max-width: 1576px) {
	.v-social {
		padding-left: 48px;
		padding-right: 48px;
	}
}

@media (max-width: 1199px) {
	.v-social {
		padding-left: 24px;
		padding-right: 24px;
	}
	.v-social__title h2 {
		font-size: 28px;
		line-height: 28px;
	}
}

@media (max-width: 767px) {
	.v-social {
		padding-left: 12px;
		padding-right: 12px;
		padding-bottom: 28px;
	}
	.v-social__title {
		padding: 24px 0;
		margin-bottom: 24px;
		margin-top: 24px;
	}
	.v-social__title h2 {
		font-size: 20px;
		line-height: 24px;
	}
	.v-social__images-group {
		margin-bottom: 24px;
	}
	.v-social__title::after,
	.v-social__title::before {
		max-width: 240px;
	}
}

@media (max-width: 576px) {
	.v-social__images-group {
		gap: 8px;
		flex-wrap: wrap;
		height: 84px;
		overflow: hidden;
		max-width: 470px;
		margin-right: auto;
		margin-left: auto;
	}

	.v-social__card {
		width: 84px;
		height: 84px;
	}

	.v-social__card img {
		width: calc(100% - 4px);
		height: calc(100% - 4px);
	}
}

@media (max-width: 420px) {

	.v-social__title::after,
	.v-social__title::before {
		max-width: 160px;
	}

	.v-social__images-group {
		height: 64px;
		max-width: 320px;
	}

	.v-social__card {
		width: 64px;
		height: 64px;
	}
}

.v-social > .v-social__link > a {
	font-size: 16px;
	line-height: 20px;
	text-transform: initial !important;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: var(--transition-cond);
}