@import url(product.css);
* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Poppins', 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: var(--secondary);
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
  line-height: 1.6rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  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) !important;
}

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

.scroll-top-btn img {
  width: 22px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar .logo {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-item {
  position: relative;
}

.navbar .nav-item::after {
  content: '|';
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 0;
  color: #ccc;
}

.navbar .nav-item:nth-last-child()::after {
  display: none;
}

.navbar .nav-link {
  margin: 0 10px;
  font-weight: bold;
  color: #888;
  font-size: 14px;
}

.navbar .nav-link.active {
  color: #101010;
}

.navbar .nav-icons {
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
}

.navbar .icon-box {
  position: relative;
  margin: 0 10px;
}

.navbar .icon-box .icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .icon-box .num {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  background-color: #303030;
  color: #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
}

.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: #000;
  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: #000;
  -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: 30px 0 0 0;
  background-color: #f9f9f9;
}

footer .content .logo {
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 15px auto;
}

footer .content .det {
  font-size: 14px;
  line-height: 1.7rem;
  color: #888;
}

footer .content .social-links a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #f4f4f4;
  color: var(--secondary);
  border-radius: 10px;
  display: inline-block;
}

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

footer .content .social-links a:hover i {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

footer .copyright {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 25px;
}

/**********************************************
    Start Public Classes
**********************************************/
.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.butn {
  padding: .7rem 2rem;
  background-color: var(--primary);
  color: #202020;
  border-radius: 10px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
}

.butn:hover {
  color: #fff;
  background-color: var(--secondary);
}

.prices {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.prices .prev {
  color: #999;
  text-decoration: line-through;
  margin: 0 10px;
}

.prices .current {
  font-weight: bolder;
  color: #202020;
  margin: 0 10px;
}

.sec-title {
  font-weight: 800;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
header {
  position: relative;
}

header .item {
  min-height: 85vh;
  padding: 150px 0;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

header .item .text-box {
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

header .item .text-box .subtitle {
  font-weight: bolder;
  color: var(--primary);
  text-transform: capitalize;
}

header .item .text-box .title {
  text-transform: capitalize;
  color: #101010;
  font-weight: 900;
  font-size: calc(35px + 2vw);
}

header .item .text-box .det {
  color: #999;
  font-size: 13px;
}

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

.about-sec {
  position: relative;
}

.about-sec .sec-img {
  height: 500px;
}

.about-sec .text-box {
  padding: 20px 0;
  -webkit-padding-start: 6vw;
          padding-inline-start: 6vw;
  -webkit-padding-end: 10vw;
          padding-inline-end: 10vw;
}

.about-sec .text-box .subtitle {
  font-weight: bolder;
  color: var(--primary);
  text-transform: capitalize;
}

.about-sec .text-box .title {
  text-transform: capitalize;
  color: #101010;
  font-weight: 900;
}

.about-sec .text-box .det {
  color: #999;
  font-size: 14px;
}

.products-sec {
  position: relative;
  padding: 100px 0 70px 0;
}

.banners-sec {
  position: relative;
  padding: 30px 0 70px 0;
}

.banners-sec .img-box {
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.banners-sec .img-box .sec-img {
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.banners-sec .img-box:hover .sec-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
/*# sourceMappingURL=style.css.map */