@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swapdisplay=swap');

@import url('./animation.css');

:root {

    --tuesday-night-font:'Tuesday Night', sans-serif !important; 
    --old-standard-font: 'Old Standard TT', sans-serif;
    --ubuntu-font: 'Ubuntu', sans-serif;

    --main-color: 255, 100, 169; /* rgb(255, 100, 169) */
    --black-color: 0,0,0;
    --white-color: 255,255,255;
}

@font-face {
	font-family: Tuesday Night;
	src: url(../fonts/TuesdayNight-Regular.otf);
}
.color-white {
	color: rgba(var(--white-color), 1);
}
body{
    position: relative;
    background: #0B1315;
/* 	color: rgba(var(--white-color), 1); */
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
    -font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}
ul,ol{
    margin: 0%;
    padding: 0%;
}
a{
    text-decoration: none;
    color: #000;
}
li{
    list-style: none;
}
label span{
    color: #dc143c;
}

/* / width / */
::-webkit-scrollbar {
	width: 3px;
}
/* / Track / */
::-webkit-scrollbar-track {
	background: #f9f9f9; 
}
/* / Handle / */
::-webkit-scrollbar-thumb {
	background: rgba(var(--main-color), 1); 
}
/* / Handle on hover / */
::-webkit-scrollbar-thumb:hover {
	background: rgba(var(--main-color), 0.8); 
}

.common-section{
    padding: 80px 0px;
    overflow-x: hidden;
}


.common-btn{
    border: 1px solid rgba(var(--main-color), 1);
    border-radius: 0px;
    background-color: transparent;
    text-transform: uppercase;
    color: rgba(var(--main-color), 1);
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 0.5s;
}
.common-btn:hover{
    background-color: rgba(var(--main-color), 1);
    border: 1px solid transparent;
    color: #fff;
}
.common-btn::after {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 0%;
    transform: rotate(90deg);
    background: rgba(var(--main-color), 1);
    transition: all ease-in-out 0.5s;
    z-index: -1;
}
.common-btn:hover {
    color: rgba(var(--white-color), 1);
    transform: rotate(0deg);
}
.common-btn:hover::after {
    height: 330%;
}
.common-box {
    padding-bottom: 20px;
}
.common-box > span {
    font-size: 18px;
    font-weight: 500;
    color: rgba(var(--main-color), 1);
    text-transform: uppercase;
}
.common-box > h3 {
    font-size: 36px;
    font-weight: 600;
    color: rgba(var(--main-color), 1);
}
.common-box > p {
    font-size: 18px;
    font-weight: 400;
    color: #6B6B6B;
    line-height: 1.8;
}

/************************************ Header Section ***********************************************/
header.WebMain-Header{
    position: absolute;
    inset: 0;
    width: 100%;
    height: max-content;
    z-index: 10;
}

.top-header {
    background: rgba(var(--main-color), 1);
    padding: 5px 0px;
}
.top-head-text {
    text-align: center;
}
.top-head-text p {
    font-family: var(--old-standard-font);
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    margin-bottom: 0px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
	top: 0;
	z-index: 9999;
	width: 100%;
    padding: 20px 0px;
}
.navbar > .container {
    flex-wrap: nowrap !important;
  }
.navbar.header-fixed {
	position: fixed;
    /* background: rgba(255,240,200, 0.8); */
	background: rgba(var(--black-color), 0.95);
    transition: all ease-in-out 0.2s;
	backdrop-filter: blur(5px);
	animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
	from {
	  transform: translateY(-100%);
	}
	to {
	  transform: translateY(0);
	}
}
.navbar-brand {
    height: 100px;
}
.navbar-brand img{
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}
.navbar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 5px;
    padding: 0px 10px;
    justify-content: center;
}
.navbar .navbar-nav .nav-item .nav-link {
    font-family: var(--ubuntu-font);
    font-weight: 400;
    font-size: 16px;
    color: rgba(var(--white-color), 1);
    border-bottom: 2px solid transparent;
    position: relative;
    transition: all ease-in-out 0.5s;
    text-transform: uppercase;
}
.navbar .navbar-nav .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link:focus, .navbar .navbar-nav .nav-item .nav-link[aria-current="page"] {
    color: rgba(var(--main-color), 1);
}
#mega-menu-wrap-header_menu #mega-menu-header_menu>li.mega-menu-item>a.mega-menu-link[aria-current="page"] {
	border-color: #f86fa9 !important;
	border-bottom: 1px solid #f86fa9 !important;
}
.navbar-toggler-icon{
    filter: invert(0);
}

.nav-icon-list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-icon-list li a {
    font-size: 20px;
    color: rgba(var(--white-color), 1);
    position: relative;
}
.cart-num {
    --ehw-bg: 20px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    font-family: var(--ubuntu-font);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -40%;
    right: -40%;
    background: rgba(var(--main-color), 1);
    font-size: 13px;
    font-weight: 400;
}
.nav-item.dropdown .DDMenu.dropdown-menu {
    top: 100%;
    margin-top: 0px;
    border: none;
    padding: 20px;
    background: rgba(var(--black-color), 1);
}
.nav-item.dropdown .DDMenu.dropdown-menu ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}
.nav-item.dropdown .DDMenu.dropdown-menu ul li a {
    padding: 0px;
    color: rgba(var(--white-color), 1);
    transition: all ease-in-out 0.5s;
    padding: 5px;
}
.nav-item.dropdown .DDMenu.dropdown-menu ul li a:hover {
    background: transparent;
    color: rgba(var(--main-color), 1);
    box-shadow: 0px 0px 8px -4px rgba(255,255,255,0.75);
}
.dropdown-toggle::after {
    display: none;
} 
/******************************************* Banner Section **************************************/
.banner-section{
    /* min-height: 80vh;
    height: 100%; */
    position: relative;
    overflow: hidden;
}
.bnr-contact {
    font-family: var(--ubuntu-font);
    position: absolute;
    right: -55px;
    top: 50%;
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
    transform: rotate(-90deg);
    z-index: 3;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 500;
    transition: all ease-in-out 0.5s;
}

.bnr-contact:hover {
    background: rgba(var(--black-color), 1);
    color: rgba(var(--white-color), 1);
}
.banner-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}


.inner-banner-section{
    min-height: 60vh;
    height: 100%;
    position: relative;
    background: no-repeat fixed center / cover;
}
/* .banner-content{
    display: flex;
    width: 40%;
    margin: auto;
    min-height: 90vh;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: absolute;
    top: 10%;
    left: 0%;
    right: 0%;
    z-index: 1;
} */
.banner-content {
	display: flex;
	width: 40%;
	margin: auto;
	/* min-height: 90vh; */
	/* height: 100%; */
	/* padding: 50px 0px 0px 50px; */
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 40px;
	position: absolute;
	top: 73%;
	left: 0%;
	right: 0%;
	z-index: 1;
	transform: translateY(-50%);
}

.inr-banner-content{
    display: flex;
    width: 100%;
    min-height: 60vh;
    height: 100%;
    /* padding: 50px 0px 0px 100px; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.inr-dtl-banner-content {
    display: flex;
    width: 100%;
    min-height: 30vh;
    height: 100%;
    gap: 20px;
}
.inr-banner-content > h1 {
    font-family: var(--old-standard-font);
    font-size: 58px;
    font-weight: 700;
    color: rgba(var(--white-color), 1);
}
.banner-content h3 {
    font-family: var(--old-standard-font);
    font-size: 58px;
    font-weight: 700;
    color: rgba(var(--white-color), 1);
}
.banner-content h1{
    font-family: var(--tuesday-night-font);
    font-size: 125px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    line-height: 1.6;
}
.banner-content p {
    font-size: 20px;
    font-weight: 400;
    color: rgba(var(--black-color), 1);
    line-height: 1.8;
    width: 80%;
}
.banner-content > .common-btn {
    border: 1px solid rgba(var(--white-color), 1);
    color: rgba(var(--white-color), 1);
}
.banner-main-box {
    position: relative;
    width: 100%;
    height: 100vh;
}
.bnr-video-box {
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
}
.bnr-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*============================= Store Location Section ============================*/
.sl-section {
    background: #0B1315;
    padding: 160px 0px;
}
.sl-left > h3 {
    font-family: var(--old-standard-font);
    font-weight: 400;
    font-size: 46px;
    color: rgba(var(--white-color), 1);
    width: 50%;
}
.sl-left > h3 > span {
    color: rgba(var(--main-color), 1);
}
.sl-right {
    height: 600px;
    position: relative;
    z-index: 1;
}
.sl-right::after {
    content: '';
    position: absolute;
    left: -14%;
    top: -14%;
    background-image: url(../images/sl-img-bg.png);
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
}
.sl-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sl-slider {
    position: relative;
    padding-top: 80px;
    z-index: 2;
    width: calc(100% + 120px);
}
.sl-box {
    width: 100%;
    height: 300px;
    display: inline-block;
}
.sl-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*============================= Candle Making Class Section ========================*/
.cmc-section {
    position: relative;
    height: 700px;
    background: rgba(var(--white-color), 1);
}
.cmc-section > * > .row {
    justify-content: flex-end;
    align-items: center;
}
.cmc-img {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 50%;
    height: 100%;
}
.cmc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cmc-head {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.cmc-head::after {
    content: 'Scented Candles';
    font-family: var(--tuesday-night-font);
    font-size: 105px;
    font-weight: 400;
    color: #0B1315;
    position: absolute;
    top: -45px;
    left: 0%;
    opacity: 0.1;
}
.cmc-content {
    padding: 60px 15px 30px 40px;
}
.cmc-head > h3 {
    font-family: var(--old-standard-font);
    font-size: 46px;
    font-weight: 400;
    position: relative;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cmc-head > h3::after {
    content: '';
    width: 150px;
    height: 1px;
    background: rgba(var(--main-color), 1);
    display: block;
}
.cmc-btm {
	max-height: 405px;
	overflow-y: scroll;
}
.cmc-btm > h4 {
    font-family: var(--ubuntu-font);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}
.cmc-btm > p {
    font-family: var(--ubuntu-font);
    font-weight: 400;
    color: #0B1315;
    font-size: 18px;
}
.cmc-btm > a.common-btn {
    margin-top: 20px;
}

/*=================================== Terms & Conditions =======================*/
.ts-head h3 {
    font-family: var(--old-standard-font);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.ts-head p {
    font-size: 15px;
    font-weight: 400;
}
.ts-box h3 {
    font-family: var(--old-standard-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.ts-list li {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: #0B1315;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}
.ts-list li::before {
    content: '\f061';
    font-family: 'fontawesome', sans-serif;
    font-weight: 600;
    font-size: 12px;
    /* height: 10px;
    width: 10px;
    border-radius: 50%; */
    color: rgba(var(--main-color), 1);
    position: relative;
    display: block;
    /* margin-top: 10px; */
}
/*============================== Shop Our Favourite ============================*/
.sof-head {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    padding: 40px 0px;
    text-align: center;
}
.sof-head::after {
    content: 'Shop';
    font-family: var(--tuesday-night-font);
    font-size: 105px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    position: absolute;
    top: -40px;
    left: 45%;
    opacity: 0.1;
}
.sof-head > h3 {
    font-family: var(--old-standard-font);
    font-size: 46px;
    font-weight: 400;
    position: relative;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: rgba(var(--white-color), 1);
}
.sof-head > h3::after {
    content: '';
    width: 150px;
    height: 1px;
    background: rgba(var(--main-color), 1);
    display: block;
    margin: auto;
}
.sof-box .sof-img {
    height: 350px;
}
.sof-box .sof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sof-text {
    padding: 30px 0px;
}
.sof-text h3 {
    font-family: var(--old-standard-font);
    font-size: 24px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    margin-bottom: 20px;
}
.sof-text p {
    font-family: var(--ubuntu-font);
    font-size: 18px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    margin-bottom: 20px;
}

/*================================ Ads Discount Section ======================*/
.ads-section {
    position: relative;
    height: 600px;
    background: no-repeat fixed center;
    /* background-repeat: no-repeat;
    background-attachment: fixed; */
}
.sof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    text-align: center;
}
.sof-content > h3 {
    font-family: var(--old-standard-font);
    font-size: 46px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    text-transform: uppercase;
}
.sof-content > h5 {
    font-family: var(--old-standard-font);
    font-size: 46px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    text-transform: lowercase;
    margin-bottom: 20px;
}
.sof-content > p {
    font-family: var(--ubuntu-font);
    font-size: 24px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    text-transform: lowercase;
}

/*=========================== Latest Product Section ===========================*/
.lp-head {
    text-align: center;
    padding-bottom: 30px;
}
.lp-head > h3 {
    font-family: var(--old-standard-font);
    font-size: 52px;
    font-weight: 400;
    color: #0B1315;
}
.lp-section {
    background: rgba(var(--white-color), 1);
}
.lp-box .lp-img {
    height: 300px;
    border: 1px solid #E1E1E1;
    overflow: hidden;
}
.lp-box .lp-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: all ease-in-out 0.5s;
}
.lp-box:hover .lp-img img {
    transform: scale(1.09);
}
.lp-box .lp-text {
    padding: 20px 0px;
    text-align: center;
}
.lp-box .lp-text > h3 {
    font-family: var(--ubuntu-font);
    font-weight: 700;
    font-size: 18px;
    color: #0B1315;
    margin-bottom: 15px;
}
.lp-box .lp-text > h5 {
    font-family: var(--ubuntu-font);
    font-weight: 700;
    font-size: 22px;
    color: rgba(var(--main-color), 1);
    margin-bottom: 15px;
}
.lp-box .lp-text > p {
    font-family: var(--ubuntu-font);
    font-weight: 400;
    font-size: 14px;
    color: #0B1315;
    margin-bottom: 15px;
}
.lp-slider {
    position: relative;
}
.lp-slider.owl-carousel .owl-nav button.owl-prev {
    left: 41%;
}
.lp-slider.owl-carousel .owl-nav button.owl-next {
    right: 41%;
}
.lp-slider.owl-carousel .owl-nav button.owl-next, .lp-slider.owl-carousel .owl-nav button.owl-prev {
    --ehw-bg: 45px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    border: 1px solid #7B7B7B;
    position: absolute;
    font-size: 18px;
    bottom: -13%;
	bottom: -60px;
}

/*=========================== Product Listing Section ============================*/
.prod-inr-content > .row > * > .lp-box {
    /* background: rgba(var(--white-color), 1); */
    background: rgba(var(--white-color), 1);
    display: inline-block;
    width: 100%;
	height: 100%;
}
.prod-inr-content > .row  {
    gap: 24px 0px;
}

.prod-dtl-box {
    height: 400px;
    background: rgba(var(--white-color), 1);
    border: 1px solid #1C1C1C;
}
.prod-dtl-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.prod-dtl-slider {
    position: relative;
}
.prod-dtl-slider.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    gap: 5px;
}
.prod-dtl-slider.owl-carousel .owl-dots button.owl-dot {
    --ehw-dot: 10px;
    width: var(--ehw-dot);
    height: var(--ehw-dot);
    border-radius: 50%;
    background: rgba(var(--black-color), 1);
}
.prod-dtl-slider.owl-carousel .owl-dots button.owl-dot.active {
    --ehw-dot: 12px;
    background: rgba(var(--main-color), 1);
}
.prod-dtl-section {
    background: rgba(var(--white-color), 1);
}
.prod-dtl-quant {
    display: flex;
    flex-direction: column;
}
.prod-dtl-quant > input.form-control {
    width: 20%;
    border-radius: 0px;
    background: transparent;
    border: 1px solid #1C1C1C;
    margin-top: 10px;
    color: rgba(var(--black-color), 1);
}
.prod-dtl-quant > input.form-control:focus {
    box-shadow: none;
}
.prod-dtl-right > .common-btn {
    margin-top: 40px;
}
.prod-dtl-right  > h3 {
    font-family: var(--old-standard-font);
    font-size: 46px;
    font-weight: 700;
}
.prod-dtl-right > p {
    font-family: var(--ubuntu-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
.prod-dtl-right > h5 {
    font-family: var(--old-standard-font);
    font-size: 28px;
    color: rgba(var(--main-color), 1);
    font-weight: 700;
}
.prod-dtl-quant > label {
    font-family: var(--ubuntu-font);
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}
/*====================================== Faq Section ================================*/
.common-box.faq-head {
    text-align: center;
}
.faq-content .accordion .accordion-item .accordion-header {
    background: transparent;
}
.faq-content .accordion .accordion-item .accordion-body > p {
    font-size: 15px;
}
.faq-content .accordion .accordion-item .accordion-header .accordion-button, .faq-content .accordion .accordion-item .accordion-body {
    background: rgba(var(--white-color), 0.95) !important;
}
.faq-content .accordion .accordion-item .accordion-header .accordion-button {
    color: rgba(var(--black-color), 1);
    font-size: 18px;
    font-weight: 600;
}
.faq-content .accordion .accordion-item .accordion-body {
    color: #757182;
    /* background: rgba(var(--white-color), 0.95) !important; */
}

.faq-content .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none;
}
.faq-content .accordion-button:not(.collapsed) {
    color: #fff;
    background: rgba(var(--white-color), 0.95);
}
.faq-content .accordion-button:not(.collapsed)::after {
    content: "\f068";
    color: rgba(var(--main-color), 1);
}
.faq-content .accordion-button::after {
    content: "\2b";
    font-weight: 600;
    font-family: 'font awesome 6 free';
    background-image: none;
    transform: none;
    color: rgba(var(--main-color), 1);
}
/*=============================== What Our Client Says section ================================*/
.wcs-section {
    background: #1C1C1C;
    padding: 100px 0px;
}
.common-box.wcs-head {
    text-align: center;
}
.common-box.wcs-head > h3 {
    color: rgba(var(--white-color), 1);
}
.wcs-box {
    position: relative;
}
.wcs-box > .quote {
    --ehw-img: 60px;
    width: var(--ehw-img);
    height: var(--ehw-img);
    position: absolute;
    right: 0px;
    top: 0px;

}
.wcs-box > h3 {
    font-weight: 400;
    font-size: 18px;
    color: rgba(var(--white-color), 1);
    margin-bottom: 0px;
} 
.wcs-box > span {
    font-weight: 400;
    font-size: 18px;
    color: #6E6E6E;
} 
.wcs-box > p {
    color: rgba(var(--white-color), 1);
    padding: 20px 0px; 
    width: 80%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}
.wcs-slider {
    position: relative;
    padding: 40px 0px;
}
.wcs-slider.owl-carousel .owl-dots  {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    gap: 5px;
}
.wcs-slider.owl-carousel .owl-dots  button.owl-dot {
    --ehw-d: 10px;
    width: var(--ehw-d);
    height: var(--ehw-d);
    border-radius: 50%;
    background: #626262;
}
.wcs-slider.owl-carousel .owl-dots  button.owl-dot.active {
    --ehw-d: 14px;
    border: 1px solid rgba(var(--white-color), 1);
}

/*============================ Book a Flight Now Section ====================*/
.bfn-section {
    /* height: 500px; */
    padding: 120px 0px;
    background: no-repeat center center / cover;
}
.bfn-input-box > input {
    background: transparent;
    border-radius: 30px;
    border: 1px solid #D1D1D1;
}
.bfn-input-box > input:focus {
    background: transparent;
    box-shadow: none;
}
.bfn-form > .row {
    gap: 24px 0px !important;
}
/************************************* Contact Us Section **************************************/
.contact-section{
    position: relative;

}
.contact-section > * > .row {
    gap: 24px 0px;
}
.iframe-box {
    width: 100%;
    height: 450px;
    box-shadow: 0px 0px 8px -4px rgba(0,0,0,0.75);
}
.iframe-box iframe {
    width: 100%;
    height: 100%;
}
.form-text {
    margin-top: 0.25rem;
    font-size: .875em;
    color: #6c757d;
}
.contact-box {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0px 0px 8px -4px rgba(0,0,0,0.75);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}
.contact-form > form > .row {
    gap: 24px 0px;
}
.contact-box > i {
    color: rgba(var(--main-color), 1);
    font-size: 28px;
}
.contact-box > p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
}
.contact-box > a {
    color: rgba(var(--black-color), 1);
    font-weight: 400;
    font-size: 16px;
}
.conatact-input-box > input, .conatact-input-box > textarea {
    box-shadow: 0px 0px 6px -4px rgba(0,0,0,0.75);
}
.conatact-input-box > input:focus, .conatact-input-box > textarea:focus {
    box-shadow: none;
}

/*********************************** Footer Section *********************************************/
.footer-section {
    /* background: rgba(var(--white-color), 1); */
    position: relative;
}
.footer-down{
    padding: 20px 0px;
    border-top: 1px solid #C5C3B3;
}
.footer-top {
    padding: 40px 0px;
}
.footer-left {
    padding: 40px 0px;
}
.footer-left > h5 {
    font-family: var(--ubuntu-font);
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    margin-bottom: 20px;
}
.footer-logo {
    display: inline-block;
    width: max-content;
    height: 120px;
}
.footer-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-box-head h5 {
    font-family: var(--ubuntu-font);
    font-weight: 700;
    font-size: 28px;
    color: rgba(var(--white-color), 1);
}
.footer-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    margin-top: 20px;
}
.footer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px 0px;
    width: 100%;
}
.footer-list li a {
    font-family: var(--ubuntu-font);
    font-size: 18px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    transition: all ease-in-out 0.5s;
    text-transform: uppercase;
}
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.footer-contact-list li a {
    font-size: 20px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.footer-contact-list li a.call {
    font-weight: 700;
}
.footer-contact-list li a i {
    color: rgba(var(--main-color), 1);
    margin-top: 10px;
}
.footer-list li a:hover {
    color: rgba(var(--main-color), 1);
}
.footer-list li.current_page_item  a {
    color: rgba(var(--main-color), 1);
}

.footer-copyright {
    padding: 20px 0px;
    margin-top: 60px;
}
.footer-copyright p{
    color: #7B7B7B;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0px;
}
.footer-pay {
    height: 60px;
}
.footer-pay img {
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
}
.footer-contact-list li a i {
    color: rgba(var(--main-color), 1);
    margin-top: 8px;
}
.head-saerch-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.head-saerch-form input {
    border-radius: 0px;

}
.head-saerch-form input:focus, .head-saerch-form input:active, .head-saerch-form input:visited {
    box-shadow: none;
}

/* Woocommerce Design Css */
.product-template-default.single.single-product .prod-dtl-section .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    height: 400px;
    background: rgba(var(--white-color), 1);
    height: 400px;
    border: 1px solid #1C1C1C;
}
.product-template-default.single.single-product .prod-dtl-section .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.product-template-default.single.single-product .prod-dtl-section .summary.entry-summary > .product_title.entry-title {
    font-family: var(--old-standard-font);
    font-size: 42px;
    font-weight: 700;
}
.product-template-default.single.single-product .prod-dtl-section .summary.entry-summary > .price, .woocommerce-variation-price span {
    font-family: var(--old-standard-font);
    font-size: 30px !important;
    color: rgba(var(--main-color), 1) !important;
    font-weight: 700;
}
.product-template-default.single.single-product .prod-dtl-section .summary.entry-summary > form.cart, .single_variation_wrap .woocommerce-variation-add-to-cart.variations_button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem !important;
}
.variations select {
    min-height: 42px;
    padding: 4px 11px;
    margin-right: 0 !important;
}
.reset_variations, .reset_variations:visited, .reset_variations:focus {
    margin-left: 13px;
    font-size: 15px;
    color: rgba(var(--main-color), 1);
    text-decoration: underline;
}
.variations tbody tr:not(:last-child) > td {
    padding-bottom: 10px;
}
.reset_variations:hover {
	color: rgba(var(--black-color), 1);
}
.product-template-default.single.single-product .prod-dtl-section .summary.entry-summary > form .qty {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
.product-template-default.single.single-product .prod-dtl-section .summary.entry-summary > .product_meta {
    display: none;
}
.product-template-default.single.single-product .prod-dtl-section .summary.entry-summary > .woocommerce-product-details__short-description > p {
    font-family: var(--ubuntu-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 20px;
}
.product-template-default.single.single-product .prod-dtl-section .woocommerce-breadcrumb > a {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--old-standard-font);
    color: rgba(var(--main-color), 1);
}
.product-template-default.single.single-product .prod-dtl-section .related.products > h2 {
    font-family: var(--old-standard-font);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}
.product-template-default.single.single-product .prod-dtl-section .related.products .product-wrap {
    box-shadow: 0px 0px 12px -4px rgba(0,0,0,0.75);
    min-height: 360px;
}
.product-template-default.single.single-product .prod-dtl-section .related.products .product-wrap .product-img a {
    width: 100%;
    height: 200px;
    display: inline-block;
    border: 1px solid #0B1315;
}
.product-template-default.single.single-product .prod-dtl-section .related.products .product-wrap .product-img a.wishlist {
    display: none;
}

.product-template-default.single.single-product .prod-dtl-section .related.products .product-wrap .product-img a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-template-default.single.single-product .prod-dtl-section .related.products .product-wrap .products-txt.product-content {
    padding: 20px 10px;
}
.product-template-default.single.single-product .prod-dtl-section .related.products .product-wrap .products-txt.product-content > h4{
    font-size: 20px;
    font-family: var(--old-standard-font);
    font-weight: 600;
    color: rgba(var(--black-color), 1);
}
.product-template-default.single.single-product .prod-dtl-section .related.products .product-wrap .products-txt.product-content .price {
    display: flex;
    flex-direction: column;
    gap: 20px;

}
.product-template-default.single.single-product .prod-dtl-section .related.products .product-wrap .products-txt.product-content .price 
.woocommerce-Price-amount.amount {
    color: rgba(var(--main-color), 1) !important;
    font-family: var(--old-standard-font);
    margin-bottom: 8px;
}
.product-template-default.single.single-product .prod-dtl-section .related.products .product-wrap .products-txt.product-content 
a.button.add_to_cart_button {
    border: 1px solid rgba(var(--main-color), 1);
    color: rgba(var(--main-color), 1);
    font-size: 13px;
    text-transform: uppercase;
    background: transparent;
}
.product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs ul.tabs::before, .product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs ul.tabs li::after, .product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs ul.tabs li::before {
    display: none !important;
}
/* .product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs ul.tabs li.reviews_tab { */
/*     border: 1px solid rgba(var(--main-color), 1); */
/*     background-color: transparent; */
/*     color: rgba(var(--main-color), 1); */
/*     display: inline-block; */
/*     position: relative; */
/*     z-index: 0; */
/*     border-radius: 0px 0px 0 0; */
/*     margin: 0 -5px; */
/*     padding: 0 1em; */
/* } */
/* .product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs ul.tabs li.reviews_tab.active { */
/*     border: 1px solid transparent; */
/*     background-color: rgba(var(--main-color), 1); */
/*     color: rgba(var(--white-color), 1); */
/* } */
.product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs .wc-tab {
    box-shadow: 0px 0px 8px -4px rgba(0,0,0,0.75);
    padding: 20px;
    
}
.product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs .wc-tab .woocommerce-Reviews-title {
    font-family: var(--old-standard-font);
    font-size: 34px;
    font-weight: 600;
    color: rgba(var(--black-color), 1);
}
.product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs .wc-tab .woocommerce-noreviews {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--ubuntu-font);
}
.product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs .wc-tab .woocommerce-noreviews .comment-respond .comment-reply-title {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--ubuntu-font);
}
.product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs .wc-tab .woocommerce-noreviews .comment-respond .comment-form .comment-form-rating label {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--ubuntu-font);
}
.product-template-default.single.single-product .prod-dtl-section .woocommerce-tabs .wc-tab .woocommerce-Reviews #review_form #respond .submit {
    border: 1px solid rgba(var(--main-color), 1);
    color: rgba(var(--main-color), 1);
    font-size: 13px;
    text-transform: uppercase;
    background: transparent;
    margin-top: 20px;
}
.custom_paginate .pagination-inner {
/*    background: rgba(var(--white-color), 1);*/
    width: max-content;
    padding: 5px 0px;
}
 .custom_paginate .pagination-inner .page-numbers {
    border: 1px solid rgba(var(--white-color), 1);    
    padding: 5px;
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
}
.custom_paginate .pagination-inner .page-numbers.current {
    background: rgba(var(--black-color), 1);
    color: rgba(var(--white-color), 1);
}

/*======================================== Contact Us Section ===================================*/
.contact-inr-section {
    background: rgba(var(--white-color), 1);
}
.contact-inr-section .row {
    gap: 24px 0px;
}
.contact-left .contact-input-box label {
    font-family: var(--ubuntu-font);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.contact-left .contact-input-box input, .contact-left .contact-input-box textarea {
    border-radius: 0px;
    font-family: var(--ubuntu-font);
}
.contact-left .contact-input-box input::placeholder, .contact-left .contact-input-box textarea::placeholder {
    font-family: var(--ubuntu-font);
    color: rgba(var(--black-color), 0.5);
}
.contact-left .contact-input-box input:focus, .contact-left .contact-input-box textarea:focus {
    box-shadow: none;
}
.contact-left h3 {
    font-family: var(--old-standard-font);
    font-size: 36px;
    font-weight: 600;
    color: rgba(var(--black-color), 1);
}
.contact-left p {
    font-family: var(--ubuntu-font);
    font-size: 18px;
    font-weight: 400;
    color: rgba(var(--black-color), 1);
}
.contact-right {
    margin-top: 120px;
}
.contact-right .contact-inr-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-right .contact-inr-list li i {
    --ehw-bg: 50px;
    width: var(--ehw-bg);
    height: var(--ehw-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
    font-size: 20px;
}
.contact-right .contact-inr-list li .contact-item h5 {
    font-family: var(--ubuntu-font);
    font-size: 18px;
    color: rgba(var(--black-color), 1);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.contact-right .contact-inr-list li .contact-item a {
    font-family: var(--ubuntu-font);
    font-size: 15px;
    color: rgba(var(--black-color), 1);
}
.contact-left button.common-btn {
    margin-top: 20px;
}

.woocom-wrap {
    background: rgba(var(--white-color), 1);
}

/*================================== Cart Page ======================*/
.woocommerce-cart .wc-block-cart__submit-button {
    background: rgba(var(--main-color), 1);
    /* margin-top: 20px; */
    color: rgba(var(--white-color), 1);
    text-transform: uppercase;
    font-weight: 600;
}
.woocommerce-cart .wc-block-components-main {
    box-shadow: 0px 0px 8px -4px rgba(0,0,0,0.75);
    padding: 20px;
} 
.woocommerce-cart .wc-block-cart-items__header .wc-block-cart-items__header-image span {
    font-family: var(--old-standard-font);
    font-size: 24px;
    font-weight: 600;
} 
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	z-index: 9 !important;
}

/* New Menu DropDown start */

.NavHover-one .container {
    position: relative;
}
.NavHover-one #mega-menu-wrap-header_menu, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item {
    position: static;
}
.NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item.mega-menu-item-4371 > ul.mega-sub-menu {
    flex-wrap: wrap;
    width: 100%;
    left: 0px;
    max-height: 400px;
    min-height: auto;
    overflow: auto;
    padding: 10px 10px;
	gap: 10px 10px;
	display: none;
	visibility: hidden;
}
.NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item.mega-menu-item-4371.mega-toggle-on > ul.mega-sub-menu {
	display: block;
	visibility: visible;
}
.NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-toggle-on ul.mega-sub-menu, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
	display: block !important;
	position: static;
	opacity: 1 !important;
	transform: none !important;
	visibility: visible !important;
}
.NavHover-one #mega-menu-wrap-header_menu > #mega-menu-header_menu > li.mega-menu-flyout.mega-menu-item.mega-menu-item-4371 > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    font-weight: 600;
    color: #000;
    font-size: 15px;
    border-bottom: 1px solid #505050;
    background: transparent;
	pointer-events: none;
}
.NavHover-one #mega-menu-wrap-header_menu > #mega-menu-header_menu > li.mega-menu-flyout.mega-menu-item.mega-menu-item-4371 > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link .mega-indicator {
	display: none;
}
.NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu > li.mega-menu-item {
    padding-bottom: 0;
    margin-bottom: -6px;
}
.NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu > li.mega-menu-item .mega-menu-link {
    font-size: 14px;
}
.NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item > ul.mega-sub-menu > .mega-menu-item {
    flex: 1 1 0px;
}
.NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li a, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-toggle-on ul.mega-sub-menu li a, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-toggle-on ul.mega-sub-menu li a, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li a:visited, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-toggle-on ul.mega-sub-menu li a:visited, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-toggle-on ul.mega-sub-menu li a:visited {
    background: transparent;
	color: #666;
}
.NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li a:hover, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-toggle-on ul.mega-sub-menu li a:hover, .NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item.mega-toggle-on ul.mega-sub-menu li a:hover {
	color: rgba(var(--main-color), 1);
}

@media (min-width: 769px) {
	.NavHover-one #mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item.mega-menu-item-4371.mega-toggle-on > ul.mega-sub-menu {
		display: flex;
		visibility: visible;
	}
}

/* New Menu DropDown end */

.woocommerce-form-login .woocommerce-Input, .register .woocommerce-Input, .woocommerce-Input {
    min-height: 42px;
}

/* account start */

.woocommerce-MyAccount-navigation ul li a {
	margin-bottom: 2px;
	display: block;
	width: 100%;
	background-color: #efefef;
	padding: 10px;
	color: #000;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
	margin-bottom: 2px;
	display: block;
	width: 100%;
	background-color: rgba(var(--main-color), 1);
	padding: 10px;
	color: #fff;
}
.woocommerce-MyAccount-content .woocommerce-form-row .woocommerce-Input {
	position: relative;
	padding: 10px 10px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields .input-text {
	position: relative;
	padding: 10px 10px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields .button {
	background-color: rgba(var(--main-color), 1);
	color: #fff;
	font-size: 15px;
	padding: 10px 15px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields .button:hover {
	background-color: rgba(var(--main-color), 1);
	color: #fff;
}
.wp-block-woocommerce-checkout .wc-block-checkout__actions .components-button {
	background-color: rgba(var(--main-color), 1);
	border: 1px solid rgba(var(--main-color), 1);
	color: #fff;
	font-size: 15px;
	padding: 15px 15px;
}
.woocommerce-info, .woocommerce-message {
	border-top-color: rgba(var(--main-color), 1) !important;
}
.woocommerce-info::before, .woocommerce-message::before {
	color: rgba(var(--main-color), 1) !important;
}

/* account end */

.woocommerce-Address-title h3 {
    font-size: 22px;
}
.woocommerce-Address address {
    font-size: 15px;
    /* margin-bottom: 0; */
}
.woocommerce-Address-title .edit {
    font-size: 15px;
    text-decoration: underline;
    color: rgba(var(--main-color), 1);
}

/* tab start */

.tabMain-content {
    border: 1px solid rgba(var(--black-color), 0.6);
}
.tabMain-content .nav-tabs {
    border: none !important;
    gap: 0px;
}
.tabMain-content .nav-tabs li {
    flex: 1;
    width: 100%;
}
.tabMain-content .nav-tabs li .nav-link {
    /* border: 1px solid rgba(var(--black-color), 0.8) !important; */
    border: none !important;
    margin-bottom: 0px !important;
    border-radius: 0px !important;
    background: rgba(var(--main-color), 0) !important;
    color: rgba(var(--main-color), 1) !important;
    width: 100%;
}
.tabMain-content .nav-tabs li .nav-link.active {
    background: rgba(var(--main-color), 1) !important;
    color: rgba(var(--white-color), 1) !important;
    border-color: rgba(var(--main-color), 1) !important;
}
.tabMain-content .tab-content ul li {
    list-style: inside disc !important;
}
.tabTable-content, .tabPara-content {
    margin-top: 20px;
    padding: 0px 10px 10px;
}
.woocommerce div.product form.cart .tabTable-content table td {
    padding: 8px;
    font-size: 14px;
}
.tabTable-content #custom-options h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.tabTable-content #custom-options > *:not(:first-child) {
    margin-top: 20px;
}
.tabTable-content .CustomCheck-MainBox {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.tabTable-content .CustomCheck-MainBox label {
    position: relative;
}
.tabTable-content .CustomCheck-MainBox label input {
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.tabTable-content .CustomCheck-MainBox label span {
    padding: 10px;
    background: #f7f7f7;
    border: 1px solid rgba(var(--black-color), 0.2);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1;
    color: rgba(var(--black-color), 1);
    display: inline-block;
    cursor: pointer;
}
.tabTable-content .CustomCheck-MainBox label input:checked ~ span {
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
    border-color: rgba(var(--main-color), 1);
}

/* tab end */



/************************************ Media Queries ******************************************/
/*====================================== Min Width ==================================*/
@media (min-width: 992px) {
	.nav-item.dropdown .dropdown-menu {
		opacity: 0;
		visibility: hidden;
	}
	.nav-item.dropdown:hover > .dropdown-menu, .nav-item.dropdown .dropdown-menu.show, .dropdown-menu ul li:hover > .dropdown-menu.dropdown-submenu {
		opacity: 1;
		display: block;
		visibility: visible;
	}
	.navbar-expand-lg .navbar-collapse {
		width: max-content;
		max-width: max-content;
	}
}
@media (min-width: 1401px) and (max-width: 1500px) {
    
}
@media (min-width: 1501px) and (max-width: 1539px) {
    
}
@media (min-width: 1540px){
    .container {
        max-width: 1440px;
    }
}

@media (min-width: 1640px){
    .container {
        max-width: 1600px;
    }
}

/*========================================= Max Width ============================*/

@media (max-width: 1400px) {
    .navbar-brand {
        height: 80px;
    }
    .banner-content h3 {
        font-size: 54px;
    }
    .banner-content h1 {
        font-size: 100px;
    }
    .sl-left > h3 {
        font-size: 42px;
        width: 80%;
    }
    .sl-right::after {
        left: -10%;
        top: -10%;
    }
    .sl-box {
        height: 250px;
    }
    .sl-right {
        height: 520px;
    }
    .cmc-section {
        height: 600px;
    }
    .cmc-content {
        padding: 120px 40px;
    }
    .cmc-head::after {
        font-size: 70px;
        top: -15px;
    }
    .cmc-btm > h4 {
        font-size: 24px;
    }
    .sof-head::after {
        font-size: 80px;
        top: 0px;
    }
    .sof-box .sof-img {
        height: 300px;
    }
    .sof-text p {
        font-size: 15px;
    }
    .sof-content > h5 {
        font-size: 36px;
    }
    .lp-head > h3 {
        font-size: 44px;
    }
    .lp-box .lp-img {
        height: 210px;
    }
	.lp-slider.owl-carousel .owl-nav button.owl-prev, .lp-slider.owl-carousel .owl-nav button.owl-next {
        bottom: -14%;
		bottom: -62px;
	}
    .lp-slider.owl-carousel .owl-nav button.owl-prev {
        left: 38%;
    }
    .lp-slider.owl-carousel .owl-nav button.owl-next {
        right: 38%;
    }
    .footer-logo {
        height: 100px;
    }
    .footer-contact-list li a {
        font-size: 20px;
    }
    .footer-box-head h5 {
        font-size: 24px;
    }
    .footer-list li a {
        font-size: 16px;
    }
}

@media (max-width: 1200px){
   
    .navbar-collapse {
        position: absolute;
        background: rgba(var(--black-color), 1);
        width: 100%;
        left: 0;
        top: 90%;
        padding: 15px;
    }
    .navbar-toggler {
        padding: 0px;
        background-color: rgba(var(--main-color), 1);
        border-radius: 0px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .sl-left > h3 {
        font-size: 38px;
        width: 80%;
    }
    .sl-section {
        padding: 120px 0px;
    }
    .cmc-head > h3 {
        font-size: 38px;
        gap: 20px;
    }
    .cmc-head::after {
        font-size: 60px;
        top: -15px;
    }
    .sof-content > h3 {
        font-size: 40px;
    }
    .ads-section, .sof-content {
        height: 500px;
    }
    .banner-content {
        width: 80%;
    }
    
    
}

@media (max-width: 991px) {
    .cmc-img {
        width: 100%;
    }
    .cmc-btm {
        position: relative;
    }
    .cmc-section {
        position: relative;
    }
    .cmc-section::after {
        content: '';
        position: absolute;
        inset: 0%;
        background: rgba(var(--main-color), 0.5);
        width: 100%;
        height: 100%;
    }
    .cmc-content {
        position: relative;
        z-index: 1;
    }
    .cmc-btm > .common-btn {
        border: 1px solid rgba(var(--white-color), 1);
        color: rgba(var(--white-color), 1);
    }
	.lp-slider.owl-carousel .owl-nav button.owl-prev, .lp-slider.owl-carousel .owl-nav button.owl-next {
        bottom: -14%;
		bottom: -62px;
	}
    .lp-slider.owl-carousel .owl-nav button.owl-prev {
        left: 32%;
    }
    .lp-slider.owl-carousel .owl-nav button.owl-next {
        right: 32%;
    }
    
    .sof-box .sof-img {
        height: auto;
    }
    .footer-logo {
        height: 80px;
    }
    .navbar-nav {
        flex-wrap: nowrap;
    }
    .dropdown-menu.show {
        height: 250px;
        overflow: scroll;
    }
    .inr-banner-content {
        padding: 250px 0px 0px 0px;
    }
    /* .banner-content {
        padding: 500px 0px 0px 50px;
    } */
}

@media (max-width: 768px){
	#mega-menu-wrap-header_menu .mega-menu-toggle + #mega-menu-header_menu {
		max-height: 370px;
		overflow: auto;
	}
}

@media (max-width: 767px){
    .navbar {
        flex-wrap: nowrap;
    }
    .inr-banner-content {
        padding: 250px 0px 0px 0px;
    }
    .sl-slider {
        padding-top: 20px;
        width: calc(100% + 0px);
    }
    .sl-left > h3 {
        width: 100%;
    }
    .sl-section {
        padding: 80px 0px;
    }
    .lp-slider.owl-carousel .owl-nav button.owl-prev {
        bottom: -16%;
        left: 26%;
    }
    .lp-slider.owl-carousel .owl-nav button.owl-next {
        bottom: -16%;
        right: 26%;
    }
    .banner-content {
        width: 100%;
    }
    .banner-main-box {
        height: 800px;
    }
    .banner-content {
        padding: 100px 0px 0px 50px;
        height: 800px;
    }
    .banner-content h3 {
        font-size: 44px;
    }
    .banner-content h1 {
        font-size: 50px;
    }
    .banner-content {
        gap: 5px;
    }
    .banner-content {
        display: flex;
        width: 100%;
        margin: auto;
        min-height: auto;
        height: auto;
        top: 50%;
        transform: translateY(-50%);
    }
    .inr-banner-content {
        padding-top: 120px;
    }
	.navbar {
		padding: 10px 0px;
	}
    .inr-banner-content > h1 {
        font-size: 38px;
    }
/*     .common-btn {
        border: 1px solid rgba(var(--white-color), 1) !important;
        color: rgba(var(--white-color), 1) !important;
    } */
    .ts-list li {
        margin-bottom: 10px;
    }
    .ts-list li p {
        width: 90%;
    }
    .dropdown-menu.show {
        height: 150px;
    }
}

@media (max-width: 580px){
    .bnr-contact {
        font-size: 15px;
        right: -45px;
        top: 50%;
    }
    .navbar-brand {
        height: 60px;
    }
    .sl-left > h3 {
        font-size: 24px;
        width: 100%;
    }
    .sl-box {
        height: auto;
    }
    .sof-head > h3 {
        font-size: 28px;
    }
    .sof-head::after {
        font-size: 60px;
        top: 0px;
    }
    .sof-content > h3 {
        font-size: 28px;
    }
    .sof-content > h5 {
        font-size: 28px;
    }
    .sof-content > p {
        font-size: 18px;
    }
    .lp-head > h3 {
        font-size: 32px;
    }
    .lp-slider.owl-carousel .owl-nav button.owl-prev {
        left: 14%;
    }
    .lp-slider.owl-carousel .owl-nav button.owl-next {
        right: 14%;
    }
    .lp-slider.owl-carousel .owl-nav button.owl-prev, .lp-slider.owl-carousel .owl-nav button.owl-next {
        --ehw-bg: 35px;
        font-size: 15px;
        bottom: -13%;
        bottom: -50px;
    }
    .footer-left > h5 {
        font-size: 18px;
    }
    .footer-contact-list li a {
        font-size: 13px;
        gap: 10px;
    }
    .footer-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .footer-logo {
        height: 70px;
    }
    .cmc-content {
        padding: 100px 0px;
    }
    .cmc-head > h3 {
        font-size: 28px;
        gap: 10px;
    }
    .cmc-head::after {
        font-size: 40px;
        top: -15px;
    }
    .cmc-btm > h4 {
        font-size: 20px;
    }
    .cmc-btm > p {
        font-size: 20px;
    }
    .banner-content h3 {
        font-size: 30px;
        padding: 10px;
    }
    .nav-icon-list li a {
        font-size: 15px;
    }
    .navbar-brand {
        height: 45px;
/*         width: 100px; */
      }
    .banner-main-box, .banner-content {
        /* height: 700px; */
        padding-top: 50px;
      }
    .common-btn {
        padding: 5px 15px;
    }
    .cart-num {
        --ehw-bg: 15px;
        font-size: 13px;
    }
    .footer-copyright {
        padding: 0px 0px;
        margin-top: 0px;
    }
    .dropdown-menu.show {
        height: 100px;
    }
    .banner-main-box {
        height: 800px;
    }
    .banner-content {
        padding: 100px 0px 0px 0px;
        height: 800px;
		height: 600px;
    }
}

section.related.products p {
    display: none;
}

.footer-social-list {
    padding: 20px 0px;
    display: flex;
    gap: 20px;
    
}
.footer-social-list li a {
	color: #fff;
	font-size: 24px;
}

.CustomCheck-MainBox {
	height: 250px;
	width: 100%;
	overflow: scroll;
}