/**
################################################################
CUSTOM CSS FOR JAMES PURBA & PARTNERS
By: Vincent Purba
################################################################
**/
.header-contact {
	background-image: linear-gradient(0deg, rgba(32, 44, 100, 1), rgba(32, 44, 100, 0.2)), url("img/bg_contacts.png");
	background-size: cover
}

.contact-grid {
	display: grid;
	grid-template-areas: 
	"text-1 map-1";
	gap: 2%;

	text-align: justify;
}

.text-contact {
	grid-area: text-1;
}

.map-contact {
	grid-area: map-1;
}

.contact-grid p {
	font-size: 1.25vw;
}

