@charset "utf-8";

:root {
	--grey: #414042;
	--green: #8dc63f;
	--grey-light: #958E8E;
	--grey-mid: #676262;
	--green-light: #D7F0B8;
	--green-mid: #C8F0A1;
	--green-dark: #8dc63f;
	--teal: #008080;
	--white: #ffffff;
	--black: #000000;
}

@font-face {
	font-family: 'Jost';
	font-style: normal;
	font-weight: 100 900;
	font-stretch: 75% 125%;
	src: url(../fonts/Jost-VariableFont_wght.ttf) format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'Jost';
	font-style: italic;
	font-weight: 100 900;
	font-stretch: 75% 125%;
	src: url(../fonts/Jost-Italic-VariableFont_wght.ttf) format('truetype');
	font-display: swap;
}

@font-face {
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;
	src: url(../webfonts/fa-solid-900.woff2) format('woff2');
	font-display: optional;
}

@font-face {
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 400;
	src: url(../webfonts/fa-brands-400.woff2) format('woff2');
	font-display: optional;
}

*,
*::before,
*::after {
	font-family: 'Jost', Arial, sans-serif;
	color: var(--grey);
	font-size: 16px;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

/* browser background window */
body { 
	margin: 0px;
	padding: 0px;
	position: relative;
}

body::after {
	position: absolute;
	content: "";
	background-image: url("../images/mouse-small.webp");
	background-repeat: space;
	background-size: 5px;
	background-color: var(--green-light);
	background-blend-mode: overlay;
	opacity: .1;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
}

#wrapper { 
	max-width: 1000px;
	min-width: min-content;
	min-height: 100vh;
	margin: 0 auto;
	display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 180px 35px minmax(650px, auto) auto;
		grid-template-areas: 
		"header"
		"menu"
		"main"
		"footer";
	background-color: var(--white);
}

ul {
	list-style-type: none;
}

a {
	text-decoration: none;
}

.uppercase {
	text-transform: uppercase;
}

.center {
	display: block;
	margin: 0 auto;
	width: 100%;
	height: auto;
}

.capitalize {
	text-transform: capitalize;
}

header#header {
	display: flex;
	justify-content: space-between;
	background-image: url("../images/website-bg-650.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--green);
	position: relative;
}

header#header a.skip {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

header#header a.skip:focus {
	left: 0;
	top: 0;
	width: auto;
	height: auto;
	padding: 3px 8px;
	z-index: 10;
	background-color: red;
	color: var(--white);
}

header#header img {
	width: 175px;
	height: 170px;
}

header#header a.contact {
	background-color: var(--green);
	align-self: flex-start;
	color: var(--grey);
	padding: 10px;
	font-size: .8rem;
	font-weight: 500;
	letter-spacing: .1rem;
	border-radius: 0 0 10px 10px;
	margin-right: 20px;
	border: 4px solid var(--white);
	border-top: none;
}

/* --- NAV LINKS --- */
nav#nav {
	grid-area: menu;
}

nav#nav ul {
	display: flex;
	justify-content: center;
	align-items: stretch;
	height: 100%;
	margin: 0;
	padding: 0 5px;
	background-color: var(--green-light);
}

nav#nav li {
	padding: 0 5px;
}

nav#nav a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--grey);
	font-size: .8rem;
	font-weight: 500;
	letter-spacing: .1rem;
	width: 100%;
	height: 100%;
}

nav#nav a.active {
	background-color: var(--grey);
	color: var(--white);
	padding: 2px 6px;
}

nav#nav a:hover {
	opacity: .7;
}

/* -------------- MAIN all pages -------------------- */
main {
	grid-area: main;
	width: 100%;
	background-color: white;
	margin: 0 auto;
}

main ul.breadcrumb {
	margin: 0 0 30px 10px;
}

main ul.breadcrumb li {
	display: inline;
}

main ul.breadcrumb li,
main ul.breadcrumb li a {
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

main ul.breadcrumb li+li:before {
	color: var(--green);
	content: "/\00a0";
}

main ul.breadcrumb li a {
	color: var(--grey);
	padding-left: 8px;
}

main ul.breadcrumb li a:hover {
	color: var(--grey-mid);
}

main section#main-heading {
	width: 70%;
	max-width: 500px;
	margin: auto;
}

main section#main-heading h1 {
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 15px;
}

main section#main-heading h2,
main section#main-heading h2 span {
	font-size: 2rem;
	font-weight: 500;
	line-height: 2rem;
	text-transform: capitalize;
	white-space: pre-line;
}

main section#main-heading h2 span {
	color: var(--grey-light);
}

/* -------------- MAIN index -------------------- */
/* We're here for ambitious enterprise */
main#index section.main-contact {
	width: 70%;
	font-size: 1rem;
	line-height: 1.5rem;
	margin: auto;
	margin-top: 30px;
	max-width: 500px;
	letter-spacing: 1px;
}

main#index section.main-contact h2 {
	font-weight: 400;
	margin-bottom: 10px;
}

main#index section.main-contact h3 {
	margin-top: 20px;
}

main#index section.main-contact h4,
main#index section.main-contact h4 span {
	white-space: pre-line;
	margin-top: 10px;
}

main#index section.main-contact h4 {
	font-size: 1.25rem;
}

main#index section.main-contact h4 span {
	font-weight: 400;
}

main#index section.main-contact h4:first-letter {
	text-transform: uppercase;
}

/* ------ CIRCLES GALLERY ------ */
section.circles-gallery ul {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	margin: 20px auto 0;
	padding: 30px;
	background-color: var(--green-light);
}

section.circles-gallery li {
	width: auto;
	height: auto;
}

section.circles-gallery img {
	border-radius: 50%;
	border: 2px solid var(--green-light);
	padding: 5px;
	overflow: hidden;
	margin: 0 auto;
	object-fit: contain;
}

section.circles-gallery li.circles-1 img {
	max-width: 136px;
	margin-left: -90px;
}

section.circles-gallery li.circles-2 img {
	max-width: 130px;
	margin: -70px 0 0 110px;
}

section.circles-gallery li.circles-3 img {
	max-width: 115px;
	margin-top: -30px;
}

section.circles-gallery li.circles-4 img {
	max-width: 135px;
	margin: -25px 0 0 80px;
}

section.circles-gallery li.circles-5 img {
	max-width: 120px;
	margin: -45px 0 0 -75px;
}

section.circles-gallery li.circles-6 img {
	max-width: 110px;
	margin: -70px 0 0 110px;
}

section.circles-gallery li img:hover {
	border: 6px solid var(--green);
}

/* ---- body text ---- */
main#index section.main-body-text {
	width: 100%;
	padding: 40px;
	background-color: var(--grey);
}

main#index section.main-body-text h2 {
	margin: auto;
	margin-bottom: 20px;
	color: var(--white);
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: 1px;
	text-align: center;
}

main#index section.main-body-text h2:first-letter {
	text-transform: uppercase;
}

main#index section.main-body-text > section {
	display: flex;
	flex-direction: column;
}

main#index section.main-body-text section h3,
main#index section.main-body-text section h3 span {
	color: white;
	font-size: 1.1rem;
	letter-spacing: 1px;
}

main#index section.main-body-text section h3 {
	margin-bottom: 15px;
	font-weight: 400;
}

main#index section.main-body-text section h3:first-letter {
	text-transform: uppercase;
}

main#index section.main-body-text section h3 span {
	font-weight: 700;
	color: var(--green);
}

main#index > p {
	text-align: center;
	margin: 30px auto 0;
	font-size: 1.5rem;
	text-transform: uppercase;
}

/* ---- PRODUCTS IMAGE GALLERY ---- */
section.product-gallery-container {
	width: 100%;
	height: auto;
	margin: auto;
	margin-top: 30px;
	padding: 0;
}

section.product-gallery-container h2 {
	text-align: center;
	font-size: 2rem;
	text-transform: capitalize;
	padding: 0 30px;
	font-weight: 400;
}

section.product-range-gallery {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 20px;
	width: 100%;
	margin: 10px auto 30px;
}

section.product-range-gallery a {
	width: 100%;
	height: auto;
	border: 3px solid var(--white);
	background-color: var(--white);
}

section.product-range-gallery img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

section.product-range-gallery figcaption {
	height: 35px;
	padding: 5px 10px;
	text-align: center;
	font-size: .8rem;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: 1px;
	margin: 0 auto;
	align-items: center;
	text-transform: uppercase;
}

section.product-range-gallery a:hover {
	border: 3px solid var(--green);
	background-color: var(--green);
}

/*- 3-flex for index and all 10x product pages -*/
.outputs {
	width: 100%;
	background-color: white;
	margin: 0 auto;
}

.outputs h2:first-letter,
.outputs h3:first-letter,
.outputs h4:first-letter,
.outputs h5:first-letter,
.outputs p:first-letter {
	text-transform: uppercase;
}

.outputs-intro {
	width: 70%;
	max-width: 600px;
	margin: 20px auto;
}

.outputs-intro h2,
.outputs-intro h3,
.outputs-intro p {
	font-weight: 400;
	margin-bottom: 10px;
}

.outputs-intro p span {
	font-weight: 700;
}

.outputs-body-text {
	width: 100%;
	background-color: var(--grey);
	padding: 20px 40px;
	margin: auto;
}

.outputs-body-text h3,
.outputs-body-text p {
	max-width: 700px;
	margin: auto;
}

.outputs-body-text h3,
.outputs-body-text p,
.outputs-body-text p span {
	color: white;
}
.outputs-body-text h3 {
	font-size: 150%;
	font-weight: 500;
	margin-bottom: 15px;
}

.outputs-body-text p {
	font-weight: 400;
	margin-bottom: 15px;
}

.outputs-body-text p span {
	font-weight: 700;
	color: var(--green);
}

.outputs-services {
	padding: 40px;
	background-color: var(--green-light);
	text-align: center;
}

.outputs-services h3,
.outputs-services h3 span {
	max-width: 700px;
	font-size: 150%;
	font-weight: 300;
	margin: auto;
}

.outputs-services h3 span {
	font-size: 100%;
	font-style: italic;
}

.outputs-services h4 {
	font-size: 125%;
	font-weight: 400;
	margin: 15px 0;
}

.outputs-services p span {
	font-weight: 700;
}

.outputs-3-flex {
	display: flex;
	flex-direction: column;
}

.outputs-3-flex-item {
	margin: 20px auto;
	background-color: var(--green-mid);
	padding: 30px 20px;
	max-width: 400px;
	border-radius: 0 20px 0 20px;
}

.outputs-3-flex-item svg.icon {
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	fill: var(--grey-light);
}

.outputs-3-flex-item p,
.outputs-3-flex-item p span {
	font-weight: 600;
}

.outputs-3-flex-item p span {
	font-weight: 800;
}

.outputs-contact {
	width: 70%;
	max-width: 600px;
	margin: auto;
	padding: 20px;
}

.outputs-contact h3 {
	font-size: 175%;
	line-height: 125%;
	margin-bottom: 20px;
}

.outputs-contact h4 {
	font-weight: 400;
	margin-bottom: 20px;
	font-size: 125%;
}

.outputs-contact h5,
.outputs-contact h5 span {
	margin-bottom: 10px;
	font-size: 125%;
}

.outputs-contact h5 span {
	font-weight: 700;
}

.outputs-contact a {
	display: block;
	padding: 10px;
	background-color: var(--grey);
	color: var(--white);
	font-weight: 500;
	margin: 20px auto 0;
	border-radius: 20px;
	text-align: center;
	text-transform: uppercase;
	width: 160px;
}

.outputs-contact a:hover {
	background-color: var(--grey);
	border: 2px solid var(--green);
}

/* ---- get-in-touch ---- */
main#index section.get-in-touch {
	width: 100%;
	margin: 0 auto;
	padding: 40px;
	background-color: var(--grey);
}

main#index section.get-in-touch h3,
main#index section.get-in-touch h3:first-letter,
main#index section.get-in-touch h4,
main#index section.get-in-touch p,
main#index section.get-in-touch p span {
	color: var(--white);
	max-width: 500px;
	margin: auto;
}

main#index section.get-in-touch h3 {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 20px;
}

main#index section.get-in-touch h4 {
	color: var(--white);
	text-transform: uppercase;
	font-weight: 400;
	font-size: 1.25rem;
	margin-bottom: 10px;
}

main#index section.get-in-touch h3:first-letter,
main#index section.get-in-touch h4:first-letter,
main#index section.get-in-touch p:first-letter,
main#index section.get-in-touch p span {
	text-transform: uppercase;
}

main#index section.get-in-touch p {
	margin: 0 auto 20px;
	letter-spacing: 1px;
}

main#index section.get-in-touch p span.labs-name {
	color: var(--green);
	font-weight: 700;
	text-transform: lowercase;
	font-size: 125%;
}

main#index section.get-in-touch a {
	display: block;
	width: 150px;
	background-color: var(--white);
	padding: 8px 16px;
	border-radius: 20px;
	text-transform: uppercase;
	margin: auto;
	font-weight: 500;
}

main#index section.get-in-touch a:hover {
	background-color: var(--green);
}

section.back-to-top {
	background-color: var(--grey);
	width: 100%;
}

section.back-to-top a {
	display: block;
	padding: 5px 10px;
	margin-left: calc(100% - 65px);
	background-color: var(--grey);
	border: none;
	position: relative;
}

section.back-to-top a:after {
	padding: 2px;
	display: none;
	position: absolute;
	top: 15px;
	right: 70px;
	width: 100px;
	text-align: center;
	background-color: var(--white);
	border: 1px solid var(--green);
	border-radius: 2px;
	font-weight: 400;
}

section.back-to-top a:hover:after {
	display: block;
	content: "Back To Top";
}

section.back-to-top svg.icon-top {
	width: 40px;
	height: 40px;
	fill: var(--green);
	margin-top: 5px;
}

/* ---- join mailing list ---- */
section.mail-list {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 20px 50px;
	background-color: var(--green-light);
}

section.mail-list section.mail-list-top,
section.mail-list section.mail-list-bottom {
	width: 100%;
	max-width: 500px;
	margin: auto;
	}

section.mail-list section.mail-list-top h3 {
	font-size: 1.75rem;
	text-transform: uppercase;
	font-weight: 600;
	margin: 10px 0;
}

section.mail-list section.mail-list-top p {
	font-size: 1rem;
	margin-bottom: 15px;
}

section.mail-list section.mail-list-top p:first-letter {
	text-transform: uppercase;
}

section.mail-list section.mail-list-top a {
	font-weight: 600;
}

section.mail-list section.mail-list-bottom form {
	width: 250px;
	margin: auto;
}

section.mail-list section.mail-list-bottom form input[type="email"] {
	width: 100%;
	margin: 5px auto 15px;
	padding: 5px;
	padding-left: 15px;
	border: none;
	font-weight: 400;
}

/* checkbox and subscribe button FLEX container */
section.mail-list section.mail-list-bottom form section#termsCheck {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 10px auto;
	gap: 5px;
	width: 90%;
}

section.mail-list section.mail-list-bottom form input[type="checkbox"] {
	height: 30px;
	width: 30px;
	border: 1px solid var(--green);
}

section.mail-list section.mail-list-bottom form label {
	font-size: 1rem;
	line-height: 1rem;
}

section.mail-list section.mail-list-bottom form label::first-letter {
	text-transform: uppercase;
}

section.mail-list section.mail-list-bottom form label.mail-email-label {
	text-transform: uppercase;
}

/* When the checkbox is checked, make a green background */
section.mail-list section.mail-list-bottom form input[type="checkbox"]:checked {
	accent-color: var(--green);
}

section.mail-list section.mail-list-bottom form button {
	background-color: var(--grey);
	color: var(--white);
	border-radius: 20px;
	border-width: 0;
	text-transform: uppercase;
	text-align: center;
	padding: 5px 8px;
	font-size: .8rem;
	font-weight: 600;
	border: 3px solid var(--grey);
}

section.mail-list section.mail-list-bottom form button:hover {
	border: 3px solid var(--green);
}

.contact-footer {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 30px 0;
}

.contact-footer h4 {
	text-transform: uppercase;
	font-size: 1.5rem;
	font-weight: 400;
}

.contact-footer a {
	text-align: center;
	display: block;
	width: 150px;
	background-color: var(--grey);
	padding: 5px 13px;
	border: 3px solid var(--grey);
	border-radius: 20px;
	color: var(--white);
	text-transform: uppercase;
}

.contact-footer a:hover {
	border-color: var(--green);
}

/* ----------- FOOTER ---------------- */
footer {
	grid-area: footer;
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: 1fr; 
	grid-template-rows: repeat(4, auto);
	grid-template-areas:
	"image"
	"accordian"
	"shop"
	"copyright";
	background-color: var(--grey);
	padding-bottom: 20px;
}

footer img {
	grid-area: image;
	display: block;
	z-index: 1;
	justify-self: end;
}

footer section#accordian,
#prod-accordian {
	grid-area: accordian;
	width: 80%;
	max-width: 300px;
	margin: auto;
}

/* Footer ACCORDIAN */
/* button opens and closes the accordian content */
footer section#accordian button {
	background-color: var(--grey);
	color: var(--white);
	cursor: pointer;
	padding: .5rem 0rem;
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--white);
	text-align: left;
	box-shadow: none;
	outline: none;
	font-size: 1rem;
	font-weight: 600;
	text-transform: capitalize;
}

footer section#accordian li a:hover {
	background-color: var(--grey);
}

/* notifies if accordian is closed */
footer section#accordian button:after {
	content: '\002B'; /* Unicode sign (+) */
	color: var(--white);
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

/* notifies if accordian is open */
footer section#accordian button.active:after {
	content: "\2212"; /* Unicode sign (-) */
	color: var(--green);
}

/* Style the accordian content */
footer section#accordian section {
	padding: 0;
	max-height: 0; /* content hidden until activated */
	overflow: hidden;
	transition: max-height 0.2s ease-out; /* animated */
	background-color: var(--grey);
	text-transform: capitalize;
}

footer section#accordian ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

footer section#accordian section.locale {
	display: flex;
	justify-content: space-between;
}

footer section#accordian section.policies ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

footer section#accordian section.locale ul {
	margin-bottom: 7px;
}

footer section#accordian section.locale li,
footer section#accordian section.policies li a {
	min-width: 100px;
	max-width: 200px;
	font-size: .8rem;
	color: var(--white);
	padding: 2px;
	text-decoration: none;
	height: auto;
}

footer section#accordian section.policies li a {
	padding-right: 10px;
}

footer section#accordian section.locale li span {
	font-weight: 600;
}

footer section#accordian section.policies li {
	padding-bottom: 5px;
}

footer section#accordian section.locale li span,
footer section#accordian section.policies li a span {
	text-transform: uppercase;
	color: inherit;
	font-size: inherit;
}

footer section#accordian section.policies li a:hover {
	color: var(--green);
}
/* ---- end of Footer ACCORDIAN ------ */

footer section.shop {
	grid-area: shop;
	width: 80%;
	max-width: 300px;
	margin: 20px auto;
	padding-bottom: 10px;
}

footer section.shop ul {
	list-style-type: none;
	column-count: 3;
	text-transform: uppercase;
}

footer section.shop li a {
	display: block;
	text-decoration: none;
	color: var(--white);
	margin-bottom: 20px;
	font-size: .75rem;
}

footer section.shop li a:hover {
	color: var(--green);
}

footer p.copyright {
	grid-area: copyright;
	width: 80%;
	height: 20px;
	font-size: .8rem;
	font-weight: 400;
	margin: 10px auto 5px;
	text-align: center;
	color: var(--white);
	text-transform: capitalize;
}

/* -- 'tick' icons on some pages -- */
main li svg.icon-check {
	width: 16px;
	height: 16px;
	fill: var(--green);
	margin-right: 10px;
	margin-top: 8px;
}

/* ------------- ABOUT PAGE ------------- */
main#about section.about-intro {
	width: 70%;
	max-width: 600px;
	font-size: 1.1rem;
	margin: auto;
}

main#about section.about-intro h2,
main#about section.about-intro h3,
main#about section.about-intro p {
	font-weight: 400;
	margin: 20px auto;
	letter-spacing: .2px;
}

main#about section.about-intro h2 > span {
	font-weight: 700;
}

main#about section.about-intro h2 > span,
main#about section.about-intro h3 > span,
main#about section.about-intro p > span {
	text-transform: capitalize;
}

main#about section.about-list {
	background-color: var(--green-light);
	margin-top: 20px;
	padding: 20px 0;
	width: 100%;
}

main#about section.about-list ul {
	display: flex;
	flex-direction: column;
	width: 70%;
	max-width: 600px;
	margin: auto;
}

main#about section.about-list ul li {
	display: flex;
	margin: 10px;
}

main#about section.about-list ul li a {
	font-size: 1.25rem;
}

/* ---- credentials and logo container ---- */
main#about section.logo-portfolio {
	display: flex;
	flex-direction: column;
	padding: 20px;
}

/* ---- credentials ---- */
main#about section.logo-portfolio section.manager-title {
	display: flex;
	flex-direction: column;
	font-size: .9rem;
	margin: auto;
	text-align: left;
	letter-spacing: 2px;
}

main#about section.logo-portfolio section.manager-title h4 {
	font-size: 1.75rem;
	text-transform: capitalize;
	font-weight: 400;
}

main#about section.logo-portfolio section.manager-title h5,
main#about section.logo-portfolio section.manager-title h6 {
	white-space: pre-line;
	line-height: 100%;
}

main#about section.logo-portfolio section.manager-title h5 {
	font-size: .7rem;
	font-weight: 400;
}

main#about section.logo-portfolio section.manager-title h6 {
	text-transform: capitalize;
	font-size: .9rem;
	margin: 5px 0;
}

main#about section.logo-portfolio section.manager-title p {
	font-size: .9rem;
}

main#about section.logo-portfolio section.manager-title p:last-child {
	text-transform: uppercase;
	font-size: .65rem;
}

/* ---- logo Gallery ---- */
main#about section.logo-portfolio section.gallery-container {
	display: grid;
	grid-template-columns: repeat(2, 120px);
	grid-gap: 0 20px;
	margin: 20px auto;
	justify-content: center;
	align-items: center;
}

main#about section.logo-portfolio section.gallery-container img {
	display: block;
	width: 80%;
	height: auto;
	margin: 0 auto;
}

main#about section.history {
	width: 80%;
	margin: auto;
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 20px;
}

main#about section.history h3 {
	display: inline-block;
	font-weight: 400;
	text-transform: uppercase;
	border-top: 3px solid var(--green);
	padding-top: 8px;
}

main#about section.history p,
main#about section.history p span {
	font-size: .8rem;
	font-style: italic;
	margin-bottom: 5px;
}

main#about section.history p:first-letter,
main#about section.history p span {
	text-transform: uppercase;
}

main#about section.history video {
	width: 100%;
	height: auto;
}

main#about table {
	border-collapse: collapse;
	border: 1px solid var(--green);
	letter-spacing: 1px;
	margin: 0 auto 20px;
	width: 95%;
	}

main#about caption {
	caption-side: top;
	padding: 10px;
	font-weight: 500;
	}

main#about thead {
	background-color: var(--green-mid);
	}

main#about th,
main#about td {
	border: 1px solid var(--green);
	padding: 8px;
	}
	
	main#about td {
	text-transform: uppercase;
	}

main#about td:last-of-type {
	text-align: center;
	}

main#about section.back-to-top {
	background-color: var(--white);
}

main#about section.back-to-top a {
	margin-left: calc(100% - 60px);
}

/* ------------- CREATE PAGE ------------- */
main#create section.lure {
	width: 70%;
	max-width: 600px;
	margin: 20px auto;
}

main#create section.lure h2,
main#create section.lure p {
	font-weight: 400;
	margin-bottom: 10px;
}

main#create section.lure h2 {
	font-size: 1.5rem;
}

main#create section.lure h2:first-letter,
main#create section.lure p:first-letter {
	text-transform: uppercase;
}

main#create section.tools {
	width: 100%;
	margin: auto;
	max-width: 600px;
	padding: 20px 50px;
	background-color: var(--grey);
	border-radius: 20px 0 20px 0;
}
main#create section.tools p {
	font-size: 1.25rem;
		color: var(--white);
}

/* ------------- PRODUCE PAGE ------------- */
main#produce h3:first-letter,
main#produce h2:first-letter,
main#produce p:first-letter {
	text-transform: uppercase;
}

main#produce section.eggs {
	width: 70%;
	max-width: 600px;
	margin: 20px auto;
}

main#produce section.eggs h2,
main#produce section.eggs p {
	font-weight: 400;
	margin-bottom: 10px;
}

main#produce section.eggs h2,
main#produce section.eggs h2 span {
	font-size: 1.5rem;
}

main#produce section.eggs h2 span {
	font-weight: 700;
}

main#produce section.produce-trades {
	width: 100%;
	max-width: 600px;
	padding: 20px 40px;
	background-color: var(--grey);
	border-radius: 0 20px 0 20px;
	margin: auto;
}

main#produce section.produce-trades h3 {
	font-weight: 400;
	font-size: 125%;
	color: var(--white);
}

main#produce section.tools {
	width: 100%;
	margin: auto;
	max-width: 600px;
	padding: 20px 50px;
	background-color: var(--grey);

}
main#produce section.tools p {
	font-size: 1.25rem;
	color: var(--white);
}

/* ------------- MANAGE PAGE ------------- */
main#manage h2:first-letter {
	text-transform: uppercase;
}

main#manage section.qms {
	width: 70%;
	max-width: 600px;
	margin: 20px auto;
}

main#manage section.qms h2,
main#manage section.qms p {
	font-weight: 400;
	margin-bottom: 10px;
}

main#manage section.qms h2,
main#manage section.qms h2 span,
main#manage section.qms p,
main#manage section.qms p span {
	font-size: 100%;
}

main#manage section.qms h2 span {
	font-weight: 700;
}

main#manage section.qms-list {
	background-color: var(--green-mid);
	margin: 0 auto;
	width: 100%;
}

main#manage section.qms-list ul {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	width: 70%;
	max-width: 600px;
	padding: 40px 20px;
	background-color: rgba(255, 255, 255, 0.7);
}

main#manage section.qms-list li {
	display: flex;
	list-style: none;
	font-size: 125%;
	text-transform: capitalize;
	padding-bottom: 10px;
}

main#manage section.qms-list li span {
	font-size: 100%;
}
main#manage section.qms-list li i {
	color: var(--green);
	padding-right: 10px;
	margin-top: 5px;
}

main#manage section.tools {
	width: 100%;
	margin: 0 auto;
	max-width: 600px;
	padding: 20px 50px;
	background-color: var(--grey);
}

main#manage section.tools p,
main#manage section.tools p span {
	color: var(--white);
}

main#manage section.qms p span,
main#manage section.tools p span {
	font-weight: 700;
}
main#manage section.tools p span {
	color: var(--green);
}

/* ---- website page ---- */
main#websites section.outputs-3-flex-item h4 {
	text-transform: uppercase;
}

main#websites section.outputs-3-flex-item p span {
	text-transform: uppercase;
	font-weight: 600;
}

/*------------------CONTACT FORM PAGE--------------------*/
/*-------contact us page info------- */
main#contact {
	grid-area: main;
	width: 100%;
	max-width: 500px;
	background-color: white;
	margin: auto;
	letter-spacing: 1px;
	text-align: center;
}

main#contact h1 {
	padding: 20px;
}

main#contact h1,
main#contact h2 {
	font-size: 1.25rem;
	font-weight: 400;
}

main#contact h1 {
	text-transform: uppercase;
}

main#contact h2 {
	text-transform: capitalize;
}

main#contact li {
	font-size: 1.2rem;
	white-space: pre-line;
}

main#contact li:first-letter {
	text-transform: uppercase;
}

main#contact p {
	text-align: center;
	margin-top: 20px;
}

main#contact h3 {
	width: 100%;
	padding: 20px;
	margin: auto;
	font-weight: 500;
	text-align: left;
}

main#contact form { 
	width: 100%;
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 20px 5px;
	background-color: var(--green-light);
	font-size: .8rem;
}

main#contact form fieldset  {
	width: 90%;
	padding: 10px;
	margin: 0 auto;
	font-weight: 400;
	text-align: left;
	text-transform: lowercase;
	border: none;
}

main#contact form legend {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .3rem;
}

main#contact form h2 {
	font-size: 2rem;
	font-weight: 200;
	letter-spacing: 5px;
}

main#contact form h3 {
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	text-transform: capitalize;
	margin-bottom: 15px;
}

main#contact form section.location p {
	text-transform: uppercase;
	padding: 10px 0;
	font-size: .8rem;
}

main#contact form section.location section {
	display: flex;
	align-items: center;
	gap: 10px;
}

main#contact form section.location input[type=radio],
main#contact form section.location label {
	line-height: 200%;
}

main#contact form section.location input[type=radio] {
	width: 20px;
	height: 20px;
	accent-color: var(--green);
}

main#contact form section.location label {
	text-transform: uppercase;
	font-size: .8rem;
	letter-spacing: 2px;
}

main#contact form section.details label {
	display: block;
	width: 100%;
	height: 30px;
	padding: 5px;
	position: relative;
	text-transform: uppercase;
	font-size: .8rem;
	letter-spacing: .1em;
	margin-top: 15px;
}

main#contact form section.details select,
main#contact form section.details input,
main#contact form section.details textarea {
	margin: 0 auto;
	width: 100%;
	height: 40px;
	border: none;
	padding: 5px;
	font-size: .8rem;
	border-bottom: none;
}

main#contact form section.details select {
	width: 75%;
	text-transform: uppercase;
}

main#contact form section.details select option {
	text-transform: uppercase;
	font-size: .7rem;
}

main#contact form section.details textarea {
	resize: vertical;
	height: 300px;
	padding: 10px;
	text-align: left;
	font-size: .9rem;
}

main#contact form section.details input::placeholder,
main#contact form section.details textarea::placeholder {
	font-weight: 500;
	font-size: .8rem;
}

main#contact form section.terms,
main#contact form section.register {
	display: flex;
	align-items: center;
	margin: 10px auto;
	gap: 10px;
	max-width: 300px;
}

main#contact form section.terms input[type=checkbox],
main#contact form section.register input[type=checkbox] {
	width: 20px;
	height: 20px;
	accent-color: var(--green);
}

main#contact form section.terms label,
main#contact form section.register label,
main#contact form section.register label span {
	font-size: .8rem;
}

main#contact form section.terms label,
main#contact form section.register label {
	text-transform: uppercase;
}

main#contact form section.register label span {
	text-transform: lowercase;
}

main#contact form input[type=submit] {
	display: block;
	width: 160px;
	background-color: var(--grey);
	color: var(--white);
	padding: 5px 10px;
	border: 2px solid var(--green);
	border-radius: 20px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .1rem;
	margin: 20px auto;
}

main#contact form input[type=submit]:hover {
	background-color: var(--green);
	border: 1px solid var(--grey);
	color: var(--grey);
}

main#contact form h4 {
	font-weight: 400;
	text-align: center;
}

main#contact form h4 span {
	font-weight: 700;
}

/*----------contact form JS error style--------*/
.tooltip {
	display: inline-block;
	position: relative;
}	

.tooltip,
 span.tooltiptext {
	white-space: pre-line;
	position: absolute;
	z-index: 1;
	display: block;
	visibility: hidden;
	left: 30px;
	bottom: 20px;
	width: 170px;
	padding: 0.5em;
	color: var(--grey);
	background-color: var(--white);
	border: solid 2px var(--green);
	border-radius: 15px 15px 15px 0;
	text-transform: lowercase;
	line-height: 1.2em;
	font-size: .9rem;
}

.tooltip:hover,
 span.tooltiptext {
	visibility: visible;
	font-size: .8rem;
}

.error, span.error {
	color: #FF0000;
	padding-left: 10px;
}

.verify, span.verify {
	color: var(--grey);
	content: "\u2713";
	padding-left: 20px;
}

/*-------------CONTACT THANKS----------------*/
main#contact-thanks {
	grid-area: main;
	width: 80%;
	max-width: 600px;
	text-align: center;
	background-color: white;
	margin: 30px auto;
}

main#contact-thanks p {
	margin-bottom: 3rem;
	font-size: 150%;
	letter-spacing: 3px;
}

main#contact-thanks h2 {
	white-space: pre-line;
	letter-spacing: 2px;
}

main#contact-thanks h1,
main#contact-thanks p span {
	font-size: 1.75rem;
	font-weight: 700;
	font-style: italic;
}

main#contact-thanks h1,
main#contact-thanks h3 {
	text-transform: uppercase;
}

main#contact-thanks h2 {
	font-weight: 400;
	margin: 40px auto;
	letter-spacing: 1px;
}

main#contact-thanks h2:first-letter {
	text-transform: uppercase;
}

main#contact-thanks h2 span {
	font-size: 1.5rem;
}

main#contact-thanks a {
	background-color: var(--green);
	width: 100px;
	padding: 10px 20px;
	text-align: center;
	margin: 0;
	border-radius: 20px;
	text-decoration: none;
}

/*-------------POLICIES PAGES----------------*/
main#ethics,
main#copyright,
main#privacy {
	grid-area: main;
	width: 100%;
}

main section.main-policy {
	width: 80%;
	padding: 20px 0;
	margin: 0 auto;
}

main section.main-policy h1 {
	font-size: 1.5rem;
	text-transform: uppercase;
	margin-bottom: 10px;
	text-align: center;
}

main section.main-policy h2,
main section.main-policy h3,
main section.main-policy p,
main section.main-policy ul,
main section.main-policy li {
	font-size: .8rem;
	font-weight: 400;
	margin-bottom: 10px;
}

main section.main-policy ul {
	margin-bottom: 30px;
}

main section.main-policy li {
	margin-left: 15px;
	margin-bottom: 3px;
}

main section.main-policy p {
	font-weight: 600;
}

main section.main-policy h2 span {
	font-weight: 700;
}

/*-------------error 404----------------*/
main#error404 {
	margin: 0 auto;
	background-color: var(--green-light);
	text-align: center;
	padding: 50px;
}

main#error404 h1 {
	white-space: pre-line;
	font-size: 1.25rem;
	margin-bottom: 40px;
}

main#error404 h1 span {
	font-size: 4rem;
	font-weight: 200;
}

main#error404 p {
	font-size: 125%;
}

main#error404 a {
	display: inline-block;
	background-color: var(--green);
	padding: 10px 40px;
	border: none;
	border-radius: 20px;
	font-weight: 600;
	margin-top: 50px;
}

/*-------------sitemap----------------*/
main#sitemap {
	margin: 0 auto;
	padding: 20px 50px;
	width: 250px;
}

main#sitemap h1 {
	font-size: 2rem;
}
main#sitemap li {
	line-height: 2rem;
}

main#sitemap a,
main#sitemap a span {
	font-size: 1.25rem;
	font-weight: 500;
	text-transform: capitalize;
}

main#sitemap h1,
main#sitemap a span {
	text-transform: capitalize;
}


@media screen and (min-width: 350px) {

	section.product-range-gallery {
	grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 500px) {

	section.circles-gallery ul {
	flex-flow: row nowrap;
	}

	section.circles-gallery li.circles-1 img {
	margin: -60px 0 0 0px;
	}

	section.circles-gallery li.circles-2 img {
	margin: 60px 0 0 -30px;
	}

	section.circles-gallery li.circles-3 img {
	margin: -80px 0 0 -40px;
	}

	section.circles-gallery li.circles-4 img {
	margin: -40px 0 0 -15px;
	}

	section.circles-gallery li.circles-5 img {
	margin: 60px 0 0 -30px;
	}

	section.circles-gallery li.circles-6 img {
	margin: -80px 0 0 -40px;
	}

	main#about section.logo-portfolio {
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
	max-width: 650px;
	margin: auto;
	}

	main#manage section.qms-list ul {
	flex-flow: row wrap;
	width: 100%;
	padding: 20px 40px;
	}

	main#manage section.qms-list li {
	list-style: none;
	display: inline-block;
	width: calc(100% / 2);
	height: 30px;
	font-size: 110%;
	font-weight: 400;
	}

	main#manage section.qms-list li span {
	font-size: 100%;
	}

	.contactForm h1 {
	font-size: 1.5rem;
	letter-spacing: 15px;
	}

	main.main-policy {
	width: 70%;
	}

	.contact-text p {
	white-space: normal;
	}

	#contactForm { 
	width: 500px;
	}
}

@media screen and (min-width: 650px) {

	header#header {
	background-image: url("../images/website-bg.webp");
	}

	header#header a.contact {
	background-color: var(--grey);
	color: var(--white);
	}

	main#index section.main-body-text p {
	margin: 0 0 10px 60px;
	}

	main#index section.main-body-text > section {
	flex-direction: row;
	padding: 20px 40px;
	}

	main#index section.main-body-text section h3 {
	width: 50%;
	padding: 0 20px;
	}

	section.product-range-gallery {
	width: 600px;
	}

	main#about section.about-list {
	padding: 10px;
	}

	main#about section.about-list ul {
	flex-flow: row wrap;
	justify-content: space-between;
	}

	main#about section.about-list li {
	flex-basis: 42.5%;
	}

	main#about section.logo-portfolio section.gallery-container {
	grid-template-columns: repeat(4, 80px);
	grid-gap: 10px;
	}

	.join-flex {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 3px;
	}

	main#error404 h1 span {
	font-size: 10rem;
	font-weight: 100;
	}

	/*------- <footer> desktop -------------*/
	footer {
	height: 200px;
	grid-template-columns: 260px auto 177px 30px;
	grid-template-rows: 100%;
	grid-template-areas:
	"acc shop footseal copyright";
	padding: 0;
	}

	footer section.shop {
	margin: 0;
	padding: 15px 20px;
	width: 100%;
	height: 150px;
	}

	footer section.shop ul {
	column-count: 2;
	gap: 10px;
	}

	footer section.shop li a {
	line-height: 130%;
	margin-bottom: 20px;
	}

	footer section#accordian {
	grid-area: acc;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
	"address policies";
	width: auto;
	margin: 10px;
	}

	footer button,
	footer button.accordian:after {
	display: none;
	}

	footer section#accordian section.locale {
	grid-area: address;
	}

	footer section#accordian section.policies {
	grid-area: policies;
	border-left: 1px solid var(--green);
	}
	
	footer section#accordian section.locale, 
	footer section#accordian section.policies {
	max-height: 100%;
	
	padding-left: 5px;
	}

	footer section#accordian section.locale {
	flex-direction: column;
	}

	footer section#accordian section.policies ul a {
	display: block;
	margin-left: 0;
	margin-bottom: 10px;
	}

	footer section#accordian li a {
	margin-bottom: 3px;
	width: auto;
	font-size: .8rem;
	}

	footer img {
	grid-area: footseal;
	}

	footer p#copyright {
	width: 200px;
	height: 30px;
	padding: .3rem;
	padding-left: 2rem;
	background-color: var(--green);
	color: var(--grey);
	border-radius: 0;
	justify-self: start;
	margin: 85px;
	margin-left: -85px;
	font-weight: 500;
	}

	footer p.copyright {
	direction: ltr;
	transform: rotate(-90deg);
	font-size: .8rem;
	text-align: left;
	}
}

@media screen and (min-width: 750px) {

	main#index section.reinforce section.main-3-flex,
	.outputs-3-flex	{
	flex-direction: row;
	flex-basis: 33%;
	flex-grow: 0;
	gap: 30px;
	}

	main#index section.reinforce section.main-3-flex p,
	.outputs-3-flex-item p {
	border-left: none;
	padding: 20px;
	text-align: left;
	}

}

@media screen and (min-width: 800px) {

	section.product-range-gallery {
	grid-template-columns: repeat(5, 1fr);
	width: 100%;
	}
}