@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: "Nunito", sans-serif; */
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.container {
  margin: 0 150px;
}

.active-link {
  color: #fcb80b;
}

/*! slogan start */
.slogan {
  background-color: #fcb80b;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}

.slogan .container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

/*! quik offer start */
.quik-offer {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  padding: 6px 15px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1px;
  z-index: 1;
}

.quik-offer span {
  background: #ff7900;
  height: 100%;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}

.quik-offer:hover > span {
  width: 100%;
}
/*! quik offer end */

.slogan .contact-info li i,
.slogan .contact-info li a {
  color: aliceblue;
  font-size: 13px;
  display: flex;
  align-items: center;
}

.slogan .contact-info li:hover i,
.slogan .contact-info li:hover a {
  color: black;
}

.slogan .contact-info ul {
  display: flex;
  align-items: center;
}

.slogan .contact-info ul li {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.slogan .contact-info ul li:not(:last-child) {
  border-right: 1px solid aliceblue;
}

.slogan .contact-info .contact-info-mobile {
  display: none;
}

/*! slogan end */

/*! navbar start */
header {
  display: flex;
  position: relative;
  height: 100px;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: 1px solid grey; */
}

header .toggle-menu {
  font-size: 27px;
  display: none;
}

header h1 {
  color: #333333;
}

header nav ul {
  display: flex;
}

header nav ul li a {
  color: #777;
  font-size: 15px;
  font-weight: 500;
  padding: 0 10px;
}

header nav .nav-item:hover {
  color: #fcb80b;
}
/*! navbar end */

/*! dropdown start */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content-wrapper {
  display: none;
  position: absolute;
  width: 190px;
  z-index: 10;
}

.dropdown-content {
  margin-top: 30px;
  border: 1px solid grey;
  border-radius: 10px;
  background-color: #fff;
}

.dropdown-content-wrapper a {
  color: black;
  padding: 12px 16px;
  display: block;
}

.dropdown-content-wrapper a:first-child {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.dropdown-content-wrapper a:last-child {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.dropdown-content-wrapper a:not(:last-child) {
  border-bottom: 1px solid grey;
}

.dropdown-content-wrapper a:hover {
  background-color: #fcb80b;
  color: aliceblue;
}

.dropdown:hover .dropdown-content-wrapper {
  display: block;
}
/*! dropdown end */

/*! products head start */
.product-head {
  display: flex;
  align-items: center;
  height: 150px;
  background-color: #f4f4f4;
}

.product-head h2 {
  color: #222529;
  font-size: 35px;
  margin-left: 80px;
}
/*! products head end */

/*! products start */
/*! categories start */
.categories {
  margin-top: 60px;
}

.categories-header {
  text-align: center;
  font-size: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e7e7e7;
}

.categories-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.categories-cards .card {
  padding: 10px;
  border: 1px solid #fcb80b;
  text-align: center;
  height: 400px;
  position: relative;
}

.categories-cards .card h3 {
  font-size: 20px;
}

.card-info {
  padding: 25px 0;
}

.categories-cards .card a {
  position: absolute;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  color: rgb(255, 119, 0);
  padding: 10px 25px;
  border-radius: 20px;
  background-color: #e7e7e7;
  transition: 0.2s ease all;
}

.categories-cards .card a:hover {
  background-color: #fcb80b;
  color: #fff;
}

.categories-cards .card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}
/*! categories end */
/*! products end */

/*! footer start */
footer {
  margin-top: 60px;
  background-color: #222529;
}

footer .footer-wrapper {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

footer .address-header {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

footer .left,
footer .center,
footer .right {
  height: 365px;
}

footer .left {
  display: flex;
}

footer .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 0 60px;
}

footer .address-wrapper,
footer .phone-wrapper,
footer .email-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

footer .address-wrapper span,
footer .phone-wrapper span,
footer .email-wrapper span {
  font-weight: 600;
  color: #fff;
}

footer .address-wrapper address,
footer .phone-wrapper a,
footer .email-wrapper a {
  color: #777;
  width: fit-content;
}

footer .center .footer-social-media {
  display: flex;
  gap: 8px;
  font-size: 28px;
}

footer .center .footer-social-media i {
  display: flex;
}

footer .center .footer-social-media .fa-instagram {
  color: rgb(255, 0, 72);
}

footer .center .footer-social-media .fa-facebook {
  color: #316ff6;
}

footer .right {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  padding: 0 90px;
}

footer .right .e-newsletter-header {
  color: #fff;
  font-weight: 600;
}

footer .right .e-newsletter-content {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

footer .right .e-newsletter-content span {
  color: #777;
}

footer .right input {
  padding: 15px 25px;
  border-radius: 30px;
  max-width: 250px;
  border: none;
  font-size: 14px;
  background-color: #292c30;
  color: #e7e7e7;
}

footer .right button {
  width: fit-content;
  border: none;
  font-weight: 700;
  border-radius: 25px;
  padding: 15px 28px;
  color: #fff;
  background-color: #fcb80b;
}

footer .footer-bottom {
  border-top: 1px solid #fcb80b;
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  text-align: center;
}

footer .footer-bottom span {
  font-size: 14px;
  color: #fff;
}

footer .footer-bottom img {
  width: 85px;
  padding: 15px;
  border-radius: 20px;
  background-color: #e7e7e7;
}
/*! footer end */

/*! UP WRAPPER  */
.up-wrapper {
  position: fixed;
  color: #eadede;
  right: 18px;
  bottom: 80px;
  z-index: 99;
  font-size: 20px;
  background-color: #fcb80b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

/*! WHATSSAPP START  */
.whatsapp-wrapper {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  font-size: 24px;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s ease;
}

.whatsapp-wrapper a i {
  color: #eadede;
}

/*! RESPONSIVE NABAR START */
header .mobile-navbar {
  display: none;
}

/*********** 1200 ***********/
@media (max-width: 1200px) {
}

/*********** 1080 ***********/
@media (max-width: 1080px) {
  .container {
    margin: 0 90px;
  }
  /* header nav{
    display: none;
  } */
}

/*********** 992 ***********/
@media (max-width: 992px) {
  .container {
    margin: 0 50px;
  }

  header .desktop-navbar {
    display: none;
  }

  header .mobile-navbar {
    display: block;
  }

  header .toggle-menu {
    display: inline-block;
  }

  /* catorgory */
  .categories-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }

  /* footer */
  footer .footer-wrapper {
    padding: 50px;
    grid-template-columns: 1fr 1fr;
  }
}

/*********** 768 ***********/
@media (max-width: 768px) {
  .container {
    margin: 0 20px;
  }
  .slogan .contact-info .contact-info-mobile {
    display: flex;
  }

  .slogan .contact-info .contact-info-desktop {
    display: none;
  }

  /* catorgory */
  .categories-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* footer */
  footer .footer-wrapper {
    padding: 20px;
    gap: 50px;
    grid-template-columns: 1fr;
  }

  footer .center {
    margin-top: 0px;
    gap: 20px;
    padding: 0 10px;
  }

  footer .right {
    margin-top: 0px;
    padding: 0 10px;
  }
}

/*********** 576 ***********/
@media (max-width: 576px) {
  .container {
    margin: 0 16px;
  }

  /* categories */
  .categories-cards {
    gap: 10px;
  }

  .categories-cards .card {
    padding: 10px;
    border: 1px solid #fcb80b;
    text-align: center;
    height: 350px;
    position: relative;
  }

  .categories-cards .card h3 {
    font-size: 16px;
  }

  .categories-cards .card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
  }

  .categories-cards .card a {
    padding: 5px 12px;
    font-size: 16px;
  }

  /* about */
  .product-head h2 {
    font-size: 30px;
    margin-left: 20px;
  }

  /* footer */
  footer .footer-wrapper {
    padding: 15px;
    display: grid;
    gap: 50px;
  }

  footer .center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 0 10px;
  }

  footer .right {
    padding: 0 10px;
  }
}
