.contact-info {
	margin-bottom: 10px;
}

.contact-info .phone {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-bottom: 5px;
}

.contact-info .phone-label,
.contact-info .address-label {
	font: 400 12px 'Pacifico', cursive;
	color: #eeb111;
	margin-right: 5px;
}

.contact-info .phone-number,
.contact-info .address {
	font: 900 12px 'Arvo', sans-serif;
	color: white;
	line-height: 1.5em;
}

.contact-info .address {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contact-info .address-label,
.contact-info .comma-for-desktop {
	display: none;
}

@media screen and (min-width: 640px) {
	.contact-info {
		display: flex;
	}
	
	.contact-info .phone {
		margin-right: 10px;
		margin-bottom: 0;
	}
	
	.contact-info .address {
		flex-direction: row;
	}
	
	.contact-info .address-label,
	.contact-info .comma-for-desktop {
		display: inline;
	}

	.contact-info .comma-for-desktop {
		margin-right: 2px;
	}
}

@media screen and (min-width: 1024px) {
	.contact-info .phone-label,
	.contact-info .address-label,
	.contact-info .phone-number,
	.contact-info .address {
		font-size: 16px;
	}
}