@charset "utf-8";
/* CSS Document */


.header {
	background-color: ;
	padding: 3em;
}

/* Header */
	
  @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} 
nav{
  display: flex;
  height: 80px;
  width: 100%;
  background: #f1f2f6;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  flex-wrap: wrap;
}
nav .logo{
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin-left: -40px;
}
nav ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
nav ul li{
  margin: 0 5px;
}
nav ul li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
nav ul li a.active,
nav ul li a:hover{
  color: #111;
  background: rgb(255, 255, 255);
}
nav .menu-btn i{
  color: #1e272e;
  font-size: 22px;
  cursor: pointer;
  display: none;
}
input[type="checkbox"]{
  display: none;
}
@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 920px) {
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: rgb(240, 154, 25);
  }
} 


/* Body */

body {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	margin: 0;
	pading: 0;
}

.hero {
	display: flex;
	flex-direction: column;
	background-image: url("../img/stuff/hero/hero.jpg");
	height: 700px;
	align-self: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	align-items: center;
	justify-content: center;
}

	@media (max-width: 767px) {
	.hero {
		/* Styles for mobile and smaller tablets */
		height: 300px;
		background-size: contain;
		}
	}


.text {
	font-size: 1.4rem;
	text-align: center;
	color: white;
}

.product-list {
	background-color: ;
	padding: 3em;
}

.product-list .card {
	background-color: #f1f2f6;
	border-radius: 0px;
	padding:1em;
	box-shadow: 0px 0px 0px #d2dae2;
	text-align: left;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	max-width: ;
}

.card img {
	max-width: 100%;
	border-radius: 5px;
	margin-bottom: 0.5em;
}

.card .title {
	font-size: 14px;
	font-weight: bold;
	margin-left: .1em;
	color: #ff3f34;
	
}

.card .subtitle {
	font-size: 16px;
	font-weight: bold;
	margin-left: .1em;
	color: #1e272e;
	
}

.card .text {
	font-size: 14px;
	text-align:left;
	margin-left: 0.1em;
	font-size: ;
	color: #808e9b;
	
}

.buy-button {
	background-color: #1e272e;
	border:none;
	padding: 1em;
	border-radius: 0px;
	font-weight: bold;
	margin-top: .5em;
	color: #f1f2f6;
	
}

.buy-button:hover {
	background-color: #ff3f34;
	box-shadow: 0px 0px 0px #ff4757;
	color: #f1f2f6;
	
}

.sold-button {
	background-color: #d2dae2;
	border:none;
	padding: 1em;
	border-radius: 0px;
	font-weight: bold;
	margin-top: .5em;
	color: #f1f2f6;
	
}

.product-container{
	display: grid;
/*	grid-template-columns: 1fr 1fr 1fr;*/
	grid-column-gap: 10px;
	grid-row-gap: 20px;
	
	max-width: 1600px;
	margin: 0 auto;
	gap: 1rem;
	
	
}


.align-center {
	text-align:center;
	
}
	
.align-left {
	text-align:left;
	
}

.gfg {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: .5;
	
}

@media (min-width: 767px) {
	.product-container { grid-template-columns: repeat(2, 1fr);}
}

@media (min-width: 900px) {
	.product-container { grid-template-columns: repeat(3, 1fr);}
}

@media (min-width: 1600px) {
	.product-container { grid-template-columns: repeat(4, 1fr);}
}

@media (min-width: 2000px) {
	.product-container { grid-template-columns: repeat(5, 1fr);}
}

