@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');
/* font-family: "Ubuntu Sans", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* font-family: "Playfair Display", serif; */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Poppins", sans-serif; */

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


/*html, body {
	width: 100%;
	overflow-x: hidden;
} */


:root {
  --main-color: #7B1318;
  --gray-bg: #3A3A3C; 
  --color-black: #000; 
}


* {
    text-decoration: none !important;
    outline: none !important;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    background: #fff;
    letter-spacing: 0.4px;
    overflow-x: hidden;
    color: #333333;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

ol {
    list-style: decimal inside;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: #0d141e;
    line-height: 30px;
    font-family: "Poppins", sans-serif;
}

p {
    margin: 0;
    padding: 0;
    color: #212121;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

b,
strong {
    font-weight: 600;
}

blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

/* a,
a:hover,
a:visited {
    color: #21a108;
} */

/* ::selection 
{
    background: #21a108;
    color: #fff;
}
::-moz-selection 
{
    background: #21a108;
    color: #fff;
} */
a:focus,
p:focus,
div:focus,
input:focus,
textarea:focus,
submit:focus,
button:focus {
    outline: none;
}


/***************
page scrool
**************/
.scrollup {
    right: 15px;
    position: fixed;
    border-radius: 200px;
    bottom: -80px;
    width: 45px;
    height: 45px;
    z-index: 9999;
    background: var(--main-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-align: center;
    color: #FFF;
    padding: 10px;
}

.scrollup.active {
    bottom: 92px;
    right: 15px;
}

/* .scrollup:hover {
    background-color: rgba(37, 37, 37, 0.7);
} */

/***************
page scrool
***************/

/********HAMBURGER ICON***********/
.hamburger {
    padding: 0px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: var(--main-color);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/** Spring **/
.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent;
}

.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/** Spring **/

/********HAMBURGER ICON***********/

.topmines {
    top: -100px;
}

.nav-active {
    position: fixed;
    top: 0 !important;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 5px #d9d9d9;
}

.nav-active .logo {
    margin-top: 0;
    position: relative;
    z-index: 99;
    width: 150px;
    flex: 0 0 150px;
}

.nav-active .menu-part {
    align-items: center;
}



/*******************************
********NAV BAR*****************
*****************************/
#pull {
    display: none;
}

.nav>ul>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: auto;
    height: auto;
    margin: 0px 50px 0px 0px;
}

.nav>ul>li:last-child,
.nav>ul>li:only-child {
    margin: 0;
}

/* .nav>ul>li::before {
    position: absolute;
    bottom: 10px;
    left: 0px;
    z-index: 1;
    content: " ";
    width: 20px;
    height: 3px;
    background: #1db315;
    transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.nav>ul>li:hover::before,
.nav>ul>li.current-menu-item::before,
.nav>ul>li.current-menu-parent::before,
.nav>ul>li.current-menu-ancestor::before {
    transform: scaleX(1);
    -webkit-transform: scaleX(1);
} */

.nav>ul>li>a {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    height: auto;
    padding: 20px 0px;
    color: var(--color-black);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    line-height: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    font-family: "Ubuntu Sans", sans-serif;
}

.nav>ul>li:hover>a,
.nav>ul>li.current-menu-item>a,
.nav>ul>li.current-menu-parent>a,
.nav>ul>li.current-menu-ancestor>a {
    color: #000;
}

.nav>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 300px;
    height: auto;
    padding: 0px 0px 0px 0px;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul,
.nav>ul>li:nth-last-child(2)>ul {
    left: auto;
    right: 0;
}

.nav>ul>li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.nav>ul>li>ul>li,
.nav>ul>li>ul>li>ul>li {
    position: relative;
    width: 100%;
    height: auto;
    float: left;
}

.nav>ul>li>ul>li>a,
.nav>ul>li>ul>li>ul>li>a {
    display: block;
    width: auto;
    height: auto;
    padding: 2px 15px 1px 15px;
    background: rgba(11, 30, 48, 0.8);
    border-top: 1px #485665 solid;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:hover>ul>li>a,
.nav>ul>li:hover>ul>li>ul>li>a {
    padding: 9px 15px 10px 15px;
}

.nav>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li.current-menu-parent>a,
.nav>ul>li>ul>li>ul>li:hover>a,
.nav>ul>li>ul>li>ul>li.current-menu-item>a,
.nav>ul>li>ul>li>ul>li.current-menu-parent>a {
    background: #199adb;
}

.nav>ul>li>ul>li>ul {
    position: absolute;
    top: 10%;
    left: 100%;
    z-index: 9999;
    width: 240px;
    height: auto;
    background: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.nav>ul>li:last-child>ul>li>ul,
.nav>ul>li:nth-last-child(2)>ul>li>ul {
    left: auto;
    right: 100%;
}

.nav>ul>li>ul>li:hover>ul {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.middle-conter {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

.nav {
    width: 100%;
}

.top-nav 
{
    position: relative;
    border-top: 2px solid #D2D2D2;
}

 




/*******************************
********NAV BAR*****************
*****************************/




/***************** Top Bar *****************/

.top-bar {
    position: relative;
    background: var(--gray-bg);
    padding: 10px 0;
    margin-bottom: 20px;
}

.top-bar::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -55px;
    background: url(../images/top-bg-design.png);
    width: 100%;
    height: 136px;
    z-index: -1;
}

/* top-bg-design.png */

.top-bar p  
{
    color: #FFF;
    font-family: "Ubuntu Sans", sans-serif;
}

.nav 
{
    justify-content: center;
}

.head-right li  
{
    position: relative;
}

.head-right li:last-child a
{
    margin-right: 0;
}

.head-right li a 
{
    color: #000;
    margin: 0 10px;
    font-size: 20px;
    font-weight: bold;
}

.head-right li .cart 
{
    width: 18px;
    height: 18px;
    border-radius: 50px;
    background: var(--main-color);
    flex: 0 0 18px;
    color: #FFF;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -10px;
    font-size: 12px;
}



/************ End Header ***************/

.heading-area img 
{
    width: 100px;
}

.heading-area h2  
{
    font-size: 40px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 60px;
}

.cart-name {
    background: #000000a3;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 54px;
    text-align: center;
    color: #FFF;
    padding: 10px;
}

.cart-name h4, .cart-name h4 a  
{
    color: #FFF;
}

.banner-area 
{
    overflow: hidden;
}


.banner img 
{
    width: 100%;
}

.banner-content {
    position: absolute;
    top: 30%;
    z-index: 99;
    width: 550px;
    margin-left: 270px;
}

.banner-content h1 {
    font-size: 58px;
    line-height: 70px;
    color: #000000;
    margin-bottom: 20px;
}

.banner-content h1 span {
    font-size: 60px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

.banner-content h1 b {
    font-size: 60px;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

.banner-content h1 strong {
    font-size: 75px;
    color: #000000;
    font-family: "Playfair Display", serif;
}

.bg-banner-text {
    background: var(--main-color);
    padding: 5px 10px;
    font-size: 30px;
    line-height: 40px;
    color: #FFF;
    text-transform: capitalize;
    display: inline-block;
    margin-left: 68px;
    margin-bottom: 30px;
}

a.button-design {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #000000;
    color: #000;
    line-height: 40px;
    margin-left: 45%;
    margin-top: 54%;
}
 

.cover-area 
{
border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E9E9E9;
}

.product-area img 
{
    width: 100%;
    object-fit: cover;
}

.product-details-area p  
{
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.product-details-area span 
{
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
}

a.cart-btn {
    color: #FFF;
    background: var(--main-color);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    top: -15px;
    position: relative;
}

.kurty-banner 
{
    padding: 175px 0;
    background-repeat: no-repeat !important; 
    background-position: center !important;
}

.kurty-banner h2 
{
    color: #FFF;
    font-size: 80px;
    font-family: "Playfair Display", serif;
    line-height: 100px;
    font-weight: 400;
}

.selling-product .cover-area img
{
    height: 400px;
    width: 100%;
    object-fit: cover;
}

 

.feature-collection 
{
    background-size: cover !important;
    padding: 50px 0;
}
.feature-slide .feature-image 
{
    padding: 10px;
}

.feature-slide .feature-image img
{
    width: 251px;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
}


.testimonial
{
    background-size: cover !important;
    padding: 60px 0;
}

.client-image img
{
    width: 57px;
    height: 59px;
    overflow: hidden;
    border-radius: 50px;
    background-size: cover;
    object-fit: cover;
}

.testi-area 
{
    border-left: 2px solid #000;
}

.testi-area p  
{
    font-size: 16px;
    line-height: 30px;
}

.testi-area i  
{
    color: #f9c037;
}

.client-content strong 
{
    font-weight: 500 !important;
    font-size: 20px;
}


.testi-slider .slick-prev:before, .testi-slider .slick-next:before 
{
    opacity: 1;
    font-size: 35px;
}

.testi-slider .slick-prev {
    left: -50px;
}

.icon-area img 
{
    width: 100px;
    height: 100px;
}

footer 
{
    background: #3A3A3C;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.foot-bg 
{
    position: relative;
}

.foot-bg::before {
    content: '';
    background: url(/images/banner-bottom.png);
    background-repeat: no-repeat;
    background-position: top;
    width: 100%;
    height: 42px;
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
}

.foot-bg::after {
    content: '';
    background: url(/images/banner-bottom.png);
    background-repeat: no-repeat;
    background-position: top;
    width: 100%;
    height: 42px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: FlipV;
    -ms-filter: "FlipV";
}

footer .icon-area i
{
    font-size: 50px;
    color: #FFF;
}

.loc-text p   
{
    color: #FFF; 
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}


.footer-link li a 
{
    color: #FFF;
    font-size: 16px;
    line-height: 30px;
}

.footer-link 
{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding-left: 30px;
    padding-right: 30px;
}

.social-footer ul li a 
{
    color: #ffd786;
    font-size: 18px;
    margin-right: 15px;
    border: 1px solid #ffd786;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

/************/

.slick-next {
    right: -40px;
}

.slick-next:before {
    content: '\F138';
    font-family: "bootstrap-icons";
    color: #000;
    font-size: 22px !important;
}

.slick-prev {
    left: -70px;
}

.slick-prev:before {
    content: '\F12F';
    font-family: "bootstrap-icons";
    color: #000;
    font-size: 22px !important;

}

.slick-prev:before, .slick-next:before  
{
    opacity: 1 !important;
}

.slick-prev, .slick-next 
{
    width: 50px;
    height: 50px; 
    background: #FAFAFA !important;
    border-radius: 50%;
}

/************* Woocom ******************/ 

.woocommerce-page .top-nav 
{
	background: #f5f5f5; 
}

.woocommerce-product-gallery {
    position: relative;
    max-height: 600px;
    overflow: hidden;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #cbcbcb;
    border-radius: 15px;
    overflow: hidden;
}

.woocommerce ul.products li.product .button {
    color: #FFF;
    background: var(--main-color);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    position: relative;
	font-weight: 400; 
	text-transform: capitalize; 
}

.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    height: 45px;
    padding: 10px;
    text-transform: capitalize;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    padding: .5em 0;
    margin: 0;
    font-size: 18px;
}

.woocommerce ul.products li.product .price {
    display: block;
    font-weight: 400;
    margin-bottom: .5em;
    font-size: 16px;
    color: #000 !important;
    font-weight: 600;
}

.woocommerce div.product .product_title {
    font-size: 30px;
    margin-bottom: 15px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #75111c;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.woocommerce div.product form.cart .button 
{
	color: #FFF;
    background: var(--main-color);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    position: relative;
	font-weight: 400; 
	text-transform: capitalize; 
}

.woocommerce div.product form.cart {
    margin-bottom: 2em;
    margin-top: 20px;
}

.related.products h2 
{
	font-size: 28px; 
	font-weight: 600; 
	margin-bottom: 20px; 
	text-transform: capitalize; 
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    padding: 12px;
    color: #000;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--main-color);
    color: #fff;
}

.woocommerce-Tabs-panel p   
{
	margin-bottom: 15px; 
}

.woocommerce-Tabs-panel ul li 
{
	position: relative; 
	padding-left: 20px; 
}

.woocommerce-Tabs-panel ul li:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 8px;
    background: #000;
    border-radius: 100px;
}

.woocommerce-tabs  {
    background: #f5f5f5;
    padding: 22px;
    margin-bottom: 20px;
    padding-top: 0;
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
    display: block;
    line-height: 1.4;
    max-width: max-content;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}
.wc-block-components-formatted-money-amount {
    white-space: nowrap;
    font-weight: 600;
    font-size: 18px;
}

.wc-block-cart__submit-container {
    display: inline-block !important;
    background: var(--main-color) !important;
    padding: 0px 10px !important;
    border-radius: 0px !important;
    color: #FFF !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    width: 100%;
}

.wc-block-cart-item__remove-link {
    display: inline-block !important;
    background: var(--main-color) !important;
    padding: 10px 10px !important;
    border-radius: 0px !important;
    color: #FFF !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.wc-block-cart__submit-container div {
    color: #FFF;
}
.wc-block-components-button:not(.is-link) {
     
    background: var(--main-color) !important;
    color: #FFF;
    padding: 10px 30px;
    font-weight: 600;
	border: none; 
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 30%;
    background: #f5f5f5;
    padding: 20px;
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 68%;
    background: #f5f5f5;
    padding: 30px 20px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    color: #000;
    font-weight: 600;
    padding: 10px;
    width: 100%;
    display: block;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
   background: var(--main-color) !important;
    color: #FFF;
}


.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    color: #FFF; 
	background: var(--main-color) !important;
}




.inner-banner 
{
	background-size: cover !important; 
}

.inner-banner-title h1 
{
	color: #FFF;
    font-size: 50px;
    font-family: "Playfair Display", serif;
    line-height: 100px;
    font-weight: 600;
}

.common-content h2 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    line-height: 40px;
    margin-bottom: 20px;
}

.common-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    line-height: 40px;
    margin-bottom: 20px;
}


.common-content p   
{
	margin-bottom: 15px; 
}

.submit-button {
    color: #FFF;
    background: var(--main-color);
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
	border: none; 
}

.con-area {
    background: #f5f5f5;
    padding: 30px;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    box-shadow: 0 0 5px #d1d1d1;
}

.contact-from input.form-control
{
	height: 50px; 
	border-color: none !important;
    box-shadow: none !important;
}

.contact-from textarea.form-control
{
	border-color: none !important;
    box-shadow: none !important;
}



