

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #22C4FF;
  text-decoration: none;
}

a:hover {
  color: #22C4FF;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #22C4FF;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ee8b7a;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #545454;
  padding: 10px 0;
  font-size: 14px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #22C4FF;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #22C4FF;
}

#topbar .social-links a {
  color: #bababa;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  border-left: 8px solid #22C4FF;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #545454;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #545454;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #22C4FF;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #22C4FF;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ec7f6d;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #545454;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #22C4FF;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #545454;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(59, 59, 59, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #545454;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #22C4FF;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #22C4FF;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  padding: 0;
/*  margin-bottom: -120px;*/
  position: relative;
  z-index: 1;
}

#hero .carousel-item {
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: center center;
}

#hero .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 120px;
}

#hero .carousel-content {
  text-align: center;
 
}

#hero h2 {
  color: white;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  
}

#hero h2 span {
  color: #22C4FF;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: white ;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  color: white;
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #22C4FF;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-bottom: 180px;
  opacity: 0.2;
}

#hero .carousel-indicators li.active {
  opacity: 1;
}
section#about {
    margin-top: 200px;
}
section#about {
    padding-bottom: 0px !important;
}
section#service {
    padding: 0vh 0vh !important;
}
.container.service.p-5 {
    max-width: 100%;
    padding: 90px 98px !important;
}
section#service .prata {
    margin-top: 0px !important;
}
a.btn.btn-outline-primary {
    padding: 2px 45px 12px 45px !important;
    height: 67px;
    line-height: 62px !important;
    font-size: 20px;
    border-radius: 10px !important;
}

a.btn.btn-outline-primary:hover {
        background: #fff !important;
    border-color: #24c5ff !important;
    color: #24c5ff;
    
}
section#reupholstery .container.mt-5 {
    margin: 0;
    max-width: 100%;
}
section#reupholstery .col-md-6 img {
    width: 100% !important;
}
section#reupholstery .content {
    padding-right: 66px;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #22C4FF;
  background: #22C4FF;
}
#hero .btn-get-started {
    padding: 2px 45px 12px 45px !important;
    height: 67px;
    line-height: 62px !important;
    font-size: 20px;
}
#hero .btn-get-started:hover {
    background: #fff !important;
    border-color: #fff !important;
}
.btn-outline-primary{
  border: 2px solid #22C4FF;
  background: hsl(196, 100%, 57%);
  color:white;
}
.label{
  padding: 7vh;
  background-color: white;
  color: black;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
}
.shop-page nav#pagination_link {
    max-width: 125px;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 45px;
}
.shop-page #pagination_link li.page-item span.page-link {
    border: none !important;
    color: #848484;
}
.shop-page #pagination_link li.page-item.active .page-link {
    background: #fff;
}
.shop-page .fresh-meat {
    margin-bottom: 50px;
}
.shop-page .featured__item__text {
    text-align: center;
    padding-top: 25px;
}
.shop-page .fresh-meat img {
    border-radius: 10px;
}
.container.bgimg {
    background-repeat: no-repeat;
    height: 300px !important;
    background-size: cover !important;
    background-position: center;
    vertical-align: middle;
}
.container.bgimg .text-light .col-md-4.mt-5 {
    margin-top: 115px !important;
/*    padding-left: 108px;*/
}
.container.bgimg .text-light .col-md-4.mt-5 h2 {
    font: normal normal normal 50px/68px Prata;
}

.container.bgimg li.breadcrumb-item a {
    color: #fff !important;
    padding-left: 5px;
    padding-right: 5px;
}

.Varnishing .row {
    display: block !important;
    max-width: 1200px;
    margin: 0 auto;
}

.Varnishing .content {
    width: 100%;
    padding-right: 0px !important;
    max-width: 900px;
    margin: 0 auto;
}

.about-page section#portfolio {
    padding-bottom: 80px !important;
    background-color: #EEEEEE;
}
.gallery-page section#portfolio {
    background-color: #fff;
    padding-top: 0px !important;
    padding-bottom: 40px !important;
}
.portfolio .portfolio-wrap img {
    width: 100%;
    height: 260px;
}
.gallery-page section#portfolio .work {
    background-color: #fff;
    padding-top: 10px !important;
}
.gallery-deco .work {
    padding-bottom: 52px !important;
}
.shadow {
    box-shadow: none !important;
}
.contactpage .contactus {
    padding-top: 80px;
    padding-bottom: 80px;
}
.portfolio .portfolio-wrap {
    border-radius: 10px;
}
.Types .row.text-white {
    max-width: 1100px;
    margin: 0 auto;
}

.Types .shadow {
    box-shadow: none !important;
}
section#portfolio .work .col-md-4.mt-4 {padding-top: 26px;}

.portfolio .portfolio-wrap {
    height: 260px;
}
.Varnishing {
    padding: 0px;
}

section#reupholstery {
    padding: 40px 0px;
}
.Varnishing {
    padding: 0px !important;
}
section#portfolio .container.work {
    padding: 40px 10px 60px 10px !important;
}

.varnishing_oldfurniture section#about img.img-fluid {
/*    height: 475px !important;*/
height: 100% !important;
    object-fit: contain;
}
section#view-cart {
    max-width: 1140px;
    margin: 0 auto;
}
#view-cart h2.main-title {
    font: normal normal bold 2.5rem/63px prata;
    letter-spacing: 0px;
    color: inherit;
    opacity: 1;
    text-transform: capitalize;
    margin-bottom: 25px;
}

#view-cart td h3 {
    font-family: 'Poppins';
    font-weight: 300;
    color: #252525;
}
#view-cart  .shopping-cart-box .table thead tr th {
    text-align: left;
    font: normal normal 500 16px/19px Poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    border-bottom: 1px solid #252525;
    padding: 10px 0;
    border-right: 20px solid #fff;
}
#view-cart .shopping-cart-box tbody, td, tfoot, th, thead, tr {
    border-color: transparent;
    border-style: solid;
    border-width: 0px;
}

#view-cart .discount-coupon p {
    text-align: left;
    font: normal normal 500 16px/19px Poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#view-cart .form_control {
    border: 1px solid #252525;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font: normal normal 500 20px/23px KaiTi;
    letter-spacing: 0px;
    color: #000;
    opacity: 1;
}
#view-cart .discount-coupon form input.btn, #view-cart .btn-outline-primary {
    min-width: 140px;
    background: transparent;
    color: #252525;
    border: 1px solid #252525;
    border-radius: 0px !important;
    font-family: 'Poppins';
}
#view-cart .btn_primary {
    border: 1px solid #252525;
    text-align: center;
    font: normal normal 500 18px/30px poppins;
    letter-spacing: 0px;
    opacity: 1;
}
#view-cart .payment-section {
    border: 1px solid #252525;
    padding: 10px 20px;
}

#view-cart .cart-title {
    text-align: left;
    font: normal normal bold 22px/28px prata;
    letter-spacing: 0px;
    color: #252525;
}
#view-cart .payment-section .delivery-method .form-check .form-check-input:checked {
    background: #252525;
    border-color: #252525;
}
#view-cart .payment-section .delivery-method .form-check .form-check-label {
    
    padding-left: 10px;
    font: normal normal 400 16px/19px Poppins;
    
}
#view-cart .form-check-input {
    width: 22px;
    height: 22px;
    border-color: #252525;
}
#view-cart a#checkoutbtn:hover {
    background-color: #d60000;
    color: #fff;
}
#view-cart .discount-coupon form input.btn:hover{
    background-color: #d60000;
    color: #fff;
}
#view-cart .delivery-method li {
    padding: 10px 0 10px 55px;
}
.about-page section#about {
    margin-top: 77px;
    margin-bottom: 77px;
}
section#about_sec {
    background: #eee;
    padding-top: 40px !important;
}
section#checkout {
    max-width: 1140px;
    margin: 0 auto;
}
#checkout h2.main-title {
    font: normal normal bold 2.5rem/63px prata;
    letter-spacing: 0px;
    color: inherit;
    opacity: 1;
    text-transform: capitalize;
    margin-bottom: 25px;
}

#checkout td h3 {
    font-family: 'Poppins';
    font-weight: 300;
    color: #252525;
}
#checkout  .shopping-cart-box .table thead tr th {
    text-align: left;
    font: normal normal 500 16px/19px Poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    border-bottom: 1px solid #252525;
    padding: 10px 0;
    border-right: 20px solid #fff;
}
#checkout .shopping-cart-box tbody, td, tfoot, th, thead, tr {
    border-color: transparent;
    border-style: solid;
    border-width: 0px;
}

#checkout .discount-coupon p {
    text-align: left;
    font: normal normal 500 16px/19px Poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#checkout .form_control {
    border: 1px solid #252525;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font: normal normal 500 20px/23px KaiTi;
    letter-spacing: 0px;
    color: #000;
    opacity: 1;
}
#checkout .discount-coupon form input.btn, #checkout .btn-outline-primary {
    min-width: 140px;
    background: transparent;
    color: #252525;
    border: 1px solid #252525;
    border-radius: 0px !important;
    font-family: 'Poppins';
}
#checkout .btn_primary {
    border: 1px solid #252525;
    text-align: center;
    font: normal normal 500 18px/30px poppins;
    letter-spacing: 0px;
    opacity: 1;
}
#checkout .payment-section {
    border: 1px solid #252525;
    padding: 10px 20px;
}

#checkout .cart-title {
    text-align: left;
    font: normal normal bold 22px/28px prata;
    letter-spacing: 0px;
    color: #252525;
}
#checkout .payment-section .delivery-method .form-check .form-check-input:checked {
    background: #252525;
    border-color: #252525;
}
#checkout .payment-section .delivery-method .form-check .form-check-label {
    
    padding-left: 10px;
    font: normal normal 400 16px/19px Poppins;
    
}
#checkout .form-check-input {
    width: 22px;
    height: 22px;
    border-color: #252525;
}
#checkout a#checkoutbtn:hover {
    background-color: #d60000;
    color: #fff;
}
#checkout .discount-coupon form input.btn:hover{
    background-color: #d60000;
    color: #fff;
}
#checkout .delivery-method li {
    padding: 10px 0 10px 55px;
}
#checkout .payment-section .address-card .fa {
    position: absolute;
    right: 15%;
    top: 50%;
    translate: -5% -50%;
    color: #750006;
    transition: 0.3s;
}
#checkout .payment-section .address-card {
    position: relative;
    cursor: poKaiTi;
}

#checkout .address-card p {
    padding-left: 10px;
    font: normal normal 300 16px/19px Poppins;
}
#checkout .row.justify-content-between {
    width: 100%;
}

/* modal-css */

.multiple-address .address-popup-card {
    padding: 20px 40px;
    background: #F5F5F5 0% 0% no-repeat padding-box;
    position: relative;
}
.multiple-address .label {
    border-radius: 0px !important;
    font: normal normal bold 1rem prata !important;
    background-color: #d60000;
    color: #fff !important;
    padding: 5px !important;
}
.multiple-address .add-address {
    padding: 20px;
    background: #F5F5F5 0% 0% no-repeat padding-box;
    text-align: center;
    font: normal normal 500 16px/19px poppins;
    letter-spacing: 0px;
    color: #7C7C7C;
    opacity: 1;
    display: block;
}

.multiple-address .address-popup-card span {
    text-align: left;
    font: normal normal 500 16px/19px Poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    padding: 10px 0;
}
.multiple-address .address-popup-card small{
    font: normal normal 400 13px/19px Poppins;
}
.multiple-address .address-popup-card .editbtn {
    text-align: left;
    font: normal normal 500 14px/18px KaiTi;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 9;
}

.multiple-address a.btn.btn-outline-primary.btn_primary {
    min-width: 130px;
    background: transparent;
    color: #252525;
    border: 1px solid #252525;
    border-radius: 0px !important;
    font-family: 'Poppins';
}

.multiple-address a.btn.btn-outline-primary.btn_primary:hover {
    background-color: #d60000;
    color: #fff;
}

.multiple-address .address-popup-card p {
    padding-left: 10px;
    font: normal normal 400 15px/19px Poppins;
}
#checkout .address-card button.btn.btn-primary {
    background: transparent !important;
    border: navajowhite !important;
    cursor: unset !important;
}
#addressModal {
    background: #4B4B4B;
}
section#all-order {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 33px;
}
#all-order .order-detail {
    position: relative;
    background: #d60000;
    padding: 50px;
    height: 100%;
}
#all-order .order-detail form .user-img .form-control {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    opacity: 0;
}
#all-order .order-detail form .user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
#all-order .order-detail form .user-img button {
    border: 0;
    border-radius: 20px;
    position: absolute;
    right: 0;
    bottom: 10px;
    background: #fff;
    color: #d60000;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
}
#all-order .order-detail form .user-img {
    position: relative;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    margin: 0 auto;
}
#all-order .order-detail form h4 {
    text-align: center;
    font: normal normal bold 30px/40px prata;
    letter-spacing: 0px;
    color: #fff;
    opacity: 1;
    padding-top: 30px;
}
#all-order h1.user-heading {
    font: normal normal bold 2.5rem/63px prata;
    letter-spacing: 0px;
    color: inherit;
    opacity: 1;
    text-transform: capitalize;
    margin-bottom: 25px;
}
#all-order .order-detail .profile-link ul li a {
    text-align: center;
    font: normal normal bold 18px/28px prata;
    letter-spacing: 0px;
    color: #d1d1d1;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

#all-order .order-detail .profile-link ul li .active, #all-order .order-detail .profile-link ul li a:hover {
    color: #fff;
}
#all-order .orders-inner {
    border: 1px solid #750006;
    padding: 50px 70px;
}
#all-order .orders-inner .orders-inner-title {
    text-align: left;
    font: normal normal bold 18px/25px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#all-order form label {
    text-align: left;
    font: normal normal 500 16px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#all-order .form_control {
    border: 1px solid #252525;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font: normal normal 400 18px/23px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#all-order .orders-inner .orders-inner-title a {
    text-align: left;
    font: normal normal 500 14px/19px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#all-order .order-history .all-orders {
    background: #d6000000 0% 0% no-repeat padding-box;
    border: 1px solid #d60000;
    padding: 25px;
}
#all-order .headingh1 {
    text-align: left;
    font: normal normal 500 18px/25px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    margin-bottom: 0;
}
#all-order .order-history .all-orders p {
    text-align: left;
    font: normal normal 500 15px/19px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#all-order .order-history .nav-link.active, #all-order .order-history .nav-link:hover {
    background: #d60000;
    color: #fff;
}
#all-order .order-history .nav-link {
    width: 100%;
    background: #79050669 0% 0% no-repeat padding-box;
    border-radius: 10px;
    opacity: 1;
    border: 0;
    text-align: center;
    font: normal normal 500 16px/30px poppins;
    letter-spacing: 0px;
    color: #fff;
    opacity: 1;
    padding: 5px 8px;
}
#all-order .order-history .all-orders .product-img {
    color: #252525;
}
#all-order .show-all {
    text-align: RIGHT;
    font: normal normal 500 14px/19px poppins;
    letter-spacing: 0px;
    color: #8D8D8D;
    opacity: 1;
}
section#user-edit-profile {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 33px;
}
#user-edit-profile .order-detail {
    position: relative;
    background: #d60000;
    padding: 50px;
    height: 100%;
}
#user-edit-profile .order-detail form .user-img .form-control {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    opacity: 0;
}
#user-edit-profile .order-detail form .user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
#user-edit-profile .order-detail form .user-img button {
    border: 0;
    border-radius: 20px;
    position: absolute;
    right: 0;
    bottom: 10px;
    background: #fff;
    color: #d60000;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
}
#user-edit-profile .orders-inner input.btn.btn_primary {
    background: #d60000;
    border: 1px solid #d60000;
    text-align: center;
    font: normal normal 500 18px/30px KaiTi;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    min-width: 200px;
    border-radius: unset !important;
}
#user-edit-profile .order-detail form .user-img {
    position: relative;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    margin: 0 auto;
}
#user-edit-profile .order-detail form h4 {
    text-align: center;
    font: normal normal bold 30px/40px prata;
    letter-spacing: 0px;
    color: #fff;
    opacity: 1;
    padding-top: 30px;
}
#user-edit-profile h1.user-heading {
    font: normal normal bold 2.5rem/63px prata;
    letter-spacing: 0px;
    color: inherit;
    opacity: 1;
    text-transform: capitalize;
    margin-bottom: 25px;
}
#user-edit-profile .order-detail .profile-link ul li a {
    text-align: center;
    font: normal normal bold 18px/28px prata;
    letter-spacing: 0px;
    color: #d1d1d1;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

#user-edit-profile .order-detail .profile-link ul li .active, #user-edit-profile .order-detail .profile-link ul li a:hover {
    color: #fff;
}
#user-edit-profile .orders-inner {
    border: 1px solid #750006;
    padding: 50px 70px;
}
#user-edit-profile .orders-inner .orders-inner-title {
    text-align: left;
    font: normal normal bold 18px/25px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-edit-profile form label {
    text-align: left;
    font: normal normal 500 16px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-edit-profile .form_control {
    border: 1px solid #252525;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font: normal normal 400 18px/23px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-edit-profile .orders-inner .orders-inner-title a {
    text-align: left;
    font: normal normal 500 14px/19px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}

section#user-profile {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 33px;
}
#user-profile .order-detail {
    position: relative;
    background: #d60000;
    padding: 50px;
    height: 100%;
}
#user-profile .order-detail form .user-img .form-control {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    opacity: 0;
}
#user-profile .order-detail form .user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
#user-profile .order-detail form .user-img button {
    border: 0;
    border-radius: 20px;
    position: absolute;
    right: 0;
    bottom: 10px;
    background: #fff;
    color: #d60000;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
}
#user-profile .order-detail form .user-img {
    position: relative;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    margin: 0 auto;
}
#user-profile .order-detail form h4 {
    text-align: center;
    font: normal normal bold 30px/40px prata;
    letter-spacing: 0px;
    color: #fff;
    opacity: 1;
    padding-top: 30px;
}
#user-profile h1.user-heading {
    font: normal normal bold 2.5rem/63px prata;
    letter-spacing: 0px;
    color: inherit;
    opacity: 1;
    text-transform: capitalize;
    margin-bottom: 25px;
}
#user-profile .order-detail .profile-link ul li a {
    text-align: center;
    font: normal normal bold 18px/28px prata;
    letter-spacing: 0px;
    color: #d1d1d1;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

#user-profile .order-detail .profile-link ul li .active, #user-profile .order-detail .profile-link ul li a:hover {
    color: #fff;
}
#user-profile .orders-inner {
    border: 1px solid #750006;
    padding: 50px 70px;
}
#user-profile .orders-inner .orders-inner-title {
    text-align: left;
    font: normal normal bold 18px/25px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-profile form label {
    text-align: left;
    font: normal normal 500 16px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-profile .form_control {
    border: 1px solid #252525;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font: normal normal 400 18px/23px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-profile .orders-inner .orders-inner-title a {
    text-align: left;
    font: normal normal 500 14px/19px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}

section#user-order-detail {
    max-width: 1140px;
    margin: 0 auto;
    padding-top: 33px;
}
#user-order-detail .order-detail {
    position: relative;
    background: #d60000;
    padding: 50px;
    height: 100%;
}
#user-order-detail .order-detail form .user-img .form-control {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    opacity: 0;
}
#user-order-detail .order-detail form .user-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
#user-order-detail .order-detail form .user-img button {
    border: 0;
    border-radius: 20px;
    position: absolute;
    right: 0;
    bottom: 10px;
    background: #fff;
    color: #d60000;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
}
#user-order-detail .order-detail form .user-img {
    position: relative;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    margin: 0 auto;
}
#user-order-detail .order-detail form h4 {
    text-align: center;
    font: normal normal bold 30px/40px prata;
    letter-spacing: 0px;
    color: #fff;
    opacity: 1;
    padding-top: 30px;
}
#user-order-detail h1.user-heading {
    font: normal normal bold 2.5rem/63px prata;
    letter-spacing: 0px;
    color: inherit;
    opacity: 1;
    text-transform: capitalize;
    margin-bottom: 25px;
}
#user-order-detail .order-detail .profile-link ul li a {
    text-align: center;
    font: normal normal bold 18px/28px prata;
    letter-spacing: 0px;
    color: #d1d1d1;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

#user-order-detail .order-detail .profile-link ul li .active, #user-order-detail .order-detail .profile-link ul li a:hover {
    color: #fff;
}
#user-order-detail .orders-inner {
    border: 1px solid #750006;
    padding: 50px 70px;
}
#user-order-detail .orders-inner .orders-inner-title {
    text-align: left;
    font: normal normal bold 18px/25px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-order-detail form label {
    text-align: left;
    font: normal normal 500 16px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-order-detail .form_control {
    border: 1px solid #252525;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font: normal normal 400 18px/23px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-order-detail .orders-inner .orders-inner-title a {
    text-align: left;
    font: normal normal 500 14px/19px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-order-detail .order-history .user-order-details {
    background: #d60000 0% 0% no-repeat padding-box;
    border: 1px solid #d60000;
    padding: 25px;
}
#user-order-detail .headingh1 {
    text-align: left;
    font: normal normal 500 16px/25px poppins;
    letter-spacing: 0px;
    color: #fff;
    opacity: 1;
    white-space: nowrap;
    margin-bottom: 0;
}
#user-order-detail td {
    vertical-align: middle;
}
#user-order-detail .name-section img {
    width: 60px;
    height: 60px;
}
#user-order-detail .order-history .user-order-details p {
    text-align: left;
    font: normal normal 500 15px/19px poppins;
    letter-spacing: 0px;
    color: #fff;
    opacity: 1;
}
#user-order-detail .order-history .nav-link.active, #user-order-detail .order-history .nav-link:hover {
    background: #d60000;
    color: #fff;
}
#user-order-detail .order-history .nav-link {
    width: 100%;
    background: #79050669 0% 0% no-repeat padding-box;
    border-radius: 10px;
    opacity: 1;
    border: 0;
    text-align: center;
    font: normal normal 500 16px/30px poppins;
    letter-spacing: 0px;
    color: #fff;
    opacity: 1;
    padding: 5px 8px;
}
#user-order-detail .order-history .user-order-details .product-img {
    color: #fff;
}
#user-order-detail .show-all {
    text-align: RIGHT;
    font: normal normal 500 14px/19px poppins;
    letter-spacing: 0px;
    color: #8D8D8D;
    opacity: 1;
}
#user-order-detail .order-status p {
    color: #d60000;
    font-weight: 400;
    font-family: 'Poppins';
}
#user-order-detail table.table {
    border-color: transparent;
    border-collapse: unset;
}
#user-order-detail p {
    color: #252525;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Poppins';
}

#user-order-detail td.price {
    color: #252525;
    font-size: 19px;
    font-weight: 700;
    white-space: nowrap;
}

.main-img img, .imgs img {
    width: 100%;
}

.imgs img {
    width: 93px;
    height: 95px;
    object-fit: cover;
    margin-bottom: 10px;
}

section#product-detail .content {
    display: flex;
    padding-bottom:0px !important;
}
.imgs {
    display: table-caption;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 3px;
    width: 120px;
    overflow-y: scroll;
    height: 415px;
    padding: 5px;
    overflow-x: hidden;
}

/* fade-in animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}
.main-img {
    width: 100%;
}

.main-img img {
    width: 415px;
    margin-left: 10px;
    height: 415px;
    object-fit: cover;
    border-radius: 10px;
}
button.single_add_to_cart_button.button {
        background-color: #22C4FF;
    color: #fff;
    border: navajowhite;
    font-size: 19px;
    border-radius: 9px;
    width: 210px;
    height: 60px;
}
.price strong {
    font-size: 30px;
    line-height: 35px;
    color: #252525;
    font-family: 'Poppins';
    font-weight: 600;
}
.product-wrapper h1.prata {
    color: #252525 !important;
}
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: rgb(90 90 90 / 0%);
}
::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}
.product-wrapper {
    margin-left: 32px;
}
.related-product .carousel{
  width:100%;
  margin:0px auto;
  max-width: 1200px;
}
.slick-slide{
  margin:10px;
}
.slick-slide img{
  width: 100%;
    height: 280px;
    margin: unset;
    object-fit: cover;
    border-radius: 10px;
  
}
.wrapper .slick-dots li button:before {
  font-size:20px;
  color:white;
}
button.slick-prev.slick-arrow:after {
    content: '❮' !important;
    color: #a8a5a5;
    font-size: 26px;
}

button.slick-prev.slick-arrow {
    background-color: transparent;
    border: none;
    color: transparent;
    width: 20px;
    position: absolute;
    left: -96px;
    top: 140px;
}

button.slick-next.slick-arrow {
    background-color: transparent;
    border: none;
    color: transparent;
    width: 20px;
    position: absolute;
    right: 2px;
    top: 140px;
}
button.slick-next.slick-arrow:after {
     content: '❯' !important;
    color: #a8a5a5;
    font-size: 26px;
}
section.related-product {
    background: #EEEEEE;
    padding-top: 80px;
}
.product-price-slider {
    text-align: center;
}
.product-price-slider {
    text-align: center;
}

.product-name-slider h1 {
    font-size: 18px;
    line-height: 30px;
    color: #252525;
    padding-top: 12px;
    margin-bottom: 0px;
}

.product-price-slider strong {
    font-size: 18px;
    color: #252525;
}

section.related-product h2 {
    font-size: 2.5rem;
}
.p-category h5 {
    font-size: 18px;
    line-height: 28px;
}
.related-product .wrapper {
    max-width: 1460px;
    margin: 0 auto;
}
 div#crt-modal-open {
    top: 40% ;
}
div#crt-modal-open h5 {
    text-align: left;
    font: normal normal 500 19px/30px poppins;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}

div#crt-modal-open h4 {
    text-align: left;
    font: normal normal 500 18px/30px poppins;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}
div#crt-modal-open h2 {
    text-align: center;
    font: normal normal bold 25px/30px prata;
    letter-spacing: 0px;
    color: #343434;
    opacity: 1;
    margin-bottom: 15px;
    float: left;
    width: 100%;
}
div#crt-modal-open button.btn-close {
    background-color: red;
    opacity: 1;
    color: #fff;
    border-radius: 50%;
}
div#crt-modal-open .modal-header {
    border: unset !important;
}
div#crt-modal-open .modal-content {
    background-color: transparent !important;
    border-color: transparent;
}
div#crt-modal-open .modal-body {
    background-color: #fff;
    border-radius: 10px;
}
div#crt-modal-open button.btn-close {
    position: absolute;
    right: 0;
    top: 28px;
    z-index: 9;
}

section#product-detail button.single_add_to_cart_button.button:hover {
    background-color: #fff;
    color: #22C4FF;
    border: 1px solid #22C4FF;
}
section#product-detail .input-group {
    border-bottom: 1px solid #22C4FF;
}
section#product-detail .input-group button.btn.btn-outline-secondary {
    border: unset;
    color: #22C4FF;
    font-size: 14px;
    font-weight: 800;
}
section#product-detail input#qty {
    border: unset;
    padding: 0px;
}
section#product-detail .input-group button.btn.btn-outline-secondary:hover {
    background-color: transparent;
}
section#product-detail button.btn.btn-outline-secondary[onclick="increaseQty()"] {
    margin-left: -18px !important;
}


section#product-detail button.single_add_to_cart_button.button:hover {
    background-color: #fff;
    color: #22C4FF;
    border: 1px solid #22C4FF;
}
section#product-detail .input-group {
    border-bottom: 2px solid #22C4FF;
}
section#product-detail .input-group button.btn.btn-outline-secondary {
    border: unset;
    color: #22C4FF;
    font-size: 14px;
    font-weight: 800;
}
section#product-detail input#qty {
    border: unset;
    padding: 0px;
}
section#product-detail .input-group button.btn.btn-outline-secondary:hover {
    background-color: transparent;
}
section#product-detail button.btn.btn-outline-secondary[onclick="increaseQty()"] {
    margin-left: -18px !important;
}
#product-detail .quantity {
    display: flex;
    width: 41% !important;
}
#product-detail .quantity-txt p {
    margin-bottom: 0px;
    margin-right: 42px;
    margin-top: 4px;
    font-size: 17px;
    line-height: 28px;
    font-family: 'Poppins';
    color: #848484;
}

.whatsapp-img {
    position: fixed;
    right: 15px;
    bottom: 80px;
    z-index: 999;
}
div#crt-modal-open .modal-body img {
    width: 100%;
    height: 203px;
    object-fit: cover;
}
div#crt-modal-open .modal-body {
    border-radius: 50px !important;
}
div#crt-modal-open .modal-dialog {
    max-width: 670px !important;
    /* width: 100%; */
}
div#crt-modal-open .single-product-cart a {
    height: 43px;
    padding-top: 10px;
    font-weight: 600;
}
div#crt-modal-open button.btn-close {
    right: -7px !important;
    top: 28px !important;
}
div#crt-modal-open {
    top: 30% !important;
}

.cart-close
{
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
}

.container.bgimg {
    width: 100%;
    max-width: 100%;
}

#user-login input.form_control {
    border: 1px solid #252525;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font: normal normal 400 18px/23px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
#user-login form label {
    font: normal normal 500 16px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    
    display: block;
}

#user-login h2 {
    font: normal normal bold 2.5rem/63px prata;
    letter-spacing: 0px;
    color: inherit;
    opacity: 1;
    text-transform: capitalize;
    margin-top: 25px;
}

#user-login .login-form {
    padding: 100px 0px;
    max-width: 500px;
    margin: 0 auto;
}

#user-login input#check1 {
    border: 1px solid #252525;
}

#user-login a.forgot-text {
    text-align: right !important;
    font: normal normal 500 13px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    text-decoration: underline !important;
    opacity: 1;
    float: right;
}

#user-login .nw-account a {
    text-align: center;
    font: normal normal 500 14px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    display: block;
    margin-left: 59px;
}

#user-login  label.form-check-label {
    text-align: left !important;
    font: normal normal 500 13px/20px poppins !important;
}
#user-login .has-icon .fa {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #252525;
}
#user-login .has-icon {
    position: relative;
}

#user-login .form_group {
    margin-left: 23px;
}
#user-login button.btn.btn_primary {
    background: #d60000;
    border: 1px solid #d60000;
    text-align: center;
    font: normal normal 500 18px/30px poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    min-width: 200px;
    border-radius: unset !important;
    margin-left: 51px;
}
section#user-login {
    max-width: 1200px;
    margin: 0 auto;
}

#user-registraion input.form_control {
    border: 1px solid #252525;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font: normal normal 400 18px/23px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
.Re-type {
    padding-top: 13px;
}
#user-registraion form label {
    font: normal normal 500 16px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    
    display: block;
}

#user-registraion h2 {
    font: normal normal bold 2.5rem/63px prata;
    letter-spacing: 0px;
    color: inherit;
    opacity: 1;
    text-transform: capitalize;
    margin-top: 25px;
}

#user-registraion .login-form {
    padding: 100px 0px;
    max-width: 500px;
    margin: 0 auto;
}

#user-registraion input#check1 {
    border: 1px solid #252525;
}

#user-registraion a.forgot-text {
    text-align: right !important;
    font: normal normal 500 13px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    text-decoration: underline !important;
    opacity: 1;
    float: right;
}

#user-registraion .nw-account a {
    text-align: center;
    font: normal normal 500 14px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    display: block;
    margin-left: 51px;
}

#user-registraion  label.form-check-label {
    text-align: left !important;
    font: normal normal 500 13px/20px poppins !important;
}
#user-registraion .has-icon .fa {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #252525;
}
#user-registraion .has-icon {
    position: relative;
}

#user-registraion .form_group {
    margin-left: 23px;
}
#user-registraion  button.btn.btn_primary {
    background: #d60000;
    border: 1px solid #d60000;
    text-align: center;
    font: normal normal 500 18px/30px poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    min-width: 200px;
    border-radius: unset !important;
    margin-left: 43px;
}
#user-registraion .guest-text {
    margin-left: 71px;
    color: #252525;
}
section#user-registraion {
    max-width: 1200px;
    margin: 0 auto;
}
#forgetPassword input.form_control {
    border: 1px solid #252525;
    padding: 10px 15px;
    width: 100%;
    text-align: left;
    font: normal normal 400 18px/23px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
}
.Re-type {
    padding-top: 13px;
}
#forgetPassword form label {
    font: normal normal 500 16px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    text-align: left;
    display: block;
}

#forgetPassword h2 {
    font: normal normal bold 2.5rem/63px prata;
    letter-spacing: 0px;
    color: inherit;
    opacity: 1;
    text-transform: capitalize;
    margin-top: 25px;
    text-align: center;
}
#forgetPassword .login-form a {
    color: #252525;
    font-weight: 500;
    text-decoration: underline !important;
}
#forgetPassword .login-form {
    padding: 100px 0px;
    max-width: 500px;
    margin: 0 auto;
}

#forgetPassword input#check1 {
    border: 1px solid #252525;
}

#forgetPassword a.forgot-text {
    text-align: right !important;
    font: normal normal 500 13px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    text-decoration: underline !important;
    opacity: 1;
    float: right;
}

#forgetPassword .nw-account a {
    text-align: center;
    font: normal normal 500 14px/20px poppins;
    letter-spacing: 0px;
    color: #252525;
    opacity: 1;
    display: block;
    margin-left: 51px;
}

#forgetPassword  label.form-check-label {
    text-align: left !important;
    font: normal normal 500 13px/20px poppins !important;
}
#forgetPassword .has-icon .fa {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #252525;
}
#forgetPassword .has-icon {
    position: relative;
}

#forgetPassword .form_group {
    margin-left: 23px;
}
#forgetPassword  button.btn.btn_primary {
    background: #d60000;
    border: 1px solid #d60000;
    text-align: center;
    font: normal normal 500 18px/30px poppins;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    min-width: 200px;
    border-radius: unset !important;
    margin-left: 43px;
}
#forgetPassword .guest-text {
    margin-left: 71px;
    color: #252525;
}
section#forgetPassword {
    max-width: 1200px;
    margin: 0 auto;
}
.shop-page section.featured.spad .page-item a {
    background: transparent;
    border: none;
    font: normal normal normal 18px/27px Poppins;
    color: #848484 !important;
}
.shop-page section.featured.spad a.active.page-link {
    background: transparent;
    border: none;
    color: #D60000 !important;
    font: normal normal normal 18px/39px Poppins;
    padding-bottom: 0px;
}
.shop-page section.featured.spad .category {
    height: auto;
}
.shop-page section.featured.spad {
    padding-bottom: 0px;
}

.shop-page section.featured.spad .container {
    max-width: 100%;
}
.shop-page section#breadcrumbs {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.shop-page section.featured.spad .container .col-md-9 {
    max-width: 780px;
    margin: 90px auto 35px auto;
}

/* footer-contact */

.container.contactus {
    max-width: 100%;
}
.container.contactus .row {
    max-width: 1150px;
    margin: 0 auto;
}

/* end */

/* main-banner */

.container.bgimg {
    max-width: 100%;
}

/* end */
@media screen and (min-width: 1920px) {
 .label{
  padding:5vh;
 }

}
.service{
  background-color: #EEEEEE;
}

#service{
  padding:15vh;
}
.our_service {
    text-align: center;
}
.service-block .row .col-md-4:nth-child(2) {
    position: relative;
    top: 23px;
}
.service-block .row.our-ser:nth-child(1) .col-md-4:nth-child(3) {
    position: relative;
    top: -18px;
}
.service-block .row.our-ser:nth-child(2) .col-md-4:nth-child(3) {
    position: relative;
    top: 58px;
}
.service-block {
    margin: 0 auto;
    max-width: 895px;
}
.our_service img{
  height: 100%;
    /* left: 60px; */
    top: 40px;
    position: relative;
    object-fit: contain;
    max-width: 151px;
    margin: 0 auto;
}
.container.bgimg .row.text-light {
    text-align: center;
    padding-top: 65px;
}
.breadcrumbs ol {
    max-width: 202px;
    margin: 0 auto !important;
    width: 100%;
}
.breadcrumbs ol {
    max-width: 340px !important;
}
 section#about {
    margin-top: 70px;
    margin-bottom: 70px;
}
 .owl-2-style .owl-nav {
    display: block !important;
}

 button.owl-prev {
    position: absolute;
    left: -21px;
    font-size: 50px !important;
    top: -30px;
    bottom: 0;
    font-weight: 200 !important;
     color: #737373 !important;
}
.Our-Materials .site-section.bg-left-half.mb-5 {
    padding: 36px 0px 57px 0px !important;
}
button.owl-next {
    position: absolute;
    right: -21px;
    font-size: 50px !important;
    top: -30px;
    bottom: 0;
    font-weight: 200 !important;
    color: #737373 !important;
}
.about-page .breadcrumbs ol {
    max-width: 126px !important;
}
.restoration_offurniture .breadcrumbs ol {
    max-width: 351px !important;
}
.breadcrumbs ol li+li {
    white-space: nowrap;
}
.ourworklabel{
  height: 7rem;
  padding-top:39px;
  background-color: white;
  color: black;
  font-weight: bold;
  border-radius: 10px;
  text-align: center;
  font-size: 13px;
}
.contactus{
  background-color: #22C4FF;
}
hr.hr {
  border: 1px solid white;
}
.category{
  background-color: #EEEEEE;
}
.our_work img{
  height: 80px;
  margin-left: 25px;
  top:20px;
  position: relative;
  /* z-index: 1; */
}
.work{
  background-color: #EEEEEE;
}

#hero .btn-get-started:hover {
  background: transparent;
  color: #22C4FF;
  text-decoration: none;
}
.bg-primary{
  background-color: #22C4FF !important;
}
.contactus{
  color:white;
  padding:30px;
  background-color: #22C4FF !important;
}

.rem_img{
  display:none !important;
}
@media (max-height: 768px),
(max-width: 1200px) {
  #hero {
    margin-bottom: 0px;
  }
}
.about_sec {
  background-color: #EEEEEE;
  padding:40px;
  
}
.about_sec h5{
  font-weight: bold;
}
  #hero .carousel-container {
    padding-bottom: 0;
  }

  #hero .carousel-indicators li {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 90vh;
  }

  #hero .carousel-item {
    height: 90vh;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0 0 80px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.prata{
  font-family: 'Prata', serif;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #22C4FF;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0px 0 20px 0 !important;
  /* background: #f7f7f7; */
  /* border-bottom: 1px solid #ededed; */
  margin-bottom: 40px;
}
section#breadcrumbs {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
#user-login a.guest-text {
    margin-left: 15px;
}
.breadcrumbs h2 {
  font-size: 50px;
  font-weight: 700;
  color:white;
}

.breadcrumbs ol {
  display: flex;
/*  flex-wrap: wrap;*/
  list-style: none;
  padding: 0 0 5px 0;
  margin: 0;
  font-size: 14px;
  color:white;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: white;
  content: "/";
}

/*--------------------------------------------------------------
# Featured
--------------------------------------------------------------*/
.featured {
  position: relative;
  z-index: 2;
}

.featured .icon-box {
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #fff;
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.featured .icon-box i {
  color: #22C4FF;
  font-size: 42px;
  margin-bottom: 15px;
  display: block;
  line-height: 0;
}

.featured .icon-box h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured .icon-box h3 a {
  color: #545454;
  transition: 0.3s;
}

.featured .icon-box p {
  color: #545454;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured .icon-box:hover {
  background: #22C4FF;
}

.featured .icon-box:hover i,
.featured .icon-box:hover h3 a,
.featured .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #545454;
}

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

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #22C4FF;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ededed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #22C4FF;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(233, 107, 86, 0.15);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: -1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #545454;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #22C4FF;
  border-color: #22C4FF;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #22C4FF;
}

.services .icon-box:hover .icon::before {
  background: rgba(255, 255, 255, 0.3);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #22C4FF;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #22C4FF;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #22C4FF;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #545454;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7a7a7a;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #a1a1a1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: white;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #545454;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #22C4FF;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 62px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #545454;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e0e0e0;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #22C4FF;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 12px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 4px 8px 4px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  background: #f2f2f2;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #22C4FF;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(84, 84, 84, 0.6);
}
/* 
:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 90), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  z-index: 1;
  position: absolute;
} */

.reuph_type1:hover{
  position: relative;
  transition: all ease-in-out 0.1s;
  box-shadow: inset 0 0 130px 130px rgba(0,0,0,0.3);
}
.reuph_type2:hover{
  position: relative;
  transition: all ease-in-out 0.1s;
  box-shadow: inset 0 0 130px 130px rgba(0,0,0,0.3);
}
.reuph_type3:hover{
  position: relative;
  transition: all ease-in-out 0.1s;
  box-shadow: inset 0 0 130px 130px rgba(0,0,0,0.3);
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #22C4FF;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #22C4FF;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #22C4FF;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(84, 84, 84, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #22C4FF;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #22C4FF;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  background: #545454;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: #22C4FF;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .buy-btn {
  background: #22C4FF;
}

.pricing .featured .buy-btn:hover {
  background: #ee8b7a;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }

  #view-cart .discount-coupon form input.btn, #view-cart .btn-outline-primary {
    min-width: 90px !important;
    font-size: 14px;
}

section#view-cart {
    padding-left: 10px;
}

#view-cart .shopping-cart-box .table thead tr th {
    font: normal normal 500 13px/19px Poppins !important;
}

#view-cart .discount-coupon.mb-3.mb-md-0 {
    margin: 0px !important;
}

#view-cart form.row {
    width: 100%;
}
#view-cart .table-responsive .table thead tr th {
    white-space: nowrap;
}
#view-cart .row.justify-content-between.mb-4 {
        width: 100% !important;
}
#checkout .discount-coupon form input.btn, #checkout .btn-outline-primary {
    min-width: 90px !important;
    font-size: 14px;
}
section#checkout {
    padding-left: 10px;
}
#checkout .shopping-cart-box .table thead tr th {
    font: normal normal 500 13px/19px Poppins !important;
}
#checkout .discount-coupon.mb-3.mb-md-0 {
    margin: 0px !important;
}
#checkout form.row {
    width: 100%;
}
#checkout .table-responsive .table thead tr th {
    white-space: nowrap;
}
#checkout .row.justify-content-between.mb-4 {
        width: 100% !important;
}
#checkout .name-section h5.headingh1.mb-0.text-dark {
    font-size: 12px;
    white-space: nowrap;
}

#checkout .name-section img {
    width: 61px;
    height: 54px;
}
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #d60000cc; 
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #d60000; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #d60000; 
}
section#all-order .row {
    width: 100% !important;
    margin: 0px !important;
}
#all-order .col-lg-3.col-md-3.col-12 {
    padding: 0px !important;
}
section#all-order .row {
    width: 100% !important;
    margin: 0px !important;
}
#all-order .col-lg-3.col-md-3.col-12 {
    padding: 0px !important;
}
#all-order .order-detail form h4 {
    margin-bottom: 10px !important;
}
#all-order .order-detail {
    padding-bottom: 10px !IMPORTANT;
    margin-bottom: 10px !important;
}
#all-order .orders-inner {
    margin-top: 20px;
    padding: 13px;
}
#all-order h1.user-heading {
    font-size: 28px;
    margin-bottom: 0px;
}
section#user-edit-profile .row {
    width: 100% !important;
    margin: 0px !important;
}
#user-edit-profile .col-lg-3.col-md-3.col-12 {
    padding: 0px !important;
}
section#user-edit-profile .row {
    width: 100% !important;
    margin: 0px !important;
}
#user-edit-profile .col-lg-3.col-md-3.col-12 {
    padding: 0px !important;
}
#user-edit-profile .order-detail form h4 {
    margin-bottom: 10px !important;
}
#user-edit-profile .order-detail {
    padding-bottom: 10px !IMPORTANT;
    margin-bottom: 10px !important;
}
#user-edit-profile .orders-inner {
    margin-top: 20px;
    padding: 13px;
}
#user-edit-profile h1.user-heading {
    font-size: 28px;
    margin-bottom: 0px;
}
section#user-profile .row {
    width: 100% !important;
    margin: 0px !important;
}
#user-profile .col-lg-3.col-md-3.col-12 {
    padding: 0px !important;
}
section#user-profile .row {
    width: 100% !important;
    margin: 0px !important;
}
#user-profile .col-lg-3.col-md-3.col-12 {
    padding: 0px !important;
}
#user-profile .order-detail form h4 {
    margin-bottom: 10px !important;
}
#user-profile .order-detail {
    padding-bottom: 10px !IMPORTANT;
    margin-bottom: 10px !important;
}
#user-profile .orders-inner {
    margin-top: 20px;
    padding: 13px;
}
#user-profile h1.user-heading {
    font-size: 28px;
    margin-bottom: 0px;
}

section#user-order-detail .row {
    width: 100% !important;
    margin: 0px !important;
}
#user-order-detail .col-lg-3.col-md-3.col-12 {
    padding: 0px !important;
}
section#user-order-detail .row {
    width: 100% !important;
    margin: 0px !important;
}
#user-order-detail .col-lg-3.col-md-3.col-12 {
    padding: 0px !important;
}
#user-order-detail .order-detail form h4 {
    margin-bottom: 10px !important;
}
#user-order-detail .order-detail {
    padding-bottom: 10px !IMPORTANT;
    margin-bottom: 10px !important;
}
#user-order-detail .orders-inner {
    margin-top: 20px;
    padding: 13px;
}
#user-order-detail h1.user-heading {
    font-size: 28px;
    margin-bottom: 0px;
}
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #d60000cc; 
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #d60000; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #d60000; 
}

.fixed-top {
    top: -2px !important;
}
.service-inner .site-section .offset-1 {
    margin-left: 0% !important;
}
.main-home #about {
    padding-bottom: 20px !important;
}
.main-home #about .content {
    padding: 14px;
    margin-top: 18px !important;
}
.main-home section#service {
    padding: 10px !important;
}
.main-home #reupholstery .content {
    padding-bottom: 45px !important;
    max-width: 340px;
    margin: 0 auto;
}
.main-home img.img-fluid {
    width: 100% !important;
}
.main-home #reupholstery {
    padding-bottom: 0px !important;
}
.main-home #reupholstery .container {
    margin-top: 10px !important;
}
.service-inner section#about {
    padding-bottom: 0px !important;
}

.service-inner section#about .container {
    margin-top: 0px !important;
}
.service-inner section#about .container .content {
    margin-top: 0px !important;
    padding-bottom: 40px;
}
.service-inner section#breadcrumbs {
    margin-bottom: 0px !important;
}
.service-inner .shadow {margin-bottom: 10px;padding-bottom: 16px;}

.service-inner .row.text-white {
    width: 100% !important;
    margin: 0;
}
.service-inner section#about .container .content p, .service-inner .category-images p,h1.prata,.custom_furniture p {
    max-width: 335px !important;
    margin: 0 auto;
    padding-bottom: 20px;
}
.service-inner section.category-images {
    padding-bottom: 40px;
}
.service-inner .site-section {
    margin-bottom: 20px !important;
}
.varnishing_oldfurniture .site-section img, .site-section img {
    margin: 0 auto; 
     width: 100%;
     object-fit: cover;
}
.varnishing_oldfurniture section#about img.img-fluid {
    object-fit: contain;
    height: 300px !important;
}
.custom_furniture h1.prata {
    padding-bottom: 0px !important;
}
.custom_furniture .text-white img {
    width: 100%;
    height: 180px !IMPORTANT;
}
.restoration_offurniture .site-section {
    margin-top: 40px !important;
}
.about-page #about {
    padding-bottom: 20px !important;
}
.about-page #about .content {
    padding: 14px;
    margin-top: 18px !important;
}
.about-page #breadcrumbs {
    margin-bottom: 5px !important;
}
.about-page #about .container {
    margin-top: 10px !important;
}
.blinds-page .pratas p {
    max-width: 350px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.main-img img {
   height: 280px !important;
    width: 94% !important;
}

.imgs {
    height: 280px !important;
}
section#product-detail .content {
    padding-bottom: 50px !important;
}
.slick-slide img {
    width: 100% !important;
    height: 280px !important;
}
    button.slick-next.slick-arrow {
    right: 24px !important;
}
button.slick-prev.slick-arrow {
    left: -82px;
}
section#breadcrumbs {
/*    padding-left: 10px !important;*/
}
section.related-product {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

section.related-product h2 {
    font-size: 30px !important;
}

div#crt-modal-open .modal-dialog {
    max-width: 93% !important;
}
#product-detail .quantity {
    width: 57% !important;
}
.product-name h1 {
    margin-left: 0px !important;
}
    section#product-detail button.btn.btn-outline-secondary[onclick="increaseQty()"] {
    margin-left: -2px !important;
}
    div#crt-modal-open .modal-body img {
    width: 100%;
    height: 203px;
    object-fit: cover;
}
div#crt-modal-open .modal-dialog {
    max-width: 670px !important;
    /* width: 100%; */
}
div#crt-modal-open .single-product-cart a {
    height: 43px;
    padding-top: 10px;
}
div#crt-modal-open button.btn-close {
    right: -7px !important;
    top: 28px !important;
}
section#product-detail button.btn.btn-outline-secondary[onclick="increaseQty()"] {
    margin-left: -2px !important;
}
.slick-slide img {
    max-width: 330px;
    margin: 0 auto;
}
button.slick-next.slick-arrow{
    right: 38px !important;
}
button.slick-prev.slick-arrow{
    left: -71px !important;
}
section#user-login {
    max-width: 300px !important;
}
#user-login button.btn.btn_primary {
    margin-left: 0px !important;
}
#user-login .nw-account a {
    margin-left: 0px !important;
}

#user-registraion{
    max-width: 450px !important;
}
#user-registraion button.btn.btn_primary {
    margin-left: 0px !important;
}
#user-registraion .nw-account a {
    margin-left: 0px !important;
}

#forgetPassword{
    max-width: 450px !important;
}
#forgetPassword button.btn.btn_primary {
    margin-left: 0px !important;
}
#forgetPassword .nw-account a {
    margin-left: 0px !important;
}

}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #22C4FF;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #22C4FF;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fef5f4;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #22C4FF;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #22C4FF;
  border: 0;
  border-radius: 50px;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #22C4FF;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #545454;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #22C4FF;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #bababa;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #22C4FF;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #ec7f6d;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #545454;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a1a1a1;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #616161;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #22C4FF;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #545454;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(84, 84, 84, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #22C4FF;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #545454;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #6e6e6e;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #f5bab0;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #f5bab0;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #545454;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #616161;
}

.blog .blog-pagination {
  color: #878787;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #545454;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #22C4FF;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #545454;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #22C4FF;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #eb7b68;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #545454;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #22C4FF;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #545454;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #22C4FF;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #949494;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #22C4FF;
  background: #22C4FF;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #ededed;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #232423;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
div#footer-right-logo:after {
    content: '';
    background-image: url(https://mayjune56.com.sg/frontend/assets/img/May-June-Curtain-V1.png);
    position: absolute;
    width: 59px;
    background-size: contain;
    height: 23px;
    background-repeat: no-repeat;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #404040;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #22C4FF;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #22C4FF;
}

#footer .footer-top {
  color: #111;
  background:white;
  padding: 40px 0 30px 0;
}
.text-primary{
  color:#22C4FF !important;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #545454;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #22C4FF;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ec7f6d;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #22C4FF;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: left;
  padding-top: 30px;
}
div#copyright-block {
    display: flex;
}
div#footer-right-logo {
    text-align: end;
    padding-top: 30px;
    font: normal normal normal 14px/25px Poppins;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/* carousel */

p {
  color: black;
  font-weight: 300; }
  .owl-dots{
    display: none;
  }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.content {
  padding: 7rem 0; }

h2 {
  font-size: 20px; }

.bg-left-half {
  position: relative; }
  .bg-left-half:before {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    left: 0;
    top: 0;
    background-color: #EEEEEE; }

.media-29101 img {
  margin-bottom: 20px; }

.media-29101 h3 {
  font-size: 18px;
  font-weight: 900 !important; }
  .media-29101 h3 a {
    color: #6c757d; }

.owl-2-style .owl-nav {
  display: none; }

.owl-2-style .owl-dots {
  text-align: center;
  position: relative;
  bottom: -30px; }
  .owl-2-style .owl-dots .owl-dot {
    display: inline-block; }
    .owl-2-style .owl-dots .owl-dot span {
      display: inline-block;
      width: 15px;
      height: 3px;
      border-radius: 0px;
      background: #cccccc;
      -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
      -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
      transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
      margin: 3px; }
    .owl-2-style .owl-dots .owl-dot.active span {
      background: #007bff; }
    .owl-2-style .owl-dots .owl-dot:active, .owl-2-style .owl-dots .owl-dot:focus {
      outline: none; }


@media only screen and (min-width: 767px) and (max-width: 1020px) { 
.slick-slide img {
    width: 215px !important;
}
.main-img img {
    width: 258px !important;
}
.blinds-page .reuph_label {
    margin-left: 5vh !important;
}
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #d60000cc; 
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 0px;
    background: #d60000; 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #d60000; 
}
h1.user-heading {
    padding-left: 22px;
}
.service-inner  .content {
    padding: 0px !important;
}
.service-inner .reuph_label {
    margin-left: 15px !important;
    font-size: 16px;
}
.service-inner .reuph_type1, .reuph_type2, .reuph_type3 {
    height: 37vh !important;
}
.custom_furniture .text-white img {
    width: 628px !important;
    height: 180px !IMPORTANT;
}
section#checkout, section#view-cart  {
    padding-left: 10px;
}
}
.Reupholstery-Works .reuph_type1,.Reupholstery-Works .reuph_type2, .Reupholstery-Works .reuph_type3 {
/*    height: 52vh !important;*/
}
.Reupholstery-Works .content {
    padding: 0px !important;
}
.gallery-page #work .our_work img {
    margin-left: 0;
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    object-fit: contain;
}

.gallery-page #work .col-md-2 {
    text-align: center;
}
.contactus {
    padding: 50px 0px;
}
main#main .container {
    max-width: 100%;
/*    padding: 0px !important;*/
}

div#Curtains-Works {
    padding-bottom: 30px;
}
div#Curtains-Works h2.text-dark.prata {
    font: normal normal normal 40px/68px Prata;
    color: #252525;
    padding-bottom: 20px;
}
div#Materials .site-section.bg-left-half.mb-5 {
    padding: 50px 0px 70px 0px;
}
div#Materials h2.text-dark {
    font: normal normal 600 30px/35px Poppins;
}
section#custom-curtain .prata b {
    font: normal normal normal 40px/68px Prata;
}
.old-work {
    padding: 0px;
}

.old-work h2.text-dark {
    font: normal normal 600 30px/35px Poppins;
}

.old-work .site-section.bg-left-half.mb-5 {padding: 50px 0px;}

.varnishing_oldfurniture .owl-item a img:nth-child(2) {
    display: none;
}
.varnishing_oldfurniture .owl-item a:hover img:nth-child(2) {
    display: block !important;
}
.varnishing_oldfurniture .owl-item a:hover img:nth-child(1) {
    display: none;
}
div#Bespoke-blind .row.text-white {
    max-width: 1100px;
    margin: 0 auto;
}

div#Bespoke-blind .reuph_label {
    margin-top: 53vh;
    margin-left: 22vh;
}

div#blind-material {
    padding: 0px;
}

div#blind-material h2.text-dark {
    font: normal normal 600 30px/35px Poppins;
}

div#blind-material .container.owl-2-style {
    padding: 50px 0px;
}
div#Bespoke-blind h2 {
    font: normal normal normal 40px/68px Prata;
    color: #252525;
}

div#Custom-Made {
    padding: 0px;
}

div#Custom-Made .site-section.bg-left-half {
    padding: 50px 0px 70px 0px;
    margin-bottom: 0px !important;
}
section#Crafted-Comfort {
    padding-bottom: 0px;
    padding-top: 40px;
}

section#Crafted-Comfort img {
    height: 38vh !important;
}
.Revive\&Renew .row {
    max-width: 1100px;
    margin: 0 auto;
    column-gap: 0px;
}

.Revive\&Renew .row .content p {margin-right: 110px;}
.Revive\&Renew {
    padding-bottom: 0px;
    padding-top: 1px;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.Restoration-work h2.text-dark {
    font: normal normal 600 30px/35px Poppins;
}

.Restoration-work .container {
    padding: 50px 0px 0px 0px!important;
}
.Restoration-work .container.owl-2-style {
    padding-bottom: 50px !important;
}
.product-details-page ol.breadcrumb {
    position: relative;
    left: -7px;
}
.product-details-page section#breadcrumbs {
    max-width: 1100px;
    margin: 0 auto;
}
.multiple-address a.btn.btn-outline-primary.btn_primary:hover {
    color: #fff;
    border-color: #000 !important;
    background: red !important;
    border-bottom-color: #000 !important;
}
#view-cart a#checkoutbtn:hover {
    background-color: #d60000 !important;
    color: #fff;
    border-color: #d60000 !important;
}
.shop-page .featured__item__text h6 a {
    color: #252525;
    font: normal normal normal 17px/30px Poppins;
}
@media (max-width: 767px){
main#main .container.service.p-5 {
    padding: 80px 0px !important;
}

.main-home section#service {
    padding: 0px 0px !important;
}

.service-block {
    max-width: 300px !important;
}
.service-block .row.our-ser:nth-child(1) .col-md-4:nth-child(3){
        top: 14px !important;
}
.breadcrumbs h2 {
    font-size: 30px !important;
}
.breadcrumbs ol {
    max-width: 231px !important;
}
section#custom-curtain .prata b {
    font-size: 20px  !important;
    line-height: 30px  !important;
}

section#custom-curtain .prata {
    padding-top: 50px  !important;
}
div#Materials {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

div#Materials .site-section.bg-left-half.mb-5 {
    padding-left: 20px;
    padding-right: 20px;
}
div#Curtains-Works h2.text-dark.prata {
    font-size: 20px !important;
}
.breadcrumbs ol li+li {
    white-space: unset;
    text-align: end;
        font-size: 8px;
    line-height: 28px;
}
.breadcrumbs ol li a {
    font-size: 10px;
}
div#Bespoke-blind h2 {
    font-size: 20px !important;
}
div#Bespoke-blind .prata {
    padding-top: 30px;
}
div#blind-material .row {
    width: 100%;
}
div#blind-material .owl-carousel .owl-item img {
    max-width: 350px;
    margin: 0 auto;
}
.contactus h3.prata {
    text-align: center;
}
.container.owl-2-style {
    width: 87%;
}
.owl-item {
/*    margin-right: 0px !important;*/
}
.owl-carousel .owl-item img {
    width: 80% !important;
}
.restoration_offurniture .breadcrumbs ol {
    max-width: 233px !important;
}
.shop-page .breadcrumbs ol {
    max-width: 80px !important;
        padding-left: 0px !important;

}
.curtain-page .breadcrumbs ol {
    padding-left: 65px;
}
div#copyright-block {
    display: block !important;
}
div#footer-right-logo {
    text-align: left;
}
.main-home section#service .row.our-ser {
    column-gap: unset !important;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
}
.shop-page .breadcrumbs ol {
    max-width: 112px;
    padding-left: 122px;

}
.curtain-page .breadcrumbs ol {
    padding-left: 43px !important;
}
.main-home .row.our-ser .col-md-4:hover .our_service img {
    transform: scale(1.2);
}
.main-home .our_service img {
    transition: transform 0.6s;
}
div#Wood-Furniture {
    max-width: 1100px;
    margin: 0 auto;
    column-gap: 91px;
}
div#Wood-Furniture p {
/*    margin-right: 110px;*/
font-size: 16px;
}
section#contactus .col-md-4.mt-2 {
    font-size: 21px;
}
#contactus .col-md-6.text-center {
    text-align: end !important;
        float: right;

}
#contactus .contactus .col-md-6.text-center .row {
    width: 97%;
    margin-left: 132px;
}
#contactus .contactus .col-md-6.text-center small {
    padding-right: 100px;
}
.main-home section#service .label{
    padding: 7vh 7vh 4vh 7vh;
    background-color: white;
    color: black;
    font-weight: bold;
    border-radius: 10px;
    text-align: center;
    font-size: 23px;
}
.main-home section#service .row.our-ser {
    column-gap: 20px;
}
.main-home section#service .service-block {
    max-width: 1082px !important;
}
.main-home section#service .row.our-ser .col-md-4 {
    max-width: 355px;
}
/*div#home-last-gallery .portfolio-wrap:hover img#img1 {
    display: none;
}*/

div#home-last-gallery .portfolio-wrap:hover img#img2 {
    display: block !important;
}
.footer-top h3, .footer-top h4 {
    font: normal normal 600 18px/27px Poppins;
    color: #252525;
}
#footer .footer-top .footer-links ul {
    font: normal normal normal 14px/28px Poppins;
}
div#lst-dv ul {
    padding-top: 13px !important;
}
#footer .copyright {
    font: normal normal normal 14px/25px Poppins;
}
.Reupholstery-Works .reuph_label {
/*    bottom: 224px !important;*/
        top: 265px !important;

}
.ourworklabel {
    font: normal normal 600 16px/20px Poppins;
    padding-left: 17px;
    padding-right: 18px;
}
@media (min-width: 1400px){
.gallery-deco .row{
    max-width: 1320px;
}
.main-home .about .row{
    max-width: 1320px !important;
}
section#checkout{
    max-width: 1320px;
}
section#user-profile{
    max-width: 1320px;
}
section#user-edit-profile{
     max-width: 1320px;
}
.container.contactus .row{
    max-width: 1320px;
}
section#all-order{
    max-width: 1320px;
}
section#product-detail{
    max-width: 1320px !important;
}
.product-details-page section#breadcrumbs{
        max-width: 1489px;

}
section#view-cart{
    max-width: 1320px;
}
.gallery-our-work .container{
    max-width: 1320px !important;
}
div#last-gallery-home{
    max-width: 1320px !important;
}
.Revive\&Renew .row{
    max-width: 1320px !important;
}
div#Wood-Furniture{
    max-width: 1320px !important;
}
.gallery-deco .row{
    max-width: 1320px !important;
}
.projectGallery .container{
    max-width: 1320px !important;
}
.Types .row.text-white{
   max-width: 1320px !important; 
}
section#user-order-detail{
    max-width: 1320px !important;
}
#contactus .contactus .col-md-6.text-center small {
    padding-right: 122px;
}
section#contactus .col-md-4.mt-2 {
    font-size: 24px;
}
#contactus .contactus .col-md-6.text-center .row {
    margin-left: 162px !important;
}
}