* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Mulish", sans-serif;
    color: #000000;
    background-color: #FFF4E5;
}

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

a {
    text-decoration: none;
}

a:focus {
    outline: none;
}

p {
    margin-bottom: 0;
}

p:not(:last-of-type) {
    margin-bottom: 15px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1760px;
    padding: 0 20px;
}

.text-primary {
    color: #F56828 !important;
}

.btn {
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    transition: all 0.6s ease;
}

.btn.btn-primary {
    background-color: #F56828;
    border-color: #F56828;
    color: #FFF;
}

.btn.btn-primary:hover {
    background-color: #29A67C;
    border-color: #29A67C;
}

.text-secondary {
    color: #29A67C !important;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

/* .site-header.head-sticky {
    -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
} */

.site-header.head-sticky .header-wrapper{
    background-color: #FFF1DD;
    border: 1px solid #F56828;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.site-header .header-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(245, 104, 40, 0.15);
}

.site-header .header-wrapper .brand-wrapper {
    max-width: 247px;
    width: 100%;
}

.site-header .header-wrapper .main-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .header-wrapper .main-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-header .header-wrapper .main-menu ul li a {
    color: #000;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.site-header .header-wrapper .main-menu ul li.active a {
    font-weight: 700;
}

.site-header .header-wrapper .main-menu ul li:not(:last-of-type) {
    margin-right: 20px;
}

.menu-toggle {
    position: relative;
    background: transparent;
    border: 0;
    width: 25px;
    padding: 0;
    display: none;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: #F56828;
    transition: all .2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    height: 3px;
    background: #F56828;
    transition: all .2s ease;
}

.menu-toggle span::before {
    top: -8px;
}

.menu-toggle span::after {
    bottom: -8px;
}

.overlay-main::after {
    content: '';
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s ease .4s, opacity .4s ease;
    background: rgba(0, 0, 0, 0.3);
}

.overlay-main.active::after {
    visibility: visible;
    opacity: 1;
    transition-delay: .05s;
}

.mobile-menu-wrapper {
    position: fixed;
    z-index: 999;
    background: #ffff;
    top: 0;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: translate(-100%, 0px);
    left: 0;
    width: 280px;
}

.mobile-menu-wrapper.menu-active {
    transform: translate(0%, 0px);
}

.mobile-menu-head {
    padding: 15px 15px;
    background-color: #F56828;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-close svg {
    color: #FAFAFA;
}

.mobile-menu-bar>ul {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    height: calc(100vh - 48px);
    overflow: auto;
}

.mobile-menu li {
    display: block;
    position: relative;
    padding: 13px 0;
}

.mobile-menu li:not(:last-of-type) {
    border-bottom: 1px solid #ececec;
}

.mobile-menu-bar ul li a {
    display: block;
    font-size: 16px;
    color: #212529;
    line-height: 1;
}

.site-footer {
    padding: 30px 0px 20px;
    background-color: #F56828;
}

.site-footer .social-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
    border-bottom: 1px solid #FFF;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.copyright-info p {
    color: #FFF;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.main-site {
    min-height: calc(100vh - 249px);
}

.main-banner {
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
}

.main-banner .banner-info h1 {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 52px;
    margin-bottom: 20px;
    text-align: center;
}

.main-banner .banner-info .plan-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
}

.main-banner .banner-info .plan-price .org-price {
    color: #29A67C;
    font-family: "Mulish", sans-serif;
    font-size: 100px;
    font-style: normal;
    font-weight: 800;
    line-height: 100px;
}

.main-banner .banner-info .plan-price .disc-price {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 72px;
    display: inline-block;
    position: relative;
}

.main-banner .banner-info .plan-price .disc-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: #F56828;
    transform: translateY(-50%);
}

.main-banner .banner-info .tag-line {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 40px;
    text-align: center;
}

.main-banner .banner-info .desc-content {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 20px;
    text-align: center;
}

/* .main-banner.step-1 .container {
    max-width: calc((100% - 1760px)/2 + 1760px);
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
} */

.main-banner.step-1 .banner-img img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.gender-selection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.gender-selection .gender-wrapper input {
    display: none;
}

.gender-selection .gender-wrapper label {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 50px;
    color: #F56828;
    border: 1px solid #F56828;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
}

.gender-selection .gender-wrapper input:checked+label {
    background: #F56828;
    color: #FFF;
}

.gender-selection .gender-wrapper input:checked+label svg path {
    fill: #FFF;
}

.main-banner.step-2 .banner-info .tag-line {
    margin-bottom: 20px;
}

.more-selection {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    justify-content: center;
}

.select-box {
    position: relative;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    gap: 5px;
    border-radius: 50px;
    border: 1px solid #F56828;
    max-width: 220px;
    width: 100%;
}

.select-box.weight-box::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    width: 22px;
    height: 22px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><path d="M17.6552 7.3375C17.5468 7.23056 17.4179 7.14567 17.2758 7.08775C17.1338 7.02982 16.9814 7 16.8275 7C16.6736 7 16.5213 7.02982 16.3792 7.08775C16.2372 7.14567 16.1083 7.23056 15.9999 7.3375L10.999 12.2437L5.99813 7.3375C5.77862 7.12265 5.4809 7.00195 5.17048 7.00195C4.86005 7.00195 4.56233 7.12265 4.34282 7.3375C4.12332 7.55234 4 7.84374 4 8.14758C4 8.45142 4.12332 8.74282 4.34282 8.95767L10.1714 14.6625C10.2797 14.7694 10.4086 14.8543 10.5507 14.9123C10.6928 14.9702 10.8451 15 10.999 15C11.1529 15 11.3053 14.9702 11.4473 14.9123C11.5894 14.8543 11.7183 14.7694 11.8267 14.6625L17.6552 8.95767C17.7644 8.8516 17.8512 8.72541 17.9103 8.58637C17.9695 8.44733 18 8.2982 18 8.14758C18 7.99696 17.9695 7.84783 17.9103 7.70879C17.8512 7.56976 17.7644 7.44356 17.6552 7.3375Z" fill="%23F56828"/></svg>');
    transform: translateY(-50%);
}

.select-box .icon {
    flex-shrink: 0;
}

.select-box .icon img {
    width: 20px;
    height: 20px;
}

.select-box input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.select-box input::placeholder {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.select-box .select2-container {
    width: 100% !important;
}

.select-box .select2-container--default .select2-selection--single {
    background: transparent;
    border: 0;
    height: 20px;
}

.select-box .select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #ecf0fa;
    border-radius: 7px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: absolute;
    inset-inline-start: -100000px;
    width: 100%;
    z-index: 1051;
    min-width: 130px;
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e9edf4 !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 2px;
    background-color: #F5F5F5;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #f56828;
    border: 1px solid #f56828;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px;
    padding-right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}

.select2-container {
    width: auto !important;
}

/* .more-selection:not(:first-of-type) .select2 {
    width: 200px !important;
} */

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #f56828;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select-box .select2-container {
    width: 153px !important;
    flex-shrink: 0;
}

.select-box .select2::before {
    content: '';
    position: absolute;
    right: -13px;
    top: 50%;
    width: 22px;
    height: 22px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22" fill="none"><path d="M17.6552 7.3375C17.5468 7.23056 17.4179 7.14567 17.2758 7.08775C17.1338 7.02982 16.9814 7 16.8275 7C16.6736 7 16.5213 7.02982 16.3792 7.08775C16.2372 7.14567 16.1083 7.23056 15.9999 7.3375L10.999 12.2437L5.99813 7.3375C5.77862 7.12265 5.4809 7.00195 5.17048 7.00195C4.86005 7.00195 4.56233 7.12265 4.34282 7.3375C4.12332 7.55234 4 7.84374 4 8.14758C4 8.45142 4.12332 8.74282 4.34282 8.95767L10.1714 14.6625C10.2797 14.7694 10.4086 14.8543 10.5507 14.9123C10.6928 14.9702 10.8451 15 10.999 15C11.1529 15 11.3053 14.9702 11.4473 14.9123C11.5894 14.8543 11.7183 14.7694 11.8267 14.6625L17.6552 8.95767C17.7644 8.8516 17.8512 8.72541 17.9103 8.58637C17.9695 8.44733 18 8.2982 18 8.14758C18 7.99696 17.9695 7.84783 17.9103 7.70879C17.8512 7.56976 17.7644 7.44356 17.6552 7.3375Z" fill="%23F56828"/></svg>');
    transform: translateY(-50%);
}

.select-box .select2-container--open::before {
    transform: translateY(-50%) scale(-1);
}

.step-tag-line {
    margin-top: 40px;
}

.step-tag-line h2 {
    color: #F56828;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 800;
    line-height: 42px;
    margin-bottom: 0;
}

.main-banner.step-2 {
    padding-top: 40px;
    padding-bottom: 160px;
}

.wizard-steps {
    text-align: center;
    margin-bottom: 15px;
}

.wizard-steps ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 203px;
    position: relative;
}

.wizard-steps ul::before {
    content: '';
    position: absolute;
    top: 41%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #F56828;
}

.wizard-steps ul li {
    position: relative;
}

.wizard-steps ul li .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border: 1px solid #F56828;
    border-radius: 50%;
    background-color: #FFF1DD;
}

.wizard-steps ul li.completed .step-icon {
    background-color: #F56828;
}

.wizard-steps ul li.completed.step-1 .step-icon svg path {
    fill: #FFFFFF;
}

.wizard-steps ul li.completed.step-3 .step-icon svg path {
    fill: #FFFFFF;
}

.wizard-steps ul li.completed.step-2 .step-icon svg path {
    stroke-width: 2px;
    stroke: #FFFFFF;
}

.wizard-steps ul li span {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
}

.diet-step-3 .banner-info {
    padding-top: 10px;
}

.diet-step-3 .banner-info .banner-img {
    text-align: center;
    margin-bottom: 40px;
}

.diet-step-3 .banner-info .tag-line {
    text-align: center;
}

.diet-step-3 .more-selection {
    justify-content: center;
}

.diet-step-3 .btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.main-banner.step-3 {
    padding-top: 40px;
    padding-bottom: 80px;
}

.whatsapp-link {
    position: fixed;
    right: 0px;
    top: 40%;
    transform: translateX(0);
    transition: all 0.2s ease;
}

.whatsapp-link.hidden {
    transform: translateX(100%);
}

.whatsapp-link:hover {
    color: #FFF;
}

.plan-scroller{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100px;
    height: 100px;
    background-color: #29a67c;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    transform: scale(0);
    transition: all 0.6s ease;
}

.plan-scroller.show-me {
    transform: scale(1);
}

.plan-scroller:hover {
    color: #FFF;
}

.why-us {
    padding-top: 33px;
    padding-bottom: 100px;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 42px;
    margin-bottom: 10px;
}

.section-title p {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.offer-card {
    text-align: center;
    max-width: 480px;
    width: 100%;
    margin: auto;
}

.offer-card .icon-box.size-sm {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 13px;
}

.offer-card h3 {
    color: #000;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 0;
}

.row.custom-space {
    margin-top: -100px;
}

.row.custom-space .offer-card {
    margin-top: 100px;
}

.info-card .info-card-body {
    height: 100%;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #F56828;
    background: rgba(245, 104, 40, 0.15);
}

.info-card .info-card-body .card-icon {
    margin-bottom: 30px;
    height: 100px;
}

.info-card .info-card-body h4 {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 10px;
}

.info-card .info-card-body p {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.padding-top {
    padding-top: 100px;
}

.padding-bottom {
    padding-bottom: 100px;
}

.benefits-section {
    padding: 40px 0px;
    background-color: #29A67C;
}



.benefits-info-list .title {
    margin-bottom: 40px;
}

.benefits-info-list .title h2 {
    color: #FFF;
    font-family: "Mulish", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 42px;
}

.benefits-info-list .title p {
    color: #FFF;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.benefits-block {
    position: relative;
    padding-left: 35px;
}

.benefits-block:not(:last-of-type) {
    margin-bottom: 20px;
}

.benefits-block::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M9.99998 20C15.5228 20 20 15.5228 20 9.99998C20 4.47715 15.5228 0 9.99998 0C4.47715 0 0 4.47715 0 9.99998C0 15.5228 4.47715 20 9.99998 20Z" fill="%23F56828"/><path d="M7.90995 14.4749C7.65995 14.4749 7.40495 14.3799 7.21495 14.1899L4.43495 11.49C4.03996 11.105 4.02996 10.47 4.41495 10.075C4.79995 9.67995 5.43495 9.66995 5.82995 10.055L7.89995 12.0699L14.1549 5.81496C14.5449 5.42496 15.1799 5.42496 15.5699 5.81496C15.9599 6.20496 15.9599 6.83996 15.5699 7.22996L8.61995 14.1849C8.42495 14.3799 8.16995 14.4749 7.90995 14.4749Z" fill="white"/></svg>');
    width: 20px;
    height: 20px;
}

.benefits-block h3 {
    color: #FFF;
    font-family: "Mulish", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.benefits-block p {
    color: #FFF;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.accordion-item:not(:last-of-type) {
    margin-bottom: 20px;
}

.accordion-item {
    border-radius: 10px !important;
    border: 1px solid #F56828 !important;
    background: #FEDCC2;
}

.accordion-button {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    background: transparent;
    padding: 20px;
}



.accordion-button::after {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus"><line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/></svg>');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-minus"><line x1="5" y1="12" x2="19" y2="12"/></svg>');
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding-top: 0;
}

.accordion-body>* {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.accordion-body>* a {
    color: #000;
}

.inner-page {
    padding-top: 80px;
    padding-bottom: 80px;
}

.dos-info h4 {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.dos-info p {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.dos-info {
    position: relative;
    padding-left: 30px;
}

.dos-info::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M10 20C15.5228 20 20 15.5228 20 9.99998C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 9.99998C0 15.5228 4.47715 20 10 20Z" fill="%23F56828"/><path d="M8.12267 14.4749C7.86595 14.4749 7.60409 14.3799 7.40898 14.1899L4.55422 11.49C4.14859 11.105 4.13832 10.47 4.53368 10.075C4.92903 9.67995 5.58111 9.66995 5.98673 10.055L8.1124 12.0699L14.5356 5.81496C14.9361 5.42496 15.5882 5.42496 15.9887 5.81496C16.3892 6.20496 16.3892 6.83996 15.9887 7.22996L8.85176 14.1849C8.65152 14.3799 8.38966 14.4749 8.12267 14.4749Z" fill="white"/></svg>');
}

.medical-advice p {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.about-banner {
    padding-top: 80px;
}

.abt-banner-info h1 {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 800;
    line-height: 72px;
}

.abt-banner-info h2 {
    color: #29A67C;
    font-family: "Mulish", sans-serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
    line-height: 42px;
}

.abt-banner-info p {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.our-philosphy .our-philosphy-content {
    border-radius: 20px;
    background: #29A67C;
    text-align: center;
}

.our-philosphy .our-philosphy-content .dec-img {
    width: 100%;
}

.our-philosphy .our-philosphy-content .philosphy-block {
    padding: 40px 40px 0px;
}

.our-philosphy .our-philosphy-content .philosphy-block:not(:last-of-type) {
    margin-bottom: 40px;
}

.our-philosphy .our-philosphy-content .philosphy-block h2 {
    color: #FFF;
    font-family: "Mulish", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 42px;
}

.our-philosphy .our-philosphy-content .philosphy-block p {
    color: #FFF;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.section-title.size-lg {
    margin-bottom: 0px;
}

.section-title.size-lg h2 {
    color: #F56828;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 800;
    line-height: 72px;
}

.started-info .info-text p {
    color: #000;
    text-align: center;
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 32px;
}

.basic-info .info-title {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 20px;
    margin-bottom: 5px;
}

.basic-info p,
.basic-info li {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.basic-info {
    padding-top: 80px;
    padding-bottom: 80px;
}

.info-inr-block:not(:last-of-type) {
    margin-bottom: 30px;
}

.basic-info .section-title {
    margin-bottom: 1.5rem;
}

.section-title h1 {
    font-family: "Mulish", sans-serif;
    color: #f56828;
    font-size: 30px;
    font-weight: 700;
}

.basic-info li a {
    font-family: "Mulish", sans-serif;
    color: #f56828;
}

.donts-info {
    overflow: hidden;
}

.diet-meter {
    position: relative;
    max-width: 610px;
    width: 100%;
    margin: 0 auto 40px;
}

.meter-info p {
    /* font-size: 20px; */
    font-size: 1rem;
    font-family: "Mulish", sans-serif;
    font-weight: 300;
    color: #000000;
}

.calories-info {
    /* margin-top: 40px; */
}

.down-wrapper {
    padding: 60px 0px 0px;
}

.instruction-info {
    margin-top: 15px;
}

.instruction-info p:not(:last-of-type) {
    margin-bottom: 10px;
}

.workout-plan {
    padding-top: 60px;
    max-width: 1250px;
    width: 100%;
    margin: auto;
}

.workout-plan h4 {
    font-size: 24px;
    font-family: "Mulish", sans-serif;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}

.workout-plan p {
    font-size: 20px;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
}

.diet-plan {
    padding-top: 60px;
    max-width: 1250px;
    width: 100%;
    margin: auto;
}

.pdf-footer {
    display: none;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
    display: none;
    background: #00000080;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 15px;
}

.loading-screen.show-screen {
    display: flex;
}

.steps-wrapper {
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
    background: url("../images/offer-bg.png");
    max-width: 1000px;
    width: 100%;
    margin: auto;
    border-radius: 10px;
}

.loading-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    margin-bottom: 30px;
}

.loading-screen .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #f38600;
}

.loading-screen .step-icon svg {
    width: 95px;
}

.loading-screen .step-icon.active {
    background-color: #63a47d;
}

.loading-screen .success-msg {
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.6s ease;
    text-align: center;
}

.loading-screen .success-msg.active {
    color: #63a47d;
}

.starting-price.font-size-new {
    font-size: 45px !important;
}

.offer-card .new-size {
    font-size: 25px;
    color: #29a67c;
}

.detox-offers .offer-card h3:not(.new-size) {
    text-decoration: underline;
}

#disclaimer {
    text-align: center;
}

.instruction-info {
    margin-top: 15px;
}

.instruction-info p:not(:last-of-type) {
    margin-bottom: 10px;
}

.payment-msg {
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.6s ease;
    text-align: center;
}

body.popup-open {
    overflow: hidden;
}

.diet-plan p {
    font-size: 20px;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
}

.diet-plan ul {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 30px;
}

.diet-plan ul li {
    font-family: "Mulish", sans-serif;
    font-size: 20px;
    color: #000000;
}

.diet-plan ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

#paywall-wrapper {
    max-width: 1170px;
    margin: auto;
    /* padding: 35px; */
    border-radius: 5px;
    position: relative;
    margin-top: 60px;
    /* background-color: #ffffff;
    box-shadow: 0px 0px 20px -1px rgba(0, 0, 0, 0.20); */
    transform: scale(0);
    display: none;
    transition: all 0.6s ease;
}

#paywall-wrapper.show {
    transform: scale(1);
    display: block;
}

#paywall-wrapper h4,
#paywall-wrapper p {
    text-align: center;
}

body.blur-text .workout-plan>*,
body.blur-text .diet-plan>* {
    filter: blur(5px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.banner-space {
    padding-top: 30px !important;
}

.section-gap {
    padding-bottom: 60px;
}

.down-hide {
    display: none;
}

#disclaimer .modal-content {
    background-image: url('../images/offer-bg.png');
}

#disclaimer .modal-header {
    border-bottom: 0;
    padding-bottom: 0;
    justify-content: center;
}

#disclaimer .modal-title {
    text-align: center;
    font-family: "Mulish", sans-serif;
    color: #f56828;
    font-size: 25px;
    font-weight: 700;
}

#disclaimer .modal-body {
    padding-top: 0;
}

.form-check.disclaimer-btn {
    padding: 0;
}

.disclaimer-btn .form-check-input {
    display: none;
}

.disclaimer-btn .form-check-label {
    padding: 10px 15px;
    background-color: #29a67c;
    border-color: #29a67c;
    transition: all 0.6s ease;
    border-radius: .25rem;
    color: #fff;
    margin-left: 0;
    line-height: 1;
    cursor: pointer;
    font-family: "Mulish", sans-serif;
    text-transform: uppercase;
}

#disclaimer .modal-body .d-flex {
    justify-content: center;
}

.printer-area {
    background-image: url('../images/offer-bg.png');
}

.pdf-logo-header {
    max-width: 227px;
    width: 100%;
    margin: 0 auto 50px;
    display: none;
}



.diet-meter img {
    display: none;
}

.diet-meter img {
    display: block;
    margin: 0 auto 15px;
}

.detox-diet .more-selection {
    margin-top: 20px;
}

.detox-diet .btn-wrapper {
    margin-top: 20px;
    text-align: center;
}

.detox-diet .banner-img {
    max-width: 703px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* .main-banner.detox-diet {
    padding-bottom: 160px;
} */

.info-txt-only.mw-100 {
    max-width: 1280px !important;
    width: 100%;
    margin: auto;
}

.info-txt-only h3 {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 15px;
    text-align: center;
}

.info-txt-only p {
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    text-align: center;
}

.section-title h4 {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0;
    margin-top: 15px;
}

.info-txt-only h5 {
    color: #F56828;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
    text-decoration: underline;
}


@media print {
    .printer-area {
        max-width: 100% !important;
        width: 600px;
        font-family: Arial, Helvetica, sans-serif !important;
    }

    .workout-plan {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .diet-plan ul li {
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 16px;
        color: #000000;
    }

    .diet-plan p {
        font-size: 20px;
        font-family: Arial, Helvetica, sans-serif !important;
        font-weight: normal;
    }
   #whatsapp-chat-widget{
    display: none !important;
   }
}

@media print {

    /* Hide the site header when printing */
    .site-header {
        display: none;
    }

    .container {
        max-width: 100%;
        width: 100%;
    }

    .printer-area {
        max-width: 100%;
        width: 100%;
        padding: 0 35px !important;
    }

    .exclude-url {
        display: none;
    }

    .site_url {
        display: none;
    }

    a[href]:after {
        content: none !important;
    }

    .down-wrapper {
        display: none;
    }

    .banner-space {
        padding-top: 50px !important;
        padding-bottom: 40px !important;
    }

    #paywall-wrapper.show {
        transform: scale(0);
        display: none;
    }

    .workout-plan {
        margin-top: 20px;
    }

    .workout-plan p {
        font-size: 16px;
    }

    .diet-plan {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .site-footer {
        padding: 20px 0px 20px;
    }

    .diet-plan h4 {
        font-size: 20px;
    }

    .diet-plan ul {
        margin-bottom: 15px;
    }

    #workplanDesc ul li {
        font-size: 16px;
    }

    #workplanDesc ul li:not(:last-of-type) {
        margin-bottom: 5px;
    }

    .diet-plan ul li:not(:last-of-type) {
        margin-bottom: 5px;
    }

    .diet-plan p {
        font-size: 16px;
    }

    .site-footer p.mt-5 {
        margin-top: 15px !important;
    }

    .calories-info {
        margin-top: 20px;
    }

    .diet-meter {
        width: 500px;
    }

    .hide-in-pdf {
        display: none;
    }

    .diet-meter .meter-arrow {
        bottom: 10px;
        height: 100px;
        width: 6px;
    }

    /* Force page breaks as needed */
    .page-break {
        page-break-before: always;
    }

    /* Prevent page breaks inside specific elements */
    .avoid-page-break {
        page-break-inside: avoid;
    }

    .plan-scroller {
        display: none;
    }

    .loading-screen {
        display: none;
    }

    .pdf-logo-header {
        display: block;
    }

    .pdf-footer {
        display: block;
        text-align: center;
        padding-top: 50px !important;
    }

    .site-footer {
        display: none;
    }

    .printer-area {
        background-image: unset;
    }

    #workplanDesc {
        position: relative;
    }

    #workplanDesc::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 500px;
        height: 500px;
        background: url("../images/pdf-bg.svg");
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
        opacity: 0.6;
        margin: auto;
    }

    .workout-plan {
        position: relative;
    }

    .whatsapp-link {
        display: none;
    }

}

.info-inr-block .info-tagl {
    color: #29A67C;
    font-family: "Mulish", sans-serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 800;
    line-height: 20px;
    margin: 0;
}

.bottom-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.bottom-footer .ftr-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom-footer .ftr-menu a {
    color: #FFF;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.ekahal-info a{
    color: #FFF;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.down-wrapper .btn{
    font-size: 24px;
    line-height: 24px;
}
/* .home-page #whatsapp-chat-widget {
    display: none !important;
} */
.banner-info .icon-only{
    width: 120px;
    height: 45px;
}

#paywall-wrapper .btn {
    padding: 10px 15px;
    border-radius: .25rem !important;
    width: 100%;
    max-width: 360px;
    font-size: 1.3rem;
    line-height: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}
#paymentForm{
    width: 100%;
}
/* 
font-family: "Mulish", sans-serif;
*/

.btn.pay-btn{
    padding: 10px 15px;
    border-radius: .25rem !important;
    width: 100%;
    max-width: 360px;
    font-size: 1.3rem;
    line-height: 30px;
}

.payment-page .calories-info p,
.payment-page  .meter-info p,
.meter-txt{
    font-size: 1.5rem;
    font-weight: 300;
}

.only-detox .select-box{
    max-width: 50%;
}

.only-detox .select-box .select2-container{
    width: 92% !important;
}


.step-2.detox-diet .banner-info h1{
    margin-bottom: 50px;
    font-size: 60px;
    line-height: 60px;
}


.select-box .select2 span:focus,
.select-box .select2 span:focus-visible,
.select-box .select2 span:focus-within{
    outline: none !important;
}

/* #whatsapp-chat-widget:not(.show){
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
} */

.diet-page-paynow .printer-area{
    background-image: unset;
}

#paywall-wrapper label{
    font-family: "Mulish", sans-serif;
    color: #000000;
    font-size: 16px;
}

.iti .form-control{
    border-color:#F56828;
    border-radius: 50px;
    background-color: transparent;
    color: #F56828;
    font-size: 18px;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
}

.iti .form-control::placeholder{
    color: #F56828;  
}


.iti .form-control:focus{
    box-shadow: none;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
    border-right: 1px solid #F56828;
    color: #F56828;  
    font-size: 18px;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
}
.iti__arrow{
    border-top-color:#F56828 !important;
}

.btn.pay-btn{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}