:root {
	--green: #6aa33a;
	--green-dark: #4f882b;
	--accent: #f6d94f;
	--muted: #7a7a7a;
	--bg: #f6f6f6;
	--card: #fff;
	--container: 1200px;
	--yellow-border: #f2d94a;
	--placeholder: #e9e9e9;
}

* {
	box-sizing: border-box
}

body {
	/* font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
	margin: 0;
	color: #222; */
	/* background: var(--bg); */
}

/* top bar */
.top-bar {
	/* background: var(--green);
	color: #fff;
	text-align: center;
	padding: 6px 12px;
	font-size: 14px; */
}

/* header.site-header {
	background: #fff;
	border-bottom: 1px solid #e8e8e8;
} */

/* .site-header .container {
	max-width: var(--container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 18px;
} */

/* .brand {
	display: flex;
	gap: 10px;
	align-items: center;
	text-decoration: none;
	color: var(--green-dark);
} */

	.brand .logo-mark {
		width: 46px;
		height: 46px;
		background: linear-gradient(#fff,#f7f7f7);
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 800;
		color: var(--green-dark);
		box-shadow: 0 1px 0 rgba(0,0,0,0.02);
	}

nav.main-nav {
	/* margin-left: auto; */
}

	nav.main-nav a {
		/* color: #4b4b4b;
		text-decoration: none;
		margin-left: 18px;
		font-size: 15px; */
	}

.page {
	/* max-width: var(--container); */
	/* margin: 0 auto; */
	/* padding: 22px 18px 80px; */
}

.filters {
	/* display: flex;
	gap: 8px;
	align-items: center; */
	/* margin-bottom: 18px; */
}

	.filters select, .filters button {
		/* padding: 8px 10px;
		border-radius: 4px; */
		/* border: 1px solid #ddd; */
		/* background: #fff; */
		/* font-size: 14px; */
	}

	.filters button {
		/* background: var(--green);
		color: #fff;
		border: 1px solid rgba(0,0,0,0.06);
		cursor: pointer; */
	}

/* grid */
.grid {
	/* display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 18px;
	align-items: start; */
}

.card {
	/* background: var(--card);
	border: 4px solid #efefef;
	border-radius: 6px;
	padding: 14px;
	min-height: 140px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	transition: box-shadow .12s ease; */
}

/* highlight top-sponsors with yellow border like screenshot */
.card.highlight {
	/* border-color: var(--yellow-border); */
}

.logo-wrap {
	/* height: 64px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	overflow: hidden; */
}

	.logo-wrap img {
		/* max-height: 64px;
		max-width: 170px;
		object-fit: contain;
		display: block; */
	}

.main {
	flex: 1;
}

footer.site-footer {
	/* background: var(--green-dark);
	color: #fff;
	margin-top: 36px;
	padding: 30px 18px; */
}

.foot-inner {
	max-width: var(--container);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

	.foot-inner a {
		color: #fff;
		text-decoration: none;
		margin-right: 12px;
		font-size: 13px;
		opacity: 0.95;
	}

@media (max-width:780px) {
	.filters {
		/* flex-direction: column;
		align-items: stretch; */
	}

	.company {
		/* font-size: 13px; */
	}
}

.green-button {
	background: var(--green);
	color: #fff;
	padding: 8px 12px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
}
.white-button {
	background: #fff;
	border: 1px solid #ddd;
	padding: 8px 12px;
	border-radius: 4px;
	margin-right: 12px;
}

.simple-textbox {
	width: 100%;
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #ddd;
	margin-top: 6px;
}





/* new misc. */

body {
	/* background: #F1F1F1; */
	background: #E1E9F4;
	font-family: "Inter", sans-serif;
	/* margin: 0; */
	color: #222;
}
main.page {
	margin-top: 100px;
	padding: 16px 0 16px 0;
}
main.page > .container {
	/* margin: 24px auto; */
}
.btn {

}
.btn-primary {
	background: #fc8035;
	border: none;
	font-weight: 600;
	display: inline-flex;
    height: 38px;
    justify-content: center;
    align-items: center;
	width: 100%;
	align-self: flex-start;
}
.btn-primary i {
	/* margin-right: 8px; */
	color: #fff;
}
.btn-primary:hover {
	background: #E56110;
}
h1 {
	font-weight: 700;
	margin-bottom: 16px;
}
.btn-primary.write-review {
	background: #fff;
    border: solid 2px #FB6F18;
    color: #FB6F18;
	transition: all .15s ease-in-out;
}
.btn-primary.write-review i {
	/* font-size: 14px; */
	/* margin: 0 8px 0 0; */
	color: #FB6F18;
	transition: all .15s ease-in-out;
}
.btn-primary.write-review:hover {
	color: #fff;
	border-color: #E56110;
	background-color: #E56110;
	transition: all .15s ease-in-out;
}
.btn-primary.write-review:hover i {
	/* background: #3B8CF7; */
	color: #fff;
	transition: all .15s ease-in-out;
}
.border {
	border-color: #ccc !important;
}
.card {
	border-color: #ccc !important;
}
input,
textarea {
	border-color: #bbb !important;
}

/* misc. xs - md screen sizes */
@media (max-width: 991px) {
	/* main.page {
		margin-top: 97px;
	} */
}

/* misc. md screen size and up */
@media (min-width: 768px) {
	.btn-primary {
		width: auto;
	}
}

/* misc. lg screen size and up */
@media (min-width: 992px) {
	main.page {
		margin-top: 124px;
		padding: 24px 0 36px 0;
	}

}



/* Sitewide header */

.navbar {
	transition: all 0.1s ease-in-out;
	padding: 0;
}
.site-header {
	background: #fff;
	transition: all 0.1s ease-in-out;
}
.top-nav {
	background: #fc8035;
	color: #fff;
	padding: 5px 0;
	font-size: 16px;
	font-weight: 600;
}
.top-nav a {
	color: #fff;
	margin: 0 0 0 16px;
	text-decoration: none;
}
a.nav-link {
	font-weight: bold;
	color: #222;
	padding-right: 16px;
}
.navbar .navbar-nav {
	gap: 8px;
}
.navbar-brand img {
	max-height: 80px;
	transition: all 0.1s ease-in-out;
}
.navbar-nav .dropdown-item {
	font-weight: 600;
}
.dropdown-toggle::after {
	color: #fc8035;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
	color: #fc8035;
}
.dropdown-item:focus, .dropdown-item:hover {
	color: #fc8035;
	background: none;
}
.nav-link:focus, .nav-link:hover {
	color: #fc8035;
}
.navbar a.nav-link:focus-visible {
	box-shadow: none;
}
.navbar-toggler {
	border: none;
	position: relative;
	/* right: -16px; */
}
.navbar-toggler:focus {
	box-shadow: none;
}
.navbar-toggler-icon {
	
}
.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
	background-image: url(/img/bars-solid-full.svg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url(/img/xmark-solid-full.svg);
}

/* home header md screen size */
@media (min-width: 768px) {
	.navbar-brand img {
		/* min-height: 80px; */
	}
}

/* home header sm screen size */
@media (max-width: 991px) {
	.navbar-brand img {
		max-height: 56px !important;
	}
	.navbar {
		padding: 0 !important;
	}
	.navbar a.nav-link {
		text-align: right;
		border-top: solid 1px #ddd;
	}
	.navbar .navbar-nav {
		gap: 0;
	}
	.navbar .dropdown-menu {
		text-align: right;
		border: none;
		padding-top: 0;
		margin: 0;
		box-shadow: none !important;
	}
	.navbar .dropdown-item {
		text-align: right;
		padding: 8px 32px 8px 0;
		
	}
}



/* Sitewide footer */

footer {
	background: #0b0b45;
	color: #fff;
	font-size: 14px;
	padding: 32px 0;
}
footer a {
	color: #fff;
	text-decoration: none;
	transition: color .15s ease-in-out;
}
footer a:hover {
	color: #fc8035;
	transition: color .15s ease-in-out;
}
.footer-link:hover {
	text-decoration: underline;
	color: #fff;
}
footer .nav-item {
	padding: 8px;
	font-size: 16px;
}
footer a.nav-link {
	color: #fff;
}
footer .navbar-nav > .nav-item:last-child {
	padding-right: 0;
}
.footer-social-links {
	gap: 16px;
}
.footer-social-links i {
	font-size: 24px;
}
img.footer-brand {
	max-height: 32px;
}
footer .navbar-nav {
	gap: 8px;
}
img.footer-brand-501works {
	max-height: 40px;
	margin-left: 16px;
}







/* Home */

.home-header {
	/* background-image: url(/img/blue-bkg-hd.jpg); */
	background-image: url(/img/abstract-blue-bg.jpg);
	/* background-image: url(/img/istockphoto-1486754158-1024x1024.jpg); */
	/* background: rgba(15, 89, 184, 1); */
	/* background: linear-gradient(15deg, rgba(5, 35, 107, 1) 0%, rgba(15, 89, 184, 1) 50%, rgba(75, 166, 247, 1) 100%); */
	background-size: cover;
	background-position: center;
	padding: 28px 0 72px 0;
	color: #fff;
	margin-top: -24px;
}
.home-header h1 {
	font-size: 24px;
}
.home-header h2{
	font-size: 20px;
	text-transform: uppercase;
}
.home-header-cta {
    /* padding: 32px; */
    background: rgba(255, 255, 255, .8);
    border-radius: 16px;
	color: #000;
}
.home-content {
	margin-top: -40px;
	margin-bottom: 16px;
}

/* home header md screen size */
@media (min-width: 768px) {
	.home-header {
		padding: 48px 0 88px 0;
	}
	.home-header h1 {
		font-size: 26px;
	}
}

/* home-header lg screen size */
@media (min-width: 992px) {
	.home-header {
		padding: 88px 0 120px 0;
	}
	.home-header h1 {
		font-size: 32px;
	}
}





/* Home search */

.home-search  {
	/* padding: 16px 24px; */
    background: #fc8035;
	margin-bottom: 32px;
	/* background-image: url(/img/orange-bg.jpg); */
}
.home-search label {
	display: none;
}
.home-search form {
	display: flex;
    /* flex-direction: row;
    background: #fff;
    border-radius: 100px;
    border: solid 8px #fc8035; */
}
.home-search form > div {
	width: 100%;
}
.home-search form .fa-magnifying-glass {
	min-width: 60px;
    color: #fc8035;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
	font-size: 28px;
	padding-right: 0;
	pointer-events: none;
	padding-left: 16px;
}
.home-search input {
    border-radius: 100px;
    border: solid 8px #fc8035 !important;
	/* border: none; */
	padding: 16px 32px 16px 56px;
	font-size: 18px;
	width: calc(100% + 160px);
	margin: 0 0 0 -60px;
}
.home-search a.view-all {
	min-width: 100px;
    display: flex;
    align-items: center;
    /* justify-content: center; */
	text-decoration: none;
    font-weight: 600;
	/* color: rgba(0,0,0,.65); */
	color: #222;
	height: 42px;
    margin: 16px 0;
	font-size: 14px;
	transition: color .15s ease-in-out;
}
.home-search a.view-all i {
	margin-left: 8px;
}
.home-search a.view-all:hover {
	color: #E56110;
	transition: color .15s ease-in-out;
}


/* home search lg screen size */
@media (min-width: 992px) {
	.home-search input {
		padding: 16px 32px 16px 64px;
		font-size: 20px;
		width: calc(100% + 200px);
		margin: 0 0 0 -100px;
	}
	.home-search form .fa-magnifying-glass {
		min-width: 100px;
		font-size: 32px;
		padding-right: 24px;
		padding-left: 8px;
	}
	.home-search a.view-all {
		height: 46px;
	}
}





/* Review card */

.review-card > div > div:first-child {
	min-width: 56px;
}
.review-card > div:nth-child(2) > div:first-child {
	width: 100%;
}
.review-card .read-more {
	font-weight: 600;
	text-decoration: none;
	color: #222;
	font-size: 14px;
	transition: color .15s ease-in-out;
}
.review-card .read-more i {
	margin-left: 8px;
}
.review-card .read-more:hover {
	color: #fc8035;
	transition: color .15s ease-in-out;
}
.review-card .review-rating {
	font-size: 14px;
}
.review-card .review-rating i {
	font-size: 16px;
	/* color: #FFA947 !important */
	color: #FFB108 !important;
}
.review-card .review-rating > div {
	width: 50%;
	/* margin-bottom: 12px !important; */
}
.review-card .review-recommendation {
	/* margin-right:  */
}
.review-card .review-recommendation > div {
	padding: 12px !important;
}
.review-card .review-recommendation i {
	/* font-size: 32px !important; */
}
.review-title h3 {
	/* font-size: 1rem; */
}
.review-title h4 {
	/* font-size: 1.25rem; */
}


/* Review card lg screen size and up */
@media (min-width: 992px) {
	.review-card > div > div:first-child {
		min-width: 122px;
		max-width: 122px;
	}
	.review-card .review-rating > div {
		width: 100%;
	}
}


/* Home bottom content */

.home-bottom-content {
	background-image: url(/img/orange-bg.jpg);
    background-size: cover;
	margin-bottom: -36px;
}
.home-bottom-content-card {
	padding: 24px;
    background: rgba(255, 255, 255, .8);
    border-radius: 16px;
    color: #0b0b45;
	height: 100%;
	text-align: center;
}
.home-bottom-content-card a {
	/* text-decoration: none;
	background: #fc8035;
    border: none;
    font-weight: 600;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
	color: #fff; */
}
.home-bottom-content-card a i {
	/* margin: 0 0 0 8px; */
}
.home-bottom-content i {
	margin-bottom: 24px;
}
.home-bottom-content h2 {
	margin-bottom: 16px;
	font-size: 20px;
}

/* home botom content lg screen size */
@media (min-width: 992px) {
	.home-bottom-content {
		background-position: center;
	}
}



.interior-header {
	background: #fff;
	margin-top: -24px;
    padding: 32px 0 40px 0;
	background-image: url(/img/abstract-blue-bg.jpg);
    background-size: cover;
    background-position: center;
	color: #fff;
}
.interior-header h1 {
	/* color: #fff; */
}





