@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');
@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');
:root {
    --white: #fff;
    --black: #000;
    --primary: #FF4095;
    --secondary: #30CDC2;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: 'Jost', sans-serif;
}

/* How to add New font */

@font-face {
    font-family: "quackerReg";
    src: url("../fonts/Quacker.ttf");
}

h1,
h2,
h3 {
    font-family: "quackerReg";
}

section {
    position: relative;
    overflow: clip;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--secondary);
}


/* loader */


/* navigation css */
header {
    position: relative;
    z-index: 999;
}
.topBar {
    background: var(--primary);
    padding: 8px 0;
}

.topWraps {
    display: flex;
    justify-content: space-between;
}

.topWraps ul {
    display: flex;
    gap: 1rem;
}

.topWraps a {
    color: var(--white);
}

.topWraps a:hover {
    color: var(--secondary);
}

.mainNav {
    padding: 10px 10rem !important;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    width: 175px;
}

.navbar-brand>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-toggler {
    width: fit-content;
    background: var(--primary);
    color: var(--white);
    margin: 0 !important;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--black);
    padding: 0 0;
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 8px 1.5rem;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--white);
}

.navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0;
    transition: transform 1s;
}

.navbar-nav .nav-item .nav-link:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(50);
}
header .navbar .navbar-nav li .dropdown-menu .nav-link:hover {
    color: var(--white) !important;
}

.searchForm {
    display: flex;
    align-items: center;
    position: relative;
}

.searchForm input {
    height: 33px;
    width: 205px;
    background: #F6F6F6;
    border: unset;
    border-radius: unset;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding-left: 2rem;
}

.searchForm input::placeholder {
    color: #494A4C;
}

.searchForm i {
    position: absolute;
    left: 0.75rem;
    color: #494A4C;
}

.form-inline a {
    color: #494A4C;
    font-size: 1.25rem;
}

.form-inline {
    gap: 1.3rem;
}

.store span {
    font-size: 10px;
    background: var(--secondary);
    width: 1rem;
    height: 1rem;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    position: absolute;
    right: -7px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.store {
    position: relative;
}


/* navigation css */


/* slider css */

.main-slider {
    height: 950px;
    background: url(https://testv45.demowebsitelinks.com/its-an-adeleWP/wp-content/uploads/2024/03/a1-4.jpg) center/cover no-repeat;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.slideOne {
    padding-top: 8rem;
}

.slideOne h1 span {
    font-size: 1.375rem;
    display: block;
    text-transform: uppercase;
    font-family: 'Jost';
}

.mainHead {
    font-size: 5rem;
    color: var(--white);
    line-height: 1;
}

.slideOne img {
    display: block;
    margin: 0 auto 2rem;
}

.mainBtn span {
    font-size: 1.125rem;
    text-transform: uppercase;
}

.mainBtn {
    color: var(--white);
    letter-spacing: 3px;
    position: relative;
    height: 108px;
    display: inline-flex;
    align-items: center;
    transition: 0.4s ease;
}

.mainBtn:before {
    content: "";
    position: absolute;
    border: 2px solid var(--white);
    width: 108px;
    height: 108px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -1rem;
    transition: 0.4s ease;
}

.mainBtn:hover::before {
    border-color: var(--white);
    animation: buttonhover 2s ease both;
    transition: 0.4s ease;
}

.mainBtn:hover {
    color: var(--white);
}

@keyframes buttonhover {
    33% {
        width: 165px;
    }
    66% {
        width: 165px;
        height: 60px;
        left: -1rem;
        border-radius: 20px;
    }
    100% {
        width: 66px;
        height: 66px;
        left: 6rem;
    }
}

.videoBtns {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.videoBtns a {
    background: var(--secondary);
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
}


/* slider css */


/* Subscribe Sec Css Start */

.subscribeSec {
    background: #9FAB57;
    padding: 2.5rem 0 3rem 0;
}

.secHeading {
    font-size: 6.25rem;
    color: #363636;
    line-height: 1;
}

.subcribeHead p {
    font-size: 1.375rem;
    line-height: 0;
    color: var(--white);
}

.subscribeForm input {
    height: 60px;
    border: 1px solid #D4D4D4;
    border-radius: unset;
    width: 343px;
    padding-left: 1.5rem;
}

.subscribeForm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.subscribeForm button {
    font-size: 2.5rem;
    font-family: 'quackerReg';
    border: unset;
    background: var(--primary);
    color: var(--white);
    width: 343px;
    height: 60px;
}

.subscribeForm button:hover {
    background: var(--secondary);
    color: var(--white);
}


/* Subscribe Sec Css End */


/* About Sec Css Start */

.aboutSec {
    padding: 7rem 0;
}

.aboutContent h2 {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.aboutSec ul {
    margin-left: 1.5rem;
}

.secHeading span {
    font-size: 2.5rem;
    color: var(--primary);
}

.aboutContent p {
    font-size: 1.375rem;
    color: #363636;
}

.themeBtn {
    background: var(--primary);
    color: var(--white);
    text-transform: uppercase;
    padding: 12px 3em;
    display: inline-block;
}

.themeBtn:hover {
    background: var(--secondary);
    color: var(--white);
}

.aboutWraps {
    display: flex;
    gap: 1.5rem;
}

.imgOne {
    text-align: end;
}

.imgOne .abt1 {
    border: 10px solid var(--white);
    border-right: 0;
    margin-bottom: -2rem;
    z-index: 1;
    position: relative;
    border-top: unset;
}

.aboutWraps .imgTwo {
    flex-shrink: 0;
}

.aboutWraps .imgTwo div {
    display: flex;
    justify-content: space-between;
    margin-top: 1.3rem;
}


/* About Sec Css End */


/* Shop Sec Css Start */

.shopSec {
    background: var(--secondary);
    padding: 4rem 0;
}

.shopWraps figure img {
    width: 100%;
}

.shopWraps {
    position: relative;
    transition: 0.5s ease;
}

.shopBtn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: 0.5s ease;
}

.shopBtn .themeBtn {
    width: 100%;
    text-align: center;
}

.shopSlider .swiper-slide-next .shopBtn {
    opacity: 1;
}

.shopWraps:before {
    content: "";
    position: absolute;
    background: var(--white);
    width: 2px;
    height: 634px;
    left: -1.3rem;
    bottom: 0;
    top: 0;
    margin: auto;
}

.shopSlider {
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    padding: 2rem 2rem;
}


/* Shop Sec Css End */


/* Video Sec Css Start */

.videoSec {
    padding: 4rem 5rem;
}

.videoSec .row+.row {
    padding-top: 4rem;
}

.videoWraps figure {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.videoWraps figure>img {
    border-radius: 20px;
    width: 100%;
    transition: 0.5s ease;
}

.videoWraps figure:hover>img {
    transform: scale(1.1);
}

.videoBtn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    place-items: center;
}

.videoContent h4 {
    font-size: 1.875rem;
    color: #363636;
    text-align: center;
    margin-top: 1rem;
}

.morevideoBtn {
    position: relative;
}

.morevideoBtn:before {
    content: "";
    position: absolute;
    background: #DBDBDB;
    width: 87%;
    height: 3px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
}

.morevideoBtn a {
    color: var(--black);
    border: 1px solid var(--black);
    padding: 12px 2em;
    background: var(--white);
    position: relative;
    transition: 0.5s ease-in-out;
}

.morevideoBtn a:hover {
    background: var(--black);
    color: var(--white);
}


/* Video Sec Css End */


/* Making Sec Css Start */

.makingSec {
    background: rgb(255 64 149 / 69%);
    padding: 10rem 0;
}

.makingSec:before {
    content: "";
    position: absolute;
    background: url(https://testv45.demowebsitelinks.com/its-an-adeleWP/wp-content/uploads/2024/03/Lamp-3-scaled.jpg) no-repeat;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    background-attachment: fixed;
    background-size: cover;
}


/* Making Sec Css End */


/* Favourite Sec Css Start */

.favouriteSec {
    padding: 3rem 0 1.5rem 0;
}

.clrBlack {
    color: var(--black);
}

.favrtWraps figure {
    position: relative;
}

.fvrtContent {
    margin-top: 1.3rem;
}

.fvrtContent h4 {
    font-size: 1.25rem;
    color: var(--black);
    line-height: 1.4;
}

.fvrtContent h4 span {
    display: block;
    font-size: 1.375rem;
    font-weight: 600;
}

.fvrtContent .fvrtHeart {
    color: #494A4C;
    position: absolute;
    bottom: 20%;
    left: 2rem;
    background: var(--white);
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s ease;
}

.fvrtSlider .swiper-slide-next .fvrtContent .fvrtHeart {
    opacity: 1;
}

.favouriteSec .swiper-button-next:after,
.favouriteSec .swiper-button-prev:after {
    font-size: 0.875rem;
    font-weight: 600;
}

.favouriteSec .swiper-button-next,
.favouriteSec .swiper-button-prev {
    color: var(--black);
    border: 2px solid #F6F6F6;
    width: 53px;
    height: 53px;
    border-radius: 50px;
    top: 6rem;
    transition: 0.5s ease;
}

.favouriteSec .swiper-button-next:hover,
.favouriteSec .swiper-button-prev:hover {
    background: #F6F6F6;
}

.favouriteSec .swiper-button-next {
    right: 15rem;
}

.favouriteSec .swiper-button-prev {
    left: inherit;
    right: 19rem;
}


/* Favourite Sec Css End */


/* Gallery Sec Css Start */

.gallerySec {
    background: #F6F6F6;
    padding: 4rem 0;
}

.galleryBox {
    display: flex;
    gap: 1.7rem;
    margin-top: 1.6rem;
}

.galleryWraps {
    position: relative;
    overflow: hidden;
}

.gallerySec .row .col-md-3:nth-child(odd) .galleryWraps {
    margin-top: 1.6rem;
}

.galleryWraps a {
    display: block;
    height: 450px;
}

.galleryWraps a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}

.galleryWraps a:hover img {
    transform: scale(1.1);
}


/* Gallery Sec Css End */


/* Insta Sec Css Start */

.instaSec {
    padding-top: 2rem;
}

.instaWraps figure {
    position: relative;
}

.instaIcon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: grid;
    place-items: center;
    font-size: 3rem;
    color: var(--white);
    opacity: 0;
    transition: 0.5s ease;
}

.instaSlider .swiper-slide-next .instaIcon {
    opacity: 1;
}


/* Insta Sec Css End */


/* Testimonial Sec Css Start */

.testimonialSec {
    background: #7D3127;
    padding: 5rem 0 4rem 0;
    border-radius: 0 0 50px 50px;
}

.testimonialHead {
    text-align: center;
}

.testimonialHead h2 {
    margin-bottom: -8rem;
}

.testimonialWraps {
    margin-top: -4rem;
}

.testimonialWraps p {
    font-size: 1.875rem;
    color: var(--white);
    text-align: center;
    line-height: 1.7;
}

.testimonialWraps h4 {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--white);
    text-align: center;
    margin-top: 1rem;
}

.quoteTwo {
    text-align: end;
    margin: -2rem 11rem 0 0;
}

.quoteOne {
    margin-bottom: 2rem;
}

.testimonialSlider {
    padding-top: 4rem;
    margin-top: -4rem;
}


/* Testimonial Sec Css End */


/* Footer Css Start */

footer {
    padding-top: 11rem;
    background: url(https://testv45.demowebsitelinks.com/its-an-adeleWP/wp-content/uploads/2024/03/Commission-Dining-Table-6-1.jpg) center center;
    background-size: cover;
    margin-top: -3rem;
    z-index: -1;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #1F424D;
    opacity: 0.72;
}

footer ul li a:hover {
    color: var(--primary);
}

footer h2 {
    font-size: 2.5rem;
    color: var(--white);
}

.links li a {
    color: var(--white);
    display: block;
    line-height: 1.3;
}

.links li+li {
    padding-top: 10px;
}

.footPara {
    color: var(--white);
    font-size: 0.875rem;
}

.contctLinks li span {
    font-size: 0.9375rem;
    color: var(--white);
}

.contctLinks li a {
    font-size: 0.9375rem;
    line-height: 1.1;
    color: var(--white);
}

.contctLinks li a span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
}

.contctLinks li+li {
    padding-top: 1.5rem;
}

.foorForm input {
    height: 50px;
    width: 100%;
    border: 1px solid #F1F1F1;
    background: #F6F6F6;
    font-size: 0.75rem;
    padding-left: 1.2rem;
}

.foorForm button {
    font-size: 0.9375rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: unset;
    padding: 7px 1.375rem;
    letter-spacing: 2px;
    position: absolute;
    right: 10px;
}

.foorForm {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0.875rem 0 1.5rem 0;
}

.instaLinks {
    display: flex;
    gap: 1.5rem;
}

.payText {
    font-size: 12px;
    margin: 10px 0 0 0;
}

.instaLinks li a {
    font-size: 1.5rem;
    color: var(--white);
}

.termsLink {
    display: flex;
    gap: 1.5rem;
    justify-content: end;
}

.termsLink li a {
    font-size: 0.875rem;
    color: var(--white);
}

.footBottom p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--white);
}

.termsLink li+li {
    border-left: 1px solid var(--white);
    padding-left: 1.5rem;
}

.footBottom {
    border-top: 2px solid rgb(212 212 212 / 44%);
    padding: 3rem 0;
    margin-top: 4rem;
}


/* Footer Css End */


/* Inner Css Start */

.innerBanner {
    /*height: 400px;*/
    position: relative;
}

.innerBanner .overlay {
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.letText p {
    font-size: 1.375rem;
    color: #363636;
    padding-bottom: 10px;
}

.letText h2 {
    line-height: 0.7;
}

.letsInner {
    padding: 2rem 0;
}

.letsInner .row+.row {
    padding-top: 2rem;
}

.podcastInner .row+.row {
    padding-top: 2.5rem;
}

.podcastInner {
    padding: 2rem 4rem;
}

.aboutInner {
    padding: 6rem 0;
}

.aboutInner .row:nth-child(even) {
    flex-direction: row-reverse;
}

.abtText h2 {
    font-size: 4.375rem;
}

.contactInner h2 {
    color: #363636;
}

.cntctForm .form-group label {
    font-size: 15px;
    color: #363636;
    margin: 0;
}

.cntctForm .form-group .form-control {
    background: #F3F3F3;
    border: 1px solid #AEAEAE;
    border-radius: unset;
}

.cntctForm .form-group input {
    height: 60px;
}

.contactInner .contctLinks li a,
.contactInner .contctLinks li a span,
.contactInner .contctLinks li span {
    color: #363636;
    font-size: 1.5625rem;
}

.contactInner .contctLinks li a span {
    font-size: 1.375rem !important;
}

.contactInner .contctLinks li+li {
    padding-top: 3.5rem;
}

.cntctNews h2 {
    font-size: 4.75rem;
    margin: 0;
}

.cntctNews p {
    color: #363636;
    font-size: 1.6875rem;
    line-height: 1.4;
    padding-bottom: 10px;
}

.cntctNews .foorForm input {
    height: 90px;
    background: #F6F6F6;
    font-size: 1.4375rem;
}

.cntctNews .foorForm button {
    font-size: 1.9375rem;
    padding: 7px 2.5rem;
}

.cntctNews .foorForm input::placeholder {
    color: #20242D;
}

.contactInner {
    padding-top: 5rem;
}


/* Inner Css End */






















/*.container {*/
/*  padding: 0px !important;*/
/*}*/
.list-unstyled.links .nav-link {
  padding: 0px !important;
}
.hf-form.hf-form-179 .hf-fields-wrap .themeBtn {
  max-width: 165px !important;
}
section#block-8 h2 {
    background-color: #000;
    display: inline-block;
    padding: 1.5em;
    font-size: 1.125rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid #ebebeb;
    width: 100%;
    margin-bottom: 0;
}
section#block-8 {
    padding-top: 0;
}
.wpcr3_respond_1.wpcr3_in_content {
  display: none !important;
}
form .input-cont i {
  top: 8px !important;
}
.footerLinks .list-unstyled.links {
  display: contents !important;
}
.blogPagedetail h2 {
  color: #000 !important;
}
.single-product .col-md-12.col-xs-12.col-sm-12 h3 {
  display: none !important;
}
.single-product .woocommerce div.product div.images img {
  border: 2px solid #fff;
}
.single-product .summary.entry-summary .availability {
  color: #000 !important;
}
.single-product .summary.entry-summary .posted_in {
  color: #000 !important;
}
.pro_detail h3 {
  color: #000;
}
.details_tab_area.woocommerce-tabs #tab-title-additional_information {
  padding: 20px;
  background: #d11a1f !important;
}
.details_tab_area.woocommerce-tabs #tab-title-additional_information a {
  color: #000 !important;
}
#tab-additional_information .shop_attributes {
  color: #000 !important;
}
.productSec.wer {
  display: none !important;
}
.woocommerce table.shop_table {
  background: #a4a4a4 !important;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
	background: #a4a4a4 !important;
}



.error404 .page-title {
  color: #000 !important;
}
/* 404 Page */
.page-content.notfoundPg {
    text-align: center;
}

h1.notfoundHad {
    font-size: 200px;
    color: #b19cd7 !important;
}
.page-title {
  color: #fff !important;
}
input.search-field {
    border: 2px solid #006b17;
    height: 50px;
    width: 299px;
}

input.search-submit {
    height: 51px;
    background: #006b17;
    border: 2px solid #006b17;
    width: 133px;
}

.page-content.notfoundPg {
    margin-bottom: 70px;
}

.notfoundPg .search-form .search-submit:hover, .notfoundPg .search-form .search-submit:focus {
    background: #006b17 !important;
    color: #006b17;
}
#secondary {
  display: none !important;
}
.single-post h3 {
  font-size: 17px !important;
}
.search .wapper.ert.container {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.search .wapper.ert.container .search-title {
  text-align: center !important;
  margin-bottom: 70px !important;
}
.search .wapper.ert.container h3 a {
  color: #000 !important;
}
.search .wapper.ert.container .h-readmore {
  margin-bottom: 50px !important;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #000;
  border: 1px solid var(--theme-color);
  padding: 0.75em 2em;
  min-width: 150px;
  margin: 0.5rem 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  display: inline-block;
}
.search .wapper.ert.container .h-readmore a{
	color: #fff !important;
}
.checkOutStyle h2 {
  color: #fff;
}
.checkout_form h3 {
  color: #fff;
}



.woocommerce-message .button.wc-forward {
  background: #ff4095 !important;
}
.table-responsive.cart_table.woocommerce-cart-form .button {
  background: #ff4095 !important;
}
.wc-proceed-to-checkout .checkout-button.button.alt.wc-forward {
  background: #ff4095 !important;
}
#place_order {
  background: #ff4095 !important;
}
.woocommerce .woocommerce-breadcrumb {
  display: none !important;
}



.navbar-nav > li .dropdown-menu{
    min-width: 15rem;
    border: 0;
    border-radius: 0;
    margin-top: -1rem;
}
.navbar-nav > li:hover .dropdown-menu {
    display: block;
}
.navbar-nav > li {
    position: relative;
}
.navbar-nav > li.menu-item-has-children:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    top: 5px;
    right: -20px;
}
header .navbar .navbar-nav li .dropdown-menu .nav-link {
    font-size: 1rem;
    padding: 0.3rem 1rem;
    width: 100%;
}
.navbar-nav > li.menu-item-has-children::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  top: 0px !important;
  right: -20px;
  color: white !important;
}
.dropdown-menu li .nav-link {
  color: #000 !important;
}


/*SubMenu DropDown*/
.dropdown-menu li > .dropdown-menu {
  position: relative;
}

.dropdown-menu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-menu li > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}



/ All Wocommerce Css /
@media only screen and (min-width: 769px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 22%;
  }
  .woocommerce-account .woocommerce-MyAccount-content { 
    width: 75%;
  }
}
/ Style WC Account Endpoint Links /
nav.woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding-left: 0;
  max-width:200px;
  font-size: 17px;
  line-height: 26px;
}
nav.woocommerce-MyAccount-navigation ul li {
  padding: 8px 20px;
  background-color: rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
nav.woocommerce-MyAccount-navigation ul li.is-active {
  background: #f25a29 !important;
}
nav.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #fff !important; 
  cursor: default;
}
nav.woocommerce-MyAccount-navigation ul li {
	padding: 8px 20px;
	background: #000 !important;
	border-bottom: 2px solid #fff;
}
nav.woocommerce-MyAccount-navigation ul li.is-active:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-left: 14px solid rgba(0,0,0,0.1);
  border-bottom: 20px solid transparent;
  float: right;
  margin-right: -34px;
  margin-top: -7px;
}
nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover {
  background: #f25a29 !important;
}
.woocommerce-MyAccount-navigation-link a {
  color: #fff !important;
}
nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover:after { 
  content: "";
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-left: 14px solid rgba(0,0,0,0.07);
  border-bottom: 20px solid transparent;
  float: right;
  margin-right: -34px;
  margin-top: -7px;
}
.woocommerce-account #primary {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.u-columns.woocommerce-Addresses.col2-set.addresses .col-1, .u-columns.woocommerce-Addresses.col2-set.addresses .col-2 {
    max-width: 100%;
    width: 48%;
}
.woocommerce-form-row label {
  width: 100% !important;
}
.woocommerce-account .u-column1.col-1, .woocommerce-account .u-column2.col-2 {
  width: 100% !important;
  max-width: 48% !important;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: 5px solid #000 !important;
  box-shadow: 0px 0px 30px -2px #fff !important;
}
.single-product .woocommerce-breadcrumb a {
  color: #a24234 !important;
}
.single-product .woocommerce-breadcrumb {
  color: #a24234 !important;
}
.single-product .woocommerce-product-details__short-description p {
  font-size: 15px !important;
  margin-top: 20px !important;
}
.woocommerce div.product form.cart div.quantity {
  float: none !important;
}
.btn-warning {
  color: #fff;
  background-color: #a24234;
  border-color: #006b17;
  padding: 20px;
  max-width: 200px;
  width: 100% !important;
  margin-top: 40px;
}
.product_meta .posted_in a {
  color: #000 !important;
}
.posted_in {
  pointer-events: none !important;
}
.details_tab_area.woocommerce-tabs #tab-title-description {
  padding: 20px;
  background: #ff4095 !important;
}
.details_tab_area.woocommerce-tabs #tab-title-description a {
  color: #fff !important;
}
.details_tab_area.woocommerce-tabs #tab-title-reviews {
  padding: 20px;
  background: #30cdc2 !important;
}
.details_tab_area.woocommerce-tabs #tab-title-reviews a {
  color: #fff !important;
}
.details_tab_area.woocommerce-tabs #descrpt-sing {
  padding-left: 0px !important;
  padding-top: 20px !important;
}
.details_tab_area.woocommerce-tabs #tab-title-reviews, #tab-reviews {
  padding-top: 20px !important;
}
#tab-reviews #submit {
  display: inline-block !important;
  position: relative !important;
  overflow: hidden !important;
  font-size: 1.125rem !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  line-height: 1 !important;
  z-index: 1;
  border-radius: 50px !important;
  color: var(--white) !important;
  background-color: var(--theme-color) !important;
  padding: 0.8em 1.25em !important;
  transition: all 0.5s ease !important;
}
.woocommerce-cart #primary {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 100% !important;
}
.coupon.couponarea {
  margin-bottom: 20px;
  margin-top: 10px;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button{
    display: inline-block !important;
  position: relative !important;
  overflow: hidden !important;
  font-size: 1.125rem !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  line-height: 1 !important;
  z-index: 1;
  border-radius: 50px !important;
  color: var(--white) !important;
  background: #ff4095 !important;
  padding: 0.8em 1.25em !important;
  transition: all 0.5s ease !important;
}
.coupon.couponarea #coupon_code {
  margin-bottom: 15px !important;
  border-radius: 40px !important;
}
.cart_item a {
  color: #006b17 !important;
}
.actions .button {
  max-width: 510px !important;
}
.btn-warning {
  color: #fff !important;
  background: #ff4095 !important;
  border-color: #fff !important;
  padding: 20px !important;
} 



.container.result_cntt {
    display: none;
}

div#shp-filtr {
    position: absolute;
    top: -50px;
    right: 20px;
}

.summary.entry-summary h2, bdi {
  color: #000;
}


.aboutSec .aboutWraps .imgTwo {
    width: 100%;
    text-align: center;
}

.innerBanner h4 {
    margin-top: 4rem;
}

.content-area .favouriteSec {
    margin: 3rem 0 0;
}