.white-popup {
	position: relative;
	background: linear-gradient(to top left, #ccc, #fafafa, white);
	padding: 20px;
	width: auto;
	max-width: 900px;
	margin: 20px auto;
}

.white-popup ol {
	font-size: 16px;
	color: #000;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #fafafa;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.white-popup ol li {
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}

.contact_title {
	margin-bottom: 50px;
}

.contact_card {
	display: flex;
	align-items: center;
	height: 50px;
	background: linear-gradient(to left, #ccc, #fafafa, white);
	border-radius: 5px;
	color: #000;
	margin-bottom: 20px;
	border: 1px solid #ccc;
}

.animate-box .inline-div {
	display: inline;
	flex-grow: 1;
}

.button.before {
	position: relative;
	border: 1px solid #0360df;
	border-radius: 50px;
	padding: 8px 16px;
	min-width: 8em;
	background-color: #0360df;
	background-image:
		radial-gradient(75% 50% at 50% 0%, #f4feff, transparent),
		radial-gradient(75% 35% at 50% 85%, #8de3fc, transparent);
	box-shadow:
		inset 0 -2px 4px 1px rgba(17, 110, 231, .6),
		inset 0 -4px 4px 1px rgba(141, 227, 252, 1),
		inset 0 0 2px 1px rgba(255, 255, 255, .2),
		0 1px 4px 1px rgba(17, 110, 231, .2),
		0 1px 4px 1px rgba(0, 0, 0, .1);
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 1px #116ee7;
	transition-property: border-color, transform, background-color;
	transition-duration: .2s;

	&::after {
		content: '';
		position: absolute;
		top: 1px;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 50px;
		width: 80%;
		height: 40%;
		background-image: linear-gradient(to bottom, #f4feff, transparent);
		opacity: .75;
	}

	&:hover {
		transform: scale(1.04);
	}

	&:active {
		border-color: #0048d5;
		transform: scale(.96);
		background-color: #0048d5;
	}
}

.contact_title h1 {
	font-size: 50px; 
	font-weight: 700;
}

@media screen and (max-width: 768px) {
	.contact_title h1 {
		font-size: 36px;
		font-weight: 400;
		margin-left: 0.625rem;
	}
}