body {
	overflow-x: hidden;
}

footer {
	display: flex;
	justify-content: center;
	padding: 60px 0;
	flex-direction: column;
}

.footer-wrapper {
	display: flex;
	gap: 64px;
	width: 1000px;
}

header a {
		width: 100%;
}

a {
	color: white;
	transition: all 0.25s ease-in-out;
	text-decoration: none !important;
}

a:hover {
	transform: scale(1.04);
}

strong {
	font-weight: 700;
}

.logo {
	width: 80%;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 auto;
}

.form-group:nth-child(1),
.form-group:nth-child(2) {
	margin-top: 1.5rem;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px #222 inset !important;
	/* Forces background color change */
	box-shadow: 0 0 0px 1000px #222 inset !important;
	color: white !important;
	border-radius: .75rem;
	-webkit-text-fill-color: white !important;
}

input:-webkit-autofill:focus,
textarea:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0px 1000px #444 inset !important;
	/* Darker background when focused */
	box-shadow: 0 0 0px 1000px #444 inset !important;
	color: white !important;
	border: 1px solid #0f6f3a !important;
	-webkit-text-fill-color: white !important;
}

.form-control:focus::placeholder {
	color: #0f6f3a;
}

.form-control:focus {
	border: 1px solid #0f6f3a;
	color: #0f6f3a;
	outline: none;
}

.desktop {
	display: block;
}

.mobile {
	display: none;
}

.claims,
.rating-info {
	text-align: center;
}

footer p {
	font-weight: 400 !important;
}

.claims span {
	color: #FFB743;
	font-weight: bold;
}

.text-links {
	transition: all 0.2s ease-in-out !important;
}

.text-links:hover {
	text-decoration: underline !important;
}

header {
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1111;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.25rem 0;
	font-size: 1rem;
}

tbody tr:nth-child(even) {
	background-color: #222222;
}

tbody tr:hover {
	background-color: #161616;
}

table,
th,
td {
	border: 1px solid #ccc;
}

img {
	max-width: 100%;
	height: auto;
}

.footer-link {
	padding: .75rem;
	margin: 0px 6px;
}

.copyright {
	width: 100%;
	margin: 0 auto;
	text-align: center !important;
}

.hero-section img {
	width: 100%;
	height: auto;
}

.list-unstyled li {
	list-style: none;
	background: #016532;
	padding: 6px .75rem;
	border-radius: .75rem;
	font-size: 1rem;
}

.list-unstyled {
	padding-left: 0 !important;
}

.form-group label {
	display: flex;
	flex-direction: column;
}

form#contact-form {
	display: flex;
	flex-direction: column;
}

.footer-links-wrapper ul {
	list-style: none;
	padding: 0 !important;
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

.footer-links-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .75rem;
}


/* HEADER CSS */

.hamburger-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1000;
}

.menu .footer-link {
	padding: 1.25rem;
	transition: all 0.25s ease-in-out;
}

.header-btn {
	padding: 1rem 1.75rem;
	transition: all 0.25s ease-in-out;
	border: none;
}

.dropdown {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.dropbtn {
	background-color: transparent;
	padding: 1rem;
	font-size: 1rem;
	border: none;
	cursor: pointer;
	border-radius: .75rem;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #333;
	min-width: 300px;
	box-shadow: 0px 8px 1rem 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.dropdown-content a {
	color: black;
	padding: .75rem 1rem;
	text-decoration: none;
	display: block;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.breadcrumbs ol {
	list-style: none;
	display: flex;
	align-items: center;
	gap: .75rem;
	padding-left: 0 !important;
	flex-wrap: wrap;
}

.review-feat-img.archive {
	width: 100%;
}

.faq .faq-question {
	font-weight: 500;
}

@media screen and (min-width: 1900px) {
	footer p {
		font-size: 1.1rem !important;
	}
}

@Media (min-width: 1025px) {
	.dropdown-content {
		top: 50px;
	}
}

@Media (min-width: 669px) and (max-width: 1200px) {
	.dropdown-content {
		top: 50px;
	}

	footer .header-container {
		justify-content: center;
		gap: 32px;
	}

	footer p {
		font-size: .9rem;
	}
}

@Media (max-width: 767px) {
	.hamburger-menu {
		display: flex;
	}

	nav.breadcrumbs {
		margin-bottom: 2rem;
	}

	.table-wrapper {
		overflow-x: scroll;
	}

	.dropdown {
		display: inline-block;
		width: auto;
		text-align: center;
	}

	.footer-links-wrapper {
		justify-content: flex-start;
	}

	button.dropbtn {
		min-width: 300px;
		text-align: center;
	}

	.menu {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		background-color: #333;
		text-align: center;
		flex-direction: column;
		transform: translateY(-100%);
		opacity: 0;
		transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
		visibility: hidden;
	}

	.menu .footer-links-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1.25rem;
		padding: 1.25rem 0;
	}

	header .footer-links-wrapper {
		padding-bottom: 2.5rem !important;
		margin: 0;
		width: 100%;
		padding-top: 2.5rem !important;
	}

	.menu {
		flex-direction: column;
		position: absolute;
		top: 60px;
		right: 0;
		width: 100%;
		text-align: center;
	}

	.menu.show {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		max-height: 90vh;
		overflow: scroll;
	}

	.menu.hide {
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
	}

	.hamburger-menu.toggle .line:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.hamburger-menu.toggle .line:nth-child(2) {
		opacity: 0;
	}

	.hamburger-menu.toggle .line:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -8px);
	}

	header {
		height: 70px;
	}

	.hero-section {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.footer-links-wrapper ul {
		flex-direction: column;
	}

	.blog-archive-wrapper {
		display: grid;
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@Media (max-width: 668px) {
	.form-group:nth-child(2) {
		margin-top: 0px;
	}
	
	.header-btn {
    width: 80%;
}

	.header-container {
		justify-content: center;
	}

	img.mobile {
		display: block;
		width: 100%;
	}

	.desktop {
		display: none;
	}
}

@Media (max-width: 468px) {
	.footer-links-wrapper {
		display: flex;
		flex-direction: column;
		gap: .75rem;
		margin-top: 48px;
		align-items: center;
	}

	.footer-links-wrapper a {
		text-align: center;
	}

	header .header-container {
		justify-content: space-between !important;
	}

	.back-to-top {
		width: 1rem !important;
		height: 1rem !important;
	}
}