section.schedule-appointment {
	display: flex;
	background-color: var(--primary-brand);
	justify-content: center;
	align-items: center;
	padding: 104px 0px;
}

section.schedule-appointment h2 {
	padding-bottom: 56px;
	color: var(--white);
	text-align: center;
}

section.schedule-appointment .button-container {
	display: flex;
	justify-content: space-evenly;
	align-items: stretch;
	padding: 0px 48px;
	gap: 16px;
}

section.schedule-appointment .button-container button.orange {
	display: flex;
	min-width: 232px;
	padding: 13px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 999px;
	background: var(--secondary-brand);
	font-family: "Inter";
	font-weight: 500;
	color: var(--white);
	border: none;
}

section.schedule-appointment .button-container button.orange:hover {
	cursor: pointer;
	background-color: var(--secondary-600, #E56411);
}

section.schedule-appointment .button-container button.orange:active {
    cursor: pointer;
    background-color: var(--secondary-700, #CB5011);
    box-shadow: inset 0 0 0 3px var(--border-dark, #131A51);
}

section.schedule-appointment .button-container button.wireframe {
	display: flex;
	min-width: 232px;
	padding: 13px 24px;
	justify-content: center;
	align-items: center;
	border-radius: 999px;
	border: 1px solid var(--white);
	font-family: "Inter";
	font-weight: 500;
	color: var(--white);
	background-color: var(--primary-brand);
}

section.schedule-appointment .button-container button.wireframe:hover {
	cursor: pointer;
	background: rgba(242, 246, 247, 0.06);
}

section.schedule-appointment .button-container button.wireframe:active {
    cursor: pointer;
	box-shadow: inset 0 0 0 3px var(--white, #FFF);
}

@media screen and (max-width: 600px){

	section.schedule-appointment {
		padding: 0px;
	}

	section.schedule-appointment div.schedule-appointment {
		padding: 80px 18px;
	}

	section.schedule-appointment .button-container {
		flex-direction: column;
		padding: 0px;
	}

	section.schedule-appointment .button-container .orange {
		padding: 8px 16px;
	}

	section.schedule-appointment .button-container .wireframe {
		padding: 8px 16px;
	}
}