:root {
	--plain-white-color: #fcfcfc;
	--mid-blue-color: #0156a3;
	--mid-brown-color: #7b2e0f;
	--light-grey-color: #e4e4e4;
	--mid-yellow-color: #ffa200;
	--black-color: #1b1b1b; 
	--red-color: #d90000;
	--green-color: #00962d;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--plain-white-color, #fcfcfc); 
	color: var(--black-color, #1b1b1b);
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	margin: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

/* poppins-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/poppins-v20-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		 url('fonts/poppins-v20-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
  /* poppins-italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/poppins-v20-latin-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		 url('fonts/poppins-v20-latin-italic.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
  /* poppins-600 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	src: url('fonts/poppins-v20-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		 url('fonts/poppins-v20-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
  /* poppins-600italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: italic;
	font-weight: 600;
	src: url('fonts/poppins-v20-latin-600italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		 url('fonts/poppins-v20-latin-600italic.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
  /* poppins-700 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/poppins-v20-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		 url('fonts/poppins-v20-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
  /* poppins-700italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: italic;
	font-weight: 700;
	src: url('fonts/poppins-v20-latin-700italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		 url('fonts/poppins-v20-latin-700italic.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  

h1, h2, h3 {
	color: var(--mid-yellow-color, #ffa200); 
	margin-top: 0;
	font-family: 'Poppins', serif;
}

h1 {
	font-size: 2.125rem;
}

h2 {
	font-size: 1.75rem;
	margin-bottom: 1.25em;
}

p {
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
	color: var(--mid-blue-color, #0156a3); 
	transition:all ease-in-out .5s;
	text-decoration: underline;
}

a:visited {
	color: var(--mid-blue-color, #0156a3); 
}

a:hover {
	color: var(--mid-yellow-color, #ffa200); 
	text-decoration: underline;
}

a:active {
	color: var(--mid-blue-color, #0156a3); 
  }


/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
img {
	height: auto;
	max-width: 100%;
}

/*--------------------------------------------------------------
# Website Wrapper
--------------------------------------------------------------*/
.wrapper {
	width: 100%;
	margin: 0 auto;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
	background-color: var(--plain-white-color, #fcfcfc);
	display: flex;
	padding: 1.25em;
}

header .inner-container {
	display: flex;
	flex-direction: row;
	margin: 0 auto;
	width: 1440px;
}

header .inner-container .logo {
	line-height: 0;
	width: 40%;
}

header .inner-container img {
	max-height: 120px;
}

header .logo a:hover {
	opacity: 0.5;
}

header .inner-container .main-navigation {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	width: 60%;
}

/*--------------------------------------------------------------
# Containers
--------------------------------------------------------------*/

main {
	font-size: 1rem;
}

.inner-container {
	margin: 0 auto;
	width: 1440px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.mobile-menu {
	display:block;
	width:100%;
	background: transparent;
	line-height: 1.6em;
	font-weight: 400;
	width:100%;
	text-align:right;
	position: relative;
  	margin:0 auto;
}

.mobile-menu ul {
	list-style-type:none;
	margin: 0 auto;
	padding-left:0;
	text-align:right;
	width:100%;
}

.mobile-menu li {
	display:inline-block;
}

.mobile-menu li a {
	color: var(--black-color, #1b1b1b);
	padding: 1.4rem;
	font-weight: 600;
	font-size: 1.125rem;
	text-align: right;
	text-decoration: none;
}

.mobile-menu li a:hover {
	color: var(--mid-blue-color, #0156a3); 
}

.mobile-menu li:hover ul a {
	background: #f3f3f3;
	color: var(--plain-white-color, #fcfcfc);
	height: 40px;
	line-height: 40px;
}

.mobile-menu li:hover .mobile-menu ul a:hover {
	color: #555;
}

.mobile-menu li ul {
	display: none;
}

.mobile-menu li ul li {
	display: block;
	float: none;
}

.mobile-menu li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

.mobile-menu .show-menu {
	text-decoration: none;
	color: var(--plain-white-color, #fcfcfc);
	background-color: var(--mid-blue-color, #0156a3); 
	text-align: center;
	padding: 10px 15px;
	display: none;
  	cursor: pointer;
  	text-transform: uppercase;
}

.mobile-menu .show-menu span{
	/* padding-left: 35px; */
}

.mobile-menu input[type=checkbox]{
	display: none;
}

.mobile-menu input[type=checkbox]:checked ~ #menu{
	display: block;
}

/* Breadcrumbs */
.breadcrumb {
	background-color: var(--light-grey-color, #e4e4e4);
	display: flex;
	padding: 10px 20px;
	width: 100%;
}
.breadcrumb .inner-container {
	max-width: 1440px;
}

ul.breadcrumb {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

ul.breadcrumb li {
	display: inline;
	font-size: 0.875rem;
}
  
ul.breadcrumb li+li:before {
	padding: 8px;
	content: ">";
}

ul.breadcrumb li a {
	color: var(--black-color, #1b1b1b);
	text-decoration: none;
}

ul.breadcrumb li a:hover {
	color: var(--mid-blue-color, #0156a3); 
	text-decoration: underline;
} 

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
	background-color:  var(--mid-brown-color, #7b2e0f);
	display: flex;
	padding: 1rem;
}

footer a {
	color: var(--plain-white-color, #fcfcfc); 
	text-decoration: none;
}

footer a:visited {
	color: var(--plain-white-color, #fcfcfc); 
}

footer a:hover {
	color: var(--mid-yellow-color, #ffa200); 
}

footer .inner-container {
	color: var(--plain-white-color, #fcfcfc); 
	display: flex;
	flex-direction: row;
	margin: 0 auto;
	justify-content: space-between;
	text-align: center;
	width: 1440px;
}

footer .inner-container div {
	width: 30%;
}

footer .inner-container div:nth-child(1) {
	text-align: left;
}

footer .inner-container div:nth-child(2) {
	text-align: center;
}

footer .inner-container div:nth-child(3) {
	text-align: right;
}

footer .fa-instagram {
	margin-right: 20px;
	margin-left: 20px;
}

/*--------------------------------------------------------------
# Hero Images 
--------------------------------------------------------------*/

.hero-image {
	align-items: center;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	height: 400px;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.hero-image h1 {
	animation: fadeIn 2s;
	color: var(--mid-yellow-color, #ffa200); 
	margin-bottom: 0px;
}

.homepage-hero {
	background-image: url("images/homepage_hero_background.jpg");
}

.loginpage-hero {
	background-image: url("images/loginpage_hero_background.jpg");
}

.contactpage-hero {
	background-image: url("images/contactpage_hero_background.jpg");
}

.purposepage-hero {
	background-image: url("images/purposepage_hero_background.jpg");
}

.aboutpage-hero {
	background-image: url("images/aboutpage_hero_background.jpg");
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/*--------------------------------------------------------------
# Home Page 
--------------------------------------------------------------*/

/* Homepage Overview */

#homepage-overview {
	background-color:  var(--plain-white-color, #fcfcfc); 
	display: flex;
	padding: 3.75em 2.5em;
	width: 100%;
}

#homepage-overview .inner-container {
	display: flex;
	flex-direction: row;
	gap: 10%;
}

#homepage-overview .inner-container-left, #homepage-overview .inner-container-right {
	width: 50%;
}

/* Homepage Recycled Items */

#homepage-recycled-items {
	background-color: var(--mid-blue-color, #0156a3); 
	display: flex;
	padding: 3.75em 2.5em;
	width: 100%;
}

#homepage-recycled-items .inner-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}

#homepage-recycled-items h2 {
	color:  var(--plain-white-color, #fcfcfc); 
	display: block;
	margin-top: 0px;
	text-align: center;
	width: 100%;
}

#homepage-recycled-items .inner-container img {
	flex-grow: 1;
	transition: opacity ease-in-out .5s;
	width: 30%;
}

#homepage-recycled-items .inner-container img:hover {
	opacity: 0.5;
}

/* Homepage Contact */

#homepage-contact {
	background-image: url("images/homepage_contact_background.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color:  var(--plain-white-color, #fcfcfc); 
	display: flex;
	padding: 3.75em 2.5em;
	width: 100%;
}

#homepage-contact .inner-container {
	display: flex;
	flex-direction: row;
	gap: 10%;
}

#homepage-contact .inner-container-left {
	align-items: center;
	display: flex;
	font-size: 1.25rem;
	width: 50%;
}

#homepage-contact .inner-container-right {
	display: flex;
	justify-content: flex-end;
	width: 50%;
}

#homepage-contact h2 {
	color: var(--mid-yellow-color, #ffa200); 
}

/*--------------------------------------------------------------
# About Us Page 
--------------------------------------------------------------*/

#aboutuspage-overview {
	background-color:  var(--plain-white-color, #fcfcfc); 
	display: flex;
	padding: 3.75em 2.5em;
	width: 100%;
}

#aboutuspage-overview .inner-container {
	display: flex;
	flex-direction: row;
	gap: 10%;
}

#aboutuspage-overview .inner-container-left, #aboutuspage-overview .inner-container-right {
	width: 50%;
}

/*--------------------------------------------------------------
# Purpose Page 
--------------------------------------------------------------*/

#purposepage-overview {
	background-color:  var(--plain-white-color, #fcfcfc); 
	display: flex;
	padding: 3.75em 2.5em;
	width: 100%;
}

#purposepage-overview .inner-container {
	display: flex;
	flex-direction: row;
	gap: 10%;
}

#purposepage-overview .inner-container-left, #purposepage-overview .inner-container-right {
	width: 50%;
}

/*--------------------------------------------------------------
# Contact Page 
--------------------------------------------------------------*/

#contactpage-overview {
	background-color:  var(--plain-white-color, #fcfcfc); 
	display: flex;
	padding: 3.75em 2.5em;
	width: 100%;
}

#contactpage-overview .inner-container {
	display: flex;
	flex-direction: row;
	gap: 10%;
}

#contactpage-overview .inner-container-left, #contactpage-overview .inner-container-right {
	width: 50%;
}

/* Contact Form */
	
.form input, .form textarea {
	font-family: 'Poppins';
}
	
.form-field {
	margin-bottom: 1.25em;
}
	
.form-field label {
	display: block;
	color: var(--black-color, #1b1b1b);
	font-weight: 700;
	margin-bottom: 0.3125em;
}
	
.form-field input, .form-field textarea {
	border: solid 2px #f0f0f0;
	display: block;
	font-size: 0.875rem;
	margin-bottom: 0.3125em;
	padding: 0.625em;
	width: 100%;
}
	
.form-field input:focus, .form-field textarea:focus {
	outline: none;
}
	
.form-field.error input, .form-field.error textarea {
	border-color: var(--red-color, #d90000); 
}
	
.form-field.success input, .form-field.success textarea  {
	border-color: var(--green-color, #00962d);
}
	
.form-field small {
	color: var(--red-color, #d90000); 
}

.btn {
	background-color: var(--mid-blue-color, #0156a3); 
	color:  var(--plain-white-color, #fcfcfc); 
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	font-size: 1rem !important;
	padding:  0.75em 1.75em;
	transition:all ease-in-out .5s;
}
	
.btn:hover {
	background-color:  var(--mid-yellow-color, #ffa200); 
	color: var(--black-color, #1b1b1b);
} 
	
.btn:focus {
	outline: none;
}

/*--------------------------------------------------------------
# Login Page 
--------------------------------------------------------------*/

#loginpage-overview {
	display: flex;
	padding: 3.75em 2.5em;
	width: 100%;
}

#loginpage-overview .inner-container {
	justify-content: center;
	display: flex;
	flex-direction: row;
}

#login {
	width: 600px;
	min-height: 400px;
	border: 1px solid rgb(216, 216, 216);
	padding: 40px;
}

/* On screens that are 768px or less */
@media screen and (max-width: 768px) {

	header {
		padding: 40px 0px 0px 0px;
	}

	header .inner-container {
		flex-direction: column;
		gap: 40px;
	}

	header .inner-container .logo {
		text-align: center;
		width: 100%;
	}

	header .inner-container .main-navigation {
		width: 100%;
	}

	.breadcrumb .inner-container {
		width: 100%;
	}

	/* Homepage Hero */

	.hero-image {
		height: 200px;
	}

	/* Homepage Overview */

	#homepage-overview .inner-container {
		display: flex;
		flex-direction: column;
		gap: 10%;
	}

	#homepage-overview .inner-container-left, #homepage-overview .inner-container-right {
		width: 100%;
	}

	/* Homepage Recycled Items */

	#homepage-recycled-items .inner-container {
		flex-direction: column;
		gap: 10px;
	}

	#homepage-recycled-items .inner-container img {
		width: 100%;
	}

	/* Homepage Contact */

	#homepage-contact .inner-container {
	flex-direction: column;
	}

	#homepage-contact .inner-container-left {
		align-items: flex-start;
		width: 100%;
	}

	#homepage-contact .inner-container-right {
		justify-content: center;
		width: 100%;
	}

	/* Footer */

	footer .inner-container {
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}	

	footer .inner-container div {
		width: 100%;
		text-align: center;
	}
	
	footer .inner-container div:nth-child(1), footer .inner-container div:nth-child(2), footer .inner-container div:nth-child(3) {
		text-align: center;
	}

	/* Navigation */

	.mobile-menu .lines {
		border-bottom: 10px double #f8f8f8; 
		border-top: 3px solid #f8f8f8; 
		content:"";
		height: 16px; 
		width:25px;
		/* padding-right:15px; */
		margin-top:5px;
		float: right;
	}

	.mobile-menu ul {
		  position: static;
		  display: none;
		  background-color: rgba(0, 0, 0, 1);
	  }
  
	.mobile-menu li {
		  margin-bottom: 1px;
		  padding: 1rem;
		  text-align: center;
	  }
  
	.mobile-menu ul li, .mobile-menu li a {
		  width: 100%;
		  text-align: center;
	  }
  
	.mobile-menu .show-menu {
		  display:block;
	  }

	.mobile-menu li a {
		color: var(--plain-white-color, #fcfcfc); 
	}

	.mobile-menu li a:hover {
		color: var(--mid-blue-color, #0156a3); 
	}

	/* Purpose Page Overview */

	#purposepage-overview .inner-container {
		display: flex;
		flex-direction: column;
		gap: 10%;
	}
	
	#purposepage-overview .inner-container-left, #purposepage-overview .inner-container-right {
		width: 100%;
	}

	/* About Us Page Overview */

	#aboutuspage-overview .inner-container {
		display: flex;
		flex-direction: column;
		gap: 10%;
	}
	
	#aboutuspage-overview .inner-container-left, #aboutuspage-overview .inner-container-right {
		width: 100%;
	}

	/* About Us Page Overview */

	#aboutuspage-overview .inner-container {
		display: flex;
		flex-direction: column;
		gap: 10%;
	}
	
	#aboutuspage-overview .inner-container-left, #aboutuspage-overview .inner-container-right {
		width: 100%;
	}

	/* Contact Us Page Overview */

	#contactpage-overview .inner-container {
		display: flex;
		flex-direction: column;
		gap: 10%;
	}
	
	#contactpage-overview .inner-container-left, #contactpage-overview .inner-container-right {
		width: 100%;
	}

	/* Login Page Overview */

	#loginpage-overview .inner-container {
		flex-direction: column;
	}

	#login {
		width: 100%;
	}
}