#head-office-details {
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin-top: 35px;
}

#head-office-details div {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#head-office-details span {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	border-bottom: 1px solid white;
	margin: 0 40px;
	padding-bottom: 10px;
}

#head-office-details span::before {
	width: 20px;
	height: 20px;
	display: inline-block;
	content: '';
	margin-right: 9px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}

#head-office-details p {
	border: 0;
}

.head-office-phone::before {
	background-image: url(https://starlight.seventy9.co.uk/static/images/icons/social_phone.svg?v=);
}

.head-office-email::before {
	background-image: url(https://starlight.seventy9.co.uk/static/images/icons/social_message.svg?v=);
}

.head-office-postal::before {
	background-image: url(https://starlight.seventy9.co.uk/static/images/icons/social_mail.svg?v=);
}

@media screen and (max-width: 1110px) {
	#head-office-details {
		align-items: center;
		flex-direction: column;
		gap: 35px;
	}

	#head-office-details div {
		width: 400px;
	}
}