@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scroll-margin: 100px;
}

:root {
	--darkGreen: #114232;
	--green: #87a922;
	--yellow: #fcdc2a;
	--bg: #f7f6bb;
	--theme-clr: #fffafa;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

img {
	width: 100%;
}

.customContainer {
	max-width: 80%;
	margin-inline: auto;
}

/*******************************************************************************************/

header {
	background: transparent;
	position: sticky;
	top: 0;
	z-index: 999;
	width: 100%;
}

.scrolled {
	background: white;
}

nav {
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

label.logo {
	display: inline-block;
	width: 180px;
}

.logo img {
	height: 100%;
	width: 100%;
}

nav ul li {
	display: inline-block;
}

nav ul li a {
	padding: 0.5rem 1rem;
	font-weight: 600;
}

nav ul li a.active {
	background: var(--bg);
	color: var(--darkGreen);
	border-radius: 100vh;
}

.overlappingText {
	-webkit-text-stroke: 1px black;
	-moz-text-stroke: 1px black;
	color: transparent;
}

.checkbtn {
	font-size: 30px;
	color: var(--green);
	line-height: 80px;
	cursor: pointer;
	display: none;
}

#check {
	display: none;
}

@media (max-width: 952px) {
	nav ul li a {
		font-size: 16px;
	}
}

@media (max-width: 858px) {
	.checkbtn {
		display: block;
	}

	nav ul {
		position: fixed;
		width: 100%;
		height: 100vh;
		background: var(--darkGreen);
		top: 100px;
		left: -100%;
		z-index: 999;
		text-align: center;
		transition: all 0.5s;
	}

	nav ul li {
		display: block;
		margin: 50px 0;
		line-height: 30px;
	}

	nav ul li a {
		color: white;
		font-size: 20px;
	}

	a:hover,
	a.active {
		background: none;
		color: var(--yellow);
	}

	#check:checked~ul {
		left: 0;
	}
}

/****************************************************************************************/

.heroProductImg {
	filter: drop-shadow(12px 10px 0.25rem rgba(0, 0, 0, 0.5));
}