* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Almarai', sans-serif;
}

*::-moz-selection {
  background-color: #011132;
  color: #fff;
}

*::selection {
  background-color: #011132;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #BCA66C;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #574D47;
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

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-group {
  position: relative;
}

form .form-group .icon-l {
  position: absolute;
  left: 10px;
  top: 15px;
  background-color: transparent;
  border: none;
  color: #ccc;
}

form .form-group .icon-l:hover {
  color: #B39465;
}

form .form-control {
  height: 55px;
  border: 1px solid #eee;
  border-radius: 15px;
  font-size: 13px;
  background-color: transparent !important;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #B39465 !important;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #555, #000);
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  border-radius: 0 15px 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);
  }
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 675px;
    height: 675px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 675px;
    height: 675px;
  }
}

@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 675px;
    height: 675px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 675px;
    height: 675px;
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes tilt-in-fwd-bl {
  0% {
    -webkit-transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
            transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-fwd-bl {
  0% {
    -webkit-transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
            transform: rotateY(-20deg) rotateX(-35deg) translate(-300px, 300px) skew(-35deg, 10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

.tilt-in-fwd-bl {
  -webkit-animation: tilt-in-fwd-bl 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-bl 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
            transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

@keyframes tilt-in-fwd-br {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
            transform: rotateY(20deg) rotateX(-35deg) translate(300px, 300px) skew(35deg, -10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
            transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

.tilt-in-fwd-br {
  -webkit-animation: tilt-in-fwd-br 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: tilt-in-fwd-br 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container {
  position: relative;
  z-index: 9;
}

.navs-container .top-nav {
  background-color: #011132;
}

.navs-container .top-nav .inner {
  padding: 15px 0;
}

.navs-container .top-nav .register-butns {
  color: #ccc;
}

.navs-container .top-nav .register-butns a {
  color: #eee;
  margin: 0 5px;
  font-size: 13px;
}

.navs-container .top-nav .register-butns a:hover {
  color: #BCA66C;
}

.navs-container .top-nav .nav_l {
  text-align: end;
}

.navs-container .top-nav .social-links {
  display: inline-block;
}

.navs-container .top-nav .social-links a {
  color: #ddd;
  margin: 0 6px;
}

.navs-container .top-nav .social-links a:hover {
  color: #BCA66C;
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.navs-container .top-nav .search-link {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  display: inline-block;
  background-color: #eee;
  color: #555;
  text-align: center;
  -webkit-margin-start: 10px;
          margin-inline-start: 10px;
  font-size: 12px;
  background-color: #010c22;
  color: #ddd;
}

.navs-container .top-nav .search-link .icon {
  width: 15px;
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(280deg) brightness(158%) contrast(102%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(280deg) brightness(158%) contrast(102%);
}

.navs-container .top-nav .search-link:hover {
  background-color: #BCA66C;
  color: #fff;
}

.navs-container .top-nav .search-link:hover .icon {
  -webkit-filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(20deg) brightness(204%) contrast(108%);
          filter: invert(100%) sepia(6%) saturate(0%) hue-rotate(20deg) brightness(204%) contrast(108%);
}

.navs-container .navbar {
  background-color: #fff;
}

.navs-container .navbar .logo {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-link {
  position: relative;
  margin: 0 14px;
  color: #011132;
}

.navs-container .navbar .nav-link::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  background-color: #011132;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .nav-link.active::after, .navs-container .navbar .nav-link:hover::after {
  width: 100%;
}

.navs-container .navbar .nav-link.active {
  font-weight: bold;
}

.navs-container .navbar .has-dropdown {
  position: relative;
}

.navs-container .navbar .has-dropdown::after {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  color: #011132;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.navs-container .navbar .has-dropdown .drop-down {
  position: absolute;
  width: 250px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 15px 0 #eee;
          box-shadow: 0 0 15px 0 #eee;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 5;
}

.navs-container .navbar .has-dropdown .drop-down .link {
  display: block;
  padding: 15px 10px;
  font-size: 14px;
}

.navs-container .navbar .has-dropdown .drop-down .link .icon {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.navs-container .navbar .has-dropdown .drop-down .link:hover {
  background-color: #BCA66C;
  color: #fff;
}

.navs-container .navbar .has-dropdown .drop-down .link:hover .icon {
  -webkit-filter: invert(100%) sepia(0%) saturate(6722%) hue-rotate(308deg) brightness(97%) contrast(100%);
          filter: invert(100%) sepia(0%) saturate(6722%) hue-rotate(308deg) brightness(97%) contrast(100%);
}

.navs-container .navbar .has-dropdown:hover::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.navs-container .navbar .has-dropdown:hover .drop-down {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.navs-container .navbar .nav-icons .icon-link {
  margin: 0 8px;
}

.navs-container .navbar .nav-icons .icon-link .icon {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .nav-icons .icon-link .num {
  font-size: 12px;
  -webkit-margin-end: 4px;
          margin-inline-end: 4px;
}

.navs-container .navbar .nav-icons .icon-link:hover {
  -webkit-filter: invert(100%) sepia(45%) saturate(2150%) hue-rotate(318deg) brightness(78%) contrast(84%);
          filter: invert(100%) sepia(45%) saturate(2150%) hue-rotate(318deg) brightness(78%) contrast(84%);
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .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);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .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;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

.navs-container .search-container {
  position: fixed;
  z-index: 9999999999;
  top: 0;
}

.navs-container .search-container #search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: fixed;
  -webkit-transition: all .5s;
  transition: all .5s;
  width: 100vw;
  will-change: transform, opacity;
  z-index: -1;
}

.navs-container .search-container #search::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #02050c;
  opacity: .9;
}

.navs-container .search-container #search:target {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100vh !important;
  opacity: 1;
  width: 100vw !important;
  z-index: 2;
}

.navs-container .search-container #search:target .close-btn {
  display: block;
}

.navs-container .search-container form {
  position: relative;
}

.navs-container .search-container form .form-control {
  border-radius: 0;
  background: transparent;
  position: relative;
  z-index: 99;
  border: 1px solid #eee;
  color: #fff;
  font-size: 18px;
  outline: 0;
  padding: 1rem 1.375rem;
  height: 55px;
  border-radius: 15px;
}

.navs-container .search-container form .form-control::-webkit-input-placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control:-ms-input-placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control::-ms-input-placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control::placeholder {
  color: #ccc;
}

.navs-container .search-container form .form-control:focus {
  border: 1px solid #B39465;
}

.navs-container .search-container form .submit-btn {
  position: absolute;
  left: 5px;
  top: 14px;
  background-color: transparent;
  color: #B39465;
  border: 1px solid transparent;
}

.navs-container .search-container .close-btn {
  display: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: .5rem;
  right: 2rem;
}

.footer {
  padding: 70px 0 0 0;
  background-color: #011132;
}

.footer .content .logo {
  width: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer .content .box .label {
  color: #eee;
  font-size: 13px;
}

.footer .content .box .data {
  color: #fff;
}

.footer .content .marof-logo {
  width: 100px;
  margin: 10px 0;
}

.footer .content .contact-links a {
  color: #eee;
  font-size: 17px;
  margin: 10px;
}

.footer .content .contact-links a i {
  color: #BCA66C;
  margin: 0 5px;
}

.footer .content .contact-links a:hover {
  color: #ccb67f;
}

.footer .content .links a {
  display: block;
  margin: 15px 0;
  color: #eee;
  font-size: 14px;
}

.footer .content .links a:hover {
  color: #BCA66C;
}

.footer .footer_b {
  border-top: 1px solid rgba(226, 226, 226, 0.2);
  padding: 25px 0;
}

.footer .footer_b .links a {
  margin: 0 10px;
  color: #eee;
  font-size: 14px;
}

.footer .footer_b .links a:hover {
  color: #BCA66C;
}

.footer .footer_b .imgs-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
}

.footer .footer_b .imgs-box .payment_img {
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
    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;
}

.gold_l {
  color: #BCA66C;
}

.gold_d {
  color: #77623E;
}

.butn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: .65rem 2rem;
  border-radius: 25px;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}

.butn span {
  position: relative;
  z-index: 5;
}

.butn span i {
  margin: 0 5px;
}

.butn::before, .butn::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #011132;
  border-radius: 50%;
}

.butn::before {
  left: -20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.butn::after {
  right: -20px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.butn:hover {
  color: #BCA66C;
}

.butn:hover::before {
  -webkit-animation: criss-cross-left 1s both;
          animation: criss-cross-left 1s both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.butn:hover::after {
  -webkit-animation: criss-cross-right 1s both;
          animation: criss-cross-right 1s both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.butn.dark-butn {
  background-color: #011132;
  color: #fff;
}

.butn.dark-butn::before, .butn.dark-butn::after {
  background-color: #BCA66C;
}

.sec-title {
  color: #011132;
  font-weight: 800;
}

.swiper-pagination-bullet {
  width: 35px;
  height: 5px;
  background-color: #ccc;
  border-radius: 5px;
  opacity: .6;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #BCA66C;
}

.dir-l {
  direction: ltr;
}

.pg-header {
  background: url(../images/header-pg-bg.jpg);
  background-size: cover;
  padding: 20px 0;
  position: relative;
}

.pg-header .inner {
  position: relative;
  z-index: 2;
}

.pg-header .inner .breadcrumb {
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.pg-header .inner .breadcrumb a {
  color: #000;
}

.pg-header .inner .breadcrumb .breadcrumb-item.active {
  color: #333;
  font-weight: bold;
}

.pg-header .inner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-left: .5rem;
  color: #BCA66C;
  content: "\f192";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.pg-header .inner .title {
  text-align: center;
  color: #000;
  font-weight: 700;
  display: none;
}

.pg-header .perfume-img {
  position: absolute;
  width: 25%;
  left: 12%;
  bottom: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.pagination-wrapper .pagination {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.pagination-wrapper .pagination .page-link {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  margin: 0 3px;
  padding: 0;
  text-align: center;
  color: #888;
}

.pagination-wrapper .pagination .page-link:hover {
  background-color: #B39465 !important;
  color: #fff !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border-color: transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: #BCA66C !important;
}

/*quantity-container*/
.quantity-container .qt-plus,
.quantity-container .qt-minus {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: solid 1px transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  color: #555;
  font-size: 10px;
  vertical-align: middle;
  display: inline-flex;
  cursor: pointer;
  background-color: #f8f8f8;
}

.quantity-container .qt-plus:hover,
.quantity-container .qt-minus:hover {
  background-color: #C0986C;
  color: #fff;
}

.quantity-container .qt-plus .fa,
.quantity-container .qt-minus .fa {
  font-weight: 300;
}

.quantity-container .qt {
  display: inline-block;
  min-width: 30px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.44;
  color: #202020;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 5px;
  text-align: center;
}

.font_prod {
  font-family: 'Permanent Marker', cursive;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header2 .item {
  position: relative;
  padding: 200px 0;
  background-color: #D4DBE7;
}

.header2 .item .text-box .subtitle {
  color: #574D47;
  font-family: 'Permanent Marker', cursive;
}

.header2 .item .text-box .title {
  font-size: calc(35px + 1.5vw);
  color: #574D47;
}

.header2 .item .text-box .det {
  font-size: 13px;
}

.header2 .item .text-box .butn {
  border: 1px solid #555;
  background-color: transparent;
}

.header2 .item .text-box .pattern {
  position: absolute;
  top: -95px;
  right: -30px;
}

.header2 .item .header-prod {
  width: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.header2 .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.header2 .swiper-slide-active .zi-5 {
  -webkit-animation: fadeInLeft 1s both;
          animation: fadeInLeft 1s both;
}

.header2 .swiper-slide-active .pattern {
  -webkit-animation: fadeInRight 1s both;
          animation: fadeInRight 1s both;
}

.banners-sec {
  position: relative;
  padding: 70px 0;
}

.banners-sec .banner_card {
  position: relative;
  padding: 2rem;
  height: 430px;
  margin-bottom: 25px;
}

.banners-sec .banner_card .badge_disc {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  background-image: url(../images/badge_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
  font-size: 35px;
  color: #fff;
  padding-top: 30px;
}

.banners-sec .banner_card .prod-img {
  width: 75%;
  position: absolute;
  bottom: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.banners-sec .banner_card .prod-img.center_img {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.banners-sec .banner_card .title {
  color: #574D47;
  font-family: 'Permanent Marker', cursive;
}

.banners-sec .banner_card::before {
  content: '';
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: transparent;
  display: block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 4px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.banners-sec .banner_card:hover::before {
  width: 100%;
  height: 100%;
  border: 4px solid rgba(188, 166, 108, 0.5);
}

.banners-sec .light_bg {
  background-color: #FAF4E8;
}

.banners-sec .dark_bg {
  background-color: #011132;
}

.sec-heading-wrapper .subtitle {
  color: #BCA66C;
}

.sec-heading-wrapper .title {
  font-weight: bold;
  color: #011132;
}

.products-sec2 {
  position: relative;
  padding: 70px 0;
}

.products-sec2 .prod_card {
  position: relative;
  border-radius: 10px;
  margin-bottom: 35px;
}

.products-sec2 .prod_card .img-box {
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.products-sec2 .prod_card .img-box .sec-img {
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.products-sec2 .prod_card .card-body .title {
  font-weight: bold;
  color: #666;
}

.products-sec2 .prod_card .card-body .fav-butn {
  color: #999;
  font-size: 20px;
}

.products-sec2 .prod_card .card-body .fav-butn:hover {
  color: #BCA66C;
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.products-sec2 .prod_card .cart-butn {
  text-align: start;
  border-radius: 10px;
  padding: 0.9rem 2rem;
}

.products-sec2 .prod_card:hover {
  -webkit-box-shadow: 0 0 15px 0 #ddd;
          box-shadow: 0 0 15px 0 #ddd;
}

.products-sec2 .prod_card:hover .sec-img {
  -webkit-transform: scale(1.2) rotate(5deg);
          transform: scale(1.2) rotate(5deg);
}

.products-sec2 .swiper-pagination {
  bottom: 0;
}

.review_card {
  background-color: #f5f5f5;
  position: relative;
  padding: 2rem;
  border-radius: 10px;
}

.review_card::before {
  content: '\f10d';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: #888;
  font-size: 30px;
  position: absolute;
  left: 30px;
  top: 30px;
  opacity: .7;
}

.review_card .title {
  color: #011132;
  font-weight: bold;
  margin-bottom: 1rem;
}

.review_card .det {
  color: #555;
  line-height: 1.8rem;
  font-size: 13px;
}

.review_card .rate i {
  color: #ccc;
  font-size: 20px;
}

.review_card .rate i.active {
  color: #BCA66C;
}

.review_card .prof-data .name {
  color: #BCA66C;
}

.review_card .prof-data .job {
  color: #011132;
  margin-bottom: 0;
}

.newsletter-sec {
  position: relative;
  padding: 30px 0 60px 0;
}

.newsletter-sec .form-group {
  position: relative;
}

.newsletter-sec .form-group .form-control {
  height: 55px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 25px;
}

.newsletter-sec .form-group .butn {
  position: absolute;
  top: 5px;
  left: 5px;
  border: none;
}

/**********************************************
    Start Edit Single Product Page 
**********************************************/
.single-product {
  position: relative;
  padding: 70px 0;
}

.single-product .text-box .border-b {
  border-bottom: 1px solid #ddd;
}

.single-product .text-box .title {
  font-weight: bold;
  color: #011132;
  font-family: 'Permanent Marker', cursive;
}

.single-product .text-box .categ {
  font-weight: bold;
  color: #888;
}

.single-product .text-box .rate i {
  color: #ccc;
  font-size: 16px;
}

.single-product .text-box .rate i.active {
  color: #BCA66C;
}

.single-product .text-box .rate span {
  font-size: 13px;
  margin: 0 5px;
  color: #666;
}

.single-product .text-box .prices-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-product .text-box .prices-wrapper .price {
  color: #BCA66C;
}

.single-product .text-box .prices-wrapper .prev_price {
  text-decoration: line-through;
  color: #666;
  margin: 0 10px;
}

.single-product .text-box .det {
  font-size: 13px;
  line-height: 1.7rem;
}

.single-product .text-box .form-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-product .text-box .form-group .label {
  font-size: 12px;
  font-weight: bold;
  color: #666;
  margin-bottom: 0;
  width: 100px;
  text-align: center;
}

.single-product .text-box .form-group .form-control {
  height: 50px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: bold;
}

.single-product .text-box .butns-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single-product .text-box .butns-wrapper .butn {
  border: 1px solid #ccc;
  margin: 0 5px;
}

.single-product .text-box .butns-wrapper .butn .icon {
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.single-product .text-box .butns-wrapper .butn.dark-butn .icon,
.single-product .text-box .butns-wrapper .butn:hover .icon {
  -webkit-filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(243deg) brightness(109%) contrast(102%);
          filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(243deg) brightness(109%) contrast(102%);
}

.single-product .lg-slide-swiper {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.single-product .lg-slide-swiper .img-box {
  position: relative;
  height: 500px;
}

.single-product .lg-slide-swiper .img-box .lg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  padding: 10px;
}

.single-product .lg-slide-swiper .swiper-slide-active .lg-img {
  -webkit-animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.single-product .size_options {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single-product .size_options .subtitle {
  font-weight: bold;
  color: #666;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.single-product .size_options .custom-control {
  padding: 0;
  margin: 2px 5px;
}

.single-product .size_options .custom-control .custom-control-label {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: .7rem 1rem;
  min-width: 100px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}

.single-product .size_options .custom-control .custom-control-input:checked ~ .custom-control-label {
  border: 1px solid #B39465;
  color: #B39465;
  font-weight: bold;
}

.single-product .size_options .custom-control .custom-control-label::after,
.single-product .size_options .custom-control .custom-control-label::before {
  display: none;
}

.single-product .quantity-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-product .quantity-container .subtitle {
  font-weight: bold;
  color: #666;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.single-product .swiper-pagination {
  bottom: 30px;
}

/**********************************************
    Start Edit Product Page 
**********************************************/
.products-pg .inner {
  border: 1px solid #eee;
  padding: 15px 15px 35px 15px;
  border-radius: 15px;
}

.products-pg .filter-wrapper {
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 15px;
}

.products-pg .filter-wrapper .title {
  font-weight: bold;
  color: #011132;
}

.products-pg .filter-wrapper .title small {
  color: #777;
}

.products-pg .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.products-pg .nav .nav-link {
  padding: .8rem 2rem;
  border-radius: 20px;
  border: 1px solid #eee;
  font-weight: bold;
  color: #777;
  margin: 0 5px;
  font-size: 14px;
}

.products-pg .nav .nav-link.active {
  background-color: #B39465;
  color: #fff;
}

/* Start Edit Modal */
.modal-content {
  border-radius: 45px;
  padding: 25px;
}

.modal-content button.close {
  text-align: end;
}

.modal-content .modal-footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-content .modal-footer .btn-secondary {
  border-radius: 15px;
  width: 100px;
  height: 45px;
}

/**********************************************
    Start Edit Dark Theme 
**********************************************/
.themeToggler {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggler .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.themeToggler .slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
  background: white url("https://i.ibb.co/FxzBYR9/night.png");
  background-repeat: no-repeat;
  background-position: center;
}

.themeToggler input:checked + .slider {
  background-color: #C0986C;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #C0986C;
          box-shadow: 0 0 1px #C0986C;
}

.themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  background: white url("https://i.ibb.co/7JfqXxB/sunny.png");
  background-repeat: no-repeat;
  background-position: center;
}

.themeToggler .slider.round {
  border-radius: 34px;
}

.themeToggler .slider.round:before {
  border-radius: 50%;
}
/*# sourceMappingURL=style.css.map */