.bmi-page {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23d6d6d6'/%3E%3C/svg%3E") repeat;
  background-attachment: fixed; 
  background-size: 20px 20px;
}

.gradient-text {
    background: linear-gradient(to right, rgba(3, 78, 161, 1), rgba(0, 183, 172, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}



.bmi-content h1 {
    font-size: 40px;
    line-height: 100px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'MontserratSB';
    text-align: center;
}

.bmi-content p {
   font-size: 18px;
    line-height: 131%;
    color: #333;
    text-align: center;
}


.btn-diet-chart {
  margin-top: 10px;
  padding: 10px 20px;
  background: linear-gradient(to right, rgba(3, 78, 161, 1), rgba(0, 183, 172, 1));
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
}



.calculate-bmi h2 {
    text-align: center;
    font-size: 36px;
    margin: 0 auto;
    width: max-content;
    display: block;
    padding: 35px 0;
}
.bmi-content p {
    font-size: 18px;
    line-height: 131%;
    color: #333;
    text-align: center;
}

.bmi-form {
    background: #eaf4ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 25px;
    border: 2px solid #034EA133;
    border-bottom: none;
}

.bmi-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #034ea1;
    font-family: 'Montserrat-Light';
}

.bmi-inputs {
    display: flex;
    gap: 20px;
    width: 100%;
}

input,
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    flex: 1;
}

.error {
    color: red;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.result {
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
}

.bmi-calc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.bmi-calc .bmi-inputs {
    display: flex;
    gap: 10px;
}

.bmi-calc input {
    flex: 1;
}

.bmi-calc select {
    flex: 0 0 auto;
}

label {
    display: block;
    color: var(--blue);
    margin-bottom: 6px;
    font-weight: 600;
}

.bmi-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bmi-inputs input[type="number"] {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #cddce9;
    font-size: 16px;
    outline: none;
    box-shadow: none;
    font-family: 'Montserrat-Light';
}

.bmi-inputs select {
    width: var(--select-width);
    flex: 0 0 auto;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #cddce9;
    background: white;
    font-size: 14px;
    font-family: 'Montserrat-Light';
}

.bmi-calc .calc-wrap {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.btn-calc {
    width: 100%;
    display: inline-block;
    padding: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: white;
    background: linear-gradient(90deg, #0b5ea7 0%, #08a79b 100%);
    box-shadow: 0 6px 18px rgba(3, 81, 119, 0.12);
}

.error {
    color: #d24d4d;
    font-size: 13px;
    margin-top: 8px;
}

.bmi-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 35, 63, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.bmi-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.bmi-modal {
   max-width: 800px;
    border-radius: 10px;
    background: #ffff;
    padding: 25px;
    box-shadow: 0 12px 40px rgba(3, 81, 119, 0.12);
    position: relative;
    border: 2px solid rgba(7, 92, 156, 0.06);
    margin: 0 auto;
}

.bmi-modal .close {
    position: absolute;
    right: 14px;
    top: 10px;
    background: #f1f7fb;
    border-radius: 10px;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    color: var(--blue);
    font-weight: 700;
}

.bmi-modal h2 {
    text-align: center;
    font-size: 32px;
    margin: 0 auto;
    width: max-content;
    display: block;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.gauge-clip {
    width: 280px;
    height: 140px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

#gauge {
    position: relative;
    width: 240px;
    height: 120px;
    border-radius: 240px 240px 0 0;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 100px solid #000;
    transform-origin: bottom center;
    transform: rotate(-90deg);
    transition: transform 1s ease;
    margin-left: -6px;
}

.needle::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: #0b5ea7;
    border-radius: 50%;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 7;
}

.gauge-center {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0b5ea7;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bmi-value {
    font-size: 52px;
    font-weight: 700;
    color: #f0b83e;
    margin-top: 12px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.category-label {
    font-weight: 600;
    text-align: left;
    color: #0b5790;
}

.badge {
    padding: 6px 12px;
    border-radius: 10px;
    background: #fde8b7;
    color: #9a6700;
    font-weight: 700;
    width: 150px;
    text-align: center;
}

.healthy-range {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: #0b5790;
    font-size: 18px;
}

.weight-display {
    margin-bottom: 20px;
    text-align: right;
}

.weight-value {
    display: none;
}

.disclaimer {
    margin-top: 10px;
    padding: 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, #eaf4ff, #f4fbff);
    border: 1px solid rgba(11, 87, 144, 0.06);
    color: #0a5c95;
    font-size: 14px;
    line-height: 1.4;
}

.disclaimer p {
    margin: 0px 0 10px;
    font-size: 16px;
    font-family: 'Montserrat-Light';
}
.disclaimer-tag{
  text-align: center;
  font-size: 18px;
}
.disclaimer-tag span {
  color: #d62828;
  font-weight: bold;
}
.range-modal {
    max-width: 600px;
}

.range-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
    max-width: 850px;
}

.range-item {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.range-item:last-child {
    border-bottom: none;
}

.range-badge {
    padding: 10px 12px;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    min-width: 100px;
    text-align: center;
}

.range-badge.underweight {
     background: #ABFFC1;
    width: 150px;
}

.range-badge.normal {
    background: #A6D0FF;
    width: 150px;
}

.range-badge.overweight {
    background: #FFF0C2;
    width: 150px;
}

.range-badge.obese {
    background: #FFB7AC;
    width: 150px;
}

.range-value {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    min-width: 120px;
}

.range-description {
    flex: 1;
    color: #666;
    font-size: 16px;
    line-height: 1.4;
}

.bmi-inputs input::-webkit-outer-spin-button,
.bmi-inputs input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bmi-inputs input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

#healthyRangeVal {
    color: rgba(32, 33, 36, 1);
}

.consult-experts {
    background-image: url(../../images/left-bg.webp), url(../../images/right-bg.webp);
    background-position: top left, bottom right;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;
}

.consult-experts-container {
    background: #d8f5f5;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #c0e8e8;
    margin: 0 auto;
    max-width: 700px;
}

.consult-experts-container h3 {
    text-align: center;
    font-size: 32px;
    margin: 0 auto;
    width: max-content;
    display: block;
}

.consult-experts-row {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}

.consult-experts-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.consult-experts-label {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(3, 78, 161, 1);
    font-family: 'Montserrat-Light';
}

.consult-experts-input,
.consult-experts-select,
.consult-experts-textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    font-family: 'Montserrat-Light';
}

.consult-experts-textarea {
    height: 100px;
    resize: none;
}

.consult-experts-error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    position: absolute;
    bottom: -20px;
    font-family: 'Montserrat-Light';
}

.consult-experts-checkbox {
    display: flex;
    align-items: center;
    margin: 26px 0;
    position: relative;
}

.consult-experts-checkbox input {
    margin-right: 10px;
    flex: 0;
}

.consult-experts-checkbox label {
    margin-bottom: 0;
    font-family: 'Montserrat-Light';
    font-size: 12px;
    line-height: 1.5;
    color: #333;
}

.consult-experts-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, #0072c6, #00a8a8);
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.consult-experts-btn:hover {
    opacity: 0.9;
}


.section-padding {
    padding: 50px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 500;
    display: block !important;
    color: #034ea1;
}

.accordion {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: #fff;
    border-bottom: 1px solid #034ea1;
}

.accordion__intro {
    position: relative;
    padding: 20px 0;
    cursor: pointer;
}

.accordion__intro span {
    position: absolute;
    right: 30px;
    top: 35%;
    transition: all 0.3s ease-in-out;
    color: #034ea1;
}

.accordion.accordion__active .accordion__intro span {
    transform: rotate(180deg);
}

.accordion__content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    will-change: max-height;
    transition: all 0.25s ease-out;
    opacity: 0;
}

.accordion h3,
.accordion p {
    margin: 0;
}

.accordion h3 {
    color: #034ea1;
    font-size: 20px;
    font-weight: 400;
}

.accordion p,
.accordion ul li {
    color: #434343;
    font-size: 20px;
    margin: 0;
    line-height: 34px;
    font-family: 'Montserrat-Light';
}

.accordion ul li a {
    color: #0C356A;
    text-decoration: underline;
}

.accordion__active .accordion__content {
    padding: 20px 0;
    opacity: 1;
}

.accordion__intro span {
    position: absolute;
    right: 30px;
    top: 35%;
    transition: all 0.3s ease-in-out;
    color: #034ea1;
}

.gg-chevron-down {
    box-sizing: border-box;
    position: relative;
    transform: scale(var(--ggs, 1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px;
}

.gg-chevron-down::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 4px;
    top: 2px;
}

.experts-align {
    background: #ffff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.experts-align a {
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    background: linear-gradient(90deg, #034ea1 0, #00b7ac 100%);
    text-align: center;
    width: 100%;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.experts-card {
    display: flex;
    background: #ffff;
}

.dr-details {
    margin: auto;
    margin-left: 10px;
}

.dr-details h4 {
    color: #00b7ac;
    font-size: 18px;
    margin: 10px 0;
}

.dr-details p {
    color: #034EA1;
    font-size: 16px;
    line-height: 22px;
}



.bmi-categories{
  padding: 20px;
}
.bmi-categories p {
    font-size: 18px;
    line-height: 131%;
    color: #333;
    text-align: center;
}
.bmi-categories h3{

    text-align: center;
    font-size: 32px;
    margin: 0 auto;
    width: max-content;
    display: block;
    padding: 35px 0;

}
.bmi-category {
  padding: 18px 20px;
  margin: 14px 0;
  border-radius: 10px;
  font-weight: normal;
}

.bmi-category .title {
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 6px;
}

.bmi-category .desc {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

/* Category Colors */
.underweight { background: #dbeafe; color: #8E6B00; }
.normal { background: #dcfce7; color:  #034EA1; }
.overweight { background: #fef9c3; color: #8E6B00; }
.obese { background: #fee2e2; color: #AE4839; }

.read-bmi{
  font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #034ea1;
    margin-bottom: 20px;

}

/* bmichart */


/* Section Styling */
.bmi-chart-section {
  padding: 0px ;
}

.chart-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(to right, rgba(3, 78, 161, 1), rgba(0, 183, 172, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Chart Container */
.bmi-chart {
  background: #eaf5ff;
  border: 1px solid #c6e0f5;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  padding: 20px;
  max-width: 400px;
  margin: 0 auto;
}
.bmi-chart h3{
   font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #034ea1;
    margin-bottom: 20px;
}
/* Chart Rows */
.chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #dbeaf7;
}

.chart-row:last-child {
  border-bottom: none;
}

/* Header */
.chart-row.header {
  font-weight: bold;
  color: #000;
  border-bottom: 2px solid #bcd9f2;
  padding-bottom: 10px;
  column-gap: 100px;
}

.chart-row .col {
  font-size: 16px;
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

/* Category Colors */
.badge.underweight {
  background: #C3DBFC;
  color: #000;
}

.badge.normal {
  background: #DEEAFD;
  color: #000;
}

.badge.overweight {
  background: #E2FBE8;
  color: #000;
}

.badge.obese {
  background: #FDEDD7;
  color: #000;
}

/* risk styles */
.bmi-risks {
  padding: 0px;
}

.risks-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #034ea1;
  margin-bottom: 10px;
}
.risks-subtitle p{
  text-align: center;
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
}


.divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px auto 25px;
  max-width: 700px;
}

.divide {
  border: none;
  border-top: 1px solid #00b7ac;
  margin: 25px auto 25px;
  max-width: 900px;
}

.risk-group {
  margin-bottom: 25px;
}

.risk-heading {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 16px;
  color:red;

}



.risk-group ul {
  list-style: disc;
  padding-left: 20px;
}

.risk-group ul li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* bmi limitations */
.bmi-limitations {
  padding: 0px ;
}

.limitations-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #034ea1;
  margin-bottom: 20px;
}

.limitations-box {
  background: #FFF0C2;
  border: 1px solid #f2e2a0;
  border-radius: 12px;
  padding: 25px 30px;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.limitations-box p {
  font-weight: bold;
  color: #a67c00;
  margin-bottom: 20px;
  font-size: 16px;
}

.limitations-box ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.limitations-box ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.limitations-box ul li strong {
  color: #a67c00;
  font-weight: 600;
}
/* treatment options */
.treatment-options {
  padding: 0px;
  line-height: 1.6;
}

.treatment-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  background: linear-gradient(to right, rgba(3, 78, 161, 1), rgba(0, 183, 172, 1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.treatment-subtitle p {
  text-align: center;
  color: #333;
  font-size: 16px;
  margin: 0 auto 30px;
}

.treatment-block {
  margin-bottom: 35px;
}

.treatment-heading {
  color: #0077c8;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

.treatment-block p {
  color: #444;
  font-size: 16px;
  margin-bottom: 12px;
}

.treatment-block ul {
  list-style: disc;
  padding-left: 20px;
}

.treatment-block ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}
.unit-label {
    font-weight: bold;
    color: #034ea1;
    white-space: nowrap;
    background: #fff;
    padding: 12px 14px;
    border: 1px solid #cddce9;
    border-radius: 8px;
    font-family: 'Montserrat-Light';
  }
@media (max-width:1024px) {
    .step2-pos {
        bottom: 12%;
    }

    .step3-pos {
        position: absolute;
        left: 40.5%;
        top: 20%;
    }

    .step4-pos {
        bottom: 8%;
    }
}

@media (max-width:768px) {
    .bmi-form{
        width: 90%;
    }
    .dotted-relative {
        position: unset;
    }

    .dotted-relative svg {
        display: none;
    }

    .step1-pos,
    .step2-pos,
    .step3-pos,
    .step4-pos,
    .step5-pos {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        bottom: unset;
        top: unset;
        left: unset;
        right: unset;
        gap: 25px;
        margin-bottom: 25px;
    }

    .animation-div {
        padding: 0 20px;
    }

    .circle {
        width: 100px;
        height: 100px;
    }

    .circle img {
        width: 95px;
        height: 95px;
    }

    .number {
        font-size: 50px;
    }

    .dotted-relative p {
        text-align: center;
        font-size: 16px;
        background: linear-gradient(to right, rgba(3, 78, 161, 1), rgba(0, 183, 172, 1));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .circle-order {
        order: 2;
    }

    .text-order {
        order: 1;
    }

    .num2 {
        right: 0%;
    }

    .call-now a {
        width: 70%;
        margin-bottom: 0;
    }
}

@media (max-width:767px) {

    .bmi-section {
        display: block;
    }

    .bmi-content h1 {
        font-size: 30px;
        line-height: 78px;
        margin-top: 15px;
    }

    .calculate-bmi h2 {
        font-size: 30px;
        line-height: 78px;
        margin-top: 15px;
    }

    .approach p {
        text-align: justify;
        font-size: 16px;
        line-height: 30px;
        margin-top: 10px;
    }

    .experts:not(:last-child)::after {
        background: none;
    }

    .experts p {
        font-size: 20px;
        line-height: 28px;
        font-family: 'Montserrat-Light';
    }

    .backed-approach {
        background-color: #efefef;
        background-image: unset;
        padding: 10px 0px;
    }

    .treatments-tab {
        padding: 10px;
    }

    .treatments-tab button {
        font-size: 16px;
        width: 170px;
        padding: 10px 0px
    }

    .treatments-tab button.active {
        padding: 12px 0px;
    }

    .treatments h2 {
        font-size: 24px;
    }

    .treatmentsContent {
        width: 85%;
        margin: 25px auto;
        height: 315px;

    }

    .treatmentsContent ul {
        padding-left: 10px;
    }

    .treatmentsContent ul li {
        font-size: 16px;
        line-height: 30px;
    }

    .book-consult {
        padding: 10px 15px;
        font-size: 16px;
    }

    .post-treatments {
        background-image: unset;
        background-color: #efefef;
    }

    .post-treatment-section h3 {
        font-size: 24px;
        margin: 15px auto;
    }

    .post-treatment-section {
        padding: 15px 0 35px;
    }

    .manipal-experts h3 {
        font-size: 24px;
    }

  
    .clinics-available h3 {
        font-size: 24px;
    }

    .bmi-calc {
        padding: 0px;
        display: block;
    }

    .bmi-form {
        padding: 15px;
        width: 90%;
        margin: auto;
        margin-bottom: 30px;
    }

    .bmi-modal h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .bmi-modal {
        width: 90%;
        padding: 20px;
    }

    .bmi-value {
        font-size: 28px;
        margin-top: 5px;
    }

    .modal-grid {
        display: block;
    }

    .range-info {
        gap: 25px;
    }

    .gauge-clip {
        margin: 0 auto;
    }


    .range-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .range-value {
        min-width: auto;
    }
    .range-badge{
        margin-bottom: 20px;
    }
   

    .consult-experts {
        background-image: unset;
        padding: 35px 0;
    }

    .consult-experts-container {
        padding: 15px;
    }

    .consult-experts-container h3 {
        font-size: 24px;
        padding: 15px 0
    }

    .consult-experts-group {
        margin-bottom: 20px;
    }

    .consult-experts-row {
        display: block;
        margin-bottom: 20px;
    }

    .consult-experts-error {
        bottom: -18px;
    }

    .consult-experts-textarea {
        height: 50px;
    }

    .consult-experts-checkbox {
        font-size: 16px;
    }

    .consult-experts-btn {
        padding: 10px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
        margin-top: 5px;
    }

    .experts {
        padding: 5px;
    }

    .bmi-content p {
        font-size: 18px;
        margin-top: 0px;
    }

    .accordion h3 {
        font-size: 18px;
        width: 90%;
    }

    .accordion p,
    .accordion ul li {
        font-size: 16px;
        line-height: 30px;
    }

    .section-padding {
        padding: 30px 0;
    }

    .accordion__intro span {
        right: 10px;
    }
    .divide{
        max-width: 320px;
    }
    .treatment-subtitle p{
        text-align: left;
    }
   
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 7em;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgb(0 0 0 / 70%);
}
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
}
.modal-dialog {
    width: 600px;
    margin: 30px auto;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.fade.in {
    opacity: 1;
}
.bmi-link {
  background: none;
  border: none;
  color: #007bff; 
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.bmi-link:hover {
  color: #0056b3;
}
