@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');

html {
    font-size: 62.5%;
    /* Because 16px Ã— 62.5% = 10px */
    scroll-behavior: smooth;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

img {
    max-width: 100%;
}

ul,
ol,
li {
    margin: 0;
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


:root {
    --theme-color: #2861A5;
    --theme-color-primary: #4A7495;
    --theme-regular-font: "Inter", sans-serif;
    --theme-header-font-bold: "Inter", sans-serif;
}

body {
    font-family: var(--theme-regular-font);
    font-weight: 400;
    background: #F9FAFA;
    color: #131313;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--theme-header-font-bold)
}

.mb-50 {
    margin-bottom: 50px
}

.mt-50 {
    margin-top: 50px
}


@media (min-width: 1440px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
}

@media (min-width: 1640px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1380px;
    }
}

@media (min-width: 1840px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1580px;
    }
}

@media (min-width: 2040px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1780px;
    }
}

@media (min-width: 2240px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1980px;
    }
}

@media (min-width: 2440px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2180px;
    }
}


@media (min-width: 2640px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 2380px;
    }
}


/*================ Topbar ================*/
.topbar {
    background: #3AB890;
    padding: 1.6rem 0;
    color: #fff;
    text-align: center;
}

.topbar p {
    font-size: 1.8rem
}

.topbar p span.code {
    padding: 0.8rem 1.2rem;
    background: #000;
    text-align: center;
    font-weight: 600;
    border-radius: 0.8rem;
}

/*========================Header======================*/
.headersec {
    padding: 1rem 0px 1rem;
    width: 100%;
    z-index: 9;
    transition: 0.3s ease all;
    position: relative;
    box-shadow: 0px 0px 6px 0px #00000047;
}


.logo img {
    width: auto;
    height: 100%;
    max-height: 42px;
    -webkit-transition: all 0.5s ease-out;
    vertical-align: middle;
}

.headersec:hover .logo img,
.headersec.sticky .logo img,
.headersec.innrpg .logo img {
    filter: unset;
}

.cmenu {
    height: auto;
    font-size: 1.6rem;
    position: relative;
    font-weight: normal;
    -webkit-transition: all 0.5s ease-out;
    text-align: center;
    padding: 8px 0;

}

.cmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;

}

.cmenu ul li {
    list-style: none;
    display: inline-block;

}

.cmenu ul li a {
    display: block;
    margin: 0 2rem;
    font-weight: 400;
    border-radius: 0px;
    text-transform: capitalize;
    position: relative;
    letter-spacing: 0px;
}

.cmenu ul li a.active {
    color: var(--theme-color-primary);
}

.cmenu ul li:first-child a {
    margin-left: 0px
}

/*.cmenu ul li a:after {
    content: "";
    background-color: #0a0a0a;
    position: absolute;
    bottom: -19px;
    left: 0;
    width: 0%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    height: 2px;
}
.cmenu ul li:hover a:after{
    opacity: 1;width: 100%;
}*/

.cmenu ul li:first-child img {
    max-height: 20px;
    width: auto
}

.cmenu ul li a i {
    font-size: 20px
}

.cmenu ul li a.active {
    color: var(--theme-color);
}

.rmenubar,
.clsebtn,
.mysidenav {
    display: none;
}

.headersec.sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    transition: all 0.3s ease-out;
    left: 0;
    right: 0;
    width: 100%;

}

.headersec.sticky .social-icon img {
    filter: invert(1);
}

.offrbtn {
    background: #FF6600;
    color: #fff;
    text-align: center;
    padding: 1.2rem 5rem;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 0.8rem;
    display: inline-block;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border: 1px solid #B83324;
    transform: scale(0.9);
    animation: pulseCTAButton 1.5s infinite
}
@keyframes pulseCTAButton {
  50% {
    transform: scale(1);
  }
}

.offrbtn-top{
    transform: inherit;
    animation: none; 
}


.offrbtn img {
    max-height: 1.8rem;
}

.offrbtn:hover {
    color: #fff
}

.headersec .offrbtn {
    padding: 1.4rem 2rem;
}

.badge img {
    max-height: 6.2rem;
    width: auto
}

/*======================== Banner ======================*/
.bnrslider {
    padding: 9rem 0 0rem;
}

.ratting {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem
}

.ratting img {
    max-height: 1.6rem;
}

.bnrcontent {
    padding-right: 5rem;
}

.bnrcontent p {
    font-size: 1.6rem
}

.ratting p {
    font-size: 1.4rem
}

.bnrcontent h1 {
    font-weight: 800;
    font-size: 4.6rem;
    line-height: 6rem;
    margin-bottom: 1.2rem;
}

.bnrcontent ul {
    margin: 0;
    padding: 0;
    margin-top: 1.8rem;
    margin-bottom: 4rem;
}

.bnrcontent ul li img {
    max-height: 2rem;
    margin-right: 0.6rem;
}

.bnrcontent ul li {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
        display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bnrcontent .offrbtnsec {
    margin-bottom: 1.8rem
}

.bnrcontent .offrbtn {
    padding: 1.8rem 5.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 0.8rem;
}

.bnr-btnsec {
    width: fit-content;
    text-align: center;
}

.tariffbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem
}

.tariffbox img {
    max-height: 1.5rem
}

.tariffbox p {
    font-size: 1.3rem;
    font-weight: 600
}

.stock-level {
    margin-bottom: 7rem
}

.stock-level p {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
.stock-level p img {
    max-height: 1.6rem
}

.stock-level p span {
    color: #B9B9B9
}

.cus-desk {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.5rem;
}

.cus-desk img {
    max-height: 6.8rem
}

.cus-desk p {
    font-size: 1.2rem;
    line-height: 2.4rem;
}

.bnrimg {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.bnrimg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sliderimgbox .sliderimg {
    width: 100%;
    height: auto;
    border-radius: 3.5rem;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}

.sliderimgbox {
    position: relative;
}

.sliderimgbox::after {
    content: "";
    position: absolute;
    top: -2rem;
    right: -2rem;
    border-radius: 3.5rem;
    background: var(--theme-color-primary);
    width: 97%;
    height: 80%;
    z-index: -1;
}

.sliderimgbox .mbg-tag {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 1;
}

/*.mbg-tag img{max-height: 18.7rem}*/
.sliderimgbox .recomended-tag {
    position: absolute;
    bottom: 17rem;
    right: 2rem;
    z-index: 1;
}

/*.sliderimgbox .mbg-tag img{max-height: 14rem}*/
.sliderimgbox .recomended-tag img {
    max-height: 13rem;
    height: 13rem;
}

.sliderimgbox .sliderimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sliderimgnav-wrapper {
    padding: 0 5rem;
}

.subslider img {
    display: block;
    width: auto;
    max-height: 100px;
    margin: 0 auto;
    border: 1px solid var(--theme-color-primary);
    border-radius: 8px;
}


.sliderimgnav .slick-prev {
    background: url(../images/left-arrow.png) no-repeat;
    background-size: 4rem 4rem;
    width: 4rem;
    height: 4rem;
    left: -45px;
}

.sliderimgnav .slick-next {
    background: url(../images/right-arrow.png) no-repeat;
    background-size: 4rem 4rem;
    width: 4rem;
    height: 4rem;
    right: -45px;
}

.sliderimgnav .slick-prev:before,
.sliderimgnav .slick-next:before {
    font-size: 0
}


/*======================== Icon sec ======================*/
.iconsec {
    padding: 0rem 0 2rem;
}

.icon-wrapper .icon img {
    max-height: 10rem
}

.icon-wrapper .icon p {
    font-weight: 700;
    font-size: 1.8rem;
}

/*======================== Review sec ======================*/
.reviewsec {
    padding: 4rem 0 6.5rem
}

.reviewsec h2 {
    font-size: 4.2rem;
    margin-bottom: 5rem;
    font-weight: 700
}

.all-cus img {
    max-height: 4.4rem;
    width: auto;
    margin-bottom: 1.5rem
}

.reviewslider {
    overflow: hidden;
}

.reviewslider .slick-track {
    display: flex;
    gap: 24px;
}

.reviewbox {
    max-width: 34.5rem;
    color: #000;
    min-height: 34.5rem;
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    padding: 1.7rem;
}

.reviewbox .cus-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

.reviewbox .cus-details img.client {
    max-height: 5rem;
    width: auto;
}

.reviewbox .cus-details p {
    font-family: "Roboto", sans-serif;
    font-size: 1.7rem;
    font-weight: 700
}

.reviewbox .cus-details img.verified {
    max-height: 2rem;
    width: auto;
}

.reviewbox .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1.8rem 0;
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    gap: 1rem;
}

.reviewbox .date img {
    max-height: 1.7rem
}

.reviewbox .date p {
    font-size: 1.4rem
}

.reviewbox .content {
    margin-top: 1.5rem
}

.reviewbox .content h4 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    font-weight: 700
}

.reviewbox .content p {
    font-size: 1.7rem;
}

/*======================== Neck Massage sec ======================*/
.neck-massage .small-heading {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #FF6600;
    margin-bottom: 1.5rem;
}

.neck-massage .main-heading {
    font-weight: 700;
    font-size: 4.2rem;
    line-height: 5rem;
    letter-spacing: 0%;
    margin-bottom: 5rem;
}

.neck-massage .main-heading span {
    color: #475858;
}

.neck-massage .image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.neck-massage .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.vdo-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.vdo-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.neck-massage .right {
    background: linear-gradient(181.2deg, #FFFBF6 -21.67%, #EED7B3 187.56%);
    height: 100%;
}

.neck-massage .right {
    padding: 7rem 16.5rem 7rem 11rem
}

.neck-massage .right h5 {
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 4rem;
    letter-spacing: 0%;
    margin-bottom: 2.3rem;
}

.neck-massage .right p {
    font-size: 1.7rem;
    line-height: 3.1rem;
    letter-spacing: 0%;
    color: #000000;

}

/*======================== Multi area sec ======================*/
.multi-area {
    background: #F4EEDB;
    padding: 3.5rem 0;
}

.multi-area h4 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 5px
}

.multi-area p {
    font-size: 1.7rem;
    margin-bottom: 3.5rem
}

.multi-area .image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.multi-area .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/*======================== FAQ sec ======================*/
.faqsec {
    padding: 11rem 0 6rem;
}

.faqsec h2 {
    font-size: 4.2rem;
    margin-bottom: 4.5rem;
    font-weight: 800;
}

.faqsec .accordion-item {
    margin-bottom: 2rem;
    border: 1px dashed #475858;
    border-radius: 4px;
    padding: 2.5rem 2rem;
    background: #F9FAFA;
}

.faqsec .accordion-header {
    margin: 0;
}

.faqsec .accordion-button {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0E0E0E;
    border-radius: 0;
    box-shadow: none;
}

.faqsec .accordion-body {
    font-size: 1.8rem;
    padding: 0;
    padding-top: 1.6rem;
}

.faqsec .accordion-button::after {
    background-image: url(../images/faq-plus.png);
    transform: unset;
    background-repeat: no-repeat;
    background-size: 2rem 2rem;
    width: 2rem;
    height: 2rem;
}

.faqsec .accordion-button:not(.collapsed)::after {
    background-image: url(../images/faq-minus.png);
    transform: unset;
    background-repeat: no-repeat;
    background-size: 2rem 2rem;
    width: 2rem;
    height: 2rem;
}

/*======================== Ninty Days sec ======================*/
.ninty_days .right {
    padding: 7rem;
    background-color: #F4EEDB;
    height: 100%;
    text-align: center;
}
.ninty_days .left .image {
    height: 100%;
}
.ninty_days .left .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ninty_days .right .ratting {
    margin-bottom: 2rem;justify-content: center;
}

.ninty_days .right h5 {
    font-size: 4rem;
    line-height: 4.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.ninty_days .right ul {
    max-width: 35rem;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.ninty_days .right ul li {
    font-size: 1.5rem;
    line-height: 2.6rem;
    display: flex;
    column-gap: 11px;
}

.pain_relief_guarantee {
    background-color: #F4EEDB;
}
.pain_relief_guarantee .content_box h5 {
    font-size: 2rem;
    line-height: 2.4rem;
    color: #475858;
    font-weight: 700;
    margin-bottom: .8rem;
}

.pain_relief_guarantee .content_box p {
    font-size: 1.7rem;
    line-height: 2.6rem;
}

.reviewsec_list {
    padding: 6.2rem 0;
}
.reviewsec_list h2 {
    font-size: 4.2rem;
    line-height: 5rem;
    color: #131313;
    font-weight: 700;
    max-width: 845px;
    margin: 6.2rem auto 5rem auto;
}
.reviewsec_list .card-body {
    padding: 1.7rem;
}
.reviewsec_list .reviewer_content {
    font-size: 1.7rem;
    line-height: 2.7rem;
    color: #000;
    column-gap: 9px;
    margin-bottom: 2rem;
}
.reviewsec_list .star_date {
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    padding: 1.8rem 0;
    margin-bottom: 2rem;
    column-gap: 10px;
    font-size: 1.4rem;
    line-height: 2.2rem;
}
.reviewsec_list .content_box h5 {
    font-size: 1.7rem;
    line-height: 2.7rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}
.reviewsec_list .content_box p {
    font-size: 1.7rem;
    line-height: 2.7rem;
    color: #3B3B3B;
}

.reviewsec_list .card {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    overflow: hidden;
}

/*======================== middle sec ======================*/
.mid-bg{
    background:url(../images/mid-bg%402x.png);
    background-position: center;
    background-size: cover;
    min-height: 55rem;
    position: relative;
}
.mid-bg .content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    max-width: 21%;
}

.mid-bg .content h4{font-size: 3.2rem;margin-bottom: 0.8rem;font-weight: 700}
.mid-bg .content p{font-size: 1.6rem}

/*======================== img content sec ======================*/
.img-content-sec{
    background: #F4EEDB;padding: 4rem 0 5rem;text-align: center;
}
.img-content-sec h4{
font-size: 3.2rem;margin-bottom: 1.2rem;font-weight: 700
}
.img-content-sec p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    min-height: 4.8rem;
}

.img-content-sec .image{width: 100%;height: auto;overflow: hidden;}
.img-content-sec .image img{width: 100%;height: 100%;object-fit: cover}
.img-content-sec .bnr-btnsec {
    margin-top: 6rem !important;
}
.bnr-btnsec p{min-height: unset;}

/*======================== Doctor sec ======================*/
.dctrsec{
    background:#F0F0F0;padding: 7.5rem 0 10rem;position: relative;
}
.dctrsec h3{font-size: 4.2rem;margin-bottom: 10rem;font-weight: 700;position: relative;}
.dctrsec h3 img {
    position: absolute;
    top: 0;
    left: 2%;    max-height: 13rem;
}

.dctrsec h5{
    font-size: 2rem;
    color: #475858;
    font-weight: 700;
    margin-bottom: 2rem;
}
.dctrsec ul{
    margin:0;padding: 0;padding-left: 1.6rem;
}
.dctrsec ul li{font-size: 1.6rem;list-style:disc;margin-bottom: 1rem}

.dctrsec .image img {
    position: absolute;
    bottom: 0;
    max-height: 44rem;
    right: 5%;
}

/*======================== Product Info sec ======================*/
.product-info{
    padding: 7.5rem 0 10rem;background: #fff;
}
.product-info h3{font-size: 4.2rem;margin-bottom: 10rem;font-weight: 700;}
.product-info .info h5 {
    color: #475858;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 2.8rem;
}
.product-info .info p{
    font-size: 1.7rem
}
.product-info .info{
    margin-bottom: 9rem
}

/*======================== Footer sec ======================*/
.ftsec {
    background: #fff;
    padding: 5rem 0 5rem;
    text-align: center;
    border-top: 1px solid #D7D7D7
}

.ftsec .logo img {
    max-height: 66px;
    margin-bottom: 4rem
}

.ftsec ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.ftsec ul li {
    font-size: 1.4rem;
}

.ftsec ul li a,
.ftsec p,
.ftsec ul li {
    color: #A8A8A8;
}

.ftsec p {
    font-size: 1.4rem;
    margin-top: 5px;
    margin-bottom: 3rem
}

.ftsec .dcma-icon img {
    max-height: 4rem
}


@media screen and (min-width: 1200px){
.pr-0{padding-right: 0 !important}
}


@media screen and (min-width: 1600px) {
    html {
        font-size: 68%;
    }

    .bnrcontent h1 {
        font-size: 4rem;
    }
    .headersec .offrbtn {
    padding: 1.4rem 1.2rem;
}
.ninty_days .right{  padding: 7.5rem 4.5rem;}
.ninty_days .right h5{    font-size: 3rem;}
}

@media screen and (min-width:1800px) {
    html {
        font-size: 74%;
    }


    .subslider img {
        max-height: 130px;
    }
    .ninty_days .right h5 {
        font-size: 3.5rem;
    }
}

@media screen and (min-width:2000px) {
    html {
        font-size: 76%;
    }

    .subslider img {
        max-height: 140px;
    }
    .ninty_days .right h5 {
        font-size: 4rem;
    }
}

@media screen and (min-width:2200px) {
    html {
        font-size: 84%;
    }

    .cmenu {
        font-size: 2rem;
    }

    .bnrcontent h1 {
        font-size: 5rem;
        line-height: 6rem;
    }

    .bnrcontent p,
    .bnrcontent ul li {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .bnrcontent .offrbtn,
    .offrbtn {
        font-size: 2.2rem;
    }

    .cus-desk p {
        font-size: 1.6rem
    }

    .icon-wrapper .icon img {
        max-height: 13rem;
    }

    .icon-wrapper .icon p {
        font-size: 2rem;
    }

    .faqsec h2 {
        font-size: 5rem;
    }

    .stock-level p {
        font-size: 1.4rem !important;
    }

    .testimonial-content .meta,
    .testimonial-content p {
        font-size: 1.6rem;
    }

    .faqsec .accordion-button {
        font-size: 2.2rem;
    }

    .faqsec .accordion-body {
        font-size: 2rem;
    }

    .ftbtm img {
        max-height: 6.8rem;
        height: 6rem;
    }

    .logo img {
        max-height: 65px;
    }

    .ftsec ul li {
        font-size: 1.8rem;
    }

    .ftbtm p {
        font-size: 1.6rem;
    }

    .subslider img {
        max-height: 150px;
    }

    .neck-massage .right {
    padding: 10rem 16.5rem 10rem 11rem;
}
.neck-massage .right p {    font-size: 1.9rem;}

}

@media screen and (min-width:2400px) {
    html {
        font-size: 88%;
    }

    .subslider img {
        max-height: 180px;
    }
}

@media screen and (min-width:2600px) {
    html {
        font-size: 90%;
    }
}

@media screen and (min-width:2800px) {
    html {
        font-size: 92%;
    }

    .sliderimgbox .recomended-tag {
        bottom: 19rem;
    }

    .subslider img {
        max-height: 200px;
    }
}

@media screen and (min-width:3000px) {
    html {
        font-size: 94%;
    }
}

@media screen and (min-width:3200px) {
    html {
        font-size: 96%;
    }
}

@media screen and (min-width:3400px) {
    html {
        font-size: 98%;
    }
}

@media screen and (min-width:3600px) {
    html {
        font-size: 100%;
    }
}

@media screen and (max-width: 1400px) {
    .bnrcontent h1 {
        font-size: 4.5rem;
        line-height: 5rem;
    }

    .offrbtn {
        padding: 1.4rem 1.5rem;
        font-size: 1.6rem;
    }

    .offrbtn img {
        max-height: 1.6rem;
    }
    .neck-massage .right {
        padding: 7rem 12.5rem 7rem 8rem;
    }
    .mid-bg .content {left: 5%;}
    .ninty_days .right{    padding: 5rem;}
    .ninty_days .right h5{font-size: 3.2rem;}
    .faqsec {
    padding: 9rem 0 6rem;
}
}


@media screen and (max-width: 1200px) {
    .bnrcontent h1 {
        font-size: 4.2rem;
        line-height: 5.5rem;
    }

    .offrbtn {
        padding: 1.4rem 1rem;
        font-size: 1.5rem;
    }

    .offrbtn img {
        max-height: 1.5rem;
    }


}

@media (min-width: 1024px) and (max-width: 1200px){
.headersec .offrbtn {
    padding: 1.4rem 1.2rem;
    font-size: 1.4rem;
}
.bnrcontent h1 {
    font-size: 3.5rem;
    line-height: 4.5rem;
}
.bnrslider {
    padding: 6rem 0 0rem;
}
.bnrcontent ul li{    font-size: 1.5rem;}
.neck-massage .right {
    padding: 7rem 7.5rem 6rem 7rem;
}
.mid-bg .content{    left: 4%;  }
.img-content-sec .bnr-btnsec {
    margin-top: 3rem !important;
}
.dctrsec h3 img {
    left: -2%;
    max-height: 10rem;
}
.dctrsec .image img {
    max-height: 38rem;
    right: 2%;
}
.dctrsec h5, .product-info .info h5{    font-size: 1.8rem;}
.product-info h3{    margin-bottom: 7rem;}
.ninty_days .right {    padding: 4rem;}
.ninty_days .right h5{font-size: 2.6rem;}
}

@media (min-width: 769px) and (max-width: 1024px) {
    .offrbtn {
        padding: 1.4rem 1rem;
        font-size: 1.2rem;
    }

    .offrbtn img {
        max-height: 1.4rem;
    }

    .bnrcontent h1 {
        font-size: 3.5rem;
        line-height: 5.3rem;
    }
    .neck-massage .right {
        padding: 7rem 5rem 7rem 5rem;
    }
    .mid-bg{background-position: left;}
    .mid-bg .content {max-width: 40%;}
    .img-content-sec h4 {font-size: 2.5rem;}
    .img-content-sec p{font-size: 1.2rem;margin-bottom: 2rem;}
    .dctrsec h3 img {    max-height: 5rem;    left: 0%;}
    .dctrsec{padding-bottom: 0}
    .dctrsec h3{    font-size: 3.2rem;margin-bottom: 4rem;}
    .dctrsec h5{font-size: 1.6rem;}
    .dctrsec ul li{font-size: 1.4rem}
    .dctrsec .image{text-align: center;}
    .dctrsec .image img{    max-height: 38rem;  position: relative;        right: unset;}
    .product-info h3 {    margin-bottom: 6rem;} 
    .product-info .info{margin-bottom: 3rem;text-align: center;}
    .product-info  .image img{margin-bottom: 3rem;}

}



@media only screen and (max-width:992px) {
    .ratting {
        margin-top: 3rem;
    }
    .product-info .image {
        margin: 3.8rem 0 3.8rem;
    }
    .mid-bg .content {    max-width: 50%;}
    .dctrsec .image{padding-top: 5rem}
    .dctrsec .image img{    right: 0;
        left: 0;
        margin: 0 auto;        max-height: 300px;
            width: auto;
        height: auto;}
    .dctrsec h3 img {max-height: 9rem;    left: -3%;}
    .dctrsec h3 {font-size: 3.2rem;        padding: 0 70px;}
    .ninty_days .right .ratting{justify-content: center;}
}



@media only screen and (max-width:820px) {
    /* .headersec.sticky{position: relative;} */

    .cmenu ul li:after {
        display: none
    }

    .social-icon {
        padding-right: 35px;
    }

    .rmenubar {
        position: absolute;
        right: 12px;
        top: 20px;
        z-index: 99;
        display: block;
        font-size: 22px;
        background: transparent;
        padding: 0px;
        border-radius: 0;
        -webkit-transition: all 0.5s ease-out;
    }

    .clsebtn svg {
        width: 28px;
        height: 28px;
        position: absolute;
        right: 20px;
        top: 15px;
        z-index: 9999;
        color: #1c1b1b;
        opacity: 0;
        transition: 0.3s ease all;
        visibility: hidden;
        animation-name: slowup;
        animation-duration: 0.3s;
    }

    .headersec.sticky .rmenubar {
        top: 17px;
    }

    .cmenu ul.navopen .clsebtn i,
    .cmenu ul.navopen .clsebtn {
        display: block;
    }

    .cmenu ul.navopen .clsebtn svg {
        top: 24px;
        opacity: 1;
        visibility: visible;
    }

    .rmenubar a {
        color: #000000 !important;
    }

    .innrpg .rmenubar a {
        color: #fff !important;
    }

    .headersec.sticky .rmenubar a {
        color: #1c1b1b !important
    }

    .headersec.sticky .commonbtn {
        margin-right: 25px;
    }

    .rmenubar a:hover,
    .rmenubar a:focus {
        color: #ffffff !important;
    }

    .inrheader .rmenubar a {
        color: #000 !important;
    }

    .cmenu {
        padding: 18px 20px;
    }

    .cmenu ul {
        position: fixed;
        top: 0px;
        left: -80vw;
        width: 80vw;
        height: 100vh;
        z-index: 999;
        background: #ffffff;
        overflow-y: scroll;
        font-size: 12px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s ease all;
    }

    .cmenu ul li {
        display: block;
        padding: 0;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 22px;
    }

    .cmenu ul li.logo {
        position: absolute;
        top: 20px;
        left: 18px;
        padding: 0;
    }

    .cmenu ul li.logo img {
        max-height: 28px !important;
    }

    ul.navopen {
        opacity: 0.95;
        visibility: visible;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        left: 0;
        padding-top: 4rem;
    }

    ul.navopen li {
        animation-name: slowdown;
        animation-duration: 0.3s;
        padding-left: 20px;
    }

    .mynavlayr {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: rgba(0, 0, 0, 0.36);
        display: none;
    }

    .cmenu ul li ul {
        margin: 0;
        padding: 0;
        position: unset;
        z-index: 999;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.5s ease-out;
    }

    .cmenu ul li a {
        color: #666666d9;
        text-align: left;
        margin-left: 0;
    }

    .cmenu ul li ul a {
        color: var(--text-color-dark);
    }

    .sliderimgbox {
        margin-bottom: 4rem
    }

    .bnrcontent h1 {
        font-size: 3.8rem;
        line-height: 5.3rem;
    }
}


/* seasonal banner css */
.desk-bnr-wrapper {
    font-family: 'Inter', sans-serif;
}

.desk-bnr-wrapper .topbar {
    background-color: #010A0B;
    color: #fff;
    text-align: center;
    padding: 14px 10px;
}

.desk-bnr-wrapper .topbar p,
.desk-bnr-wrapper .bottom-bar p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.desk-bnr-wrapper .topbar p span {
    color: #718675;
}

.desk-bnr-wrapper .topbar p img {
    max-height: 19px;
    width: auto;
    margin-top: -3px;
}

.desk-bnr-wrapper .bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #718675;
    padding: 9px 0;
}

.desk-bnr-wrapper .bottom-bar .code {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    margin-left: 8px;
    margin-right: 8px;
}

.desk-bnr-wrapper .bottom-bar .timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 8px;
}

@media only screen and (max-width:767px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .ratting{
        flex-direction: column;
    }
    .bnrslider  .ratting{margin-top: 0}
    .bnrcontent h1, .bnrcontent p{text-align: center;}
    .bnrcontent .offrbtn{    padding: 1.2rem 5rem;font-size: 1.6rem}
    .offrbtn {
        padding: 1.2rem 5rem;
        font-size: 1.6rem;
    }
    .desk-bnr-wrapper .topbar p,
    .desk-bnr-wrapper .bottom-bar p {
        font-size: 15px;
        line-height: 2.2rem;
    }

    .desk-bnr-wrapper .topbar {
        padding: 8px 10px;
    }

    .desk-bnr-wrapper .bottom-bar {
        flex-direction: column;
    }

    .desk-bnr-wrapper .bottom-bar .timer {
        gap: 13px;
    }

    .desk-bnr-wrapper .bottom-bar {
        padding: 7px 0;
    }
    
    /*16-12-25 css start*/
    .neck-massage .col-md-6 .right {
        max-width: 100%;
    }

    .rmenubar {
        right:15px;
    }

    .logo img {
        max-height: 3rem;
    }
    .tarrif-badge img{max-height: 4.4rem}
    .bnrslider {
    padding: 3rem 0 0rem;
}
    .bnrimg {
        margin: 2rem 0;
    }

    .bnrcontent {
        padding: 0;
    }

    .bnrcontent ul {
        padding-left: 0;
    }

    .bnrcontent p {
        margin-top: 0;
    }

    .bnr-btnsec {
        margin: 0 auto;
    }

    .bnrcontent ul li {
        margin-bottom: 1.6rem;
    }
    .reviewsec h2{font-size: 3rem}
    .multi-area .image{margin-bottom: 15px}
    .multi-area {
    padding: 3rem 0 3rem;
}
    .neck-massage .right p, .multi-area p{        margin-bottom: 2rem;}
    .mid-bg {
        background: url(../images/mid-bg-mb.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 22rem;
        position: relative;
        padding: 6rem 0 6rem;
    }
    .mid-bg .content{max-width: 100%;}
    .img-content-sec .image{margin-bottom: 2.5rem}
    .img-content-sec p{min-height: unset;}
    .img-content-sec .bnr-btnsec {
    margin-top: 1rem !important;
}
.dctrsec{    padding: 3rem 0 0rem;}
.dctrsec h3{font-size: 3rem;        padding-top: 8rem;    margin-bottom: 2rem;
}
.dctrsec h3 img {
    left: 0;
    max-height: 6.5rem;
    right: 0;
    margin: 0 auto;
}
.dctrsec h5{
    font-size: 1.6rem;    text-align: center;
}
.dctrsec .image{padding-top: 35rem}
.dctrsec .image img{    right: 0;
    left: 0;
    margin: 0 auto;        max-height: 260px;
        width: auto;
    height: auto;}
.product-info h3{font-size: 3rem;    margin-bottom: 2rem;}
.product-info .info {
    margin-bottom: 4rem;
    text-align: center;
}
.product-info {    padding: 5rem 0 6rem;}
.product-info .image{margin: 3.8rem 0 3.8rem}
.mbg-box{flex-direction: column;}
.pain_relief_guarantee .content_box{text-align: center;}
.pain_relief_guarantee .content_box p{font-size: 1.4rem;    line-height: 2.2rem;}
.reviewsec_list h2{font-size: 3rem;line-height: 4rem;margin: 5.6rem auto 2rem auto;}
.ninty_days .right {
    padding: 4rem 0rem;
}
.ninty_days .right .sub-div{padding: 0 3rem}
.ninty_days .right ul{margin-top: 1.8rem}
.ninty_days .right .ratting{    flex-direction: row;    gap: 0.4rem;justify-content: center;}
.ninty_days .right .ratting img{    max-height: 1.3rem;}
.ninty_days .right .ratting p {
    font-size: 1.2rem;
}
.faqsec {
    padding: 5rem 0 4rem;
}
.faqsec h2{font-size: 3rem;    margin-bottom: 2.5rem;}
.faqsec h2.accordion-header{font-size: 1.6rem}
.faqsec .accordion-body{font-size: 1.4rem}
.ftsec .logo img {
    max-height: 46px;
    margin-bottom: 2rem;
}
.ftsec p{font-size: 0.8rem;    margin-bottom: 2rem;}
.ftsec .dcma-icon img {
    max-height: 2.5rem;
}
}




@media only screen and (max-width:575px) {
    .bnrcontent p {  font-size: 1.5rem;}
    .bnrcontent .ratting p{        font-size: 1.4rem;}
    .stock-level p{font-size: 1.1rem}
    .bnrslider .container,
    .ninty_days .container{
        padding: 0;
    }

    .bnrslider .container .row,
    .ninty_days .container .row {
        margin: 0;
    }

    .bnrslider {
        padding: 3.5rem 0 0rem;
    }

    .bnrslider .container .row .col-lg-6:first-of-type {
        padding-left: 30px;
        padding-right: 30px;
    }

    .bnrslider .container .row .col-lg-6:last-of-type {
        padding-left: 0;
        padding-right: 0;
    }

    .bnrslider .container .row .col-lg-6:last-of-type .bnrcontent {
        padding-left: 30px;
        padding-right: 30px;
    }

    .bnrcontent h1 {
        font-size: 3.2rem;
        line-height: 1.4;
    }

    .iconsec {
        padding: 1rem 0;
    }

    .icon-wrapper .icon img {
        max-height: 7rem;
    }

    .icon-wrapper .row .col-4.col-md-2:nth-of-type(2) .icon img {
        height: 7rem;
        width: 4rem;
        scale: 1.6;
        object-fit: cover;
    }

    .icon-wrapper .icon p {
        font-size: 1.4rem;
    }

    .icon-wrapper .icon p span {
        display: block;
    }

    .reviewsec h2,
    .neck-massage .main-heading {
        font-size: 2.8rem;
        line-height: 1.4;
    }

    .reviewsec h2 br {
        display: none;
    }

    .neck-massage .col-md-6 .right {
        padding: 3rem 2.8rem;
    }

    .neck-massage .right h5,
    .multi-area h4 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .neck-massage .right p,
    .multi-area p {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .guarantee-icon {
        width: 9.7rem;
    }

    .pain_relief_guarantee .content_box {
        margin: 1.5rem 0 0;
        padding: 0 2rem;
    }

    .reviewsec_list {
        padding: 2.5rem 0;
    }

    .reviewsec_list h2 {
        font-size: 2.6rem;
        
    }
    .ninty_days .left .image{
        height: auto;
    }
    .img-content-sec h4{font-size: 2rem}
    .dctrsec h3, .product-info h3{font-size: 2.4rem}
    .faqsec h2{font-size: 2.8rem}
}


/*16-12-25 css end*/

/* seasonal banner css */
.banner {
  text-align: center;
  color: white;
  padding: 0 !important;
  font-family: 'Inter', sans-serif;
}

.banner .bottom-bar {
  background-color: #acf4a1;
  padding: 8px;
  display: flex;
    justify-content: center;
    align-items: center;
}

.banner .order-text {
  color: black;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.banner .code {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 5px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  margin-left: 8px;
  margin-right: 8px;
}

.fw-normal {
  font-weight: 400;
}

.banner .timer {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-left: 10px;
  margin-right: 10px;
}

.timer div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.timer .box {
  background-color: black;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  width: 32px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timer .label {
  font-size: 12px;
  color: black;
  font-weight: 700;
  line-height: 20px;
}

.desk-bnr-wrapper{font-family: 'Inter', sans-serif;}
.desk-bnr-wrapper .topbar{
    background-color: #010A0B;color: #fff;text-align: center;padding: 14px 10px;
}
.desk-bnr-wrapper .topbar p, .desk-bnr-wrapper .bottom-bar p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}
.desk-bnr-wrapper .topbar p span{color: #ACF4A1;}
.desk-bnr-wrapper .topbar p img {
    max-height: 19px;
    width: auto;
    margin-top: -3px;
}
.desk-bnr-wrapper .bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ACF4A1;
    padding: 9px 0;
}
.desk-bnr-wrapper .bottom-bar .code {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    margin-left: 8px;
    margin-right: 8px;
}
.desk-bnr-wrapper .bottom-bar .timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 8px;
}
.mobile-banner {
    display: none;
}


@media only screen and (max-width:767px){
 .desk-bnr-wrapper .topbar p, .desk-bnr-wrapper .bottom-bar p {
    font-size: 15px;        text-align: center;} 
.desk-bnr-wrapper .bottom-bar .code{
      padding: 5px 6px;
    font-size: 13px;margin-left: 5px;
    margin-right: 5px;
}  
.desk-bnr-wrapper .bottom-bar{
    flex-direction: column;
}
.desk-bnr-wrapper .bottom-bar .timer {    gap: 13px;}
.bnrcontent ul li{    align-items: flex-start;}
.bnrcontent ul li img{    margin-top: 5px;}
}

@media only screen and (max-width:480px){
.logo img{
  max-height: 22px;
    width: auto;
}
}

/* Cyber Monday banner css */
.desk-bnr-wrapper.cybr-monday-bnr .topbar{
    background-color: #002E7D;
}
.desk-bnr-wrapper.cybr-monday-bnr .topbar p span{color: #00FFEA;}

/* xmas sale banner css */
.desk-bnr-wrapper.xmas-tree-bnr .topbar{
    background-color: #A1090C;
}
.desk-bnr-wrapper.xmas-tree-bnr .topbar p span{color: #F8EC08;}

/* New year banner css */
.desk-bnr-wrapper.new-year-bnr .topbar p span{color: #F8EC08;}

.green-footer-box-wrapper{display: none;}
.sticky_button_sec{
    background: #ff6600;padding-top: 1rem; padding-bottom: 1rem;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}
.sticky_button_sec a.sticky_button {
      background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    border: transparent;
    border-radius: 0.375rem;
    padding: 0.75rem;
    display: block;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
.green-footer-box-wrapper{display: block;}
}


@media screen and (max-width: 830px){
    .tarrif-badge img{
      margin-left: 12rem;
    } 
}
@media screen and (max-width: 768px){
    .tarrif-badge img{
      margin-left: 10rem;
    }
}



@media screen and (max-width: 767px){
.tarrif-badge {
    text-align: right;
}
    .tarrif-badge img {
        max-height: 4.4rem;
        margin-left: 14rem;
    }

     .sticky_button_sec {
        padding: 8px 0 !important;
    }

      /* banner height modification */
      .desktop-banner {
        display: none;
    }
        .mobile-banner {
        display: block;
    }
    .desk-bnr-wrapper .topbar{
        padding: 6px 0;
    }
    .desk-bnr-wrapper .topbar p, .desk-bnr-wrapper .bottom-bar p, .banner.mobile-banner .bottom-bar p {
        font-size: 14px;
        line-height: 23px;
    }
    .desk-bnr-wrapper .bottom-bar, .banner.mobile-banner .bottom-bar {
        padding: 4px 10px 8px;
    }
     .desk-bnr-wrapper .bottom-bar .code, .banner-new .code , .banner.mobile-banner .code{
        font-size: 14px;
        margin: 0 5px;
        padding: 5px 10px;
    }
    .banner-new .timer-wrapper, .banner.mobile-banner .timer-wrapper{
       margin-top: 5px;
    }
    .banner.mobile-banner .bottom-bar{        flex-direction: column;}
    .neck-massage .right {
        padding: 5rem;
    }
}
@media screen and (max-width: 479px){
.tarrif-badge {
    text-align: inherit;
}
.tarrif-badge img {
        margin-left: 3rem;
    }
}


@media screen and (max-width: 360px) {
    .tarrif-badge img {
        margin-left: 2rem;
    }
}

@media screen and (max-width: 340px) {
    .tarrif-badge img {
        margin-left: 1rem;
    }
}