@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("slick.css");
@import url("slick-theme.css");
/*-- font style --*/
/*-- media query --*/
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #ffc107;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #851848;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0.375rem 0.375rem 0.8rem rgba(35, 35, 35, 0.04);
}

a,
a:hover {
  text-decoration: none;
}

a {
  transition: all 0.3s ease 0s;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  opacity: 0.5;
  border: 1px solid #851848;
  color: #851848;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Rubik", sans-serif;
  background-color: #fafafa;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

.font-black {
  font-weight: 900;
}

/*-- background color css --*/
.theme-bg-primary {
  background-color: #851848;
}

.theme-bg-secondary {
  background-color: #232323;
}

.theme-bg-accent-one {
  background-color: #707070;
}

.theme-bg-accent-two {
  background-color: #eaeaea;
}

.theme-dark {
  background-color: #000000;
}

/*-- text css --*/
.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #851848;
}

.theme-text-secondary {
  color: #232323;
}

.theme-text-accent-one {
  color: #707070;
}

.theme-text-accent-two {
  color: #eaeaea;
}

.theme-text-accent-three {
  color: #ffc107;
}

/*-- shadow css --*/
.theme-box-shadow {
  box-shadow: 0.375rem 0.375rem 0.8rem rgba(35, 35, 35, 0.04);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(35, 35, 35, 0.1);
}

/*-- custom button css*/
.custom-btn-primary {
  background-color: #851848;
  color: #ffffff;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 0.625rem;
}

.custom-btn-secondary {
  min-width: 100px;
  min-height: 50px;
  border: 0;
  border-radius: 0.625rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.custom-link {
  background-color: #eaeaea;
  color: #851848;
  min-width: 120px;
  min-height: 40px;
}
.custom-link:hover {
  background-color: transparent;
  color: #232323;
  border: 2px solid #851848;
}

.theme-border-radius {
  border-radius: 0.625rem;
}

.theme-border {
  border: 1px solid #851848;
}

/*-- primary button effect css --*/
.custom-button .button-effect {
  transition: all 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.custom-button .button-effect::before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #232323;
  z-index: -1;
}
.custom-button .button-effect:hover, .custom-button .button-effect:focus {
  color: #ffffff;
  background-color: #851848;
}
.custom-button .button-effect:hover::before, .custom-button .button-effect:hover::after, .custom-button .button-effect:focus::before, .custom-button .button-effect:focus::after {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

/*-- secondary button css --*/
.icon-wrapper {
  box-shadow: 0 0 0px 0px rgba(35, 35, 35, 0.5);
  cursor: pointer;
  border-radius: 50%;
  transition: 250ms color;
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0px 0px rgba(133, 24, 72, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 15px rgba(133, 24, 72, 0);
  }
}

/*-- image hover effect --*/
.img-effect img {
  transition: all 0.4s ease-in-out;
}
.img-effect:hover img {
  transform: scale(1.5);
}

/*-- flood effect --*/
.flood-effect {
  transition: 0.25s ease-in-out;
  overflow: hidden;
  display: block;
  text-align: center;
}
.flood-effect:hover {
  box-shadow: inset 10rem 0 0 0 #232323;
}
.flood-effect:hover:hover a {
  color: #ffffff;
}

/*-- product hover effect qhick view --*/
.product-quick-view {
  position: relative;
  transition: all 0.5s ease-in-out;
}
.product-quick-view .view {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.product-quick-view .view span,
.product-quick-view .view i {
  color: #ffffff;
}
.product-quick-view:hover {
  filter: grayscale(100%);
}
.product-quick-view:hover .view {
  opacity: 1;
  cursor: pointer;
}

/*-- add cart button effect --*/
.bottom .add-cart {
  cursor: pointer;
}
.bottom .add-cart .add {
  position: relative;
  display: inline-block;
}
.bottom .add-cart .add:hover {
  transform: translateY(-3px);
}

/*-- Shine effect --*/
.hoverShine .shine {
  position: relative;
}
.hoverShine .shine::before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.hoverShine .shine:hover::before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*-- slick slider custom arrow --*/
.slick-arrow {
  background-color: #eaeaea;
  box-shadow: 0.375rem 0.375rem 0.8rem rgba(35, 35, 35, 0.04);
  top: unset;
  bottom: -100px;
  background-repeat: no-repeat;
  background-position: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  font-size: 1.2rem;
  transition: all 0.2s ease-out;
}

.slick-arrow:hover {
  background-color: #851848;
  color: #ffffff;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.btn-wrapper {
  height: auto;
}
.btn-wrapper .menu-toggle {
  min-height: 40px;
}
.btn-wrapper .menu-toggle .icon-bars {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before, .btn-wrapper .menu-toggle .icon-bars::after {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #ffffff;
  content: "";
  position: absolute;
  left: 0;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before {
  top: 0.5em;
}
.btn-wrapper .menu-toggle .icon-bars::after {
  top: -0.5em;
}
.btn-wrapper .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.btn-wrapper .menu-toggle:active .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.btn-wrapper .menu-toggle:active .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.menu--is-revealed .menu-toggle .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.menu--is-revealed .menu-toggle .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 9999;
  overflow: visible;
}
.page-loader .spinner {
  position: relative;
  top: 35%;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  background-color: #851848;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.info-top {
  background-color: #232323;
}
.info-top .btn {
  color: #eaeaea;
  text-decoration: none;
}
.info-top .btn i {
  color: #ffffff;
}
.info-top .dropdown-item.active,
.info-top .dropdown-item:active {
  background-color: #851848;
}

.topheader {
  position: relative;
  background-color: #fafafa;
}
.topheader .search {
  background-color: #eaeaea;
  border: 0;
  border-radius: 0.625rem;
}
.topheader .search .form-control {
  background-color: transparent;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.topheader .search .form-control:focus {
  box-shadow: 0.375rem 0.375rem 0.8rem rgba(35, 35, 35, 0.04);
}
.topheader .search input {
  border: none;
}
.topheader .search button {
  border: 0;
  color: #232323;
  font-size: 1.3rem;
}
.topheader .search button:hover {
  color: #851848;
}
.topheader .primary-action a {
  color: #851848;
  text-align: center;
}
.topheader .primary-action a span {
  font-size: 0.75rem;
  color: #707070;
}
.topheader .primary-action a:hover {
  color: #232323;
}

.main-nav {
  position: relative;
  z-index: 111;
  background-color: #851848;
}
.main-nav .site-menu li a {
  color: #707070;
}
.main-nav .site-menu li a:hover {
  color: #851848;
}

.nav-effect {
  position: relative;
  color: #851848;
  font-weight: bold;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.nav-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 33%;
  width: 1.25rem;
  height: 2px;
  background: #851848;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}
.nav-effect.active::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 33%;
  width: 1.25rem;
  height: 2px;
  background: #851848;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
  transform-origin: center center;
  transform: scale(1, 1);
}
.nav-effect:hover {
  color: #851848;
}
.nav-effect:hover:before {
  transform-origin: center center;
  transform: scale(1, 1);
}

.hero {
  position: relative;
}
.hero .slider-item {
  min-height: 700px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .hero .slider-item {
    min-height: 400px;
  }
}
.hero .slick-dots {
  bottom: 0;
}
.hero .slick-dots li button:before {
  font-size: 1rem;
}
.hero .slick-dots li.slick-active button:before {
  color: #851848;
}
.hero .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@keyframes herofadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.slick-active .hero-ele {
  opacity: 0;
  animation: herofadeInUp 1s ease-in-out 0s forwards;
}
.slick-active .hero-ele.first {
  animation-delay: 3s;
}
.slick-active .hero-ele.second {
  animation-delay: 4s;
}
.slick-active .hero-ele.third {
  animation-delay: 5s;
}
.slick-active .hero-ele.fourth {
  animation-delay: 2s;
}
.slick-active .hero-ele.fifth {
  animation-delay: 3s;
}
.slick-active .hero-ele.sixth {
  animation-delay: 4s;
}

.topCategories .nav-pills li .nav-link {
  border: 2px solid #851848;
  color: #232323;
  border-radius: 0.625rem;
}
.topCategories .nav-pills li .active {
  background-color: #851848;
  color: #ffffff;
}
.topCategories .card-wrap {
  box-shadow: 0.375rem 0.375rem 0.8rem rgba(35, 35, 35, 0.04);
  background-color: #ffffff;
  min-height: 400px;
}
.topCategories .card-wrap .con-img-wrap {
  position: relative;
}
.topCategories .card-wrap .con-wrap .text a {
  color: #707070;
}
.topCategories .card-wrap .con-wrap .text a:hover {
  color: #851848;
}
.topCategories .card-wrap .con-wrap .rating-cover i {
  color: #ffc107;
}

.product-banner {
  position: relative;
}
.product-banner .box {
  position: relative;
  max-height: 300px;
  height: 300px;
  background-color: #707070;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.625rem;
}
.product-banner .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.product-banner .box .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  z-index: 1;
}
.product-banner .box .content p {
  text-transform: uppercase;
  font-size: 1.5rem;
}
.product-banner .box .content .btn-shop {
  background-color: #851848;
  color: #ffffff;
}

.deal-zone .deal-card {
  position: relative;
  background-color: #ffffff;
  margin: 1rem 0.5rem;
}
.deal-zone .deal-card .text a {
  color: #707070;
}
.deal-zone .deal-card .text a:hover {
  color: #851848;
}
.deal-zone .deal-card .rating-cover i {
  color: #ffc107;
}
.deal-zone .badges {
  display: flex;
}
.deal-zone .badges-position {
  position: absolute;
  left: 20px;
  top: 10px;
  z-index: 9;
}
.deal-zone .badges-position .hot {
  background-color: #ff51a3;
}
.deal-zone .badges-position .sale {
  background-color: #ff8707;
}
.deal-zone .badges-position .new {
  background-color: #00a930;
}
.deal-zone .badges-position .best {
  background-color: #f59758;
}

.offer-banner {
  position: relative;
}
.offer-banner .offer-wrap {
  padding: 1rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.offer-banner .offer-wrap .text-wrap {
  position: relative;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.offer-banner .card1 {
  width: 100%;
  height: auto;
  min-height: 405px;
  background-color: rgba(133, 24, 72, 0.1);
}
.offer-banner .card2 {
  background-color: rgba(35, 35, 35, 0.1);
  min-height: 190px;
}
.offer-banner .card3 {
  box-shadow: 0.375rem 0.375rem 0.8rem rgba(35, 35, 35, 0.04);
  min-height: 190px;
  background-color: rgba(35, 35, 35, 0.1);
}

.various-product .product-card {
  background-color: #ffffff;
}
.various-product .product-card .text a {
  color: #707070;
}
.various-product .product-card .text a:hover {
  color: #851848;
}
.various-product .product-card .rating-cover i {
  color: #ffc107;
}

.call-to-action {
  background-color: rgba(133, 24, 72, 0.1);
  background-image: url(../images/section/banner-call-to-action.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 350px;
  background-position: center center;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 10rem 0;
}
.call-to-action .form-subcriber {
  background-color: #ffffff;
  max-width: 450px;
  border-radius: 50px;
  position: relative;
  z-index: 4;
}
.call-to-action .form-subcriber input {
  box-shadow: none;
  width: 100%;
  border: 0;
  border-radius: 10px 0 0 10px;
  padding: 0 2rem;
}
.call-to-action::before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 0;
}

.testimonials {
  position: relative;
}
.testimonials .review-wrap {
  border-radius: 0.625rem;
  border: 1px solid #eaeaea;
  padding: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
  background-color: #ffffff;
}
.testimonials .client-pic {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonials .client-pic .avatar {
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #000000;
}
.testimonials .client-con {
  text-align: justify;
  font-size: 0.875rem;
}
.testimonials .client-con a {
  color: #851848;
  display: inline-block;
}
.testimonials .client-con a:hover {
  transform: translateX(-3px);
  text-shadow: 0 0 1.375rem rgba(35, 35, 35, 0.1);
  letter-spacing: 0.5px;
}

.news .news-card .left {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.news .news-card .right {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #ffffff;
}
.news .news-card .tags {
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  background: #851848;
  cursor: pointer;
  min-width: 150px;
}
.news .news-card .tags a {
  color: #ffffff;
}

.partner {
  position: relative;
}

.features {
  background-color: #fafafa;
  border-top: 1px solid #eaeaea;
}
.features .left-icon {
  position: relative;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0.375rem 0.375rem 0.8rem rgba(35, 35, 35, 0.04);
  background-color: #ffffff;
}
.features .left-icon:hover .icon {
  transform: translateY(-5px);
  transition-duration: 0.3s;
}
.features .left-icon .icon {
  max-width: 60px;
  margin-right: 20px;
  transition-duration: 0.3s;
}
.features .left-icon .icon img {
  width: 50px;
  height: 50px;
}
.features .left-icon .text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.features .left-icon .text p {
  margin-bottom: 0;
  font-size: 0.75rem;
}

.contact-sec {
  background-color: rgba(133, 24, 72, 0.1);
  background-image: url(../images/section/contact-us-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 350px;
  background-position: center center;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
}
.contact-sec::before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer {
  background-color: #232323;
}
.footer h1,
.footer h2,
.footer h3,
.footer p {
  color: #ffffff;
}
.footer p {
  line-height: 2.2rem;
}
.footer .footer-link li {
  line-height: 2.5rem;
}
.footer .footer-link li i {
  color: #851848;
  font-size: 1.5rem;
  line-height: normal;
  vertical-align: middle;
}
.footer .footer-link li a {
  color: #707070;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .footer-link li a:hover {
  color: #851848;
  letter-spacing: 0.5px;
  padding-left: 0.5rem;
}
.footer .social a,
.footer .social .botom-link {
  color: #ffffff;
}
.footer .social a:hover,
.footer .social .botom-link:hover {
  color: #851848;
}
.footer .custom img {
  width: 240px;
}
.footer .custom p {
  color: #707070;
}
.footer .footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
}

.scrollup {
  overflow: hidden;
  position: fixed;
  height: 2.5rem;
  width: 2.5rem;
  line-height: 2.5rem;
  bottom: -3rem;
  right: 3rem;
  text-align: center;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
}
.scrollup i {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
}
.scrollup i:hover, .scrollup i:focus {
  animation: toBottomFromTop 0.5s forwards;
}
.scrollup:hover, .scrollup:focus {
  color: #851848;
}

.scrollup.back-top {
  bottom: 20px;
}

@keyframes toBottomFromTop {
  49% {
    transform: translateY(-20%);
  }
  50% {
    opacity: 0;
    transform: translateY(20%);
  }
  51% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
.header-trans {
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100%;
  z-index: 1;
}
.header-trans .nav-effect {
  color: #ffffff;
  font-weight: normal;
}

.theme-dark .hero .slick-dots li button:before {
  color: #ffffff;
}
.theme-dark .topCategories .nav-pills li .nav-link {
  color: #ffffff;
}
.theme-dark .topCategories .card-wrap {
  background-color: #000000;
}
.theme-dark .topCategories .card-wrap .con-wrap .text a {
  color: #ffffff;
}
.theme-dark .offer-banner .card1,
.theme-dark .offer-banner .card2,
.theme-dark .offer-banner .card3 {
  background-color: rgba(133, 24, 72, 0.3);
}
.theme-dark .testimonials .review-wrap {
  background-color: #000000;
  border: 1px solid #ffffff;
}
.theme-dark .news .news-card .right {
  background-color: #000000;
}
.theme-dark .features {
  background-color: #000000;
}
.theme-dark .footer {
  background-color: #000000;
}
.theme-dark .footer .scrollup {
  background-color: rgba(133, 24, 72, 0.5);
}
.theme-dark .slick-arrow {
  background-color: #851848;
}
.theme-dark .various-product .product-card {
  background-color: #000000;
}
.theme-dark .various-product .product-card .text a {
  color: #ffffff;
}
.theme-dark .deal-zone .deal-card {
  background-color: #000000;
}
.theme-dark .deal-zone .deal-card .text a {
  color: #ffffff;
}

@media screen and (max-width: 992px) {
  .header .navbar-collapse {
    height: 200px;
    overflow: auto;
  }
}/*# sourceMappingURL=main.css.map */