body {
  margin: 0px;
  padding: 0px;
  background-image: url("pics/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}



.top_nav {
  background-color: black;
  border: 1px solid black;
  font-family: 'Playfair Display', serif;
}

.top_nav ul {
  margin-right: 200px;
  display: flex;
  justify-content: center;
  margin-left: 10px;
}

.top_nav li {
  margin-left: 90px;
  list-style: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: 0.5s
}

.top_nav li:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 100%;
  left: 0;
  background: #e3b333;
  transition: transform 0.5s;
  transform: scaleX(0);
  transform-origin: right;
}

.top_nav li:hover {
  color: #e3b333;
}

.top_nav li:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.top_nav a {
  text-decoration: none;
  color: #e3b333;
}

.bottom_nav {
  background-color: #e3b333;
  border: 1px solid #e3b333;
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
}

.bottom_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 250px;
}

.bottom_nav li {
  margin-left: 90px;
  list-style: none;
}

.bottom_nav a {
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  color: black;
}

.bottom_nav a:hover {
  color: blue;
}

#slider {
  margin-left: 300px;
  width: 1300px;
  height: 300px;
  display: flex;
  justify-content: center;
  background-image: url("pics/cover1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #e3b333;
  min-width: 100px;
  max-width: 1800px;
}

#slider img {
  width: 100%;
}

#title {
  margin-left: 550px;
  margin-top: 75px;
  font-family: 'Playfair Display', serif;
}

#title h1 {
  margin-left: 220px;
  color: #e3b333;
  min-width: 100px;
  max-width: 1800px;
}

#title p {
  margin-left: 150px;
  color: #e3b333;
}

button {
  margin-left: 220px;
  color: white;
  background-color: black;
  border: 1px solid #e3b333;
}

#popular_items {
  background-color: black;
  border: 1px solid #e3b333;
  color: gold;
  margin-top: 30px;
  width: 1300px;
  margin-left: 300px;
}

#popular_items h2 {
  margin-left: 600px;
  justify-content: center;
  font-family: 'Playfair Display', serif;
}

#item_grid {
  margin-top: 60px;
  margin-left: 300px;
  margin-right: 300px;
  display: grid;
  grid-template-columns: 323px 323px 323px 323px;
  grid-gap: 5px;
  background-color: black;
}

.item_box1 {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 10px;
}

.item_box1 img {
  width: 325px;
  height: 150px;
  transition: transform .2s;
}

.item_box1 img:hover {
  transform: scale(1.5);
}

.item_title {
  border: 1px solid #e3b333;
  background-color: black;
  color: #e3b333;
  font-family: 'Playfair Display', serif;
  padding-left: 100px;
}

.item_title h3 {
  font-family: 'Playfair Display', serif;
  padding-right: 60px;
}

.item_info {
  border: 1px solid #e3b333;
  background-color: #e3b333;
  color: black;
  font-family: 'myriad-pro', sans-serif;
}

.item_box2 {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 10px;
}

.item_box2 img {
  width: 325px;
  height: 150px;
  transition: transform .2s;
}

.item_box2 img:hover {
  transform: scale(1.5);
}

.item_box3 {
  display: grid;
  grid-column: 3;
  grid-row: 1;
  margin-bottom: 10px;
}

.item_box3 img {
  height: 150px;
  width: 323px;
  transition: transform .2s;
}

.item_box3 img:hover {
  transform: scale(1.5);
}

.item_box4 {
  grid-column: 4;
  grid-row: 1;
  margin-bottom: 10px;
}

.item_box4 img {
  height: 150px;
  width: 315px;
  transition: transform .2s;
}

.item_box4 img:hover {
  transform: scale(1.5);
}

.item_box5 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 10px;
}

.item_box5 img {
  height: 150px;
  width: 315px;
  transition: transform .2s;
}

.item_box5 img:hover {
  transform: scale(1.5);
}

.item_box6 {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 10px;
}

.item_box6 img {
  height: 150px;
  width: 315px;
  transition: transform .2s;
}

.item_box6 img:hover {
  transform: scale(1.5);
}

.item_box7 {
  grid-column: 3;
  grid-row: 2;
  margin-bottom: 10px;
}

.item_box7 img {
  height: 150px;
  width: 315px;
  transition: transform .2s;
}

.item_box7 img:hover {
  transform: scale(1.5);
}

.item_box8 {
  grid-column: 4;
  grid-row: 2;
  margin-bottom: 10px;
}

.item_box8 img {
  height: 150px;
  width: 315px;
  transition: transform .2s;
}

.item_box8 img:hover {
  transform: scale(1.5);
}

#market_tag {
  background-color: black;
  border: 1px solid #e3b333;
  color: gold;
  margin-top: 30px;
  width: 1300px;
  margin-left: 300px;
  margin-right: 300px;
}

#market_tag h2 {
  margin-left: 525px;
  background-color: black;
}

.category {
  margin-right: 600px;
}

#category_item_grid {
  margin-top: 60px;
  margin-left: 480px;
  margin-right: 460px;
  display: grid;
  grid-template-columns: 323px 323px 323px 323px;
  grid-gap: 5px;
  background-color: black;
}

.market_title {
  border: 1px solid gold;
}

.cats {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: black;
  font-size: 25px;
  background-color: #e3b333;
}

.cats a {
  text-decoration: none;
  color: #e3b333;
}

.women {
  padding: 5px 60px 5px 60px;
  border: 1px solid gold;
  background-color: black;
  color: gold;
  border-radius: 20px;
}

.cats a:hover {
  color: #313131;
  -webkit-animation: colorchange 5s;
}

@-webkit-keyframes colorchange {
  0% {
    color: blue;
  }

  10% {
    color: #8e44ad;
  }

  20% {
    color: #1abc9c;
  }

  30% {
    color: #d35400;
  }

  40% {
    color: blue;
  }

  50% {
    color: #34495e;
  }

  60% {
    color: blue;
  }

  70% {
    color: #2980b9;
  }

  80% {
    color: #f1c40f;
  }

  90% {
    color: #2980b9;
  }

  100% {
    color: pink;
  }
}

.men {
  padding: 5px 60px 5px 60px;
  border: 1px solid gold;
  background-color: black;
  color: gold;
  border-radius: 20px;
}

.brand {
  padding: 5px 60px 5px 60px;
  border: 1px solid gold;
  background-color: black;
  color: gold;
  border-radius: 20px;
}

#testimonials {
  background-color: #e3b333;
  border: 1px solid #e3b333;
  color: gold;
  margin-top: 30px;
  width: 1300px;
  margin-left: 300px;
  margin-right: 300px;
}

.test_title {
  background-color: black;
  padding-top: 5px;
}

.test_title h2 {
  color: yellow;
  margin-left: 600px;
}

.content {
  display: flex;
  justify-content: space-around;
}

.test_content {
  color: black;
}

.test_content img {
  margin-left: 40px;
}

.name {
  margin-left: 70px;
}

/****footers for different pages**/
footer {
  background-color: #e3b333;
  border: 1px solid #e3b333;
  margin-top: 25px;
}

.contact_foot {
  margin-top: 250px;
}

.ship_foot {
  margin-top: 400px;
}

.shop_foot {
  margin-top: 440px;
}

footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 280px;
}

footer li {
  margin-left: 90px;
  list-style: none;
}

footer a {
  text-decoration: none;
  color: black;
}

footer a:hover {
  color: blue;
}

.faqpage {
  margin-top: 400px;
}

/**********************

Product Page
*/
#product_title {
  background-color: black;
  border: 1px solid #e3b333;
  color: gold;
  margin-top: 30px;
  width: 825px;
  margin-left: 510px;
}

#product_title h2 {
  margin-left: 400px;
}

#product_item {
  display: flex;
  margin-left: 500px;
}

.background_color {
  background-color: black;
  padding: 10px;
  margin: 10px;
  border: 1px solid #e3b333;
}

.product_box {
  height: 120px;
  width: 500px;
  margin-top: 20px;
  margin-bottom: 220px;
  margin-right: 20px;
}

.product_box img {
  height: 300px;
  width: 500px;
}

.prod_pics {
  display: flex;
}

.prod_pics img {
  height: 120px;
  width: 300px;
  margin-right: 5px;
}

.product_info {
  color: #e3b333;
  margin-top: 20px;
  margin-right: 580px;
  margin-bottom: 20px;
  background-color: black;
  border: 1px solid #e3b333;
}

.product_title h5 {
  color: #e3b333;
  background-color: black;
  border: 1px solid #e3b333;
  justify-content: center;
}

.sim_prod {
  display: flex;
  background-color: black;
  margin-left: 500px;
  margin-right: 583px;
  border: 1px solid #e3b333;
}

.sim_prod img {
  border: 1px solid #e3b333;
  height: 170px;
  width: 268px;
}

.sim_title {
  color: #e3b333;
  background-color: black;
  border: 1px solid #e3b333;
}

.sim_title h2 {
  margin-left: 350px;
}

/*contact page info*/
#contact_title h1 {
  margin-left: 230px;
}

.form {
  margin-left: 660px;
  margin-right: 660px;
  margin-top: 100px;
  padding: 10px;
  border: 1px solid #e3b333;
  background-color: black;
  color: #e3b333;
}

.top_contact {
  margin-left: 120px;
}

#list {
  margin-left: 230px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#comments {
  margin-left: 100px;
}

.box {
  margin-right: 500px;
}

#list p {
  margin-left: 500px;
}

.checks {
  margin-left: 220px;
}

/*About Us page info*/
.aboutus {
  margin-left: 660px;
  margin-right: 660px;
  margin-top: 200px;
  padding: 10px;
  border: 1px solid #e3b333;
  background-color: black;
  color: #e3b333;
}

#aboutus_title {
  margin-left: 240px;
}

/*shopping cart*/
.shopping_cart {
  margin-left: 660px;
  margin-right: 660px;
  margin-top: 100px;
  padding: 10px;
  border: 1px solid #e3b333;
  background-color: black;
  color: #e3b333;
}

/*faq's page info*/
.faqs {
  margin-top: 200px;
  margin-left: 660px;
  margin-right: 660px;
  padding: 10px;
  border: 1px solid #e3b333;
  background-color: black;
  color: #e3b333;
}
