.location-fields-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.location-fields-row .form-group {
    flex: 1 1 0;
    min-width: 150px;
}

@media (max-width: 1024px) {
    .location-fields-row {
        gap: 12px;
    }

    .location-fields-row .form-group {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .location-fields-row {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .location-fields-row .form-group {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 425px) {
    .location-fields-row {
        gap: 8px;
    }

    .location-fields-row .form-group {
        width: 100%;
        min-width: 0;
    }

    .location-input,
    .pincode-input {
        font-size: 14px;
        padding: 8px 10px;
    }
}

@media (max-width: 375px) {
    .location-fields-row {
        gap: 6px;
    }

    .location-fields-row .form-group {
        width: 100%;
    }

    .location-input,
    .pincode-input {
        font-size: 13px;
        padding: 7px 8px;
    }
}

@media (max-width: 320px) {
    .location-fields-row {
        gap: 4px;
    }

    .location-fields-row .form-group {
        width: 100%;
    }

    .location-input,
    .pincode-input {
        font-size: 12px;
        padding: 6px 6px;
    }
}

/* custom checkbox style */
.plan input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.plan-content {
    border: 1px solid #e1e2e7;
    border-radius: 10px;
    padding: 15px;
    transition: box-shadow 0.3s, border 0.3s;
    cursor: pointer;
    position: relative;
    background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.plan-content img {
    height: 50px;
    flex-shrink: 0;
}

.plan-content span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #0d2b20;
}

.plan-content p {
    font-size: 12px;
    color: #0d2b20;
    margin: 0;
    line-height: 15px;
}

.plan-content:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

.plan input[type="radio"]:checked+.plan-content {
    border-color: #266431;
    background: #e7f9eb;
}

.plan input[type="radio"]:checked+.plan-content::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    height: 14px;
    width: 14px;
    background: #266431;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #266431;
}

/* On larger screens, stack like cards */
@media (min-width: 992px) {
    .plan-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .plan-content img {
        margin-bottom: 5px;
        height: 50px;
    }
}

/* inspiration */
.inspiration {
    font-size: 12px;
    margin-top: 50px;
    position: absolute;
    bottom: 10px;
    font-weight: 300;
}

.inspiration a {
    color: #666;
}

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

    /* inspiration */
    .inspiration {
        display: none;
    }
}

/* custom checkbox style */

/* custom select box style*/

.selectBox input {
    display: none;
}

.selectBox input:checked+label {
    border-color: #266431;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
}

.selectBox input:checked+label:before {
    background: #266431;
    box-shadow: 0 0 0 1px #266431;
}

.selectBox label {
    border: 1px solid #f3eae5;
    position: relative;
    padding: 5px 5px 5px 35px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 10px;
    margin: 5px;
}

.selectBox label:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #ccc;
    border: 3px solid #fff;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.selectBox label:hover {
    border-color: #999;
    z-index: 1;
}

.selectBox.radio label:before {
    border-radius: 100%;
}

.selectBoxGroup {
    display: flex;
    flex-wrap: wrap;
}

.selectBoxGroup .selectBox {
    margin-left: 0px;
}

.selectBoxGroup .selectBox:first-child {
    margin-left: 0;
}

@media screen and (max-width: 568px) {
    .selectBoxGroup {
        flex-direction: row;
        gap: 5px;
    }

    .selectBoxGroup .selectBox {
        margin-left: 0;
    }

    .selectBoxGroup .selectBox label {
        width: 100%;
    }
}

/* custom select box style*/

/* custom BMI report */

.c-bmi {
    background-color: #e7f9eb;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: ui-sans-serif, system-ui, sans-serif;
    padding: 2.5rem;
    width: 100%;
}

.c-bmi fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.c-bmi__group-text {
    display: none;
    font-size: small;
    order: 2;
    padding: 1rem 0;
    text-align: left;
    width: 100%;
}

.c-bmi__groups {
    border: 0;
    flex-wrap: wrap;
    font-size: medium;
    font-weight: 500;
    padding: 0;
    text-align: center;
    width: 100%;
}

.c-bmi__groups label {
    display: block;
    padding: 0.5rem;
    position: relative;
}

[for="bmi-g0"] {
    background-color: #4691e2;
}

[for="bmi-g1"] {
    background-color: #0cb764;
}

[for="bmi-g2"] {
    background-color: #febf18;
}

[for="bmi-g3"] {
    background-color: #fc8711;
}

[for="bmi-g4"] {
    background-color: #ff6455;
}

[for="bmi-g5"] {
    background-color: #cc1100;
    color: #fff;
}

.custom-title {
    font-weight: 500 !important;
}

.c-bmi__groups input:checked+label::before {
    background-color: #fff;
    clip-path: polygon(0% 0%, 0% 100%, 75% 50%);
    content: "";
    display: inline-block;
    height: 1rem;
    left: 0.5rem;
    position: absolute;
    top: 0.35rem;
    width: 1rem;
}

.c-bmi__groups input:checked+label+div {
    display: block;
    flex: 0 0 100%;
}

.c-bmi__label {
    display: block;
    font-size: medium;
    margin: 0 0 1.5rem 0;
    position: relative;
}

.c-bmi__label output {
    position: absolute;
    right: 0;
    top: 0;
}

.c-bmi__range {
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    outline: none;
    width: 100%;
}

.c-bmi__range::-webkit-slider-runnable-track {
    background-image: linear-gradient(to bottom,
            transparent 45%,
            lightslategray 45%,
            lightslategray 55%,
            transparent 55%);
}

.c-bmi__range::-moz-range-track {
    background-image: linear-gradient(to bottom,
            transparent 45%,
            lightslategray 45%,
            lightslategray 55%,
            transparent 55%);
}

.c-bmi__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: hsl(133, 80%, 24%);
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
}

.c-bmi__range::-moz-range-thumb {
    appearance: none;
    background-color: hsl(133, 80%, 24%);
    border-radius: 50%;
    height: 2rem;
    width: 2rem;
}

.c-bmi__range:focus::-webkit-slider-thumb {
    background-color: hsl(143, 79%, 46%);
    box-shadow: inset 0 0 0 0.25rem hsl(133, 80%, 24%);
}

.c-bmi__range:focus::-moz-range-thumb {
    background-color: hsl(143, 79%, 46%);
    box-shadow: inset 0 0 0 0.25rem hsl(133, 80%, 24%);
}

.c-bmi__result {
    display: block;
    font-size: 200%;
    text-align: right;
}

.c-bmi [type="radio"] {
    display: none;
}

/* RWD */
@media (min-width: 600px) {
    .c-bmi__groups {
        display: flex;
    }

    .c-bmi__groups input:checked+label::before {
        background-color: inherit;
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
        left: 50%;
        top: -1rem;
        transform: translateX(-50%);
        width: 1.5rem;
    }

    .c-bmi__groups label {
        flex: 1;
    }

    [for="bmi-g0"] {
        border-radius: 0.25rem 0 0 0.25rem;
    }

    [for="bmi-g5"] {
        border-radius: 0 0.25rem 0.25rem 0;
    }
}

.content-title {
    background: #144835;
    max-width: 500px;
    margin: auto;
    padding: 15px;
    border-radius: 0 0 15px 15px;
    position: relative;
    top: -10px;
}

.content-title:before {
    right: 100%;
    top: 0;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(194, 225, 245, 0);
    border-right-color: #144835;
    border-width: 10px 10px 0px 10px;
    margin-top: 0;
}

.content-title:after {
    left: 100%;
    top: 0px;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(194, 225, 245, 0);
    border-left-color: #144835;
    border-width: 10px 10px 0px 10px;
    margin-top: 0px;

}

.section-key .icon-box,
.get-started-content {
    border-radius: 25px;
}


.section-counter .number-counter {
    padding: 25px 0;
    border-radius: 25px;
    height: fit-content;
}


.footer.bottom-footer {
    position: sticky;
    bottom: 0;
    z-index: 9;
}

@media screen and (max-width:991px) {
    .footer.bottom-footer .button-submit .tf-btn {
        padding: 6px;
        font-size: 14px;
    }

    .footer.bottom-footer p {
        font-size: 11px;
    }
}


.wrap-item.wrapping-item {
    grid-template-columns: repeat(1, 1fr);
}

.categories-content.categories-content-inner {
    background: #144835;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    min-height: 157px;


}
.foundational-skills-image img.curve-image{
border-radius: 0;
}

.foundational-skills-image{
    overflow: hidden;
}
.key-wrap {
    border-radius: 12px;
}

.foundational-skills-image img.scale-image {
    position: absolute;
    z-index: -1;
}


@media screen and (max-width:991px) and (min-width:768px) {
.image-webinar{
    width: 250px;
}

}


@media screen and (max-width:767px) {
.image-webinar{
    width: 100px;
}

.foundational-skills-image img.curve-image{
height: 150px;
}

}
