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

body {
  background-color: bisque;
  scroll-behavior: smooth;
  width: 100%;
}

a {
  text-decoration: none;
  color: black;
}

button {
  background-color: rgb(250, 216, 143);
  padding: 7px 15px;
  border-radius: 5px;
  border: 1.5px solid black;
  cursor: pointer;
  font-weight: 700;
}

button:hover {
  background-color: rgb(248, 211, 131);
}

button:active {
  background-color: rgb(252, 206, 106);
}

/* navbar */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  margin: auto;
  height: 70px;
  margin-bottom: 70px;
}

.logo a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: black;
  font-size: x-large;
}

.navigation ul {
  display: flex;
}

.navigation ul li {
  padding: 15px;
  list-style: none;
  cursor: pointer;
}

.navigation i {
  display: none;
  font-size: large;
  color: black;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.drop-content {
  background-color: black;
  position: absolute;
  right: 20px;
  top: 25px;
  color: white;
  border-radius: 3px;
  display: none;
  min-width: 200px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  border: 1px solid rgb(78, 78, 78);
}

.drop-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.drop-content ul li a {
  text-decoration: none;
  color: white;
}

.drop-content ul li:hover {
  border-radius: 3px;
  background-color: #f8d38370;
}

/* navbar end */

/* home start */

.home {
  width: 88%;
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 20px;
}

.col-1 {
  width: 50%;
  padding-right: 20px;
}

.col-1 p {
  text-align: justify;
  margin-bottom: 35px;
}

.col-1 h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.col-1 a {
  background-color: rgb(250, 216, 143);
  padding: 10px 15px;
  border-radius: 5px;
  border: 1.5px solid black;
}

.col-1 a:hover {
  background-color: rgb(248, 211, 131);
}

.col-1 a:active {
  background-color: rgb(252, 206, 106);
}

.col-2 {
  width: 50%;
  overflow: hidden;
}

.col-2 img {
  width: 98%;
  height: 92.5vh;
  border-radius: 12px;
  transition: 0.3s;
  cursor: grab;
}

.col-2 img:hover {
  transform: scale(1.1);
}

/* home end */

/* featured */

.featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 210px;
  width: 100%;
}

.boxes {
  width: 100%;
  place-items: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  justify-content: center;
  margin-bottom: 70px;
}

.box {
  background-color: rgba(0, 0, 0, 0.452);
  padding: 0 5px;
  gap: 50px;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 2px;
}

.box:hover {
  gap: 30px;
  transition: 0.3s;
}

.box img {
  height: 170px;
  width: 255.2px;
  margin: auto;
  display: block;
  margin-top: 10px;
}

.content h4,
.price {
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 8px;
}

.rating {
  margin-left: 35px;
}

.rating i {
  color: #f8d383;
}

/* featured end */

/* product */

.nav2 {
  width: 60%;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav2 .logo2 {
  font-size: x-large;
  font-weight: 900;
}

.input input {
  padding: 3px 10px;
  border-radius: 3px;
  border: 1px solid black;
  outline: none;
  background: transparent;
  box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.671);
}

.input input:focus {
  box-shadow: 4px 3px 7px rgba(0, 0, 0, 0.671);
}

/* collapse */

.Pagination {
  margin-bottom: 40px;
  margin-left: 100px;
}

.Pagination span {
  padding: 5px 10px;
  border: 2px solid black;
  border-radius: 3px;
  margin-left: 10px;
  cursor: pointer;
}

.Pagination span:hover {
  background-color: #f8dfa99f;
}

/* product end */

/* about */

.about {
  margin: auto;
  width: 80%;
  position: relative;
  min-height: 63vh;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
}

p {
  line-height: 1.5;
}

.line {
  height: 5px;
  background-color: black;
  width: 110px;
  margin-bottom: 80px;
  margin-top: 5px;
  border-radius: 10px;
}

.about h2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}

/* about end*/

/* contect */

.contact {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact h2 {
  text-align: center;
}

.reg {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

form {
  width: 80%;
}

.input-box {
  display: flex;
  flex-direction: column;
}

.input-box input,
textarea {
  margin-bottom: 10px;
  width: 98%;
  padding: 3px;
  outline: none;
  border: 1px solid black;
  background-color: antiquewhite;
  border-radius: 2px;
  padding-left: 7px;
}

.input-box input:focus {
  box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.671);
}

.message-box textarea:focus {
  box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.671);
}

i {
  position: relative;
  right: 25px;
  top: 2px;
  bottom: 4px;
  font-size: 15px;
  cursor: pointer;
  color: black;
}

.error {
  font-size: 12px;
  margin-bottom: 15px;
}

/* contect end */

/* footer */

.footer {
  width: 100%;
  background-color: black;
  color: white;
  position: relative;
  bottom: 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 30px;
}

.footer-bottom {
  text-align: center;
  padding: 5px 0;
}

.footer hr {
  margin-bottom: 10px;
}

.footer a {
  text-decoration: none;
  color: white;
}

/* column 1 */

.f-col1 a {
  font-size: 25px;
}

/* column 2 */

.f-col2 {
  text-align: center;
}

.f-col2 a {
  margin-bottom: 20px;
  font-size: 20px;
}

.f-col2 p {
  margin-top: 20px;
  color: gray;
}

/* column 3 */

.f-col3 ul li {
  padding: 3px;
  cursor: pointer;
  color: gray;
}

.f-col3 ul li:hover {
  color: rgb(105, 104, 104);
}

.f-col3 ul {
  margin-top: 10px;
  list-style: none;
}

/* footer end */

/* MEDIA QUERY */

@media (max-width: 768px) {
  .navigation .nav-links {
    display: none;
  }

  .navigation i {
    display: block;
  }

  .nav2 {
    flex-direction: column;
  }

  .nav2 .logo2 {
    margin-bottom: 20px;
  }

  .input input {
    margin-bottom: 20px;
    min-width: 350px;
  }
}

@media (max-width: 1186px) {
  .home {
    width: 100%;
    padding: 20px 0;
  }

  .col-1 {
    width: 100%;
    text-align: center;
  }

  .col-1 p {
    text-align: center;
    padding: 0 25px;
  }

  .col-2 {
    display: none;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .f-col1 {
    margin-bottom: 50px;
  }

  .f-col2 {
    margin-bottom: 50px;
  }

  .f-col3 {
    margin-bottom: 20px;
  }

  .nav2 {
    width: 80%;
  }

  .contact i {
    display: none;
  }

}
