
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "DMSans-Regular" ,sans-serif ;
  --font-primary: "Dubiel", sans-serif;
  --font-secondary: "DMSans-Medium", sans-serif;
}
:root {
  scroll-behavior: smooth;
}

body {
  color: rgba(var(--color-primary-rgb), 1);
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

#main {
  margin-top: 90px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

.section-header {
  border-bottom: 2px solid var(--color-black);
}

.section-header h2 {
  font-size: 50px;
  color: var(--color-black);
}

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

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Page title
--------------------------------------------------------------*/
.page-title {
  font-size: 70px;
  color: var(--color-black);
}

/* Form Input Fieldds */
.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--color-black);
}

.btn:active,
.btn:focus {
  outline: none;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  height: 90px;
  transition: all 0.5s;
  z-index: 99999;
  background: #fff;
}
.header .container-fluid.container-xl {
    max-width: 1800px;
}

.header.sticked {
  height: 70px;
}
.header-section {
    width: 100%;
    align-items: center;
}
#navbar {
    justify-content: center;
}
.icons-section {
    display: flex;
    justify-content: end;
    padding-right: 0px !important;
}
.header .logo img {
    margin-right: 6px;
    width: 100%;
    max-width: 110px;
}
.sticked .logo img {
    max-width: 70px;
}
.search-icon {
    width: 20px;
}

.search-icon img , .user-icon img , .cart-icon img {
    width: 20px;
}
.header .logo h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-default);
  font-family: var(--font-primary);
}

.search-form-wrap {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  transition: 0.3s all ease;
  visibility: hidden;
  opacity: 0;
}

.search-form-wrap .search-form {
  position: relative;
}

.search-form-wrap .search-form .form-control {
  width: 300px;
  border: none;
  box-shadow: 0 15px 20px -10px rgba(var(--color-black-rgb), 0.1);
  padding-left: 40px;
  padding-right: 40px;
}

.search-form-wrap .search-form .form-control:active,
.search-form-wrap .search-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.search-form-wrap .search-form .icon {
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.5;
  left: 10px;
}

.search-form-wrap .search-form .btn {
  position: absolute;
  top: 2px;
  right: 4px;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 30px;
}

.search-form-wrap .search-form .btn:active,
.search-form-wrap .search-form .btn:focus {
  outline: none;
  box-shadow: none;
}

.search-form-wrap.active {
  visibility: visible;
  opacity: 1;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {

  .navbar {
    padding: 0;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-default-rgb), 1);
    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: var(--color-default);
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: var(--color-white);
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: var(--color-white);
    background: rgba(var(--color-primary-rgb), 0.8);
  }

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

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }

  .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: var(--color-primary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {

  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

.mobile-nav-toggle {
  display: none;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    padding: 0;
    z-index: 9997;
  }

  .navbar ul {
    display: none;
    position: absolute;
    inset: 55px 15px 15px 15px;
    padding: 10px 0;
    margin: 0;
    border-radius: 10px;
    background-color: var(--color-white);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    top: 100px;
    list-style: none;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    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: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background: var(--color-white);
    transition: all 0.5s ease-in-out;
    box-shadow: 0px 0px 30px rgba(var(--color-black-rgb), 0.1);
  }

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

  .mobile-nav-toggle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-black);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 30px;
    right: 35px;
    z-index: 9999;
    color: #000;
  }

  .mobile-nav-active .navbar {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(var(--color-black-rgb), 0.6);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Button
--------------------------------------------------------------*/

.btn-icon {
    width: 18px;
    height: 18px;
    margin-left: 30px;
    margin-top: -5px !important;
}

.global-btn {
    font-size: 22px;
    line-height: 29px;
    color: #000000;
    font-weight: 400;
    border-radius: 0px;
    border: 1px solid #000000;
    width: 273px;
    height: 64px;
}
.global-btn:hover{
    background: #483329;
}
.global-btn:hover img.btn-icon {
    content: url('../img/Icon-ionic-ios-arrow-dropright-circle.png') !important;
}

/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.slider-bg {

    background-image: url(./assets/img/BG@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 810px;
}
.banner-section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 720px;
}
.banner-title {
    font-family: 'DubielPlain';
    font-size: 65px;
    line-height: 70px;
    font-weight: normal;
    text-transform: uppercase;
}
/*.row.banner {
    position: absolute;
    top: 300px;
    left: 100px;
    overflow: hidden !important;
    width: 100%;
}*/
.about-background .row {
    display: flex;
    justify-content: space-between;
}
.about-section-home-page .text-portion {
    background: #fff;
    max-width: 560px;
    height: 452px;
    padding: 100px;
}
.about-section-home-page {
    height: 640px;
    background-size: cover;
    background-repeat: no-repeat;
}
img.img-responsive.banner-img-right {
    width: 75%;
}
.banner-left {
    position: relative;
    top: 300px;
}
.banner-right {
    position: relative;
    top: 65px;
}
.about-Enquiry .brdcrm-bnnr {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 436px;
    display: flex;
    align-items: center;
    align-content: center;
}
.about-section-home-page .home-about-tittle {
    font-size: 44px;
    line-height: 58px;
    font-weight: 400;
    font-family: var(--font-default);
    text-transform: uppercase;
    color: #000;
}
.about-section-home-page .home-about-description {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    font-family: var(--font-default);
}
#about-Enquiry {
    padding: 0px 60px 0px 60px;
    padding-bottom: 84px;
}
.about-Enquiry .row {
    width: 100%;
}
.container.position-relative.d-flex.flex-column {
    text-align: center;
    color: #fff;
}
.about-Enquiry h4 {
    text-align: center;
    font-size: 32px;
    line-height: 5px;
    font-family: DM Serif Display;
    letter-spacing: 1.28px;
    color: #FFFFFF;
    text-transform: capitalize;
    opacity: 1;
}
.about-Enquiry h1 {
    text-align: center;
    font-size: 60px;
    line-height: 83px;
    font-weight: 400;
    /* font-family: DM Sans; */
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    padding-bottom: 20px;
}

.about-Enquiry button {
    background-color: #333333;
    padding: 10px 12px 10px 12px;
    text-decoration: none;
    text-align: left;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    border: none;
}
.about-Enquiry i.bi.bi-arrow-right-circle {
    padding-left: 20px;
}

.about-Enquiry span a:hover {
    background-color: #483329;
    border-color: #000;
}
.about-Enquiry button:hover {
    background-color: #483329 !important;
}

.home-page img.img-responsive.banner-img-right {
    opacity: 0;
}

.col-md-6.banner-left {
    opacity: 0;
}

.home-page span.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    width: 20px;
    left: -100px;
    top: 300px;
    bottom: -19px;
    /* z-index: 99999; */
}

.home-page .swiper.swiper-slider {
    overflow: visible;
}

.product-inner-page .form-check-input[type=checkbox] {
    display: none;
}
input[type="checkbox"]:checked + label.col {
    color: #8e6a53;
}
.product-inner-page label {
    cursor: pointer;
    display: inline-block;
    margin: 1px;
    padding: 5px;
    border-radius: 15px;
    text-align: left;
    transition: background-color 0.3s ease;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    padding-left: 0;
    text-transform: capitalize;
}
.product-inner-page label.clicked {
    background-color: #000;
    color: white;
}

.product-page .form-check-input[type=checkbox] {
    display: none;
}
.product-page label {
    cursor: pointer;
    display: inline-block;
    margin: 1px;
    padding: 5px;
    border-radius: 15px;
    text-align: center;
    transition: background-color 0.3s ease;
}
.product-page label.clicked {
    background-color: #000;
    color: white;
}


.home-page .swiper-slide-active img.img-responsive.banner-img-right {
    opacity: 1;
}
.home-page .swiper-slide-active .col-md-6.banner-left{
    opacity:1;
}
 .home-door-slider .navigation {
     position: absolute;
    right: 400px !important;
    z-index: 9999;
    margin-top: -34px;
    right: 210px;
}
#promotional_slider {
    overflow: hidden !important;
    padding-top: 31px !important;
}
.home-door-slider span.swiper-button-prev-promote {
    color: gray;
    --swiper-navigation-size: 22px !important;
    font-weight: bolder;
   
}

.home-door-slider span.swiper-button-next-promote {
    color: gray;
    font-size: 22px;
    font-weight: bolder;
}
.home-door-slider .swiper-button-prev-promote:after, .swiper-rtl .swiper-button-next-promote:after {
    content: 'prev';
    font-family: swiper-icons;
}
.home-door-slider .swiper-button-next-promote:after, .swiper-rtl .swiper-button-prev-promote:after{
    content: 'next';
    font-family: swiper-icons;
}

span.swiper-button-next-promote {
    color: gray;
    font-size: 22px;
    font-weight: bolder;
    position: absolute;
    top: 0;
    right: -30px;
}
span.swiper-button-prev-promote {
    
    font-size: 22px;
   
}
.door-slider-main .swiper-slide {
    /*margin-right: 35px;*/
}
.home-door-slider .wrapper {
    max-width: 1460px;
    margin: 0 auto;
}
 .door-product .swiper-slide img {
    animation-name: auto-animate;
    width: 100%;
    /*object-fit: contain !important;*/
    height:543px;
    transition: 0.3s ease-out;
}
.door-slider-main .swiper-slide:hover img {
    /*height: 410px !important;*/
    margin-top: 10px;
}
.door-product .swiper-slide:hover::after {
    opacity: 1;
}

.door-product .swiper-slide a:hover:after {
    opacity: 1;
}
.door-product .swiper-slide a::after {
    content: url("../assets/img/Plus-icon.png");
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.door-product .swiper-slide:hover::after {
    opacity: 1;
}
.door-product  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

section.home-door-slider {
    position: relative;
}
/*--------------------------------------------------------------
    # Single product css
--------------------------------------------------------------*/

.single-product {
    margin-top: 0px !important;
}

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

.single-product .imgs img {
    width: 80%;

    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;

    padding: 5px;

    text-align: center;

    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 {
    margin-left: 10px;

    height: 420px;

    object-fit: cover;

    border-radius: 10px;

    padding: 0px 50px;
}

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";
}

::-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;
}

.carousel {
    width: 100%;

    margin: 0px auto;
}

.slick-slide {
    margin: 10px;
}

.slick-slide img {
    width: 258px;

    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;
}

.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;
    font-weight:bold;
}

.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;
}


.product-banner {
    position: relative;

    top: 60px;
}

.product-banner .brdcrm-bnnr {
    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    height: 484px;

    display: flex;

    align-items: center;

    /* justify-content: center; */

    align-content: center;
}

.product-banner .breadcrumbs.d-flex {
    width: 100%;
}

.product-banner .breadcrumbs h2 {
    font-size: 60px;

    line-height: 79px;

    font-weight: 600;

    text-transform: uppercase;

    text-align: left;

    color: #fff;

    font-family: var(--font-secondary);
}

.product-banner .breadcrumbs ol {
    display: flex;

    flex-wrap: wrap;

    list-style: none;

    padding: 0 0 10px 0;

    margin: 0;

    font-size: 16px;

    line-height: 21px;

    font-weight: 300;

    text-transform: capitalize;

    color: #fff;
}

.product-banner .breadcrumbs ol a {
    color: #fff;

    transition: 0.3s;

    text-decoration: none;
}

.product-banner .container.position-relative.d-flex.flex-column {
    pointer-events: all;

    opacity: 1;

    /*max-width: 78%;*/
}

.product-banner .breadcrumbs ol li + li::before {
    display: inline-block;

    padding-right: 10px;

    color: #fff;

    content: "|";
}

/*product-banner css end*/

.caro-main {
    display: flex;

    padding-bottom: 20px;
}

.caro-main .col-6.s-heading {
    text-align: end;
}

.caro-main .f-head {
    font-size: 44px;

    font-weight: normal;
}

.caro-main .S-text {
    font-size: 22px;
    text-decoration: underline;
   color: #808080;
    font-weight: normal;
}
.caro-main .S-text:hover{
    color: #000;
}
#Main-QTY-counter {
    display: flex;

    align-items: center;

    margin-top: 48px;
}

.QTY-text {
    padding-right: 20px;
}

.QTA-buttons {
    width: 150px;

    height: 50px;

    background: #ffffff 0% 0% no-repeat padding-box;

    border: 1px solid #707070;

    border-radius: 12px;

    opacity: 1;

    display: flex;

    justify-content: center;
}

.related-product .carousel img {
    width: 100%;
}

.QTA-buttons input {
    border: none;

    text-align: center;
}

.QTA-buttons button#sub,
button#add {
    border: none;

    background: transparent;
}

.Product-slider-main .swiper-pointer-events {
    overflow: hidden;
}
.related-product .Product-slider-main {
    overflow: hidden;
}
.QTA-buttons input[type="number"] {
    border: none;

    outline: none; /* Remove focus outline */

    text-align: center;
}

.Product-slider-main .navigation {
    position: absolute;
    right: 400px;
    margin-top: -70px;
}
.Product-slider-main.swiper-slide:hover img {
    margin-top: 10px;
}
.Product-slider-main span.swiper-button-next {
    color: gray;

    --swiper-navigation-size: 22px !important;

    font-weight: bolder;

    left: 0;
}

.Product-slider-main span.swiper-button-prev {
    color: gray;

    --swiper-navigation-size: 22px !important;

    font-weight: bolder;

    left: -33px;
}


/*--------------shop page slider css-------------*/



.swiper-button-prev-shop:after, .swiper-rtl .swiper-button-next-shop:after {
    content: 'prev';
    font-family: swiper-icons;
    position:absolute;
    right: 335px;
    top: -50px;
    cursor: pointer;
}
.swiper-button-next-shop:after, .swiper-rtl .swiper-button-prev-shop:after{
    content: 'next';
    font-family: swiper-icons;
    position: absolute;
    right: 300px;
    top: -50px;
    cursor: pointer;
}



Product-slider-main-shop .navigation {
    position: absolute;
    right: 400px;
    margin-top: -70px;
}

.Product-slider-main-shop span.swiper-button-prev-shop , .Product-slider-main-shop span.swiper-button-next-shop {
    color: gray;
    font-weight: bolder;
    font-size: 22px;
}
.Product-slider-main-shop {
    position: relative;
}

.Product-slider-main-shop .swiper-slide img {
    animation-name: auto-animate;
    width: 100%;
    object-fit: contain !important;
    height: 500px;
    transition: 0.3s ease-out;
}




/*--------------shop page slider css end-------------*/




.product-btn .global-btn {
    background: #483329;
    color: #fff;
    /*width: 165px ;
    height: 64px ;*/
}

.product-btn .global-btn:hover {
    background: #483329cc;
}

.Product-slider-main .swiper-slide img {
    animation-name: auto-animate;

    width: 100%;

    object-fit: contain !important;

    height: 500px;

    transition: 0.3s ease-out;
}

.Product-slider-main .swiper-wrapper {
    column-gap: 20px;
}

.main-img img#current {
    object-fit: contain;

    background-color: #fff;

    padding: 27px;

    height: 570px;
    width: 100%  !important;
}

section#product-detail {
    background: #f2f2f2;

    padding: 80px 0px;
}

.More-products {
    padding-top: 80px;

    padding-bottom: 0px;

    background: transparent linear-gradient(180deg, #dddddd 0%, #ffffff 100%) 0% 0% no-repeat padding-box;

    opacity: 1;

    background-position: 0 400px;

    height: 856px;
}

.Gallery-arrow img {
    width: 20px !important;

    height: 20px !important;

    cursor: pointer;
}

.side-pics div#prev {
    padding-bottom: 10px;
}

.side-pics {
    text-align: center;
}

#product-detail .product-info {
    padding: 30px 73px;
}

.Product-slider-main .swiper-slide::after {
    content: url("../assets/img/Plus-icon.png");

    position: absolute;

    top: 0;

    left: 0px;

    width: 100%;

    height: 100%;

    background-size: cover;

    opacity: 0;

    z-index: 999;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;
}

.Product-slider-main .swiper-slide:hover::after {
    opacity: 1;
}

.Product-slider-main .swiper-slide:hover img {
    height: 510px !important;
}

.Product-slider-main .swiper-slide:hover::after {
    opacity: 1;
}

.Product-slider-main .swiper-slide:hover img {
    height: 510px !important;
}

.global-btn {
    display: flex !important;

    align-items: center !important;
}

/*--------------------------------------------------------------
    # single-product end
--------------------------------------------------------------*/

 

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  overflow: hidden;
  background: #311610;
  font-size: 16px;
  color:#fff;
  /*position: relative;*/
}

.footer .footer-content {
  padding: 60px 0;
}

.footer a.footer-link-more {
  color: rgba(var(--color-white-rgb), 0.7);
  display: inline-block;
  position: relative;
}

.footer a.footer-link-more:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-white);
}
.footer .whatsapp img {
    width: 100px;
}

.footer .whatsapp {
    position: fixed;
    right: 0px;
    z-index: 99999;
    bottom: 30px;
}
.footer a.footer-link-more:hover {
  color: rgba(var(--color-white-rgb), 1);
}

.footer .footer-heading {
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 18px;
}

.footer .footer-blog-entry li {
  margin-bottom: 20px;
  display: block;
}

.footer .footer-blog-entry li a .post-meta {
  font-size: 10px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--font-secondary);
  color: rgba(var(--color-white-rgb), 0.4);
  margin-bottom: 0px;
}

.footer .footer-blog-entry li a img {
  width: 25px;
}

.footer .footer-blog-entry li a img:hover {
    width: 24px;
}
.footer .footer-links li {
  margin-bottom: 10px;
}

.footer .footer-links li a {
  color: rgba(var(--color-white-rgb), 0.7);
}
.footer .footer-links li:hover {
    color: #676767;
}

.footer .footer-links li a:hover,
.footer .footer-links li a:focus {
  color: rgba(var(--color-white-rgb), 1);
}

.footer .footer-legal {
  background:#D0CAC6;
  color: #000;
  padding:5px 0px;
}

.footer .footer-legal .social-links a {
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--color-white-rgb), 0.09);
  border-radius: 50%;
  color: var(--color-white);
  line-height: 40px;
}

.footer .footer-legal .social-links a:hover {
  background-color: rgba(var(--color-white-rgb), 0.2);
}
.footer .copyright {
    font-size: 15px;
    line-height: 20px;
}

.footer .credits {
    font-size: 15px;
    line-height: 20px;
}
 section.banner-section {
    background-position: center left;
    height: auto !IMPORTANT;
    position: relative;
    z-index: 9;
}
section.banner-section .container {
    max-width: 1600px;
}

@media (max-width: 1600px){

section.banner-section .container {
    max-width: 1220px;
}
section.banner-section {
    background-position: 16%;
    height: auto !IMPORTANT;
}
img.img-responsive.banner-img-right {
    width: 92%;
    height: 660px;
}
.banner-title{
    font-size: 55px;
}
.header .container-fluid.container-xl {
    max-width: 1420px;
}
}
@media only screen and (max-width: 1024px) {
img.img-responsive.banner-img-right {
    
    height: 330px;
}
.footer .credits {
    text-align: center;
 }
 .logo-sec {
    width: 40%;
}

.menu-sec {
    width: 20%;
    order: 3;
}

.icons-section {
    width: 40%;
    order: 2;
}

.header {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

#navbar {
    justify-content: end;
}
.row.banner {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
img.btn-icon {
    width: 13px;
    height: 13px;
    margin-left: 4px;
    margin-top: -3px;
}
.banner-left {
    width: 50%;
}
.banner-right {
    width: 50%;
}
.banner-title {
    font-family: 'DubielPlain';
    font-size: 25px;
    line-height: 30px;
 
}
.global-btn , .about-background .text-portion .global-btn {
    font-size: 11px;
    line-height: 20px;
    width: 140px !important;
    height: 40px !important;
}
img.img-responsive.banner-img-right {
    width: 80%;
}

.banner-left {
    
    top: 100px;
}
.banner-section {
   
    background-size: contain;
    
}
.about-section-home-page {
    margin-top: 0px !important;
}
.about-section-home-page .text-portion {
    background: #fff;
    max-width: 350px;
    padding: 20px;
    height: 300px;
    margin: 0 auto;
}
.about-section-home-page {
    height: 400px
    
}
#about-Enquiry {
    padding: 0px 12px 0px 12px !important;
    padding-bottom: 40px;
}
.about-Enquiry h1 {
    font-size: 25px !important;
    line-height: 30px !important;
    padding-bottom: 0;
}
.about-Enquiry a {
    font-size: 12px;
    line-height: 18px;
    width: 200px;
    height: 50px;
}
.about-Enquiry .brdcrm-bnnr {
    background-position: right;
    height: auto !important;
    padding: 30px 0px;
}
.about-Enquiry .about-us-contact-btn img {
    margin-left: 20px;
}
.about-Enquiry h4 {
    font-size: 15px !important;
    line-height: 20px !important;
}
/*single product*/
.text-md-end {
    text-align: center!important;
}
img.img-responsive.banner-img-right {
    width: 100%;
}
.banner-right {
    top: 175px;
}
.banner-left {
    top: 230px;
}
.about-section-home-page .home-about-tittle{
    font-size: 25px;
    line-height: 30px;
}
.about-section-home-page .home-about-description {
    font-size: 15px;
    line-height: 19px;
}
.about-section-home-page .text-portion{
        height: 220px;
}

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

.imgs {
    height: 280px !important;
}

section#product-detail .content {
    padding-bottom: 30px !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;
}

.product-banner .breadcrumbs h2 {
    font-size: 25px !important;
    line-height: 30px !important;
}

.product-banner .brdcrm-bnnr {
    height: 108px !important;
}

section#product-detail {
    padding-top: 40px !important;
}

.side-pics div#next {
    padding-top: 10px;
}

#product-detail .product-info {
    padding: 0px !important;
}

.product-wrapper {
    padding: 0px 12px;
    margin-left: 0px;
}

#Main-QTY-counter {
    justify-content: center;
}

.product-btn {
    display: flex;
    justify-content: center;
}

.caro-main .f-head {
    font-size: 18px !important;
}

.caro-main .S-text {
    font-size: 16px !important;
}

.Product-slider-main .navigation {
    display: none;
}

.More-products {
    height: auto !important;
}

.product-name h1 {
    font-size: 22px;
}

.product-btn .global-btn {
    font-size: 18px;
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    border: none;
}

.product .main-img {
    display: flex;
    align-items: center;
}

.mobile-view {
    display: flex;
    justify-content: center;
    align-items: center;
}

#Main-QTY-counter {
    padding-right: 10px;
}

.product-btn img.btn-icon {
    margin-left: 15px;
}

.about-section-home-page img.btn-icon {
    width: 13px;
    height: 13px;
    margin-left: 30px;
    margin-top: -3px;
}

.banner-left img.btn-icon{
    margin-left: 9px;
}


}

@media screen and (max-width: 769px) {
    #view-cart .row {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
    
/*user-profile edit*/.
    
#user-edit-profile .col-lg-3.col-md-3.col-12 {
width: 100%;
padding: 0px;
}

#user-edit-profile .col-lg-9.col-md-9.col-12.ps-md-5 {
    width: 100%;
    padding: 0px !important;
    margin: 20px 0px;
}
#all-order .col-lg-3.col-md-3.col-12 {
    width: 100%;
    padding: 0px;
}

#all-order .col-lg-9.col-md-9.col-12.ps-md-5 {
    width: 100%;
    padding: 0px !important;
    margin: 20px 0px;
}

#all-order .orders-inner {
    padding: 10px;
}
/*=============home page css start=========*/
.about-background .text-portion .global-btn {
    width: 140px !important;
    height: 40px !important;
}
.home-page span.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal{
	left: 0;
    top: 300px;
}
.home-door-slider .navigation {
    position: absolute;
    right: 150px !important;
}
 .slider-bg{
       height: 480px;
   }
   .banner-left {
    top: 200px;
}
span.swiper-button-prev, span.swiper-button-next {
    top: 450px !important;
}
span.swiper-button-next-promote {
    top: 2px !important;
}
}

@media only screen and (max-width: 321px){
    .search-icon img, .user-icon img, .cart-icon img {
    width: 15px;
    }
    .header .logo img {
       
        width: 70%;
        
    }
    .search-form-wrap .search-form .form-control {
    width: 150px;
   
   }
  
}
