/* Variables */
:root {
	--site-primary: #00186A;
	--site-secondary: #4A90E2;
	--site-accent: #ff922b;
	
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;

	--bs-font-sans-serif: Inter,sans-serif;
}}

/* Base styles */
html,body {
	font-family: var(--bs-body-font-family);
	font-weight: var(--bs-body-font-weight);
}
a {
	color: var(--site-secondary);
}
.lead {
	font-weight: var(--bs-body-font-weight);
}
.title-font {
	color: var(--site-primary);
	font-family: 'Montserrat','Inter',sans-serif;
	font-weight: 800;
}
.text-site-primary {
	color: var(--site-primary);
}
.text-site-secondary {
	color: var(--site-secondary);
}
.text-site-accent {
	color: var(--site-accent);
}

/* ATF Header */
.wp-header {
	border-bottom: 1px solid var(--bs-gray-200);
}
.wp-header .menu a {
	font-weight: 700;
}
.inner-content {
	padding-top: 3rem;
	padding-bottom: 3rem;
}
@media (max-width: 575px) {
	.wp-header .logo {
		max-width: 200px;
		margin: auto;
	}
}
@media (min-width: 576px) {
	.wp-header {
		padding: 0.5rem 1rem;
	}
}

/* Product buttons */
.product-button-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}
.product-button {
	width: 100%;
	margin-bottom: 1rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
@media (min-width: 768px) {
	.product-button {
		max-width: 50%;
	}
}
@media (min-width: 992px) {
	.product-button {
		max-width: 33.3%;
	}
}
@media (min-width: 1200px) {
	.product-button {
		max-width: 25%;
	}
}
.product-button_link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-left: 1rem;
	padding-right: 1rem;
	min-height: 72px;
	color: inherit;
	font-family: 'Montserrat','Inter',sans-serif;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
	background-color: #fff;
	border-color: #ff0;
	border-radius: 4px;
	box-shadow: 0 1px 10px rgba(0,0,0,0.125);
	transition: box-shadow 200ms, transform 200ms;
	transition-timing-function: ease-in-out;
}
.product-button_link:hover {
	transform: scale(1.1);
	box-shadow: 0 1rem 1rem rgba(0,0,0,0.125);
}
.product-button_link:active {
	color: #fff;
	background-color: var(--site-secondary);
}
.product-button_img {
	width: auto;
	margin-right: 0.5rem;
}

/* Footer */
.wp-footer {
	border-top: 1px solid #f5f5f5;
}
.footer-nav .footer-link {
	display: inline-block;
	margin: 0.5rem 1rem;
}
.footer-nav span {
	display: none;
}
.footer-nav .footer-link:hover {
	color: var(--site-secondary);
}
@media (min-width: 768px) {
	.footer-nav {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.footer-nav .footer-link {
		margin: 0;
	}
	.footer-nav span {
		display: inline;
		margin: 0 0.5rem;
	}
}

/* Animations */
.animated {
	animation-duration: var(--animate-duration);
	animation-fill-mode: both;
}
@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		opacity: 0;
		visibility: visible;
	}

	to {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}
.slideInLeft {
	animation-name: slideInLeft;
}