.contacts {
	margin-top: 192px;
}
.contacts .contacts-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	row-gap: 64px;
	width: 1064px;
	justify-content: space-between;
}
.contacts .contacts-container .contact {

}
.contacts .contacts-container .contact .contact-block {
	display: flex;
	column-gap: 20px;
}
.contacts .contacts-container .contact .contact-block .contact-photo {
	height: 197px;
	width: 197px;
	border-radius: 28px;
}
.contacts .contacts-container .contact .contact-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.contacts .contacts-container .contact .contact-column .contact-info {
	display: flex;
	flex-direction: column;
}
.contacts .contacts-container .contact .contact-column .name {
	font-size: 28px;
	font-weight: 700;
	line-height: 40px;
}
.contacts .contacts-container .contact .contact-column .position {
	font-size: 20px;
	line-height: 30px;
	color: #414942;
	margin-bottom: 10px;
}
.contacts .contacts-container .contact .contact-column .desc {
	font-size: 14px;
	margin-bottom: 8px;
}
.contacts .contacts-container .contact .contact-column .email {
	font-size: 20px;
	line-height: 30px;
	color: #191C1A;
}
.contacts .contacts-container .contact .contact-column .socials {
	display: flex;
	column-gap: 8px;
}
@media (max-width: 1064px) {
	.contacts {
		margin-top: 64px;
	}
	.contacts .contacts-container {
		display: flex;
		flex-direction: column;
		row-gap: 40px;
		width: unset;
		align-items: center;
	}
	.contacts .contacts-container .contact .contact-block {
		flex-direction: column;
		column-gap: unset;
		row-gap: 20px;
	}
	.contacts .contacts-container .contact .contact-column {
		row-gap: 16px;
		align-items: center;
	}
	.contacts .contacts-container .contact .contact-column .contact-info {
		align-items: center;
	}
	.contacts .contacts-container .contact .contact-column .name {
		font-size: 20px;
		line-height: 28px;
	}
	.contacts .contacts-container .contact .contact-column .position,
	.contacts .contacts-container .contact .contact-column .email {
		font-size: 16px;
		line-height: 28px;
	}
	.contacts .contacts-container .contact .contact-column .socials {
		justify-content: center;
	}

}