:root {
    --theme-primary-color: #c92112;
    --theme-font-color: #172845;
    --bg-color: #f4f4f4;
    --basecolor: #172845;
    --themecolor: #c92112;
    
}
body{
    line-height: 1.4;
}
img {
    max-width: 100%;
}

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

a {
    text-decoration: none;
    color: #000;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    font-family: "Nunito Sans", sans-serif;
}

html,
body {
    overflow-x: hidden !important;
}

.container {
    max-width: 1280px;
}

:hover {
    transition: 0.5s;
}

.title {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-font-color);
}


/* button start */

.theme-btn {
    background-color: var(--theme-primary-color);
    color: #f4f7f9;
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    padding: 18px 24px;
    transition: background 0.5s ease-in-out;
    border: none;
    width: 100%;
    max-width: 250px;
    text-transform: uppercase;
    line-height: 1;
}

.theme-btn:hover {
    background-color: var(--theme-font-color);
    border-color: #000000;
}

.theme-btn-invert {
    background-color: #f4f7f9;
    color: var(--theme-primary-color);
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    padding: 18px 24px;
    transition: all 0.5s ease-in-out;
    border: none;
    max-width: 250px;
    margin-top: 20px;
    text-transform: uppercase;
    line-height: 1;
    
}

.theme-btn-invert:hover {
    background-color: var(--theme-font-color);
}

.banner-btn {
    display: flex;
    justify-content: center;
}

.site-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px;
    border: 2px solid var(--themecolor);
    padding: 12px 32px;
    font-weight: 500;
    transition: all 0.2s ease-in;
    width: auto;
}

.site-btn:hover {
    border: 2px solid var(--themecolor);
}

.solid-btn {
    background-color: var(--themecolor);
    color: #f4f7f9;
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact_body h4 {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.solid-btn:hover {
    background-color: #fff;
    color: var(--themecolor);
}

.btn-big {
    font-size: 16px;
    padding: 12px 30px;
    text-align: center;
    margin: 0 auto;
    display: block;
    line-height: 1.4;
}

.border-btn {
    background-color: #fff;
    color: var(--themecolor);
}

.border-btn:hover {
    background-color: var(--themecolor);
    color: #f4f7f9;
}

.btn-pulse {
    animation: pulse 1.5s infinite;
}

.btn-pulse:hover {
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 33, 18, 0.2);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(201, 33, 18, 0);
    }
}
.brxe-mermul {margin-right: 0 !important;} 
/* 19/09/2024 night shift */
h3.savefifty {
	line-height: 1.1rem;
}

h3.savefifty span {
	font-size: 0.6rem;
	line-height: 1.4;
	vertical-align: middle;
	color: #c92112;
	/* font-weight: bold; */
}

.prod-buttons a.prod-btn.theme-btn {
	padding: 1rem;
	line-height: 1.4;
    display: block;
}
.cta-btn{
    text-decoration: underline;
    font-weight: bold;
}
.cta-btn:hover{
    color: #c92112;
}
.prod-box{
    max-width: 515px;
    text-align: center;
}
.text-slide-area{
    padding: 32px 0;
    position: relative;
    overflow: hidden;
}
.text-slide-area:before{
    content: "";
    position: absolute;
    width: 100%;
    background-color: #f4f4f4;
    height: 2px;
    top: 4px;
    left: 0;
    right: 0;
}
.text-slide-area:after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #f4f4f4;
    height: 2px;
    bottom: 4px;
    left: 0;
    right: 0;
}
.text-slick-1{
    text-align: center;
}
.text-slick-1 span {
    font-size: 30px;
    color: #c92112;
    font-weight: 800;
    display: block;
    width: 410px;
}

.text-slide-area {
                overflow: hidden;
                white-space: nowrap;
            }
            .text-slick {
                display: inline-block;
                white-space: nowrap;
                animation: slide 20s linear infinite;
            }
            .text-slick-1 {
                display: inline-block;
                padding-right: 50px;
            }
            @keyframes slide {
                0% { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }
@media  screen and (max-width: 767px) {
	.prod-buttons a.prod-btn.theme-btn {
		/* padding: 0.7rem; */
		padding: 1rem;
		/* font-size: 0.9rem; */
		font-size: 1rem;
	}
    h3.savefifty span {
        /* vertical-align: baseline; */
        display: block;
        padding-top: 0.5rem;
        font-size: 0.7rem;
    }
    .cta-btn{
        font-size: 14px;
    }
    .text-slick-1 span{
        font-size: 20px;
        width: 260px;
    }

}
@media (min-width: 992px) {
    .nav-btn {
        border-left: 1px solid #ccc;
        padding-left: 30px;
    }
}

@media (max-width: 1024px) {
    .site-btn {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .nav-btn .site-btn {
        display: block;
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 850px) {
    .site-btn {
        padding: 8px 20px;
        font-size: 16px;
    }
}


/* button end */


/* header */

header nav {
    height: 88px;
    border-bottom: 9px solid var(--themecolor);
}

header nav .navbar-brand img {
    max-width: 300px;
}

header nav .navbar-toggler {
    z-index: 6;
    position: fixed;
    right: 15px;
    height: 48px;
    transition: 0.04s;
    width: 55px;
}
.navbar-toggler:hover {
    background: #f7f7f7;
}
header nav .navbar-toggler:focus {
    box-shadow: none;
}

header nav .navbar-toggler .hamburger-icon .icon-bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #666;
    margin: 6px 0;
}

span.close-icon {
    font-size: 42px;
    line-height: 38px;
    color: #666;
    font-weight: 300;
}

.navbar-collapse {
    transition: height 0.3s ease, visibility 0.3s ease;
}


/* header nav .navbar-toggler.collapsed .icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

header nav .navbar-toggler.collapsed .icon-bar:nth-child(2) {
    opacity: 0;
}

header nav .navbar-toggler.collapsed .icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
} */

.close-icon {
    display: none;
    /* Initially hide the close icon */
}

.navbar-toggler.collapsed .close-icon {
    display: none;
    /* Hide the close icon when the navbar is collapsed */
}

.navbar-toggler:not(.collapsed) .hamburger-icon {
    display: none;
    /* Hide the hamburger icon when the navbar is expanded */
}

.navbar-toggler:not(.collapsed) .close-icon {
    display: inline;
    /* Show the close icon when the navbar is expanded */
}

header nav .navbar-nav .nav-item {
    margin: 0 15px;
    display: flex;
    align-items: center;
}

header nav .navbar-nav .nav-item.active a {
    color: var(--themecolor);
}

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

header nav .navbar-nav .nav-item .nav-link.active {
    color: var(--themecolor);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    body {
        padding-top: 80px;
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99;
    }
    header nav .navbar-brand {
        position: fixed;
        left: 15px;
        z-index: 6;
    }
    header nav .navbar-nav {
    position: fixed;
    left: 0;
    right: 0;
    background: #fff;
    /* top: 70px; */
    top: 80px;
    bottom: 0;
    min-height: 100vh;
    padding: 15px 15px 0;
    overflow-y: auto;
    z-index: 5;
    justify-content: flex-start;
}
    header nav .navbar-nav .nav-item {
        margin: 0;
    }
    header nav .navbar-nav .nav-item .nav-link {
        font-size: 20px;
    }
    header nav .navbar-nav .navbar-toggler {
        position: fixed;
        right: 15px;
        z-index: 6;
    }
    header .collapse:not(.show) {
        display: block;
        opacity: 0;
        visibility: hidden;
    }
    header .collapse.show {
        opacity: 1;
        visibility: visible;
    }
    header .collapse.show .navbar-nav {
        height: 100vh;
    }
    /* header .collapse.show .navbar-nav {
        transition: all 0.01s ease;
    }
    header .collapse {
        transition: all 0.01s ease;
    } */
}


/* main */

.banner-area {
    background-color: var(--bg-color);
    padding-bottom: 50px;
    letter-spacing: 0.5px;
}

.banner-area .hero-img1 img,
.banner-area .hero-img2 img {
    border-radius: 30px;
    margin-top: 50px;
}
.banner-area .hero-img1 img {
    max-height: 1030px;
}

.banner-area .best-tag {
    background-color: var(--theme-primary-color);
    position: absolute;
    top: 66px;
    left: 62px;
    padding: 5px 10px 3px;
    border-radius: 50px;
    z-index: 5;
    font-size: 13px;
    color: #f4f7f9;
    width: auto;
}

.banner-area .best-tag p {
    color: #f4f7f9fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

div.list-group-item {
    padding: 0 2.5rem 0 0;
}

.hero-img2 {
    padding: 0 14px 0;
}

.hero-heading {
    /* font-size: 46px; */
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 50px;
    margin-bottom: 40px;
    color: var(--theme-font-color);
}

.hero-txt-list {
    margin-bottom: 10px;
}

.hero-txt-list li {
    font-size: 16px;
    color: var(--theme-font-color);
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
}
.hero-txt-list li span{
    color: var(--theme-primary-color);
    font-size: 14px;
}


.hero-txt-list li svg {
    color: #f4f7f9;
    background-color: var(--theme-primary-color);
    padding: 5px;
    width: 25px;
    height: 25px;
    border-radius: 30px;
    margin-right: 15px;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-btn {
    margin: 0 auto 30px;
}

.hero-badges img {
    height: 65px;
    width: auto;
    margin: 0 10px;
}

.date {
    color: #666;
}

@media (max-width: 767px) {
    body {
        padding-top: 80px;
    }
    .trianGle {
        display: block;
        margin: 0 auto;
        color: #c92112;
    }
    i.fas.fa-caret-up {
        font-size: 25px;
    }
    button.trianGle[type=button]:not(:disabled) {
        transform: rotate(180deg);
    }
    .rotate-180 {
        transform: rotate(180deg);
    }
    .uni-complete-order-btn {
        min-width: 100%;
        text-align: center;
    }
}


/*------ Brand Section Area ------*/
.brand-div {
    overflow: hidden;
}
.brand-area {
    padding: 32px 10px;
    position: relative;
}

.brand-area:before {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #f4f4f4;
    height: 2px;
    top: 4px;
    left: 0;
    right: 0;
}

.brand-area:after {
    content: "";
    position: absolute;
    width: 100%;
    background-color: #f4f4f4;
    height: 2px;
    bottom: 4px;
    left: 0;
    right: 0;
}

.brand-heading {
    font-size: 20px;
    font-weight: bold;
    color: var(--theme-font-color);
    line-height: 1.4;
}

.slide__logo.brxe-svg :not([fill=none]) {
    fill: var(--theme-primary-color);
}

.slide__logo {
    width: 200px;
}

.brand-div .swiper-slide {
    text-align: center;
    margin: 0 20px  !important;
} 
/* .brand-div .swiper-slide {
    margin: 0 20px !important;
    width: auto !important;
} */
.brand-div .swiper-wrapper{
    justify-content: space-between;
    /* transition: transform .5s linear; */
}
.brand-div .swiper-slide svg {
    width: auto !important;
    height: 27px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 30px;
}

/* .brand-div .swiper-slide svg {
    width: 100%;
    
    object-fit: contain;
} */
/* .swiper-slide.sl-01 {
    width: 260px !important;
}
.swiper-slide.sl-05 {
    width: 266px !important;
}
.swiper-slide.sl-02 {
    width: 256px !important;
} */
.brand-div .swiper-slide {
    width: auto !important;
    /* transition: transform .5s linear; */
}

.money-back {
    background-color: var(--theme-primary-color);
    padding: 20px 15px;
}

.money-back h2 {
    font-size: 32px;
    color: #f4f7f9;
    text-align: center;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.4;
    font-weight: 700;
}

.money-back-feature {
    background-color: var(--bg-color);
    padding-top: 20px;
    padding-bottom: 20px;
}

.money-back-feature ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mb-list {
    text-align: center;
    flex: 1 0 auto;
    display: inline-block;
    width: auto;
    align-items: center;
    text-wrap: nowrap;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    line-height: 1.4;
}

.section3 h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-font-color);
}

.mb-list img {
    margin-right: 10px;
    margin-left: 15px;
    margin-top: -2px;
}

.faq {
    margin: 50px auto 70px;
    max-width: 1000px;
    letter-spacing: 0.5px;
    padding-right: 15px;
    padding-left: 15px;
}

.faq h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--theme-font-color);
}

.faq .accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--theme-font-color);
}

.faq .accordion .accordion-button {
    font-size: 20px;
    font-weight: 500;
    padding: 30px 0;

}
.faq .accordion .accordion-button:hover{
    background-color: transparent;
}

.faq .accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    outline: 0;
}

.faq .accordion .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion .accordion-button::after {
    background: url(../images/acc-icon.svg) no-repeat;
    background-size: contain;
    top: 0;
    bottom: 0;
    background-position: center;
}

.faq .accordion .accordion-body {
    padding: 0 0 10px;
}

.section3 {
    padding: 50px 0;
    letter-spacing: 0.5px;
    color: var(--theme-font-color);
}

.section3 h4 {
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 700;
   text-align: center;
    line-height: 1.4;
    color: #212121;
}

.section3 h3 {
    font-weight: 600;
    font-size: 22px;
}
p{
      color: #212121;
}
.case-body {
    color: #212121;
}
.section3 hr {
    border-color: #838383;
}

.section3 hr+p {
    color: #1e1e1e;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.howitswork {
    padding: 0 0 40px;
    background-color: var(--theme-primary-color);
    letter-spacing: 0.5px;
}

.howitswork .hwitswork_content h3 {
    font-size: 24px;
    font-weight: 800;
}

.howitswork .hwitswork_content p {
    font-size: 16px;
    line-height: 1.4;
    color: #f4f7f9;
}

.howitswork .title {
    font-size: 32px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.howitswork .title .mdm-svg {
    position: absolute;
    right: -10px;
    bottom: -15px;
}

.howitswork .hwitswork_content {
    color: #f4f7f9;
}

.howitswork .hwitswork_content .hwitswork_content_img {
    border-radius: 20px;
}

.howitswork .hwitswork_content .content {
    padding: 0 40px;
}

.features {
    background: #f4f4f4;
    padding: 0 0 50px;
    letter-spacing: 0.5px;
}

.features .feature-slider {
    margin: 70px auto;
}

.features .feature-slider .showcase {
    border-radius: 30px;
    display: flex;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.features .feature-slider .showcase .case-p {
    font-size: 40px;
    font-weight: 700;
    color: var(--theme-primary-color);
}

.features .feature-slider .showcase .case-s {
    font-size: 20px;
    font-weight: 700;
    color: var(--theme-primary-color);
    line-height: 1.3;
    margin-bottom: 10px;
    margin-top: 24px;
}

.features .feature-slider .showcase.case-pat-1 {
    flex-direction: row;
}
.features .feature-slider .showcase.case-pat-3 {
flex-direction: column-reverse;
    padding: 20px;
    justify-content: center;
    text-align: center;
    }
.features .feature-slider .showcase.case-pat-1 .case-body {
    padding-top: 20px;
    padding-left: 20px;
    z-index: 1;
    max-width: 50%;
}

.features .feature-slider .showcase.case-pat-1 .case-img {
    height: 235px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom right;
    object-position: bottom right;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.features .feature-slider .showcase.case-pat-2 {
    flex-direction: column;
    padding: 10px;
}

.features .feature-slider .showcase.case-pat-2 .case-img {
    border-radius: 100px;
    height: 150px;
    margin: 20px auto 0;
}

.features .feature-slider .showcase.case-pat-2 .case-body {
    font-size: 16px;
    text-align: center;
    padding: 0 6px;
    line-height: 1.4;
}
.features .feature-slider .showcase.case-pat-4 .case-body {
    padding: 20px 48px;
}
.features .feature-slider .showcase.case-pat-5 .case-body {
   padding: 20px 10px 0;
}

.calculator {
    background: #fff;
    border-radius: 30px;
    padding: 35px 15px 10px;
    max-width: calc(100% - 30px);
    margin: auto;
}

.calculator .control-label {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 20px;
    max-width: 580px;
    margin: auto;
}

.calculator .control-label .label-capacity {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calculator .control-label .label-capacity div:last-child {
    margin-top: 15px;
    width: 100%;
    flex-direction: row;
    -moz-column-gap: 0.4rem;
    border-radius: 2rem;
    padding-top: 1.2rem;
    padding-right: 2.4rem;
    padding-bottom: 1.2rem;
    padding-left: 2.4rem;
    background-color: #ffd9d5;
    justify-content: center;
    color: #060606;
    font-size: 27px;
    font-weight: 700;
}

.calc-btn {
    display: inline-block;
    margin: 2.5rem auto;
}

.calculator .control-label .label-save {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.calculator .control-label .label-save div:last-child {
    margin-top: 15px;
    flex-direction: row;
    align-items: flex-end;
    -moz-column-gap: 0.4rem;
    column-gap: 0.4rem;
    width: 100%;
    padding-top: 1.2rem;
    padding-right: 2.4rem;
    padding-bottom: 1.2rem;
    padding-left: 2.4rem;
    background-color: #ffffff;
    border-radius: 2rem;
    justify-content: center;
    box-shadow: inset 0 1px 1px 1px rgba(0, 0, 0, 0.18);
    font-size: 27px;
    font-weight: 700;
}

.calculator .range-slider {
    max-width: 580px;
    width: 100%;
    margin: 70px auto 40px;
    position: relative;
}

.calculator #range {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 0 6px -4px black;
    /* outline: 1px solid var(--themecolor) !important; */
    outline-offset: -2px;
}

.calculator #range:focus {
    outline: none;
}

.calculator #range::before {
    left: 0;
    content: attr(data-min);
}

.calculator #range::after {
    right: 0;
    content: attr(data-max);
}

.calculator #range::-webkit-slider-runnable-track {
    width: 100%;
    height: 1rem;
    cursor: pointer;
    background: linear-gradient(90deg, var(--themecolor) var(--range-progress), #ffd9d5 var(--range-progress));
    border-radius: 1rem;
}
 .calculator #range::-moz-range-thumb {
            border: 0.1rem solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background: var(--themecolor);
    cursor: pointer;
    height: 32px;
    width: 32px;
    transform: translateY(calc(-50% + 7px));
    border-radius: 120px;
}
.calculator #range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 0.1rem solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background: var(--themecolor);
    cursor: pointer;
    height: 32px;
    width: 32px;
    transform: translateY(calc(-50% + 7px));
    border-radius: 120px;
}

.calculator #tooltip {
    position: absolute;
    top: -2.25rem;
}

.calculator #tooltip span {
    position: absolute;
    text-align: center;
    display: block;
    line-height: 1;
    font-weight: 700;
    min-width: 60px;
    font-size: 16px;
    left: 50%;
    transform: translate(-50%, 0);
}


/* footer */


/* footer start */

footer {
    color: #f4f7f9;
    background-color: var(--basecolor);
    padding: 70px 0 0;
    border-top: 4px solid var(--themecolor);
}

footer .footer-logo img {
    max-width: 300px;
}

footer .footer-list {
    margin-bottom: 30px;
}

footer .footer-list h6 {
    font-size: 20px;
    color: #f4f7f9fff;
    margin-bottom: 15px;
    font-weight: 700;
}

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

footer .footer-list ul li {
    margin: 5px 0 10px;
}

footer .footer-list ul li a {
    text-decoration: none;
    color: #f4f7f9;
    transition: all 0.2s ease;
    font-weight: 400;
}

footer .footer-list ul li a:hover {
    color: var(--themecolor);
}

footer .social-icons {
    display: flex;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

footer .social-icons li {
    list-style-type: none;
}

footer .social-icons li a {
    color: #f4f7f9;
    margin: 0 5px 0 0;
    font-size: 22px;
    transition: all 0.2s ease;
}

footer .social-icons li a:hover {
    opacity: .8;
}

footer .legitScript {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

footer .legitScript img {
    width: 100%;
    height: auto;
}

.footer-bottom {
    background-color: var(--themecolor);
    padding: 15px 0 15px;
}


/* media query */

@media (max-width: 1199px) {
    .hero-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .available-payment-methods .item {
        min-width: 70%;
    }
}

@media (max-width: 991px) {
    .hero-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .brand-heading {
        text-align: center;
        margin-bottom: 20px;
    }
    img.hwitswork_content_img {
        max-width: calc(100% - 80px);
        margin: 30px auto 0;
        display: block;
        border-radius: 35px !important;
    }
    .faq .accordion .accordion-button {
        font-size: 20px;
        font-weight: 500;
        padding: 20px 0;
        line-height: 1.4;
    }
    .howitswork .title .mdm-svg {
        display: none;
    }
    .banner-area .best-tag p {
        font-size: 10px;
        font-weight: 500;
    }
}

@media (max-width: 767px) {
    .money-back h2 {
        font-size: 20px;
    }
    .calculator .control-label .label-capacity div:last-child,
    .calculator .control-label .label-save div:last-child {
        border-radius: 2rem;
        padding: 1rem 1rem;
        min-width: 100%;
        font-size: 16px;
        line-height: 1.4;
    }
    .banner-area .best-tag {
        top: 29px;
        left: 26px;
    }
    .banner-area a.btn.btn-primary.theme-btn {
    margin: auto !important;
    display: block;
}
}

@media (max-width: 500px) {
    .hero-badges {
        text-align: center;
    }
    .hero-btn {
        width: 100%;
        min-width: 92%;
        display: block;
    }
    .calculator .control-label .label-capacity div:last-child,
    .calculator .control-label .label-save div:last-child {
        border-radius: 2rem;
        padding: .5rem 1rem;
        min-width: 100%;
        font-size: 16px;
    }
    .nx_p {
        flex-direction: column;
    }
}

@media (max-width: 450px) {
    .best-tag p {
        font-size: 10px;
    }
    .hero-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }
    .hero-txt-list li {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .title {
        font-size: 28px;
    }
    .mb-list {
        font-size: 13px;
    }
    .mb-list img {
        margin-left: 0;
    }
    .calculator .control-label .label-capacity,
    .calculator .control-label .label-save {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 991px) {
    .order-detail-rt,
    div.list-group-item {
        padding: 0;
    }
    .sbmt {
        padding: 0 22px;
        margin-left: 7px;
    }
    /*  */
}

@media screen and (max-width: 767px) {
    .bg-box {
        width: 92% !important;
    }
    .welcome-img img {
        width: 157px;
    }
    .bg-wh img {
        width: 60px;
    }
    .form-line {
        padding: 0 1rem 3rem;
    }
    .form-checkbox-item {
        font-size: 12px;
    }
    .form-line-flex p {
        font-size: 10px;
    }
    .form-ch-right {
        padding: 19px;
    }
}


/* checkout modification */
.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.3rem;
    opacity: 0;
}

.form-custom {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.6rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
    width: 100%;
}
.form-custom  {
    margin-left: 0;
    padding: 14px;
    border-top: 1px solid #d3d8e0;
    margin-bottom: 4px;
    padding-left: 40px;
}
.form-custom:first-child{
border-top:0;
}
.custom-control-label:before {
    pointer-events: none;
    background-color: #fff;
    border: 1px solid #adb5bd;
}
.custom-control-label:after, .custom-control-label:before {
    position: absolute;
    top: .3rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem; 
    content: "";
    border-radius: 20px;
    border: 1px solid #adb5bd;
}
.custom-control-label:before{
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.custom-control-input:checked ~ .custom-control-label::before, .form-check input[type="checkbox"]:checked + label:before {
    background-color: #a32015 !important;
    border-color: #a32015 !important;
    width: .65rem;
    height: .65rem;
    top: 0.49rem;
    left: -1.33rem;
}
.custom-control-label:after {
    background: 50%/50% 50% no-repeat;
}
.custom-radio .custom-control-input:checked~.custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.form-custom label {
    position: absolute;
    left: 40px;
    right: 0;
}

.bill-address {
    border: 1px solid #d3d8e0;
    margin: 0 0 1rem;
    justify-content: center!important;
}
@media screen and (max-width: 767px){
    .brxe-mermul {
    margin-right: 10px !important;
}
}
#error_handler_overlay_close {
    line-height: 27px !important;
}
.form-error-message {
    color: #fff;
    background-color: #dc2626;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='14' height='15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 14.515a7 7 0 110-14 7 7 0 010 14zm-.814-5.86h1.628v-5.21H6.186v5.21zM7 11.259a.82.82 0 00.814-.824A.816.816 0 007 9.631a.813.813 0 100 1.628z' fill='%23fff'/%3E%3C/svg%3E");
    font-size: .75em;
    margin-top: 8px;
    border-radius: 4px;
    background-size: .875em;
    background-position: .375em;
    background-repeat: no-repeat;
    width: auto;
    padding: .25em .5em .25em 1.625em;
    display: none;
    width: 136px;
}
.footer-bottom sup{
    left: -3px;
}
.botom-logo2{
    max-width: 120px;
}

@media screen and (max-width: 1480px){

footer .footer-logo img {
    max-width: 100%;
}
}

@media screen and (max-width: 767px){
 header nav .navbar-brand img {
    max-width: 260px;
}
}

.herolist-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.prod-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.twillio-verify {
    justify-content: space-between;
    gap: 10px;
    padding: 15px 0;
    max-width: 260px;
    margin: auto;
}

.twillio-verify button {
   background: #c92212;
    border-radius: 9px;
    font-size: 17px;
    text-transform: capitalize;
    padding: 0;
    width: 40%;
    min-width: 100px;
}
 
button[:disabled]{
    opacity:.6 !important;
}
button[:disabled]:hover{
    background-color: #c92112 !important;
}
/* Testimonial CSS 23-09-2024 */
.testimonial {
    background-color: var(--bg-color);
    padding: 50px 0;
}

.testimonial .title {
    font-size: 32px;
    color: #172845;
    text-align: center;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial .pre-title {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: #172845;
}

.testimonial-list {
    margin-top: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.testimonial-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    width: 33.33%;
    box-shadow: 0px 0px 7px #6161618a;
    ;
}

.testimonial-box:nth-child(2) {
    scale: 1.1;
}

.user-review .icon {
    color: var(--theme-primary-color);
    font-size: 50px;
    margin-bottom: 10px;
}

.user-review p {
    font-size: 16px;
    color: #838383;
}

.user-box img {
    width: 60px;
    border-radius: 50px;
    margin-right: 15px;
}

.user-detail h4 {
    font-weight: 900;
    margin-bottom: 0;
}

.user-detail .stars {
    color: #FFB80A;
    font-size: 26px;
    letter-spacing: 1px;
}

@media (max-width:1024px) {
    .testimonial-box {
        padding: 30px;
        height: 380px;
    }
}

@media (max-width:992px) {
    .testimonial-list {
        display: flex;
        flex-direction: column;
    }
    .testimonial-box {
        width: 100%;
        margin-bottom: 15px;
    }
    .testimonial-box:nth-child(2) {
        scale: 1;
        order: 1;
    }
    .testimonial-box:nth-child(1) {
        order: 2;
    }
    .testimonial-box:nth-child(3) {
        order: 3;
    }
}

@media (max-width:768px) {
    .testimonial-list {
        margin-top: 20px;
        padding: 15px;
    }
    .user-detail h4 {
        font-size: 20px;
    }
    .user-detail .stars {
        font-size: 20px;
    }
    .user-box img {
        width: 50px;
    }
}

span.thmcolor {
    color: var(--themecolor);
    text-transform: uppercase!important;
    font-weight: 800;
}

@media (max-width:991px){
    body.checkoutbody{padding-top: 0;}
    .ChLogo.mx-auto.text-center {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 10px 0;
    }
}

#app_common_modal_close, #error_handler_overlay_close {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legitScript img {
    max-height: 100px;
}
p.medication_box_subtitle {
    font-size: 15px;
    margin: 15px auto 0;
    text-align: center;
    color: var(--themecolor);
    padding: 0 20px;
}
form{padding: 0 !important;}