.contacts-company-section {
	display: flex;
	flex-flow: column;
	margin-top: 16px;

	@include mobile {
		padding: 0 16px;
	}

	@include desktop {
		align-self: center;
		margin-top: 20px;
		width: calc(100% - 32px);
		max-width: $width-desktop;
	}
}

.contacts-company-section__title {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -0.03em;

	@include desktop {
		font-size: 56px;
	}
}

.contacts-company-section__head-contacts {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	gap: 16px;
	margin-top: 20px;

	@include desktop {
		margin-top: 40px;
		gap: 40px;
	}
}

.contacts-company-section__head-contact-label {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 10px;

	@include mobile {
		flex: 0 0 100%;
	}

	@include desktop {
		gap: 12px;
	}
}

.contacts-company-section__head-contact-label__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	aspect-ratio: 2 / 2;
	border-radius: 14px;
	background-color: $color-surface;

	@include desktop {
		width: 54px;
		height: 54px;
		border-radius: 16px;
	}

	svg {
		width: 24px;
		height: 24px;
		color: $color-green;
	}
}

.contacts-company-section__head-contact-label__main {
	display: flex;
	flex-flow: column;
	gap: 4px;

	@include desktop {
		gap: 6px;
	}

	b {
		font-size: 16px;
		font-weight: 700;
		letter-spacing: -0.03em;

		@include desktop {
			font-size: 20px;
		}
	}

	span {
		font-size: 14px;
		line-height: 16px;
		color: $color-gray-md;

		@include desktop {
			font-size: 16px;
			line-height: 18px;
		}
	}
}

.contacts-company-section__head-contact-socials {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	gap: 10px;

	@include mobile {
		flex: 0 0 100%;
	}

	@include desktop {
		gap: 12px;
	}
}

.contacts-company-section__head-contact-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	aspect-ratio: 2 / 2;
	border-radius: 14px;
	background-color: $color-surface;

	@include desktop {
		width: 54px;
		height: 54px;
		border-radius: 16px;
	}

	svg {
		width: 24px;
		height: 24px;
	}
}

.contacts-company-section__head-contact-btn {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 48px;
	padding: 0px 16px;
	border-radius: 14px;
	background-color: $color-green;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: $color-white;
	box-sizing: border-box;

	@include desktop {
		min-height: 54px;
		padding: 0px 20px;
		border-radius: 16px;

		&:hover {
			background-color: $color-green-hover;
		}
	}

	svg {
		width: 24px;
		height: 24px;
	}
}
