#locations {
	position: relative;
	flex-direction: column;
	background-color: var(--brand-primary);
	z-index: 1;
	font-weight: 700;
}

#locations .title {
	background-color: var(--background-blue);
	color: var(--text-alt);
}

#locations .box {
	padding: 4rem 0;
}

#locations .box div {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#locations .location {
	gap: 1.5rem;
}

#locations .box:nth-child(1) {
	background-color: var(--background-tertiary);
}

#locations .box:nth-child(2) {
	background-color: var(--background-primary);
}

#locations h1 {
	margin-bottom: 0.35rem;
}

#locations p {
	max-width: 60%;
	text-align: center;
}

#locations a {
	font-size: 100%;
	font-weight: 550;
	padding: .625rem 1.25rem;
	color: var(--text-primary);
	background-color: var(--brand-accent);
	border-radius: 0.25rem;
	transition: color .8s ease-in-out 0s, background .8s ease-in-out 0s;
}

#locations a:hover{
	color: var(--text-alt);
	background-color: var(--brand-primary);
	transition: color .8s ease-in-out 0s, background .8s ease-in-out 0s;
}

@media only screen and (min-width: 1160px) {
    
	#locations .box {
		width: 50%;
	}
}

@media only screen and (min-width: 1600px) {

	#locations p {
		max-width: 50%;
	}
}
