@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

:root {
  --primary-color: #f60f20;
}

* {
  box-sizing: border-box;
  margin:0;
  padding:0;
}

html, 
body {
  font-family: 'Oswald', sans-serif;
  color: #111;
  height: 125% !important;
  max-width: 100% !important;
  margin: 0 auto;
  background-image: url("https://assets.codepen.io/7067207/shutterstock_1249979266+%283%29.jpg");
 background-size: 100px;
}

.logo {
  position: absolute;
  top: 50px;
  left: 40px;
  font-size: 3rem;
  font-weight: 700;
  z-index: 28;
  text-decoration: overline var(--primary-color);
}

/*Toggle*/

.toggle {
  position: fixed;
  top: 0;
  right:0;
  width: 60px;
  height: 60px;
  background: var(--primary-color) url(https://assets.codepen.io/7067207/menu_1.png);
  z-index: 30;
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.toggle.active {
  background: var(--primary-color)  url(https://assets.codepen.io/7067207/close.png);
  z-index: 30; 
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
}

.navigation {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 27;
 }

.navigation.active {
  left: 0;
}

.navigation ul {
  position: relative;
}

.navigation ul li {
  position: relative;
  list-style: none;
  text-align: center;
}

.navigation ul li a {
  font-size: 2.2rem;
  color: #111;
  text-decoration: none;
  font-weight: 300;
}

.navigation ul li a:hover {
  color: var(--primary-color);
}

.navigation .social-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center; 
}


.mainFooter {
  position: fixed;
  background: black;
  color: grey;
  text-align: center;
  bottom: 0;
  width: 100%; 
}



/*Search Page*/



#products.row {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 300px);
	top: 250px;
	left: 190px;
	grid-gap: 50px;
    max-width: 250px;
    padding: 60px;
    margin-bottom: 30px;
}

#products.row:before {
	content:none;
}

.product {
	padding: 60px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5%;
}

.product:hover {
    padding: 30px;
    box-shadow: 0 60px 60px #111;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5%;
  }


.col-sm-4 {
    padding: 60px;
	padding: 0 20px;
	max-width: 350px;
	min-width: 300px;
	top: 50px;
	left: 30px;
}


.product img {
	width: 250px;
    height: 290px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.7);
    display: block;
    border-radius: 5%;
    position: relative;
	right: 10px;
}

.product:hover img {
	width: 250px;
    height: 290px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.7);
    display: block;
    border-radius: 5%;
    position: relative;
	left: -20px;
}

.text-center{
	padding: 20px;
	color: red;
}

/*Search Functionality CSS */

.btn-primary {
	position: relative;
	width: 100px;
	background-color: var(--primary-color);
	border:none;
}

.btn:hover {
	width: 100px;
	background-color: green;
	border:none;
}

#search.row {
	position: relative;
	width: 600px;
	left: 20px;
	margin: 0;
	padding: 0;
	top: 200px;
}

#search:before {
	content:none;
}

#search.row:after {
	content:none;
}

#filter.row:before {
	content:none;
}


#search input {
	color: red;
}

#search input::placeholder {
  color: red;
}

#filter {
	position: relative;
	left: 35px;
	width: 600px;
	top:220px;
}

option {
	text-align: center;
}

.main-img {
	position: absolute;
	left: 750px;
 } 

/*Media Queries*/


@media (max-width: 800px) {
  
#search.row {
	position: relative;
	width: 300px;
	left: 20px;
	margin: 0;
	padding: 0;
	top: 200px;
}
	
.btn {
	width: 75px;
	position: relative;
	right: 20px;
	background-color: var(--primary-color);
	border:none;
}	
#filter {
	position: relative;
	left: 35px;
	width: 300px;
}
	#products.row {
	position: relative;
	display: grid;
	grid-template-columns: repeat(1, 300px);
	top: 250px;
	left: 30px;
}

#products.row:before {
	content:none;
}
	
	
}
