html, body {
	font-family: "Product Sans";
	width:100%;
	height:100%;
	padding:0;
	margin:0;
}

.hero {
	display:flex;
		align-items: center;
	justify-content: center;
	text-align: center;
	padding:0;
	margin:0;
	color:white;
	width:100%;
	height:280px;
	//background-image: url("images/slide1.jpg");
	background-size:cover;
}

.mylogo {
	height:128px;
}
.navbar {

	
	display:grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	background-color: rgba(0, 0, 0, 0.9);
	color:white;
	min-height:64px;
	
}

.menu-item {
	transition: background-color 0.5s ease;
	cursor:pointer;
	display:flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.menu-item:hover {
	background-color: rgb(224, 56, 45);
}

.flexbox
{
	display:flex;
	flex-wrap: wrap;
	width:100%;
	justify-content: center;
}
.flex-item
{
color:white;
text-align: center;	
flex-grow:1;
flex-basis:0;
padding:10px;
}

.flex-item:nth-child(1) {
	background-color: rgb(224, 56, 45);
}

.flex-item:nth-child(2) {
	background-color: rgb(194, 60, 51);
}

.flex-item:nth-child(3) {
	background-color: rgb(132, 51, 46);
}

.svgimg {
	height:64px;
}

.myicon {
	color:white;
	height:64px;
}

.main-container {
	display:flex;
	justify-content: center;
	background-image: url("images/smoke-bg.png");
	background-repeat: no-repeat;
	background-position: bottom;
}
.main-content {
	max-width: 960px;
	color: #666;
	min-height: 100vh;
	padding:18px;

	
	
}

p {
	line-height: 24px;
}

.footer{
	display:flex;
	justify-content: center;
	width:100%;
	color:white;
	background-color: black;
}

.footer-container {

	display:grid;
	grid-template-columns: 1fr;
	grid-gap: 10px 10px;
	padding:10px;
	line-height: 1.5em;
	
	justify-content: center;
}

.footer-header {
	display: flex;

}

@media (min-width: 768px) {

	.footer {
		display:flex;
		justify-content: center;
		
	}
	.footer-container {
		grid-template-columns: 1fr 1fr 1fr;
		//width:768px;
	}
	
}

@media (min-width: 960px) {

	.footer {
		display:flex;
		justify-content: center;
		
	}

	.footer-header {
		justify-content: center;
		text-align: center;
	}
	.footer-container {
		grid-template-columns: 1fr 1fr 1fr;
		justify-content: space-between;
		
	}

	.footer-item {
		width:340px;
		text-align: center; 
	}
	
}
