@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500&family=Trispace:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500;600;700&family=Source+Code+Pro:wght@500&family=Trispace:wght@800&display=swap');

body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto Mono', monospace;
}

#navigation {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background-color: #000;
}

li, a, .cta button, .view-more {
	font-size: 22px;
	color: #edf0f1;
	text-decoration: none;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 2%;
}

.nav_links {
	list-style: none;
}

.nav_links li {
	display: inline-block;
	padding: 0px 20px;
}

.nav_links li a {
	position: relative;
	font-weight: 500;
	transition: all 0.3s ease 0s;
}

.links:hover {
	font-weight: 800;
	color: #78D23D;
}

.links::before {
	content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.links:hover::before {
	width: 100%;
}

.current-page {
	color: #fff;
	cursor: default;
}

.current-page::before {
	content: '';
    position: absolute;
    top: 0;
	left: 0;
    width: 100%;
    height: 2px;
    background: #78D23D;
}

/* Only For Products Page */
.logo {
	color: #fff;
	font-size: 40px;
	outline: solid;
	outline-width: 5px;
	outline-color: #78D23D;
	padding: 10px;
	margin-top: 0;
	margin-bottom: 0;
	margin-right: 200px;
	cursor: default;
}

.cta button {
	padding: 9px 25px;
	background-color: #78D23D;
	font-weight: 800;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
}

.cta button:hover {
	background-color: #62AB32;
}

.hero {
	display: block;
	text-align: center;
	padding: 100px 10%;
	padding-bottom: 20px;
	background-color: #000;
}
.logo-section {
	margin-top: 150px;
}
.hero-logo {
	font-size: 100px;
	outline: solid;
	outline-width: 7px;
	outline-color: #78D23D;
	padding: 10px;
	cursor: default;
}

.tag-line-section {
	margin-top: 30px;
}

.tag-line {
	color: #fff;
	font-weight: 800;
	cursor: default;
}

.slogan {
	text-align: center;
	color: #fff;
	margin-top: 100px;
}

#home-product .product-grid {
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-columns: 19% 19% 19%;
	gap: 60px;
	justify-content: center;
}

.product-grid {
	margin-left: auto;
	margin-right: auto;
	display: grid;
	
	grid-template-columns: 19% 19% 19% 19%;
	gap: 60px 60px;
	justify-content: center;
}


.grid-item{
	text-align: center;
}

.product-card {
	max-width: 26em;
	background-color: #fff;
	padding: 1em;
	box-shadow: 10px 10px 10px 0 #e1e1e1;
	cursor: pointer;
	transition: all 0.3s ease 0s;
}

.product-card img {
	max-width: 100%;
}

.product-card h4 {
	font-size: 1.8em;
	margin: 0.5em 0;
}

.product-card div {
	font-size: 1.8em;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-card button {
	background-color: #000;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 1em;
}

.product-card:hover {
	background-color: #000;
	color: #fff;
	transform: scale(1.045);
}

.product-card:hover button {
	color: #000;
	background-color: #fff;
	transition: all 0.2s ease 0s;
}

.view-more-section {
	text-align: center;
}

.view-more {
	padding: 9px 25px;
	background-color: #78D23D;
	font-weight: 800;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
	margin-bottom: 80px;
}

.view-more:hover {
	background-color: #62AB32;
}

.footer {
	background-color: #000;
	text-align: center;
	color: #fff;
	padding: 50px;
}

.footer a {
	color: #78D23D;
	font-size: 20px;
	text-decoration: underline;
}

.footer a:hover {
	color: #62AB32;
}

.email-box {
	height: 40px;
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}
	
.tbox, .subscribe {
	border: none;
	outline: none;
}
	
.tbox {
	width: 0px;
	transition: 0.6s;
}
	
.email-box:hover > .tbox, .tbox:focus {
	width: 260px;
}
	
.email-box .subscribe {
	color: #fff;
	background: #78d23d;
	font-weight: 700;
	padding: 0 10px;
	text-transform: uppercase;
	cursor: pointer;
}
