/* Fontawesome Css */
@import url('all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@800&display=swap');
* h1,h2,h3,h4,h5,h6,p,ul {
    padding: 0;
    margin: 0;
}
*{ 
    scrollbar-width: thin; 
    scrollbar-color: var(--scroll-thumb-color) var(--scroll-track-color);
}
*::-webkit-scrollbar {
    width: 7px;
}
*::-webkit-scrollbar-track {
    background: var(--scroll-track-color);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color);
}
::selection {
    color: #fff;
    background: var(--hover-color);
}
:root{
    /* Colors Root */
    --body-bg-color: #ffffff;
    --body-color: #000000;
    --paragraph-color: #353535;
    --paragraph-light-color: #c4c4c4;
    --white-color: #ffffff;
    --black-color:  #000000;
    --hover-color:  #000000;
    --scroll-thumb-color: #000000;
    --scroll-track-color: var(--black-color);
    --sub-menu-color:  #a6a6a6;
    --section-bg-color: #F7F6ED;
    /* Fonts Root */
    --font-montserrat: 'Montserrat', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-thin: 100;
    --font-extra-light: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;
    --font-black: 900;
}
body{
    background-color: var(--body-bg-color);
    color: var(--body-color);
    font-family: var(--font-montserrat);
    font-weight: var(--font-regular);
    overflow-x: hidden;
}
.product-h1 h1{
    font-weight: var(--font-bold);
  font-size: 24px;
  color: var(--hover-color);
  line-height: 35px;
}
.product-h1 h1 span{
  color: #f9b06a;
}
/* ------ Topbar Start ------ */

.top_main_bar p{
  color: #fff;
  text-align: center;
  padding: 7px 0;
  font-size: 14px;
}
.top_main_bar {
  background-color: #000000;
  text-align: center;
}
/* ------ Topbar End ------ */
/* ------ Tooltip Start ------ */
.tooltip > .arrow {
    background-color: transparent;
}
.tooltip > .tooltip-inner {
    text-align: center;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 5px;
    color: #fff;
    background: var(--hover-color);
    box-shadow: 0 4px 10px 0 rgba(0,0,0,0.15);
    font-family: var(--font-montserrat);
}
.bs-tooltip-top,
.bs-tooltip-right,
.bs-tooltip-left,
.bs-tooltip-bottom {
  background-color: transparent;
  opacity: 1!important;
}
.tooltip.bs-tooltip-top .arrow:before,
.tooltip.bs-tooltip-bottom .arrow:before {
    border-top-color: var(--hover-color); 
    border-right-color: transparent; 
    border-bottom-color: var(--hover-color); 
    border-left-color: transparent; 
}
.tooltip.bs-tooltip-right .arrow:before,
.tooltip.bs-tooltip-left .arrow:before{
    border-top-color: transparent; 
    border-right-color: var(--hover-color); 
    border-bottom-color: transparent; 
    border-left-color: var(--hover-color); 
}
/* ------ Tooltip End ------ */
button:focus{
    outline: none;
    box-shadow: none;
}
.btn:focus{
    outline: none;
    box-shadow: none;
}
a.btn:hover{
    background-color:  var(--black-color);
    color: var(--white-color);
}
button.btn:hover{
    background-color:  var(--black-color);
    color: var(--white-color);
}
.btn-primary{
    background-color: #ffae5d;
    border-radius: 0;
    border: 0;
    padding: 16px 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
}
.btn-primary.disabled, .btn-primary:disabled{
    background-color: #000;
    border-color: #000;
    color: #fff;
}
.btn-primary:before{
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--hover-color);
    z-index: -1;
    transform: translateX(-102%);
    transition: all 0.5s ease;
}
.btn-primary:after{
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background-color: var(--hover-color);
    z-index: -1;
    transform: translateX(102%);
    transition: all 0.5s ease;
}
.btn-primary:hover:after{
    transform: translateX(0%);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.btn-primary:hover:before{
    transform: translateX(0%);
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.form-group{
    margin-bottom: 0;
    position: relative;
}
.form-group::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 50px;
    background-color: var(--hover-color);
    transition: all 1s ease;
}
.form-group.border-active::before{
    width: 100%;
}
.form-group.border-focus::before{
    width: 100%;
}
input.form-control{
    width: 100%;
    height: 50px;
    border: 0;
    background-color: #f0f0f0;
    padding-left: 21px;
    border: 0;
    font-size: 18px;
    line-height: 21px;
    color: var(--black-color);
}
.input-md{
    height: 50px;
    font-size: 15px;
}
input.form-control::placeholder{
    opacity: 1;
}
input.form-control:focus{
    outline: none;
    box-shadow: none;
    background-color: #f0f0f0;
}
input.form-control.error{
    border: solid 1px var(--danger-color);
}
textarea.form-control{
    width: 100%;
    height: 150px;
    border: 0;
    background-color: #f0f0f0;
    padding-left: 21px;
    padding-top: 20px;
    border: 0;
    font-size: 18px;
    line-height: 21px;
    color: var(--black-color);
}
textarea.form-control::placeholder{
    opacity: 1;
}
textarea.form-control:focus{
    outline: none;
    box-shadow: none;
    background-color: #f0f0f0;
}
textarea.form-control.error{
    border: solid 1px var(--danger-color);
}
select.form-control{
    width: 100%;
    height: 50px;
    border: 0;
    background-color: #dbdbdb;
    padding-left: 21px;
    border: 0;
    font-size: 18px;
    line-height: 21px;
    color: var(--black-color);
}
select.form-control::placeholder{
    opacity: 1;
}
select.form-control:focus{
    outline: none;
    box-shadow: none;
    background-color: #f0f0f0;
}
select.form-control.error{
    border: solid 1px var(--danger-color);
}
p.error{
    position: absolute;
    top: 100%;
    right: 15px;
    background-color: #ddd;
    color: var(--hover-color);
    font-size: 12px;
    padding: 3px 10px;
    z-index: 1;
    border-radius: 5px;
}
h1{
    font-family: var(--heading-font);
    font-size: 48px;
    line-height: 52px;
    color: var(--heading-color);
}
h2{
    font-family: var(--heading-font);
    font-size: 30px;
    line-height: 36px;
    color: var(--heading-color);
}
h3{
    font-family: var(--heading-font);
    font-size: 25px;
    line-height: 30px;
    color: var(--heading-color);
}
h4{
    font-family: var(--heading-font);
    font-size: 18px;
    color: var(--heading-color);
}
p{
    font-family: var(--paragraph-font);
    font-size: 20px;
    color: var(--paragraph-color);
    line-height: 26px;
}


.select2-container{
    width: 100% !important;
}
.select2-container--default .select2-selection--single{
    height: 50px;
    background-color: #b7b7b7;
}
.select2-container--default .select2-selection--single:focus{
    background-color: #fff;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    height: 50px;
    padding: 8px 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
}



.pre-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0,0,0,0.9);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    z-index: 9999999999;
}
.pre-loader .loader{
	-webkit-perspective:700px;
	perspective: 700px;
}

.pre-loader .loader>span{
	display: inline-block;
	animation:flip 4.3s infinite linear;
	transform-origin:0 70%;
	transform-style:preserve-3d;
	-webkit-transform-style:preserve-3d;
	color: var(--hover-color);
	font-family: var(--heading-font);
	font-weight: var(--font-extra-bold);
}

@keyframes flip{
	35%{
		transform: rotateX(360deg);
	}
	100%{
		transform: rotatex(360deg);
	}
}

.pre-loader .loader>span:nth-child(2){
	animation-delay: 0.3s;
}

.pre-loader .loader>span:nth-child(3){
	animation-delay: 0.6s;
}

.pre-loader .loader>span:nth-child(4){
	animation-delay: 0.9s;
}

.pre-loader .loader>span:nth-child(6){
	animation-delay: 1.2s;
}

.pre-loader .loader>span:nth-child(7){
	animation-delay: 1.5s
}

.pre-loader .loader>span:nth-child(8){
	animation-delay: 1.8s
}
.pre-loader .loader>span:nth-child(9){
	animation-delay: 2.1s
}
.pre-loader .loader>span:nth-child(10){
	animation-delay: 2.4s
}
.pre-loader .loader>span:nth-child(11){
	animation-delay: 2.7s
}
.pre-loader .loader>span:nth-child(12){
	animation-delay: 3s
}
.pre-loader .loader>span:nth-child(13){
	animation-delay: 3.3s
}
.pre-loader .loader>span:nth-child(14){
	animation-delay: 3.6s
}
.pre-loader .loader>span:nth-child(15){
	animation-delay: 3.9s
}
.image-loading::after{
    content: "Loading...";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgb(0,0,0,0.5);
    font-size: 16px;
    
}


.container {
    max-width: 1210px;
}
.title-main h5{
    text-transform: uppercase;
    color: var(--hover-color);
    font-size: 14px;
    font-weight: var(--font-extra-bold);
}
.title-main h1{
    font-weight: var(--font-semi-bold);
}
.back-line{
    position: relative;
    padding-left: 60px;
    display: inline-block;
}
.dubble-line{
    padding-right: 60px;
}
.back-line::after {
    position: absolute;
    bottom: 5px;
    left: 0;
    content: "";
    background: linear-gradient(90.79deg, #E02E2E -6.97%, #A50C3A 62.52%, rgba(36, 36, 36, 0) 126.44%);
    width: 40px;
    height: 3px;
}
.dubble-line::before {
    position: absolute;
    bottom: 5px;
    right: 0;
    content: "";
    background: linear-gradient(90.79deg, #E02E2E -6.97%, #A50C3A 62.52%, rgba(36, 36, 36, 0) 126.44%);
    width: 40px;
    height: 3px;
}
.p-unset{
    position: unset !important;
}
/*-------------- Mega Menu Start ------------------*/
.mega-menu-main {
    position: absolute;
    width: 100%;
    left: 0;
    background-color: var(--black-color);
    padding: 25px;
    top: 100%;
    border-bottom: solid 3px var(--hover-color);
    transform: translateY(30px);
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}
.mega-dropdown:hover .mega-menu-main{
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
}
.mega-menu-list h3 {
    color: var(--hover-color);
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: var(--font-extra-bold);
    margin-bottom: 10px;
}
.mega-menu-list ul {
    display: block;
    list-style: none;
}
.mega-menu-list ul li {
    padding: 5px 0;
}
.mega-menu-list ul li a {
    color: var(--white-color);
    font-size: 15px;
    letter-spacing: 1px;
}
/*-------------- Mega Menu End ------------------*/





/*----------------- Header Start -----------------*/
header{
    width: 100%;
    position: sticky;
    padding: 0px;
    z-index: 9;
    transition: all 0.5s ease;
}

.bg-dark{
    background-color: var(--black-color) !important;
}
.logo-main {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 45px;
}
.logo{
    height: 48px;
}
.gallery-images .detail-wtr{
  max-width: 100px;
}
.main-menu{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 60px 0 45px;
    width: 100%;
}
.main-menu > ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.main-menu > ul > li > a{
    padding: 0 25px;
    font-family: var(--font-montserrat);
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--black-color);
    transition: all 0.4s ease;
    display: block;
    font-weight: 700;
}
.main-menu > ul > li > a span{
    position: relative;
}
.main-menu > ul > li > a span:before{
    content: '';
    position: absolute;
    bottom: -3px;
    height: 1px;
    background-color: var(--hover-color);
    width: 100%;
    transform: scaleX(0);
    transition: all 0.4s ease;
    left: 0;
    transform-origin: top left;
}
.main-menu > ul > li:first-child a{
    padding-left: 0;
}
.main-menu > ul > li > a:hover{
    text-decoration: none;
    color: var(--black-color);
}
.main-menu > ul > li > a:hover span:before{
    transform: scaleX(1);
}
.main-menu > ul > li.dropdown:hover > a span:before{
    transform: scaleX(1);
}
.main-menu > ul > li.dropdown > a{
    height: 100px;
    display: flex;
    align-items: center;
}
.dropdown-menu{
    transition: all 0.3s ease;
    display: block;
    visibility: hidden;
    opacity: 0;
    width: 230px;
    top: 101%;
    background-color: var(--black-color);
    padding: 27px 0 35px;
    border-radius: 0;
    transform: translateY(30px);
}
.dropdown-menu li a{
    display: block;
    padding: 5px 30px;
    font-size: 15px;
    line-height: 24px;
    color: var(--sub-menu-color);
}
.dropdown-menu li a:hover{
    color: var(--white-color);
    text-decoration: none;
}
.main-menu > ul > li.dropdown:hover .dropdown-menu{
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}
.dropdown-sub{
    position: relative;
}
.dropdown-sub a{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}
.dropdown-menu-sub{
    position: absolute;
    left: 100%;
    top: 0;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    width: 230px;
    background-color: var(--black-color);
    padding: 27px 0 35px;
    border-radius: 0;
    transform: translateX(20px);
    list-style: none;
}
.dropdown-sub:hover > .dropdown-menu-sub{
    transform: translateX(0px);
    visibility: visible;
    opacity: 1;
}
.dropdown-sub:hover > a{
    color: var(--white-color);
}
header.header-fixed{
    position: fixed;
    padding: 0;
    transition: all 0.5s ease;
    background-color: #fff;
    box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.5);
    top: 0;
}
header.header-fixed .main-menu{
    height: 50px;
}
header.header-fixed .logo-main {
    height: 60px;
}
header.header-fixed .logo {
    height: 50px;
}
header.header-fixed .main-menu > ul > li.dropdown > a {
    height: 80px;
}
.info-main{
    display: flex;
    align-items: center;
}
.info-main a{
    color: var(--white-color);
    margin-right: 15px;
    position: relative;
}
#cartCount {
    position: absolute;
    top: -11px;
    right: -11px;
    background-color: transparent;
    font-size: 11px;
}
/*------- Info Menu -------*/
.info-menu-button{
    background-color: transparent;
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 12px;
    padding: 0;
    display: flex;
    align-items: center;
}
.info-menu-button svg{
    fill: var(--white-color);
}
.info-menu-main{
    position: fixed;
    top: 5px;
    right: -550px;
    width: 550px;
    height: calc(100% - 10px);
    min-height: calc(100% - 10px);
    padding: 35px 65px 36px;
    background-color: var(--black-color);
    text-align: left;
    overflow: hidden;
    visibility: hidden;
    z-index: 10;
    -webkit-backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: -3px 0 3px rgba(0,0,0,.04);
    box-shadow: -3px 0 3px rgba(0,0,0,.04);
    -webkit-transition: all .6s cubic-bezier(.77,0,.175,1);
    -o-transition: all .6s cubic-bezier(.77,0,.175,1);
    transition: all .6s cubic-bezier(.77,0,.175,1);
}
.info-menu-main.info-menu-active{
    right: 5px;
    visibility: visible;
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.info-menu-close{
    background-color: transparent;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.info-menu-close span{
    font-size: 30px;
    transition: all 0.2s ease;
}
.info-menu-content{
    overflow-y: auto;
    height: 100%;
}
.info-menu-content p{
    font-size: 14px;
    padding: 10px 0;
}
.info-menu-content ul{
    list-style: none;
    display: block;
}
.info-menu-content ul li{
    display: block;
    color: var(--white-color);
    font-size: 14px;
    padding: 7px;
}
.info-menu-content ul li a{
    display: block;
    color: var(--white-color);
}
.info-menu-content ul li svg{
    margin-right: 10px;
}
.info-menu-content iframe{
    height: 35vh;
    margin-top: 30px;
}
.info-menu-text-contact{
    z-index: -1;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(104,104,104,.4);
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: var(--font-poppins);
    position: absolute;
    top: 384px;
    display: inline-block;
    width: auto;
    font-size: 150px;
    transform: rotate(90deg) translateX(100%);
    left: -7px;
    white-space: nowrap;
    -webkit-transition: .7s .2s;
    -o-transition: .7s .2s;
    transition: .7s .2s;
}
.info-menu-main.info-menu-active .info-menu-text-contact{
    transform: rotate(90deg) translateX(0%);
}
/*----------------- Header End -----------------*/




/*----------------- Banner Start -----------------*/
.banner-slide-main{
    position: relative;
}
.slider-bg{
    position: relative;
    z-index: 1;
}
.slider-bg img{
    height: 800px;
    object-fit: cover;
    object-position: center;
}
.slider-bg::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #08161B;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.92;
}
.slider-main{
    position: absolute;
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 80px;
}
.banner-shape{
    position: absolute;
    top: 0;
    z-index: -1;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.banner-shape img{
    width: 100%;
}
.banner-image{
    text-align: center;
}
.banner-image img{
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}
.slider-content{
    padding-left: 60px;
}
.slider-content h1{
    color: var(--white-color);
    font-size: 55px;
    font-weight: var(--font-semi-bold);
    letter-spacing: 2px;
    line-height: 75px;
    transform: translateX(200px);
    transition: all 0.5s ease;
}
.slider-content p{
    font-weight: var(--font-medium);
    font-size: 20px;
    transform: translateX(200px);
    transition: all 0.5s ease;
    color: var(--paragraph-light-color);
}
.slider-content a{
    transform: translateY(100px);
    transition: all 0.5s ease;
    opacity: 0;
}
.carousel-item.active .slider-content h1{
    transform: translateY(0);
}
.carousel-item.active .slider-content p{
    transform: translateY(0);
}
.carousel-item.active .slider-content a{
    transform: translateX(0);
    opacity: 1;
}
.carousel-control{
    background-color: transparent;
    border: 0;
}
.carousel-control span{
    cursor: pointer;
}
/*----------------- Banner End -----------------*/







/*----------------- About Us Start -----------------*/
.about-section{
    padding: 100px 0;
}
.about-image{
    position: relative;
    z-index: 1;
}
.about-shape-image{
    position: absolute;
    z-index: -1;
    bottom: 0;
}
.about-content h5{
    text-transform: uppercase;
    color: var(--hover-color);
    font-size: 14px;
    font-weight: var(--font-extra-bold);
}
.about-content h1{
    font-weight: var(--font-semi-bold);
}
.about-content p{
    max-width: 588px;
    text-align: justify;
}
.about-sub-section{
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-sub-section-icon{
    background: #fff;
    -webkit-box-shadow: -1px 2px 14px rgba(0, 0, 0, 0.1);
    box-shadow: -1px 2px 14px rgba(0, 0, 0, 0.1);
    width: 65px;
    height: 65px;
    padding: 12px;
    margin-right: 17px;
}
.about-sub-section-icon img{
    width: 100%;
}
/*----------------- About Us End -----------------*/




/*----------------- Featured Products Start -----------------*/
.feature-products-section{
    /*background-color: var(--section-bg-color);*/
    padding: 20px 0 80px;
    background-color: #f3f3f3;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  background-attachment: fixed;
}
.products-slider-main {
    margin-top: 40px;
}
.product-grid-col{
    border: 0;
}
.product-box-main{
    background-color: var(--white-color);
    padding: 11px;
    position: relative;
    overflow: hidden;
}
.product-box-image {
    position: relative;
}
.product-box-image img{
    width: 100%;
    /*height: 300px;*/
    object-fit: cover;
    object-position: center;
}
.sec-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.5s ease;
}
.product-box-content{
    position: relative;
    margin-top: 15px;
    text-align: center;
}
.product-box-content a {
    color: var(--black-color);
    font-weight: 500;
    font-size: 15px;
    height: 50px;
    display: inline-block;
}
.product-box-content p{
    font-size: 18px;
}
.product-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgb(0,0,0,0.09);
    z-index: 1;
    text-align: right;
    transition: all 0.3s ease;
    opacity: 0;
}
.product-overlay > a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.product-overlay ul {
    list-style: none;
    display: block;
    max-width: 65px;
    margin: 15px 13px 0 auto;
    position: relative;
    z-index: 2;
    transform: translateX(110%);
    transform-origin: right;
    transition: all 0.3s ease;
    transition-delay: 0.3s;
}
.product-overlay ul li a {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    color: var(--white-color);
    margin: 7px;
    font-size: 18px;
    padding: 0;
}
.product-overlay ul li button {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: var(--black-color);
    color: var(--white-color);
    margin: 7px;
    font-size: 18px;
    padding: 0;
}
.product-box-main:hover .product-overlay{
    opacity: 1;
}
.product-box-main:hover .product-overlay ul{
    transform: translateX(0%);
}
.product-box-main:hover .sec-image{
    opacity: 1;
}
.owl-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--black-color) !important;
    color: var(--white-color) !important;
    font-size: 20px !important;
}
.owl-next {
    right: 0;
}
.owl-prev{
    left: 0;
}
.owl-buttons.disabled{
    cursor: not-allowed !important;
    opacity: 0.5;
}
.free-shipping-tag{
  
    position: absolute;
  left: 0;
  bottom: 22px;
  padding: 6px 12px;
     background-color: #ffae5d;
  color: #fff;
  font-size: 11px;
  border-radius: 0px 20px 20px 0px;
}
.sale-tag{
    position: absolute;
  right: 0;
  top: 10px;
  padding: 6px 12px;
  font-size: 13px;
  background-color: #70a95a;
  color: #fff;
  border-radius: 20px 0px 0 20px;
}
/*----------------- Featured Products End -----------------*/









/*----------------- Categories Start -----------------*/
.category-main {
    position: relative;
    overflow: hidden;
}
.category-image img{
    transition: all 0.5s ease;
}
.category-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    z-index: 2;
}
.category-content h1{
    font-weight: var(--font-extra-bold);
    color: var(--white-color);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    width: 200%;
    max-width: 415px;
    margin: 0 auto;
    padding: 5px;
}
.category-content h1:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: var(--black-color);
    z-index: -1;
    transition: all 0.4s ease;
}
.category-content a{
    margin-top: 30px;
}
.category-main > a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(0, 0, 0,0.3);
}
.category-main:hover .category-image img{
    transform: scale(1.04);
}
.category-main:hover .category-content h1:before{
    width: 100%;
}
/*----------------- Categories End -----------------*/








/*----------------- Instagram Start -----------------*/
.instagram-section{
    padding: 100px 0 70px;
}
.instagram-main {
    position: relative;
    margin-bottom: 30px;
}
.instagram-image img {
    height: 320px;
    object-fit: cover;
    object-position: center;
}
.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.5s ease;
}
.instagram-overlay a {
    color: var(--hover-color);
    font-size: 30px;
}
.instagram-main:hover .instagram-overlay{
    transform: scale(1);
}
.instagram-main > a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/*----------------- Instagram End -----------------*/


/*<!------------ News Letter Section Start ------------>*/
.news-section {
  background-color: #000000;
  color: #fff;
  text-align: center;
}
.newsletter-rdx-content .title {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: var(--font-extra-bold);
}
.social-icons li{
  display: inline-block;
}
.newsletter-rdx-content {
  padding: 100px 0;
}
.block_newsletter_info input{
  background-color: transparent;
  border: solid 1px #fff;
  padding: 12px 15px;
  width: 27%;
  color: #fff;
}
.block_newsletter_info button span{
  color: rgb(183, 18, 52);
  background-color: #fff;
  border: 0;
  padding: 15.5px 31px;
}
.block_newsletter_info button{
  border: 0;
  background-color: transparent;
  margin-left: -17px;
}
.block_newsletter_info form{
  padding: 10px;
}
.social-icons {
  padding-top: 20px;
}
/*<!------------ News Letter Section End ------------>*/


/*----------------- Footer Start -----------------*/
footer{
    background-color: #000000;
    padding: 100px 0;
}
.footer-main h3{
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    font-size: 22px;
}
.footer-main ul{
    list-style: none;
    display: block;
    margin-top: 30px;
}
.footer-main ul li{
    color: var(--paragraph-light-color);
    padding: 5px 0;
}
.footer-main ul li b{
    text-transform: uppercase;
}
.footer-main ul li a{
    color: var(--paragraph-light-color);
}
.footer-main ul li a svg{
    margin-right: 10px;
    font-size: 17px;
}
.footer-main ul li a:hover{
    color: #ecab70;
    text-decoration: none;
}
.copy-right{
    text-align: center;
    background-color: #000000;
    padding: 30px 15px;
    border-top: solid 1px #868686;
}
.copy-right p{
    font-size: 16px;
    color: #fff;
}
/*----------------- Footer End -----------------*/







/*----------------- Sub Pages Title Start -----------------*/
.sub-pages-wrapper .col-md-4.bg-dark{
    background-color: transparent !important;
}
.content-main {
    padding: 20px 0;
    background-color: #f3f3f3;
  /*  background-image: url(https://livewebsol.com/site-demos/select/images/body-bg.jpg);*/
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  /*overflow-x: hidden;*/
  /*background-attachment: fixed;*/
  margin: 0 !important;
}
.page-title-main{
    padding: 100px 0 80px;
    background-image: url('../images/page-title-image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.page-title{
    margin-top: 80px;
}
.page-title h1{
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
}
.breadcrumbs {
    margin-top: 20px;
}
.breadcrumbs ul{
   display: flex;
   align-items: center;
   justify-content: center;
   list-style: none;
}
.breadcrumbs ul li{
    color: var(--white-color);
    padding: 0 20px;
    font-weight: var(--font-semi-bold);
}
.breadcrumbs ul li a{
    color: var(--white-color);
    font-weight: var(--font-regular);
}
.breadcrumbs ul li a:hover{
    color: var(--hover-color);
}
.breadcrumbs ul svg{
    color:var(--white-color);
}
.sub-pages-wrapper header.header-fixed .col-md-4.bg-dark {
  background-color: var(--black-color) !important;
}
/*----------------- Sub Pages Title End -----------------*/




/*----------------- Quick View Start -----------------*/
#quickView{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.8);
    z-index: 10;
}
.quick-view-poup-main{
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    transform: translateY(-50%);
    z-index: 10;
    background-color: var(--white-color);
    padding: 40px;
}
.quick-view-poup-close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.quick-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #fff;
  /*padding: 30px;*/
}
.quick-product-image a {
    /*flex: 0 0 100%;*/
    /*width: 100%;*/
    /*display: block;*/
    /*padding: 5px;*/
    /*border: solid 1px rgb(0,0,0,0.1);*/
    /*margin: 5px;*/
    /*cursor: zoom-in;*/
    flex: 0 0 100%;
  width: 100%;
  cursor: zoom-in;
}
.gallery-images{
    display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding-top: 22px;
}
.quick-product-image .gallery-images a {
 flex: 0 0 21%;
  width: 10%;
  cursor: pointer;
  padding: 1px;
}
.product-price {
  background: #fff;
  padding-bottom: 22px;
  text-align: center;
  padding-top: 20px;
}
.quick-product-detail h1{
    color: var(--hover-color);
    font-size: 30px;
    font-weight: var(--font-semi-bold);
}
.quick-product-detail h3{
    font-size: 18px;
}
/* -- quantity box -- */
.quantity {
    display: inline-block; 
}
.quantity .input-text.qty {
    width: 100px;
    height: 41px;
    padding: 0 5px;
    text-align: center;
    background-color: var(--white-color);
    border: 1px solid #efefef;
}
.quantity.buttons_added {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.quantity.buttons_added input {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    box-shadow: none;
}
.quantity.buttons_added .minus, .quantity.buttons_added .plus {
    padding: 7px 10px 8px;
    height: 41px;
    background-color: var(--white-color);
    border: 1px solid #efefef;
    cursor:pointer;
    width: 35px;
}
.quantity.buttons_added .minus {
    border-right: 0; 
}
.quantity.buttons_added .plus {
    border-left: 0; 
}

.quantity.buttons_added .minus:hover, .quantity.buttons_added .plus:hover {
    background: var(--hover-color); 
    color: var(--white-color);
}
.quantity input::-webkit-outer-spin-button, .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0; 
}
.quantity.buttons_added .minus:focus, .quantity.buttons_added .plus:focus {
    outline: none; 
}
/*----------------- Quick View End -----------------*/




/*----------------- Loading start -----------------*/
.loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 9999999;
    display: none;
}
.spinner {
    width: 70px;
    height: 70px;
    position: relative;
}
.spinner div {
    width: 100%;
    height: 100%;
    position: absolute;
    box-sizing: border-box;
    border: 10px solid transparent;
    border-radius: 50%;
    border-top-color: var(--hover-color);
    animation: spinnerOne 1.2s linear infinite;
}
.spinner div:nth-child(2) {
    border: 10px solid transparent;
    border-bottom-color: var(--hover-color);
    animation: spinnerTwo 1.2s linear infinite;
}
@keyframes spinnerOne {
    0%{ transform: rotate(0deg); 
        border-width: 10px;
    }
    50% {
        transform: rotate(180deg);
        border-width: 1px;
    }
    100% {
        transform: rotate(360deg);
        border-width: 10px;
    }
  
}
@keyframes spinnerTwo {
    0%{ transform: rotate(0deg); 
        border-width: 1px;
    }
    50% {
        transform: rotate(180deg);
        border-width: 10px;
    }
    100% {
        transform: rotate(360deg);
        border-width: 1px;
    }
}
/*----------------- Loading End -----------------*/






/*----------------- Left Menu Start -----------------*/
.card{
    border: 1px solid #ddd;
    border-radius: 0;
}
.card-header{
    background-color: #eee;
    padding: 10px 20px;
    transition: all 0.5s ease;
    cursor: pointer;
    border-bottom: none;
    border: 0;
    border-radius: 0 !important;
}
.card-header .title{
    font-size: 18px;
    color: var(--black-color);
    font-weight: var(--font-semi-bold);
    transition: all 0.5s ease;
}
.card-header .accicon{
    float: right;
    font-size: 20px;  
    width: 1.2em;
    transition: all 0.5s ease;
}
/*.card-header:hover{*/
/*    background-color: var(--hover-color);*/
/*}*/
.card-header:hover .title{
    color: var(--hover-color);
}
.card-header:hover .accicon{
    color: var(--hover-color);
}
.card-header-active{
    background-color: var(--hover-color) !important;
}
.card-header-active .title{
    color: var(--white-color) !important;
}
.card-header-active .accicon{
    color: var(--hover-color);
}
.card-header .rotate-icon{
    transform: rotate(0deg);
}
.card-header:not(.collapsed) .rotate-icon{
    transform: rotate(180deg);
}
.card:hover a{
    text-decoration: none;
}
.card-body{
    border-top: 1px solid #ddd;
}
.card-body ul{
    list-style: none;
}
.card-body ul li a{
    color: var(--black-color);
    padding: 5px 10px;
    display: block;
    transition: all 0.5s ease;
}
.card-body ul li a:hover{
    color: var(--hover-color);
}
.card-body ul .left-menu-active a{
    color: var(--hover-color);
    font-weight: var(--font-semi-bold);
}
.main-card .card-body{
    padding: 0;
    border: 0;
}
.sub-card{
    border: 0;
}
.sub-card .card-header{
    background-color: #f4f4f4;
    border: 0;
}
.sub-card .card-header .title{
    font-size: 15px;
    color: #404040;
}
.sub-card .card-header .accicon{
    color: #404040;
}
.sub-card .card-body{
    background-color: #f4f4f4;
    border: 0;
    padding: 0 25px 11px;
}
.card-header.collapsed .accicon .fa-minus{
    display: none;
}
.card-header .accicon .fa-plus{
    display: none;
}
.card-header.collapsed .accicon .fa-plus{
    display: block;
}
/*----------------- Left Menu End -----------------*/







/*----------------- Product Detail Page Start -----------------*/
.product-detail-box {
    padding: 20px 50px 40px;
    background-color: #fff;
}
.product-detail-box h1 {
    font-weight: var(--font-bold);
    font-size: 30px;
    color: var(--hover-color);
    line-height: 35px;
}
.product-detail-box h4 {
    font-size: 20px;
    font-weight: var(--font-semi-bold);
}
.product-detial{
    margin: 30px 0;
}
.product-options {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.product-options h3 {
    font-size: 20px;
    font-weight: var(--font-semi-bold);
    margin-right: 15px;
    width: 115px;
}
.product-options select{
    border: 0;
    border-radius: 0;
}
.related-product-title{
    font-size: 35px;
    font-weight: var(--font-bold);
    margin: 50px 0 30px;
}
.order-now-form-main {
background-color: #fff;
  padding: 5px 0px 2px;
  border-radius: 10px;
}
.order-now-form-main h3{
    font-weight: 700;
}
.order-now-form-main p{
    font-size: 16px;
    margin-bottom: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
  background-color: #fff;
  border: solid 1px;
}
.product-detial ul{
  padding-left: 17px;
}
.order-now-form-main input.form-control{
    background-color: #fff;
  border: solid 1px;
}
.order-now-form-main input.form-control:focus{
    background-color: var(--white-color);
    color: var(--black-color);
}
.order-now-form-main textarea.form-control{
  background-color: #fff;
  border: solid 1px;
}
.order-now-form-main textarea.form-control:focus{
    background-color: var(--white-color);
    color: var(--black-color);
}
.order-now-form-main p.error {
    right: 0;
    background-color: #737373;
}
/*----------------- Product Detail Page End -----------------*/






/*----------------- Search Popup Start -----------------*/
.search-popup-main {
    position: fixed;
    top: 20px;
    bottom: 0;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    background-color: #fff;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 99999999;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
    overflow: hidden;
}
.search-popup-main.search-active{
    visibility: visible;
    opacity: 1;
}
.search-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0 0 15px;
    margin-bottom: 20px;
}
.search-header h4{
    font-size: 25px;
    font-weight: 800;
}
.search-header button{
    width: 50px;
    height: 50px;
    padding: 0;
}
.search {
    margin-bottom: 50px;
}
.search input{
    width: 100%;
    height: 60px;
    background-color: #eee;
    border: 0;
    padding: 0 20px;
    color: #000;
    font-weight: 600;
}
.search-grid{
    position: relative;
    height: calc(100% - 200px);
    overflow-y: auto;
}
.search-grid .product-box-image img{
    height: 180px;
}
/*----------------- Search Popup End -----------------*/







/*----------------- Other Css Start -----------------*/
.cart-success{
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10;
}
.no-products-massage{
    font-weight: 600;
    font-size: 29px;
    color: red;
}
.pagination{
    justify-content: flex-end;
    margin-top: 30px;
}
.pagination a{
    color: var(--black-color);
}
.pagination a:hover{
    color: var(--hover-color);
}
.page-item.active .page-link{
    background-color: var(--hover-color);
    border-color: var(--hover-color);
}
.security-code{
    height: 50px;
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}
.main-card{
    border: 0;
}
/*----------------- Other Css End -----------------*/







/*----------------- Responsive Start -----------------*/
@media (max-width:  1550px){
    .main-menu > ul > li > a {
        padding: 0 12px;
    }
}



@media (max-width:  1300px){
    .main-menu{
        padding: 0;
    }
    .logo-main{
        padding: 0;
    }
    .slider-bg img {
        height: 620px;
    }
    .about-section {
        padding: 70px 0;
    }
    h1 {
        font-size: 38px;
        line-height: 45px;
    }
    .feature-products-section{
        padding: 70px 0;
    }
    .instagram-section {
        padding: 70px 0 40px;
    }
}




@media (max-width:  1199px){
    .main-menu > ul > li > a {
        padding: 0 14px;
    }
    .slider-content h1 {
        font-size: 41px;
        line-height: 50px;
    }
}




@media (min-width:  992px){
    .mobile-button{
        display: none;
    }
    .mobile-menu{
        display: none;
    }
}





@media (max-width:  991px){
    .md-hidden{
        display: none;
    }
    .desktop-button{
        display: none;
    }
    .main-menu{
        justify-content: flex-end;
    }
    /*.main-menu > ul{*/
    /*    display: none;*/
    /*}*/
    .slider-main {
        top: 11%;
        align-items: center;
    }
    footer{
        padding: 50px 0 0;
    }
    .footer-main{
        margin-bottom: 50px;
    }
    .footer-main ul{
        margin-top: 10px;
    }
    .mobile-menu{
        overflow-y: auto;
        height: auto;
    }
    .mobile-menu ul{
        display: block;
    }
    .mobile-menu ul li{
        display: block;
    }
    .mobile-menu ul li a {
        color: var(--white-color);
        font-weight: var(--font-bold);
        font-size: 25px;
        padding: 7px 0;
        display: block;
        transition: all 0.5s ease;
    }
    .mobile-menu ul li a:hover{
        color: var(--hover-color);
    }
}





@media (max-width:  767px){
    #products-container .col-6{
        padding: 0 2px;
    }
    .feature-products-section {
    padding: 25px 0;
  }
  .feature-products-section .container-fluid{
      padding: 0;
  }
    .about-content{
       margin-bottom: 30px;
    }
    .main-menu {
    justify-content: center;
    overflow: auto;
  white-space: nowrap;
  padding: 15px;
  }
    .info-menu-main{
       width: 97%;
       padding: 35px 35px 36px;
       overflow-y: auto;
    }
    #leftMenu{
       margin-bottom: 15px;
    }
    .breadcrumbs ul{
        flex-wrap: wrap;
    }
    .quick-product-image a {
        flex: 1 0 46%;
    }
    .product-detail-box {
        margin-top: 20px;
        padding: 20px 15px 30px;
    }
    .product-detail-box h1{
        font-size: 20px;
    }
    .product-options h3 {
        font-size: 15px;
        margin-right: 10px;
    }
    .related-product-title {
        font-size: 30px;
        margin: 38px 0 15px;
    }
    .mobile-dropdown-menu #leftMenu{
       margin-bottom: 0px;
    }
    .mobile-dropdown-menu .col-lg-3{
        padding: 0;
    }
    .mobile-dropdown-menu .card{
        background-color: transparent;
    }
    .mobile-dropdown-menu .card-header{
        background-color: transparent;
        padding: 10px 0;
    }
    .mobile-dropdown-menu .card-header .title {
        font-size: 27px;
        color: var(--white-color);
    }
    .mobile-dropdown-menu .card-header .accicon{
        color: var(--white-color);
    }
    .mobile-dropdown-menu .card-header:hover .title {
        color: var(--hover-color);
    }
    .mobile-dropdown-menu .card-header:hover .accicon {
        color: var(--hover-color);
    }
    .mobile-dropdown-menu .sub-card .card-header{
        padding-left: 20px;
    }
    .mobile-dropdown-menu .sub-card .card-header .title {
        font-size: 20px;
    }
    .mobile-dropdown-menu .sub-card .card-body {
        background-color: transparent;
        padding-left: 40px;
    }
    .mobile-dropdown-menu .sub-card .card-body ul li a{
        font-size: 16px;
    }
    .product-box-image img{
        /*height: 160px;*/
    }
    .sale-tag {
        padding: 3px 6px;
        font-size: 11px;
    }
    .free-shipping-tag {
        bottom: 10px;
        padding: 4px 6px;
        font-size: 10px;
    }
    .product-box-content p {
        font-size: 14px;
    }
    .product-box-content a{
        font-size: 14px;
    }
}




@media (max-width:  550px){
    .gallery-images .detail-wtr {
  max-width: 60px;
}
    .logo-main {
        height: 75px;
    }
    /*.main-menu{*/
    /*    height: 75px;*/
    /*}*/
    .logo {
        height: 50px;
    }
    header.header-fixed .logo-main {
        height: 55px;
    }
    header.header-fixed .main-menu {
        height: 55px;
    }
    header.header-fixed .logo {
        height: 40px;
    }
    .slider-bg img {
        height: 500px;
    }
    .slider-content {
        padding-left: 0;
    }
    .slider-main{
        padding: 0 40px;
    }
    .slider-content h1 {
        font-size: 29px;
        line-height: 35px;
    }
    .page-title-main {
        padding: 80px 0 60px;
    }
    .page-title {
        margin-top: 40px;
    }
}





@media (max-width:  450px){
    .my-3 .container-fluid{
  padding: 0;
}
    .slider-main {
        padding: 0 25px;
    }
    .slider-content h1 {
        font-size: 23px;
        line-height: 31px;
    }
    .slider-content p{
        font-size: 17px;
        margin-bottom: 30px !important;
    }
    h1 {
        font-size: 23px;
        line-height: 31px;
    }
    p{
        font-size: 16px;
    }
    .title-main h5{
        font-size: 12px;
    }
    .instagram-image img {
        height: 240px;
    }
}
/*----------------- Responsive End -----------------*/
