@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap");
body {
  font-family: "Roboto", sans-serif;
  background: #fff !important;
}

a {
  text-decoration: none;
  color: #1a1e21;
}

.section-title h2 {
  text-shadow: 1px 1px 2px rgba(68, 68, 68, 0.2666666667);
}

.padding-80 {
  padding: 80px 0;
}

.padding-0 {
  padding: 0px 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.visible-title {
  visibility: visible;
}

header nav {
  background: #fff;
  box-shadow: 0px 0px 5px rgba(68, 68, 68, 0.2666666667);
}
header nav a.navbar-brand img {
  height: 40px;
}
header nav form.search-form {
  width: 300px;
  margin-right: 50px;
  position: relative;
}
header nav form.search-form input {
  border-radius: 50px;
}
header nav form.search-form button.search-btn {
  border-radius: 50px;
  padding: 7px 30px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--bs-orange);
  border: 0;
  color: #fff;
}
header nav ul.action-menu .nav-item .nav-link {
  margin: 0px 20px;
  font-size: 18px;
}

.home {
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  background-color: rgba(169, 169, 169, 0.168627451);
  z-index: 0;
}

.home .img {
  flex: 1 1 300px;
}

.home .img img {
  margin-top: 30px;
  width: 100%;
}

.home .content {
  flex: 1 1 400px;
  margin-top: 20px;
}

.slider .content h1 {
  color: #198754;
  font-weight: bold;
  margin-left: 23px;
  font-size: 55px;
  text-shadow: -1px 1px 1px black;
}

#span2 {
  color: rgb(226, 96, 49);
}

.content p {
  margin-left: 23px;
}

.btn {
  margin-left: 13px;
}

.btn button {
  width: 150px;
  height: 32px;
  letter-spacing: 3px;
  background-color: #198754;
  color: white;
  border-radius: 5px;
  border: none;
  transition: 0.5s ease;
  cursor: pointer;
}

.btn button:hover {
  background-color: rgb(226, 96, 49);
  color: black;
  border: none;
}

@media screen and (max-width: 1200px) {
  .home {
    height: 90vh;
  }
}
@media screen and (max-width: 799px) {
  .home {
    height: 140vh;
  }
}
@media screen and (max-width: 550px) {
  .home {
    height: 110vh;
  }
}
@media screen and (max-width: 420px) {
  .content h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 320px) {
  .content h1 {
    font-size: 36px;
  }
}
.rating {
  color: rgb(255, 145, 0);
}

section.category-product {
  padding: 55px 0px;
}
section.category-product .card {
  background: #f7f7f7;
  overflow: hidden;
}
section.category-product .card .card-body {
  text-align: center;
}
section.category-product .card .card-body img {
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.6s;
}
section.category-product .card .card-body h4 {
  font-size: 25px;
  text-shadow: 1px 1px 1px rgba(68, 68, 68, 0.2666666667);
  margin: 50px 0px;
}
section.category-product .card .card-body a.view-all-btn {
  background: var(--bs-success);
  padding: 7px 30px;
  border-radius: 50px;
  color: #fff;
}
section.category-product .card:hover .card-body img {
  transform: scale(1.2);
}

section.banner {
  padding: 20px 0px;
}
section.banner .item {
  background: #ccc;
}
section.banner .item .text {
  width: 209px;
}
section.banner .item .text h2 {
  font-size: 36px;
  line-height: 51px;
  text-shadow: 1px 1px 1px rgba(68, 68, 68, 0.2666666667);
}
section.banner .item .text a.order-now {
  background: #198754;
  padding: 8px 29px;
  border-radius: 50px;
  color: #fff;
}
section.banner .item img {
  -o-object-fit: cover;
     object-fit: cover;
}

section.latest-product {
  padding: 33px 0px;
  background: rgba(247, 247, 247, 0.968627451);
}
section.latest-product .card .card-body img {
  height: 160px;
  transition: 0.6s;
}
section.latest-product .card .card-body h2.product_name {
  font-size: 18px;
  padding: 15px 0px;
}
section.latest-product .card .card-body h2.price {
  font-size: 24px;
  padding: 10px 0px;
}
section.latest-product .card .card-body a.add-to-cart-btn {
  border: 1px solid #198754;
  padding: 5px 23px;
  color: #198754;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.6s;
}
section.latest-product .card .card-body a.add-to-cart-btn:hover {
  background: var(--bs-success);
  color: #fff;
}
section.latest-product .card:hover .card-body img {
  transform: scale(1.2);
}

ul.footer-list {
  margin: 0;
  padding: 0px 20px;
}
ul.footer-list li a {
  transition: 0.6s;
}
ul.footer-list li a:hover {
  color: #0f5132;
  padding-left: 7px;
}

.loading {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #fdfdfd;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--bs-success);
}/*# sourceMappingURL=style.css.map */