* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/***************************** Global Style *****************************/
p {
  font-size: 15px;
  color: #555;
}

a {
  color: var(--primary);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary);
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: linear-gradient(-135deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  border-radius: 50%;
  color: #fff;
}

/***************************** Animations *****************************/
.product-card {
  border-radius: 25px;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  padding: 10px 0;
  margin-bottom: 35px;
}

.product-card .img-box {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.product-card .img-box img {
  width: 75%;
  height: 100%;
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-card .img-box .icons-wrapper {
  position: absolute;
  top: 15px;
  left: 20px;
}

.product-card .img-box .icons-wrapper .icon {
  display: block;
  width: 35px;
  height: 35px;
  background-color: #202020;
  border: 1px solid #202020;
  color: #fff;
  border-radius: 50%;
  margin: 5px 0;
  -webkit-transform: translateX(-70px);
          transform: translateX(-70px);
}

.product-card .img-box .icons-wrapper .icon:nth-of-type(1) {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.product-card .img-box .icons-wrapper .icon:nth-of-type(2) {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.product-card .img-box .icons-wrapper .icon:nth-of-type(3) {
  -webkit-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
}

.product-card .img-box .badge {
  width: 100px;
  height: 35px;
  line-height: 35px;
  background-color: #222;
  color: #fff;
  display: block;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
}

.product-card .card-body .prod-name,
.product-card .card-body .price {
  font-weight: bold;
  color: #000;
}

.product-card .card-body .desc {
  margin-bottom: .5rem;
}

.product-card:hover {
  -webkit-box-shadow: 0 0 35px 0 #eee;
          box-shadow: 0 0 35px 0 #eee;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.product-card:hover .icons-wrapper .icon {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

/***************************** Start Edit Navbar & Footer *****************************/
.navbar .nav-link {
  margin: 0 10px;
  font-size: 14px;
}

.navbar .nav-link.active {
  font-weight: bold;
}

.navbar .links-wrapper a {
  margin: 0 10px;
  font-size: 14px;
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  padding-top: 80px;
  background-color: #111;
}

footer .content {
  margin-bottom: 35px;
}

footer .content .logo {
  width: 68px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
  -webkit-filter: invert(100%) sepia(0%) saturate(7472%) hue-rotate(114deg) brightness(109%) contrast(97%);
          filter: invert(100%) sepia(0%) saturate(7472%) hue-rotate(114deg) brightness(109%) contrast(97%);
}

footer .content p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6rem;
}

footer .content h6 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

footer .content h6::after {
  content: '';
  width: 50px;
  height: 2px;
  display: block;
  position: relative;
  top: 10px;
  background-color: #ccc;
}

footer .content .links a {
  display: block;
  color: #ccc;
  margin: 20px 0;
}

footer .content .links a .icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #fff;
  color: var(--secondary);
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  margin: 0 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

footer .content .links a:hover {
  color: #fff;
}

footer .content .links a:hover .icon {
  background-color: var(--secondary);
  color: #fff;
}

footer .content .direct-links a {
  margin: 10px 0;
}

footer .content .social-links a {
  display: inline-block;
  margin: 0 4px;
}

footer .content .social-links a .icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #fff;
  color: #202020;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

footer .content .social-links a:hover .icon {
  background-color: var(--secondary);
  color: #fff;
}

footer .copyright {
  padding: 25px 0;
  background-color: var(--primary);
  margin-top: 25px;
}

footer .copyright p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

/***************************** Start Edit Home Page *****************************/
header {
  padding: 100px 0;
}

header .item {
  padding: 0 50px;
}

header .item .header-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

header .item .text-box {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

header .item .text-box .owner-name {
  font-size: 12px;
  font-weight: 600;
}

header .item .text-box .price {
  font-weight: bold;
  color: var(--primary);
  margin: 1rem 0;
}

header .item .text-box .link-btn {
  width: 200px;
  display: block;
  height: 45px;
  line-height: 45px;
  border: 1px solid var(--secondary);
  font-weight: 600;
  text-align: center;
  font-size: 15px;
}

header .item .text-box .link-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

header .swiper-slide-active .header-img, header .swiper-slide-active .text-box {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

/* Swiper Container */
.swiper-container .swiper-button-next, .swiper-container .swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/icons/right-arrow.svg);
}

.swiper-container .swiper-button-prev, .swiper-container .swiper-container-rtl .swiper-button-next {
  background-image: url(../images/icons/right-arrow.svg);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-container .swiper-button-next, .swiper-container .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-size: 35px;
}

.products-sec {
  padding: 30px 0 70px 0;
  border-top: 2px solid var(--primary);
  background-color: #F9F9F9;
}

.products-sec .filtering .form-group .form-control {
  font-size: 12px;
  border: transparent;
}

.products-sec .filtering .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.products-sec .filtering .nav .nav-link {
  font-size: 13px;
}

.products-sec .filtering .nav .nav-link.active {
  color: var(--primary);
  font-weight: bold;
  background-color: transparent;
}

.products-sec .btn-wrapper {
  position: relative;
}

.products-sec .btn-wrapper::before {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  background-color: #202020;
  position: absolute;
  top: 22.5px;
  left: 0;
  right: 0;
}

.products-sec .btn-wrapper .link-btn {
  width: 200px;
  height: 45px;
  line-height: 45px;
  background-color: #fff;
  border: 1px solid #202020;
  color: #202020;
  display: block;
  font-weight: 600;
  margin: auto;
  text-align: center;
  position: relative;
}

.products-sec .btn-wrapper .link-btn:hover {
  background-color: #202020;
  color: #fff;
}
/*# sourceMappingURL=index.css.map */