@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

:focus, button:focus {
  outline: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

::-moz-selection {
  color: #fff;
  background: #84562A;
}

::selection {
  color: #fff;
  background: #84562A;
}

body {
  background: #F6F6F6;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

.nav-up {
  top: -54px !important;
  position: fixed;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.nav-down {
  top: 0px;
}

header {
  width: 100%;
  background: #FFF;
}

header .first-sec {
  width: 100%;
  border-bottom: 1px solid #F6F6F6;
  padding: 10px 0px;
}

header .first-sec .logo-sec {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .first-sec .left-side {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .first-sec .left-side .logo {
  width: 108px;
}

header .first-sec .left-side .logo img {
  width: 100%;
}

header .first-sec .left-side .slide-nav {
  padding-left: 50px;
}

header .first-sec .left-side .slide-nav .nav-btn {
  padding: 5px;
  cursor: pointer;
}

header .first-sec .right-side {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

header .first-sec .right-side .search {
  position: relative;
}

header .first-sec .right-side .search .text-field {
  width: 200px;
  height: 33px;
  border: 1px solid #D8D8D8;
  border-radius: 25px;
  padding: 0px 20px 0px 15px;
  font-size: 16px;
}

header .first-sec .right-side .search .search-btn {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background-color: #84562A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

header .first-sec .right-side .search .search-btn:hover {
  background-color: #222222;
}

header .first-sec .right-side .login-sec {
  padding-left: 15px;
  padding-right: 15px;
}

header .first-sec .right-side .login-sec .before-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

header .first-sec .right-side .login-sec .before-login .icon {
  width: 33px;
  height: 33px;
  background-color: #84562A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

header .first-sec .right-side .login-sec .before-login .text-login {
  padding-left: 8px;
  font-weight: 500;
}

header .first-sec .right-side .cart {
  background-color: #84562A;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 25px;
}

header .first-sec .right-side .cart a {
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .first-sec .right-side .cart .icon {
  padding: 0px 5px 0px 10px;
}

header .first-sec .right-side .cart .count {
  font-weight: 500;
  color: #FFF;
  padding: 0 10px 0 0px;
}

header .menu-sec {
  width: 100%;
}

header .menu-sec .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .menu-sec .menu .navbar-nav a {
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 20px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  font-size: 18px;
}

header .menu-sec .menu .navbar-nav a:hover {
  color: #84562A;
  font-weight: 700;
}

header .menu-sec .menu .navbar-nav .active {
  color: #84562A;
  font-weight: 700;
}

header .modal-header {
  background-color: #ffead6;
  position: relative;
  display: inline-block;
  width: 100%;
}

header .modal-header h4 {
  text-align: center;
  text-transform: uppercase;
}

header .modal-header .btn-close {
  position: absolute;
  right: 18px;
  top: 25px;
}

header .modal-body {
  padding: 20px;
}

header .modal-body p {
  text-align: center;
}

header .modal-body .form-label {
  font-size: 16px;
  margin-bottom: 2px;
}

header .modal-body .form-label span {
  color: #F80000;
}

header .modal-body .form-control {
  height: 53px;
  border-radius: 0;
}

header .modal-body a {
  color: #222;
}

header .modal-body .signin {
  width: 100%;
  height: 53px;
  border: none;
  background-color: #84562A;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

header .modal-body .signin:hover {
  background-color: #a3560d;
}

header .modal-body .new-account {
  width: 100%;
  height: 53px;
  border: none;
  background-color: #222222;
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  display: block;
  text-align: center;
  line-height: 53px;
}

header .modal-body .new-account:hover {
  background-color: #3c3c3c;
}

header .modal-body .or {
  text-align: center;
  font-size: 18px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  background-color: #84562A;
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 30px;
}

.sidenav .closebtn {
  position: absolute;
  right: 18px;
  top: 12px;
  cursor: pointer;
}

.sidenav ul {
  margin: 0;
  padding: 20px;
  list-style: none;
}

.sidenav ul li {
  width: 100%;
  border-bottom: 1px dashed #b58558;
}

.sidenav ul li a {
  color: #FFF;
  padding: 8px 0px;
  display: block;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.sidenav ul li a:hover {
  padding-left: 15px;
  background-color: #b58558;
}

.sidenav .before-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 20px 20px 15px 20px;
  border-bottom: 1px solid #b58558;
  display: none;
}

.sidenav .before-login .icon {
  width: 33px;
  height: 33px;
  background-color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.sidenav .before-login .icon img {
  -webkit-filter: brightness(0) invert(0);
          filter: brightness(0) invert(0);
}

.sidenav .before-login .text-login {
  padding-left: 8px;
  font-weight: 500;
  color: #FFF;
}

#main {
  -webkit-transition: margin-left .5s;
  transition: margin-left .5s;
}

#reset {
  display: none;
}

.forgot-pass {
  text-align: left !important;
}

.forgot-pass span {
  cursor: pointer;
}

.whiteHeader {
  top: 0px;
  -webkit-box-shadow: 0px 0 20px -1px #0000001a;
          box-shadow: 0px 0 20px -1px #0000001a;
  background: #FFF;
}

.whiteHeader .menu .navbar-brand {
  padding: 4px;
  background: transparent;
}

.whiteHeader .navbar-collapse .nav-link {
  color: #222;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.whiteHeader .navbar-collapse .nav-link:hover {
  color: #84562A;
}

.nav-up .navbar-brand img {
  width: 180px;
}

.navbar-collapse .nav-link {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.navbar-collapse .nav-link:hover {
  color: #84562A;
}

.banner {
  width: 100%;
  padding: 15px;
}

.banner .carousel-item {
  /*padding: 160px 0px;*/
  padding: 0px 0px;
  background-position: center;
  background-size: cover;
}

.banner .banner-column {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 50s;
  animation-duration: 2.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  z-index: 9;
  min-height: 325px;
  display: table-cell;
}

.banner .banner-column h3 {
  color: #FFF;
  text-align: left;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 30px;
  text-shadow: 3px 6px 11px #000;
}

.banner .banner-column h4 {
  color: #FFF;
  text-align: left;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 55px;
  text-shadow: 3px 6px 11px #000;
}

.banner .banner-column p {
  font-size: 16px;
  text-align: left;
  color: #FFF;
  line-height: 23px;
  margin-bottom: 15px;
}

.banner .banner-column a {
  border: 1px solid #84562A;
  padding: 10px 20px;
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  color: #222;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  border-radius: 25px;
  background: #FFFF;
}

.banner .banner-column a:hover {
  background: #FFF;
  color: #222;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.banner .banner-column .fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

footer {
  width: 100%;
  background-color: #FFF;
}

footer .first-sec {
  width: 100%;
  padding-top: 20px;
}

footer .first-sec .f-logo {
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

footer .first-sec .f-cmn {
  width: 100%;
  padding: 20px;
}

footer .first-sec .f-cmn h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2A2A2A;
  margin-bottom: 10px;
}

footer .first-sec .f-cmn .f-media {
  width: 100%;
}

footer .first-sec .f-cmn .f-media a {
  width: 33px;
  height: 33px;
  border: 1px solid #737373;
  display: inline-block;
  border-radius: 50%;
  margin-right: 3px;
  color: #737373;
  text-align: center;
  line-height: 33px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

footer .first-sec .f-cmn .f-media a:hover {
  background-color: #84562A;
  color: #FFF;
  border-color: #84562A;
}

footer .first-sec .f-cmn ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .first-sec .f-cmn ul li {
  width: 100%;
  padding: 4px 0px;
}

footer .first-sec .f-cmn ul li a {
  color: #222;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

footer .first-sec .f-cmn ul li a:hover {
  color: #84562A;
}

footer .copyright {
  width: 100%;
  border-top: 1px solid #ebebeb;
  padding: 20px 0px;
}

footer .copyright .copyright-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .copyright .copyright-sec p {
  margin: 0;
}

footer .copyright .pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

footer .copyright .pay a {
  border: 1px solid #F2F2F2;
  margin-left: 2px;
  text-align: center;
}

.products-category {
  width: 100%;
  padding: 50px 0px;
}

.products-category h1 {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 10px;
}

.products-category .owl-dots {
  display: none;
}

.products-category .products-box {
  width: 100%;
  background-color: #FFF;
}

.products-category .products-box .p-image {
  width: 100%;
  overflow: hidden;
}

.products-category .products-box .p-image img {
  width: 100%;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.products-category .products-box:hover .p-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.products-category .products-box .p-txt {
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.products-category a .p-txt {
  color: #000;
}

.products-category .item {
  padding: 10px 8px;
}

.products-category .owl-carousel .owl-nav.disabled {
  display: block !important;
  top: -52px;
  position: absolute;
  right: 7px;
}

.products-category .owl-carousel .owl-nav {
  display: block !important;
  top: -52px;
  position: absolute;
  right: 7px;
}

.products-category .owl-prev {
  width: 40px;
  height: 40px;
  background: url(../images/prev.svg) no-repeat center !important;
  margin-right: 7px;
}

.products-category .owl-prev i {
  display: none;
}

.products-category .owl-next {
  width: 40px;
  height: 40px;
  background: url(../images/next.svg) no-repeat center !important;
}

.products-category .owl-next i {
  display: none;
}

.tag-sec {
  width: 100%;
  padding: 35px 0px;
  background-color: #FFF;
}

.tag-sec .tag-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tag-sec .tag-box .tag-icon {
  width: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tag-sec .tag-box .tag-txt {
  width: 100%;
  padding-left: 15px;
}

.tag-sec .tag-box .tag-txt h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.tag-sec .tag-box .tag-txt p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

.featured-products {
  width: 100%;
  padding: 50px 0px;
}

.featured-products h2 {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 10px;
}

.f-box {
  width: 100%;
  background-color: #FFF;
  -webkit-box-shadow: 0px 0px 20px #efefef;
          box-shadow: 0px 0px 20px #efefef;
}

.f-box .f-image {
  width: 100%;
  overflow: hidden;
}

.f-box .f-image img {
  width: 100%;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.f-box:hover .f-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.f-box .f-txt {
  width: 100%;
  padding: 20px;
}

.f-box .f-txt h5 {
  font-size: 20px;
  color: #0F0F0F;
  margin-bottom: 10px;
  font-weight: 600;
}

.f-box .f-txt h5 a {
  color: #0F0F0F;
}

.f-box .f-txt .price {
  width: 100%;
}

.f-box .f-txt .price p {
  font-size: 13px;
  color: #84562A;
  font-weight: 500;
  margin: 0px;
}

.f-box .f-txt .price h6 {
  font-size: 22px;
  color: #F67800;
  font-weight: 600;
  margin: 0;
}

.f-box .f-txt .price h6 span {
  font-size: 16px;
  color: #A5A5A5;
  font-weight: 500;
  text-decoration: line-through;
}

.f-box .f-txt .cart-btn {
  width: 100%;
  background-color: #FFF;
  border: 1px solid #84562A;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #84562A;
  margin-top: 10px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.f-box .f-txt .cart-btn:hover {
  background-color: #84562A;
  color: #FFF;
}

.newsletter {
  width: 100%;
  background-color: #FFC791;
  padding: 70px 0px;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  width: 430px;
  height: 184px;
  background: url(../images/mat1.png);
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.newsletter::after {
  content: '';
  position: absolute;
  width: 353px;
  height: 112px;
  background: url(../images/mat2.png) no-repeat;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.newsletter .container {
  z-index: 2;
  position: relative;
}

.newsletter h5 {
  text-align: center;
  font-size: 32px;
  color: #46280B;
  font-weight: 500;
  margin-bottom: 5px;
}

.newsletter p {
  font-size: 20px;
  text-align: center;
  color: #46280B;
}

.newsletter .txt-field {
  width: 50%;
  margin: auto;
  position: relative;
}

.newsletter .txt-field .txt {
  width: 100%;
  height: 60px;
  border: 1px solid #DC9A5A;
  padding: 10px 144px 10px 50px;
  background-image: url(../images/mail.svg);
  background-repeat: no-repeat;
  background-position: 14px 20px;
}

.newsletter .txt-field .get-btn {
  height: 60px;
  background-color: #84562A;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.newsletter .txt-field .get-btn:hover {
  background-color: #222222;
  color: #FFF;
}

.inner-banner {
  width: 100%;
  background-color: #EBC6A3;
  padding: 80px 0px;
}

.inner-banner h1 {
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.inner-banner nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.inner-banner nav .breadcrumb {
  margin: 0;
}

.inner-banner nav .breadcrumb li {
  color: #84562A;
}

.inner-banner nav .breadcrumb li::before {
  color: #84562A;
}

.inner-banner nav .breadcrumb a {
  color: #000;
}

.inner-sec {
  width: 100%;
}

.about-inner {
  width: 100%;
  padding: 50px 0px;
}

.about-inner .aboutimg {
  width: 100%;
}

.about-inner .aboutimg img {
  width: 100%;
  border-radius: 6px;
}

.about-inner .about-content {
  width: 100%;
}

.about-inner .about-content h3 {
  font-size: 30px;
  font-weight: 700;
}

.about-inner .about-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-inner .about-content ul li {
  background: url(../images/arrow-right.svg) no-repeat 0px 3px;
  padding-left: 29px;
  margin-bottom: 5px;
}

.customer-feedback {
  width: 100%;
  padding: 50px 0px;
  background-color: #E9E9E9;
}

.customer-feedback h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.customer-feedback .item {
  padding: 0 10px;
}

.customer-feedback .owl-nav, .customer-feedback .owl-dots {
  display: none;
}

.customer-feedback .feedback-box {
  background-color: #FFF;
  border-radius: 6px;
  padding: 15px;
}

.customer-feedback .feedback-box .rating {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.customer-feedback .feedback-box .rating .icons {
  width: 160px;
}

.customer-feedback .feedback-box .rating .icons i {
  color: #CFCFCF;
}

.customer-feedback .feedback-box .rating .icons .rate {
  color: #FCA800;
}

.customer-feedback .feedback-box .rating .rate-txt {
  width: 100%;
}

.customer-feedback .feedback-box .feedback-profile {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.customer-feedback .feedback-box .feedback-profile .pic {
  width: 38px;
  height: 38px;
  overflow: hidden;
  margin-right: 10px;
}

.customer-feedback .feedback-box .feedback-profile .pic img {
  width: 100%;
}

.customer-feedback .feedback-box .feedback-profile .name-txt {
  width: 100%;
}

.customer-feedback .feedback-box .feedback-profile .name-txt h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.customer-feedback .feedback-box .feedback-profile .name-txt h6 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #605F5F;
}

.contact-sec {
  width: 100%;
  padding: 50px 0px;
}

.contact-sec .contact-ifo h5 {
  font-size: 30px;
  font-weight: 600;
}

.contact-sec .contact-ifo .bg-color1 {
  background-color: #FFEAE5;
}

.contact-sec .contact-ifo .bg-color2 {
  background-color: #D3EFFF;
}

.contact-sec .contact-ifo .bg-color3 {
  background-color: #E7F2EC;
}

.contact-sec .contact-ifo .contact-box {
  width: 100%;
  height: 100%;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #FFF;
  -webkit-box-shadow: 2px 2px 10px #ebebeb;
          box-shadow: 2px 2px 10px #ebebeb;
}

.contact-sec .contact-ifo .contact-box img {
  margin-bottom: 15px;
}

.contact-sec .contact-ifo .contact-box h6 {
  font-size: 18px;
  font-weight: 700;
}

.contact-sec .contact-ifo .contact-box p {
  margin-bottom: 5px;
}

.contact-sec .contact-ifo .contact-box p a {
  color: #000;
}

.contact-sec .form-sec {
  width: 100%;
  padding: 30px;
  background-color: #FFF;
  border-radius: 6px;
  -webkit-box-shadow: 2px 2px 10px #ebebeb;
          box-shadow: 2px 2px 10px #ebebeb;
}

.contact-sec .form-sec h4 {
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.contact-sec .form-sec h4 span {
  border-bottom: 2px solid #D2761E;
  padding: 0 20px;
}

.contact-sec .form-sec .form-control {
  width: 100%;
  min-height: 64px;
  border: 1px solid #D4CFCF;
  font-weight: 600;
}

.contact-sec .form-sec .send-now {
  width: 100%;
  background-color: #222222;
  padding: 16px;
  color: #FFF;
  font-weight: 600;
  font-size: 20px;
  border: transparent;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.contact-sec .form-sec .send-now:hover {
  background-color: #84562A;
}

.cmn-txt-sec {
  width: 100%;
  padding: 50px 0px;
}

.cmn-txt-sec h4 {
  font-size: 24px;
  font-weight: 600;
}

.cmn-txt-sec ul {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}

.cmn-txt-sec ul li {
  background: url(../images/arrow-right.svg) no-repeat 0px 3px;
  padding-left: 29px;
  margin-bottom: 5px;
}

.cmn-txt-sec #accordion .card {
  margin-bottom: 4px;
  border: none;
}

.cmn-txt-sec #accordion .card .card-header {
  background-color: #FFF;
  border-radius: 0px;
  border-bottom: none;
  padding: 0;
}

.cmn-txt-sec #accordion .card .card-header a {
  display: block;
  text-align: left;
  padding: 15px 50px 15px 20px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 0px;
  background-image: url(../images/plus-icon.svg);
  background-position: center right;
  background-repeat: no-repeat;
}

.cmn-txt-sec #accordion .card .card-header a[aria-expanded="true"] {
  background-color: #EBC6A3;
  background-image: url(../images/minus-icon.svg);
}

.products-sec {
  width: 100%;
  padding: 50px 0px;
}

.products-sec .category {
  width: 100%;
}

.products-sec .category h5 {
  background-color: #84562A;
  color: #FFF;
  margin: 0;
  padding: 15px 15px;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
}

.products-sec .category ul {
  margin: 0;
  padding: 10px 0px;
  background-color: #FFF;
  list-style: none;
}

.products-sec .category ul li {
  width: 100%;
  background-color: #FFF;
  padding: 0px 10px;
}

.products-sec .category ul li a {
  display: block;
  padding: 10px;
  border-bottom: 1px dashed #E8E8E8;
  color: #000;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  background-image: url(../images/arrow-right1.svg);
  background-position: center right;
  background-repeat: no-repeat;
}

.products-sec .category ul li a:hover {
  background-color: #ffdcba;
}

.products-sec .category ul li:last-child a {
  border-bottom: none;
}

.products-sec .adv {
  width: 100%;
  min-height: 150px;
  background-color: #FFC791;
  background-image: url(../images/bg-pic.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  padding: 20px;
}

.products-sec .adv h6 {
  font-size: 23px;
  color: #84562A;
  font-weight: 700;
}

.products-sec .sort-sec {
  width: 100%;
  background-color: #FFF;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.products-sec .sort-sec .result-count {
  font-weight: 500;
}

.products-sec .sort-sec .sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.products-sec .sort-sec .sort label {
  margin-right: 6px;
}

.products-sec .sort-sec .sort select {
  border: none;
  border-bottom: 1px solid #A5A2A2;
}

.products-sec .products-list {
  width: 100%;
}

.product-details {
  width: 100%;
  padding: 50px 0px;
}

.product-details .product-image-slider figure img {
  width: 100%;
}

.product-details .border-radius-10 {
  border-radius: 10px;
}

.product-details .slick-slide {
  overflow: hidden;
}

.product-details .slick-slide img {
  width: 100%;
  border-radius: 10px;
  width: 100%;
}

.product-details .slider-nav-thumbnails .slick-slide {
  padding: 5px;
}

.product-details .p-details {
  padding-left: 50px;
}

.product-details .p-details h2 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10;
}

.product-details .p-details .p-rating {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.product-details .p-details .p-rating .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  margin-right: 6px;
}

.product-details .p-details .p-rating .stars i {
  color: #CFCFCF;
  margin-right: 2px;
}

.product-details .p-details .p-rating .stars i.active {
  color: #FCA800;
}

.product-details .p-details .p-rating .ratio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7B7A7A;
}

.product-details .p-details .p-rate {
  font-size: 29px;
  font-weight: 600;
  color: #F67800;
  margin-bottom: 6px;
}

.product-details .p-details .p-rate span {
  font-size: 21px;
  color: #A5A5A5;
  font-weight: 500;
  text-decoration: line-through;
}

.product-details .p-details .availability {
  width: 100%;
  margin-bottom: 10px;
}

.product-details .p-details .availability span {
  margin-left: 6px;
}

.product-details .p-details .availability span.instock {
  color: #128400;
}

.product-details .p-details .availability span.stockout {
  color: #F20303;
}

.product-details .p-details .quantity-sec {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.product-details .p-details .quantity-sec .size label {
  width: 100%;
  margin-bottom: 6px;
  color: #7B7B7B;
}

.product-details .p-details .quantity-sec .size select {
  height: 42px;
  border-radius: 4px;
  padding: 0px 12px;
  border: 1px solid #cdcdcd;
}

.product-details .p-details .quantity-sec .quantity-box {
  margin-right: 20px;
}

.product-details .p-details .quantity-sec .quantity-box label {
  width: 100%;
  margin-bottom: 6px;
  color: #7B7B7B;
}

.product-details .p-details .quantity-sec .quantity-box input[type=number]::-webkit-inner-spin-button,
.product-details .p-details .quantity-sec .quantity-box input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-details .p-details .quantity-sec .quantity-box input[type=number] {
  -moz-appearance: textfield;
}

.product-details .p-details .quantity-sec .quantity-box .quantity {
  position: relative;
}

.product-details .p-details .quantity-sec .quantity-box .quantity input {
  width: 87px;
  height: 42px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  border: none;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
}

.product-details .p-details .quantity-sec .quantity-box .quantity input:focus {
  outline: 0;
}

.product-details .p-details .quantity-sec .quantity-box .quantity-nav {
  float: left;
  position: relative;
  height: 42px;
}

.product-details .p-details .quantity-sec .quantity-box .quantity-button {
  position: relative;
  cursor: pointer;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  width: 21px;
  text-align: center;
  color: #FFF;
  font-size: 13px;
  font-family: "FontAwesome" !important;
  line-height: 1.5;
  padding: 0;
  background: #84562A;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.product-details .p-details .quantity-sec .quantity-box .quantity-button:active {
  background: #EAEAEA;
}

.product-details .p-details .quantity-sec .quantity-box .quantity-button.quantity-up {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-family: "FontAwesome";
  border-radius: 0 4px 0 0;
  line-height: 1.6;
}

.product-details .p-details .quantity-sec .quantity-box .quantity-button.quantity-down {
  position: absolute;
  bottom: 0;
  height: 50%;
  font-family: "FontAwesome";
  border-radius: 0 0 4px 0;
}

.product-details .button-sec {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.product-details .button-sec .cart-btn {
  padding: 10px 20px;
  color: #FFF;
  background-color: #222222;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 10px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.product-details .button-sec .cart-btn:hover {
  background-color: #4c4c4c;
}

.product-details .button-sec .buy-btn {
  padding: 10px 20px;
  color: #FFF;
  background-color: #84562A;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.product-details .button-sec .buy-btn:hover {
  background-color: #b16318;
}

.product-details .pay-icons {
  width: 100%;
}

.product-details .pay-icons p {
  margin-bottom: 5px;
}

.product-details .pay-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-details .pay-icons ul li {
  border: 1px solid #F2F2F2;
  margin-left: 2px;
  text-align: center;
  background-color: #FFF;
}

.product-details .p-details-content {
  width: 100%;
  background: #FFF;
  padding: 20px;
}

.product-details .p-details-content .nav-link {
  text-transform: uppercase;
  color: #393636;
}

.product-details .p-details-content .nav-link:hover, .product-details .p-details-content .nav-link:focus {
  border: none;
}

.product-details .p-details-content .nav-link.active {
  color: #84562A;
  font-weight: 600;
  border: none;
  border-bottom: 2px solid #84562A;
}

.product-details .p-details-content .review-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-details .p-details-content .review-head .left-review-head {
  width: 100%;
}

.product-details .p-details-content .review-head .left-review-head h3 {
  font-size: 24px;
  font-weight: 600;
}

.product-details .p-details-content .review-head .left-review-head .r-sec {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .total-review {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .total-review span {
  font-size: 40px;
  color: #000;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .total-review i {
  color: #FCA800;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .stars {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .stars li {
  width: 36px;
  font-size: 16px;
  margin-bottom: 5px;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .stars li i {
  margin-left: 4px;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .line {
  width: 300px;
  margin: 0;
  padding: 0 20px;
  list-style: none;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .line li {
  width: 100%;
  height: 5px;
  background-color: #f0f0f0;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 24px;
  margin-top: 16px;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .line li span {
  display: block;
  height: 5px;
  border-radius: 25px;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .line li:nth-child(1) span {
  background: #388e3c;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .line li:nth-child(2) span {
  background: #388e3c;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .line li:nth-child(3) span {
  background: #388e3c;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .line li:nth-child(4) span {
  background: #ff9f00;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .line li:nth-child(5) span {
  background: #ff6161;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .review-count {
  width: 300px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-details .p-details-content .review-head .left-review-head .r-sec .r-sec1 .review-count li {
  font-size: 16px;
  padding: 2px 0px;
}

.product-details .p-details-content .review-head .add-review {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.product-details .p-details-content .review-head .add-review .review-button {
  width: auto;
  height: 45px;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #84562A;
  background: #FFF;
  font-weight: 600;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.product-details .p-details-content .review-head .add-review .review-button:hover {
  background: #84562A;
  color: #FFF;
}

.product-details .p-details-content .add-review-box {
  width: 100%;
  border-top: 1px solid #efefef;
  padding: 20px 0px;
}

.product-details .p-details-content .add-review-box .form-control {
  min-height: 50px;
}

.product-details .p-details-content .add-review-box .review-submit {
  background: #84562A;
  padding: 10px 20px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
}

.product-details .p-details-content .main-review {
  width: 100%;
  border-top: 1px solid #efefef;
  padding-top: 20px;
}

.product-details .p-details-content .main-review .review-box {
  width: 100%;
  border-bottom: 1px solid #efefef;
  padding: 10px 0px;
}

.product-details .p-details-content .main-review .review-box .review-auther {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.product-details .p-details-content .main-review .review-box .review-auther .pic {
  width: 50px;
  height: 50px;
  background-color: #efefef;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  margin-right: 10px;
}

.product-details .p-details-content .main-review .review-box .review-auther .rate i {
  color: #CFCFCF;
}

.product-details .p-details-content .main-review .review-box .review-auther .rate i.active {
  color: #FCA800;
}

.product-details .p-details-content .main-review .review-box .review-auther .rate span {
  margin-left: 10px;
}

.product-details .p-details-content .main-review .review-box .review-auther .auther-name {
  font-size: 20px;
  font-weight: 600;
}

.product-details .p-details-content .main-review .review-box .review-content {
  width: 100%;
}

.product-details .p-details-content .main-review .review-box .review-content h5 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-details .related-products {
  width: 100%;
  padding: 10px 0px;
}

.product-details .related-products h6 {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 10px;
}

.product-details .related-products .item {
  padding: 10px 8px;
}

.cart-sec {
  width: 100%;
  padding: 50px 0px;
}

.cart-sec .added-box {
  width: 100%;
  background: #FFF;
}

.cart-sec .added-box .link-shope {
  width: 100%;
  padding: 15px;
}

.cart-sec .added-box .link-shope .continue-shopping {
  padding: 12px 20px;
  background: #84562A;
  color: #FFF;
  display: inline-block;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.cart-sec .added-box .link-shope .continue-shopping:hover {
  background: #222222;
}

.cart-sec .added-box .table-sec {
  width: 100%;
  overflow: auto;
}

.cart-sec .added-box table {
  margin-bottom: 0px;
}

.cart-sec .added-box table thead th {
  color: #84562A;
  padding: 20px 15px;
  line-height: 19px;
}

.cart-sec .added-box table td {
  padding: 15px;
}

.cart-sec .added-box table .p-img {
  width: 100px;
}

.cart-sec .added-box table .p-img img {
  width: 120px;
}

.cart-sec .added-box table .p-name {
  width: 100%;
}

.cart-sec .added-box table .p-name h6 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.cart-sec .added-box table .p-name p {
  font-size: 14px;
  color: #8A8888;
  margin: 0;
}

.cart-sec .added-box table .p-rate {
  font-size: 18px;
  font-weight: 600;
  color: #F67800;
}

.cart-sec .added-box table .quantity-box {
  margin-right: 20px;
}

.cart-sec .added-box table .quantity-box label {
  width: 100%;
  margin-bottom: 6px;
  color: #7B7B7B;
}

.cart-sec .added-box table .quantity-box input[type=number]::-webkit-inner-spin-button,
.cart-sec .added-box table .quantity-box input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-sec .added-box table .quantity-box input[type=number] {
  -moz-appearance: textfield;
}

.cart-sec .added-box table .quantity-box .quantity {
  position: relative;
}

.cart-sec .added-box table .quantity-box .quantity input {
  width: 87px;
  height: 42px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  border: none;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
}

.cart-sec .added-box table .quantity-box .quantity input:focus {
  outline: 0;
}

.cart-sec .added-box table .quantity-box .quantity-nav {
  float: left;
  position: relative;
  height: 42px;
}

.cart-sec .added-box table .quantity-box .quantity-button {
  position: relative;
  cursor: pointer;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  width: 21px;
  text-align: center;
  color: #FFF;
  font-size: 13px;
  font-family: "FontAwesome" !important;
  line-height: 1.5;
  padding: 0;
  background: #84562A;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.cart-sec .added-box table .quantity-box .quantity-button:active {
  background: #EAEAEA;
}

.cart-sec .added-box table .quantity-box .quantity-button.quantity-up {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-family: "FontAwesome";
  border-radius: 0 4px 0 0;
  line-height: 1.6;
}

.cart-sec .added-box table .quantity-box .quantity-button.quantity-down {
  position: absolute;
  bottom: 0;
  height: 50%;
  font-family: "FontAwesome";
  border-radius: 0 0 4px 0;
}

.cart-sec .added-box table .delete {
  border: none;
  background: transparent;
  text-align: center;
}

.cart-sec .order-summary-box {
  width: 100%;
  background: #FFF;
}

.cart-sec .order-summary-box h5 {
  background: #84562A;
  color: #FFF;
  padding: 15px;
  font-weight: 600;
}

.cart-sec .order-summary-box .summary-sec {
  width: 100%;
  padding: 20px;
}

.cart-sec .order-summary-box .summary-sec .box-summary {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
}

.cart-sec .order-summary-box .summary-sec .box-summary .title {
  font-size: 18px;
  font-weight: 600;
}

.cart-sec .order-summary-box .summary-sec .box-summary .price {
  font-size: 18px;
  font-weight: 600;
}

.cart-sec .order-summary-box .summary-sec .box-summary .price .discount {
  color: #088404;
}

.cart-sec .order-summary-box .summary-sec .box-summary .size20 {
  font-size: 20px;
}

.cart-sec .order-summary-box .summary-sec .coupon {
  width: 100%;
  padding-bottom: 10px;
}

.cart-sec .order-summary-box .summary-sec .coupon label {
  margin-bottom: 3px;
}

.cart-sec .order-summary-box .summary-sec .coupon .txt-field {
  width: 100%;
  position: relative;
}

.cart-sec .order-summary-box .summary-sec .coupon .txt-field input {
  width: 100%;
  height: 50px;
  background: #FFF;
  border: 1px solid #D8D8D8;
  padding: 10px 92px 10px 10px;
}

.cart-sec .order-summary-box .summary-sec .coupon .txt-field .apply {
  width: 80px;
  height: 50px;
  background: #2D2D2D;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  color: #FFF;
  font-weight: 600;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.cart-sec .order-summary-box .summary-sec .coupon .txt-field .apply:hover {
  background: #84562A;
}

.cart-sec .order-summary-box .summary-sec .btn-checkout {
  width: 100%;
  background: #84562A;
  text-align: center;
  height: 50px;
  border: none;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.cart-sec .order-summary-box .summary-sec .btn-checkout:hover {
  background: #222222;
}

#header-cart .dropdown-menu li {  
  padding: 0 10px;
}

.register {
  width: 100%;
  padding: 50px 0px;
}

.register .new-acc {
  width: 100%;
  padding: 20px;
  background: #FFF;
  border-radius: 10px;
}

.register .new-acc h5 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.register .new-acc .form-control {
  min-height: 50px;
}

.register .new-acc .sub-btn {
  width: 150px;
  padding: 10px 20px;
  color: #FFF;
  background-color: #84562A;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.register .new-acc .sub-btn:hover {
  background-color: #b16318;
}

@media (max-width: 991px) {
  .navbar-nav .nav-item::after {
    display: none;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 15px;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-dark .navbar-nav .nav-link {
    font-size: 16px;
    text-align: center;
  }
  .navbar-toggler:focus,
  .navbar-toggler:hover {
    outline: none;
  }
  .nav-item {
    border-bottom: 1px dashed #e2e2e2;
  }
  .navbar-toggler {
    border: none;
    padding: 0px;
  }
  .navbar .navbar-collapse {
    background: #FFF;
    border-radius: 6px;
  }
  header .navbar-nav .nav-link.active, header .navbar-nav .show > .nav-link {
    background: #84562A;
    color: #FFF;
  }
  header .navbar-collapse .nav-link {
    color: #222;
  }
  .menu-sec, header .first-sec .right-side {
    display: none;
  }
  header .first-sec .left-side {
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
  }
  .sidenav .before-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .banner .carousel-item {
    padding: 70px 0px;
  }
  .banner .banner-column h4 {
    font-size: 35px;
  }
  .banner .banner-column h3 {
    font-size: 26px;
  }
  footer .first-sec .f-cmn {
    text-align: center;
  }
  footer .copyright .copyright-sec, footer .copyright .pay {
    text-align: center;
    display: block;
  }
  .tag-sec .tag-box {
    padding: 10px;
    border: 1px solid #cbcbcb;
    margin-bottom: 15px;
  }
  .newsletter::before, .newsletter::after {
    display: none;
  }
  .newsletter .txt-field {
    width: 100%;
  }
  .newsletter {
    padding: 30px 0px;
  }
  .about-inner .aboutimg {
    margin-bottom: 15px;
  }
  .contact-sec .contact-ifo h5, .contact-sec .contact-ifo p {
    text-align: center;
  }
  .product-details .p-details {
    padding-left: 0px;
  }
  .product-details .p-details-content .review-head {
    display: block;
  }
  .product-details .p-details-content .review-head .add-review .review-button {
    width: 100%;
  }
  .product-details .p-details-content .review-head .add-review {
    margin-bottom: 10px;
  }
  .product-details .p-details-content .review-head .left-review-head .r-sec {
    overflow: hidden;
  }
  .tab-content .tab-pane {
    padding: 0px;
  }
  .register .new-acc .sub-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .products-category, .featured-products {
    padding: 20px 0px;
  }
  .newsletter .txt-field .txt {
    margin-bottom: 10px;
    padding: 10px 10px 10px 50px;
  }
  .newsletter .txt-field .get-btn {
    width: 100%;
    position: relative;
  }
  .about-inner, .customer-feedback, .contact-sec, .cmn-txt-sec, .products-sec, .product-details, .cart-sec, .register {
    padding: 30px 0px;
  }
  .inner-banner {
    padding: 50px 0px;
  }
  .product-details .p-details-content .review-head .left-review-head .r-sec .total-review span {
    font-size: 26px;
  }
  .product-details .p-details-content .review-head .left-review-head .r-sec .total-review i {
    font-size: 13px;
  }
  .related-products .owl-nav, .related-products .owl-dots {
    display: none;
  }
}

@media (max-width: 480px) {
  #main {
    margin-left: 0px !important;
  }
  .banner .banner-column h4 {
    font-size: 30px;
  }
  .inner-banner {
    padding: 30px 0px;
  }
  .product-details .button-sec button {
    width: 50%;
  }
  .product-details .p-details-content .main-review .review-box .review-auther .rate span {
    margin-left: 0;
    width: 100%;
    display: block;
    font-size: 14px;
  }
  .product-details .related-products h6 {
    font-size: 20px;
    margin-bottom: 3px;
  }
}
/*# sourceMappingURL=main.css.map */