@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


:root {
    --mainColor: #447c6f;
    --secondColor: #3ca48c;
    --primary: #2f8f6b;
    --secondary: #f4faf7;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border: #e5e7eb;
}

a {
    text-decoration: none;
    color: var(--mainColor);
    transition: .3s;
}

a:hover {
    transition: .3s;
    color: var(--secondColor);
}

body {
    outline: none;
    font-size: 19px;
    color: #3d3d3d;
    line-height: 1.4;
    font-weight: normal;
    font-family: "Nunito", sans-serif;
}


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

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: bold;
    font-style: normal;
}

.btn {
    border-radius: 7px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .48);
    padding: 9px 20px;
    transition: all 0.5s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin-left: 10px;
    line-height: 1;
}


.btn-primary {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary.active {
    background-color: #fff;
    border-color: var(--secondColor);
    color: var(--mainColor);
}

.btn-secondary {
    background-color: var(--secondColor);
    border-color: var(--secondColor);
    /*    text-transform: uppercase;*/
}

.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary.active {
    background-color: #000;
    border-color: var(--mainColor);
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    box-shadow: 0 0 0 .25rem #9c0b125c;
}

.form-check-input,
.form-control,
.form-select {
    border: 1px solid var(--mainColor);
}

.form-control:focus,
.form-select:focus {
    color: #000;
    background-color: #fff;
    border-color: var(--secondColor);
    outline: 0;
    box-shadow: 0 0 0 .25rem #023d815c;
}

.form-check-input:checked {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
}



.sec-heading {
    margin-bottom: 30px;
    font-size: 38px;
    color: #3d3d3d;
    text-align: center;
}

.sec-heading i {
    font-weight: normal;
}

h1.sec-heading {
    font-size: 35px;
}

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

.gray-bg {
    background: #447c6f0a;
}

.site-wrapper {
    margin-top: 92px;
    min-height: 61vh;
}


/*=== Home Banner Css ===*/



.home-banner {
    height: calc(100vh - 92px);
    position: relative;
}

.banner-img {
    max-width: 100%;
    margin: 0 auto;
}

.banner-img video,
.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-content h1 {
    font-size: 82px;
    margin-bottom: 0;
    color: #fff;
    /* text-align: center; */
}

.banner-content h1 strong {
    color: var(--mainColor);
}

.banner-content p {
    font-size: 45px;
    margin-bottom: 20px;
    /* text-align: center; */
    color: #fff;
}

.banner-tags {
    /* text-align: center; */
    margin-bottom: 30px;
}

.banner-tags span {
    border-color: #fff;
    color: #fff;
    padding: 5px 20px 5px 30px;
    display: inline-block;
    border-radius: 50px;
    margin: 0 5px;
    border-style: solid;
    border-width: 2px;
    background: rgba(00, 00, 00, 0.5);
    position: relative;
    transition: background-color 250ms ease, box-shadow 250ms ease;
}

.banner-tags span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 14px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #ff7a18;
    transform: translate(0, -50%);
}



.banner-tags span:hover {
    background-color: #ffffff;
    box-shadow: 0 0 0 calc(2px + .25rem) #ffffff;
    color: #000;
}

.banner-content .btn {
    /* font-size: 18px; */
}

.txt-color {
    color: var(--mainColor);
}

.home-banner .banner-image {
    height: 100%;
}

.home-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.home-banner .banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.home-banner .banner-content .act-btn {
    /* text-align: center; */
}

.home-banner .banner-content .act-btn .btn {
    /* margin: 0 5px; */
    /* min-width: 180px; */
    font-size: 20px;
}

/*======*/
.about-img {
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
}

.about-img video,
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.fadein {
    opacity: 0;
    transition: all 1.5s;
    transform: translate(0, 100px);
}

.fadein.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.features-sec .about-img {
    height: 350px;
}

.features-sec h3.sec-heading {
    font-size: 38px;
}


.footer-about img {
    max-width: 210px;
    margin-bottom: 25px;
}

.site-footer h3 {
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.111em;
    font-weight: 700;
}

.footer-menu {
    color: #b6b6b6;
}

.footer-menu:hover {
    color: #ffffff;
}

.quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-links p {
    margin-right: 10px;
    border-right: 1px solid #3d3d3d;
    padding-right: 10px;
    margin-bottom: 0;
}

.quick-links p:last-child {
    border: 0;
    margin: 0;
    padding: 0;
}

.site-footer {
    background: #131313;
}

.copyright {
    background: #131313;
    padding: 20px 0;
    border-top: 1px solid #252525;
}

.copy-content {
    color: #b6b6b6;
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icon a {
    width: 37px;
    height: 37px;
    display: inline-flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--mainColor);
    margin-left: 5px;
    transition: 0.5s;
    line-height: 1;
}

.social-icon a:hover {
    background: var(--mainColor);
    transform: scale(1.2);
    color: #fff;
}


/*======*/
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(1600px, 100%);
    margin: auto;
}

.pricing-card {
    flex: 1;
    max-width: 360px;
    background-color: #fff;
    margin: 20px 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    color: #2d2d2d;
    transition: 0.3s linear;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 20%);
    border-radius: 30px;
}

.pricing-card-header {
    background-color: var(--mainColor);
    display: inline-block;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0 0 20px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.4s linear;
}

.pricing-card:hover .pricing-card-header {
    box-shadow: 0 0 0 26em var(--mainColor);
}

.price {
    font-size: 70px;
    color: var(--mainColor);
    margin: 40px 0;
    transition: 0.2s linear;
}

.price sup,
.price span {
    font-size: 22px;
    font-weight: 700;
}

.pricing-card:hover,
.pricing-card:hover .price {
    color: #fff;
}

.pricing-card li {
    font-size: 16px;
    padding: 10px 0;
    text-transform: uppercase;
}

.order-btn {
    display: inline-block;
    margin-bottom: 40px;
    margin-top: 80px;
    border: 2px solid var(--mainColor);
    color: var(--mainColor);
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s linear;
}

.order-btn:hover {
    background-color: var(--mainColor);
    color: #fff;
}

@media screen and (max-width: 1100px) {
    .pricing-card {
        flex: 50%;
    }
}

/*====*/

.testimonial-card {
    width: 100%;
    background-color: #eeeeee;
    border-radius: 30px;
    /* box-shadow: 0 8px 30px rgba(0,0,0,.3); */
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    overflow: hidden;
}

.testimonial-card .text {
    padding: 2.2em;
    line-height: 1.7em;
    position: relative;
    font-size: 18px;
}

.testimonial-card .image {
    background-color: tomato;
    height: 120px;
    width: 120px;
    border-radius: 100%;
    border: 5px solid white;
    background: no-repeat center/cover url(https://images.unsplash.com/photo-1563715992566-7ad5cf5b71d3?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.testimonial-card .footer {
    background: linear-gradient(90deg, var(--mainColor) 0%, #d22B96 100%);
    height: 140px;
    position: relative;
    background: var(--mainColor);
    border-radius: 30px;
}

.testimonial-card .quote {
    font-size: 400%;
    float: right;
    opacity: .1;
    transform: rotate(10deg) translate(-10px, -40px);
    color: #4D3FA3;
}

.testimonial-card .person {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 15px;
}

.round-arrow.owl-carousel .owl-nav button.owl-next,
.round-arrow.owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    display: block !important;
    background: #fff;
    box-shadow: 0 0 6px #8d8d8d;
    margin-top: -45px;
}

.round-arrow.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    border: 0 solid #010101;
    border-radius: 100%
}

.round-arrow.owl-carousel .owl-nav button.owl-next {
    right: 0;
    border: 0 solid #010101;
    border-radius: 100%
}

.round-arrow.owl-carousel .owl-nav button.owl-next i,
.round-arrow.owl-carousel .owl-nav button.owl-prev i {
    font-size: 23px;
    padding: 0 !important;
    color: #575757;
    position: relative;
    top: 1px
}

.round-arrow.owl-carousel .owl-nav button.disabled {
    display: none !important
}

.book-demo-sec {
    background: linear-gradient(260deg, #447c6fcf, #447c6fa1 41.07%, var(--mainColor) 76.05%);
    padding: 80px 0;
    text-align: center;
}

.book-demo-sec2 {
    background: linear-gradient(260deg, #5f7f4acf, #5f7f4aa1 41.07%, #5f7f4a 76.05%) !important;
}


.book-demo-sec h2 {
    color: #fff;
}

.mobile-menu-header {
    display: none;
}


.enqModal .modal-content {
    border: 0;
    border-radius: 25px;
}

.enqModal .modal-body {
    padding: 30px;
}

.enqModal .modal-content:before {
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 2px dotted var(--mainColor);
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.enqModal a.btnClose {
    color: #fff;
    position: absolute;
    background: #00000063;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 15px;
    top: 15px;
    border-radius: 50px;
    font-size: 13px;
    line-height: 1;
}

.enqModal span.section-tagline {
    /* color: #fff; */
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.enqModal span.section-tagline:after {
    background-color: #fff;
}

.enqModal h3 {
    font-size: 15px;
    /* color: #fff; */
    margin-bottom: 15px;
}

.enqModal .modal-dialog {
    max-width: 480px;
}

.content-row-360 {
    width: 100%;
    float: left
}

.content-row-360 .left-container {
    width: calc(100% - 340px);
    float: left;
    padding-right: 15px;
}

.content-row-360 .right-fixed-form {
    width: 340px;
    float: left
}

.sticky-aside-form {
    position: sticky;
    top: 109px;
    z-index: 9
}

.articles-box .img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: none;
}

.articles-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articles-box .content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.articles-box .content p {
    margin-bottom: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.articles-box .content p:last-child {
    margin: 0;
}

.articles-box .content {
    padding: 35px;
    height: 100%;
}

.articles-box {
    /* border: 1px solid #dddddd; */
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: 0.5s;
    color: #3d3d3d !important;
    !i;
    !;
    display: block;
    position: relative;
    margin-bottom: 25px;
    min-height: 221px;
}

.articles-box:hover {
    box-shadow: 0 10px 12px #d3d3d3;
}

.articles-box .lear-more {
    display: inline-flex;
    border: 1px solid var(--mainColor);
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 5px;
    color: var(--mainColor);
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    /* position: absolute; */
    /* left: 0; */
    /* right: 0; */
    /* bottom: -30px; */
    /* max-width: 140px; */
    /* margin: 0 auto; */
}


.articles-box:hover .lear-more {
    background: var(--mainColor);
    color: #fff;
    bottom: 33%;
}

.articles-box .lear-more i {
    margin-left: 5px;
    position: relative;
    top: 1px;
}

.site-breadcrumb {
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0;
}

.site-breadcrumb .breadcrumb {
    margin: 0;
}

.consultation-form {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px #D6D4D4;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.consultation-img {
    width: 100%;
    height: 687px;
}

.consultation-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.consultation-form-content {
    padding: 35px;
}

.consultation-form .btn {
    font-size: 20px;

}

@media (max-width:767px) {
    .content-row-360 .left-container {
        width: 100%;
        padding: 0;
    }

    .content-row-360 .right-fixed-form {
        width: 100%;
    }

    .container.m-padding0.clearfix {
        padding: 0 !important;
    }
}

.newest-news-box {
    display: flex;
    margin-bottom: 25px;
    border: 2px solid #ffffff;
    padding: 20px;
    border-radius: 10px;
    display: block;
    background: #fff;
}

.newest-news-box .img {
    width: 200px;
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    display: none;
}

.newest-news-box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.newest-news-box .content {
    width: 100%;
    /* padding-left: 15px; */
}

.newest-news-box .cat {
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    color: #0f766e;
    background: #e6f4f1;
}

.newest-news-box .text {
    color: #606060;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-bottom: 5px;
}

.newest-news-box .title {
    font-size: 21px;
    font-weight: 700;
    color: #000;
    margin: 9px 0 5px;
}

.newest-news-box .date span {
    color: #606060;
    font-size: 14px;
    margin-right: 15px;
}

.newest-news-box:hover .img img {
    transform: scale(1.2);
    transition: 0.3s;
}

.newest-news-box:hover {
    border-color: var(--mainColor);
    transform: scale(1.05);
    box-shadow: 0 0 10px #cecece;
}

.view-more {
    font-size: 15px;
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-weight: 600;
}

.view-more i {
    margin-left: 7px;
    position: relative;
    top: 2px;
}

.case-study-card {
    padding: 20px;
    border-radius: 10px;
    display: block;
    background: #fff;
    border: 1px solid #ececec;
}

.case-study-card .title {
    font-size: 21px;
    font-weight: 700;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 4px;
}

.case-study-card .text {
    color: #606060;
    /* font-size: 14px; */
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

@media(max-width:767px) {
    .newest-news-box {
        display: block;
        border: 1px solid #cecece;
        border-radius: 10px;
        overflow: hidden;
        padding: 15px;
        margin-bottom: 15px;
    }

    .newest-news-box .img {
        width: 100%;
    }

    .newest-news-box .content {
        width: 100%;
    }
}

.difference-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.difference-row .difference-grid {
    flex: 0 0 25%;
    padding: 10px;
}

.difference-row .difference-grid .difference-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    /* box-shadow: 0 0 10px #D6D4D4; */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px #cecece;
    position: relative;
    overflow: hidden;
}

.difference-row .difference-grid .difference-box:before {
    background: linear-gradient(130deg, #ff7a18, #af002d 41.07%, var(--mainColor) 76.05%);
    content:
        '';
    height: 5px;
    width: 100%;
    bottom: 0;
    position: absolute;
}

.difference-row .difference-grid .difference-box .icon {
    font-size: 30px;
    display: flex;
    text-align: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    color: #292929;
    /* background-color: rgb(253, 237, 240); */
    line-height: 1;
    padding: 11px;
    border: 1px solid var(--mainColor);
    transition: 0.5s;
}

.difference-row .difference-grid .difference-box .icon img,
.difference-row .difference-grid .difference-box .icon i {
    opacity: 0.6;
}

.difference-row .difference-grid .difference-box:hover .icon {
    transform: scale(1.2);
}

.difference-row .difference-grid .difference-box .square-box {
    border: 3px dashed #000;
    float: none;
    margin-bottom: 60px;
}

.difference-row .difference-grid .difference-box .common-icon-box {
    margin-bottom: 20px;
}

.difference-row .difference-grid .difference-box .common-icon-box .icon-multiple-asset {
    width: 120px;
}

.difference-row .difference-grid .difference-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4f4f4f;
    margin: 0;
}

.difference-row .difference-grid .difference-box p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.7;
    text-overflow: ellipsis;
    /* -webkit-line-clamp: 3; */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    color: #000;
    display: none;
}

.gardident-overlay {
    background-image: linear-gradient(0deg, #000000, #050505, #141414, #2D2D2D, #505050, #7C7C7C, #B3B3B3, #F2F2F2, #FFFFFF);
}

.black-bg {
    background: #000000;
}

.investing-sec .top-main-heading {
    align-items: end;
}

.investing-sec .top-main-heading .btn.show {
    color: #fff;
}

.investing-sec .top-main-heading h3 {
    font-size: 32px;
    color: #565656;
    font-weight: 600;
}

.investing-sec .top-main-heading h2 {
    font-size: 48px;
    color: var(--mainColor);
    margin-bottom: 0;
    font-weight: bold;
}

.investing-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.investing-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    float: left;
    position: relative;
    width: 100%;
    text-align: center;
    min-height: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investing-grid {
    flex: 0 0 25%;
    padding: 5px;
}

.investing-box .square-box {
    border: 3px dashed #000;
    margin-top: 150px;
}

.investing-box h4 {
    font-size: 23px;
    font-weight: 600;
    color: var(--mainColor);
    margin: 0;
}

.investing-box p {
    font-size: 15px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;

}

.investing-box:before {
    content: '';
    width: 19px;
    height: 19px;
    background: #fff;
    position: absolute;
    transform: rotate(45deg);
    bottom: 52px;
    right: -13px;
    z-index: 9;
    border-width: 5px 5px 0 0;
    border-style: solid;
    border-color: #f7f7f7;
    border-radius: 4px;
}

.investing-grid:last-child .investing-box:before,
.investing-grid.no-shape .investing-box:before {
    display: none;
}

.ask-doctor-box {
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 0 10px #D6D4D4;
}

.ask-doctor-box .ask-img {
    width: 100%;
}

.ask-doctor-box .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
}

.ask-doctor-box .content h3 {
    margin-bottom: 35px;
    font-size: 30px;
    text-align: center;
}

.ask-doctor-box .content .act-btn .btn {
    margin: 0 6px;
}

.ask-doctor-box-new {
    text-align: center;
    height: 463px;
    /* border: 2px solid #ececec; */
    border-radius: 12px;
    background: #fff;
}

.ask-doctor-box-new .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
}

.ask-doctor-box-new h3 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 25px;
}

.ask-doctor-box-new .sec-heading {
    margin-bottom: 15px;
}

.newsletter-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}



.newsletter-container .form-control {
    border-radius: 50px;
    height: 60px;
    padding-left: 25px;
    font-size: 18px;
    padding-right: 70px;
}

.newsletter-container .btn {
    transition: background 0.3s ease;
    border-radius: 50px;
    margin-left: -55px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 18px;
}



.newsletter-container form {
    display: flex;
}

.newsletter-container h3 {
    color: #fff;
    margin-bottom: 35px;
    font-size: 22px;
    text-align: left;
    font-weight: 500;
}

.newsletter-img {
    height: 340px;
}

.newsletter-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newsletter-container .sec-heading {
    margin-bottom: 10px;
    text-align: left;
}

@media(max-width: 767px) {
    .difference-row {
        /* flex-wrap: nowrap; */
        /* overflow: auto; */
        /* margin-right: -22px; */
    }

    .difference-row .difference-grid .difference-box {
        padding: 15px;
        border-radius: 10px;
    }

    .difference-row .difference-grid .difference-box .square-box {
        margin-bottom: 30px;
    }

    .difference-row .difference-grid {
        flex: 0 0 50%;
        width: 50%;
    }

    .difference-row .difference-grid .difference-box h3 {
        font-size: 14px;
    }

    .investing-sec .top-main-heading h3 {
        font-size: 18px;
    }

    .investing-sec .top-main-heading h2 {
        font-size: 30px;
        margin-bottom: -15px;
    }

    .investing-box {
        min-height: auto;
        border-radius: 18px;
        padding: 15px;
        height: 100%;
    }

    .investing-row {
        /* flex-wrap: nowrap; */
        /* overflow: auto; */
        /* margin-right: -22px; */
    }

    .investing-grid {
        flex: 0 0 50%;
        width: 50%;
    }

    .investing-box h4 {
        font-size: 17px;
    }

    .investing-box p {
        /* font-size: 15px; */
    }
}

.pink-light-bg {
    background: #447c6f14;
}

.banner-img-icon {
    width: 250px;
    height: 250px;
    background: #ffffff;
    border-radius: 100%;
    padding: 45px;
    margin: 0 auto;
}

.banner-img-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sec-image-icon {
    width: 200px;
    height: 200px;
    background: #d2590024;
    border-radius: 100%;
    padding: 35px;
    margin: 0 auto;
}

.sec-image-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.symptoms-box {
    padding: 35px;
    background: #f9f9f9;
    border-radius: 10px;
}

.symptoms-box .sec-heading {
    border-bottom: 3px solid var(--mainColor);
    display: inline-block;
    padding-bottom: 9px;
    color: var(--mainColor);
    font-size: 28px;
}

.symptoms-box ul {
    /*list-style: disc;*/
    padding-left: 35px;
}

.symptoms-box ul li {
    font-size: 20px;
    padding: 5px 0;
}

.symptoms-box ul li p {
    position: relative;
}

.symptoms-box ul li p:before {
    content: '';
    position: absolute;
    left: -21px;
    font-size: 55px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    transform: translate(0, -50%);
    margin-top: -2px;
}

.approach-box {
    border: 1px solid #e9e9e9;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.approach-box .img {
    width: 60px;
    height: 60px;
    border: 2px solid var(--mainColor);
    padding: 10px;
    border-radius: 50px;
    background: var(--mainColor);
    /* Safari/Chrome */
}

.approach-box .content {
    width: calc(100% - 60px);
    padding-left: 15px;
    font-size: 19px;
    font-weight: 600;
    color: #676767;
}

.approach-box .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-filter: invert(100%);
    /* Safari/Chrome */
    filter: invert(100%);
}

.upload-document {
    position: relative;
    height: 58px;
    border-style: dashed;
    border-width: 1px;
    border-color: var(--mainColor);
    display: flex;
    align-items: center;
    color: #000;
    font-size: 17px;
    padding: 0 15px;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
}

.upload-document input[type="file"] {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-document i {
    font-size: 20px;
    line-height: 1;
    margin-right: 10px;
}

.help-txt {
    font-size: 12px;
    color: #646464;
    margin-top: 9px;
    display: block;
}

.document-uploaded {
    position: relative;
    height: 58px;
    border-style: solid;
    border-width: 1.5px;
    border-color: var(--mainColor);
    display: flex;
    align-items: center;
    font-size: 17px;
    padding: 0 15px;
    border-radius: 5px;
    justify-content: space-between;
    transition: 0.3s;
    background: #fff;
    margin-top: 15px;
}

.document-uploaded:hover {
    box-shadow: 0 0 10px #D6D4D4;
    transition: 0.3s;
}

.document-uploaded .left-text {
    width: calc(100% - 74px);
    display: flex;
    align-items: center;
}

.document-uploaded .icon-btn {
    display: flex;
    align-items: end;
    justify-content: end;
    width: 74px;
}

.document-uploaded .delete-file,
.document-uploaded .view-file {
    text-align: right;
    font-size: 15px;
    color: #ffff;
    margin-left: 10px;
    width: 27px;
    height: 27px;
    background: #5b5b5b;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.document-uploaded .left-text i {
    color: var(--mainColor);
    font-size: 22px;
    line-height: 1;
    margin-right: 12px;
}

.document-uploaded .icon-btn i {
    position: relative;
    top: 1px;
}

.document-uploaded .left-text .filename {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.contact-page h2.sec-heading {
    font-size: 25px;
    margin-bottom: 18px;
    text-align: left;
}

.contact-page {

    padding: 70px 0;
    background: #447c6f0a;
}

.contact-icon {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    opacity: 0.4;
}

.contact-page .btn {
    height: 58px;
    font-size: 19px;
}

.content-page h2 {
    font-size: 27px;
}

.content-page ul {
    list-style: disc;
    padding-left: 50px;
    margin-bottom: 25px;
}

ul.offer-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

ul.offer-list li {
    flex: 0 0 33.33%;
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.offer-box {
    color: #656565;
    position: relative;
    z-index: 99;
    border-radius: 0 15px 15px 0;
}

.offer-box strong {
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
    color: #000;
}

.offer-box .icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    background: var(--mainColor);
    color: #fff;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 10px;
}

.offer-box .icon img {
    -webkit-filter: invert(100%);
    /* Safari/Chrome */
    filter: invert(100%);
    padding: 15px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.dont-offer-box {
    background: #447c6f0a;
    padding: 35px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.philosophy-list li {
    margin-bottom: 15px;
}

.philosophy-box .content strong {
    display: block;
    font-size: 25px;
    margin-bottom: 5px;
}

.philosophy-box .content {}

.philosophy-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
}



.philosophy-img {
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
}

.philosophy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul.commitment-list li {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid var(--mainColor);
    padding: 15px;
    position: relative;
    border-radius: 5px;
    display: flex;
    padding-left: 47px;
}

ul.commitment-list li:before {
    content: "\f2e3";
    font-family: bootstrap-icons !important;
    font-style: normal;
    position: absolute;
    left: 15px;
}

.consultation-form label {
    font-weight: 600;
    color: #000;
    font-size: 20px;
}

.consultation-form label.form-check-label {
    font-weight: 500;
    color: #606060;
    font-size: 17px;
}

.consultation-form .sec-heading {
    font-size: 26px;
    margin-bottom: 25px;
}

.step-label {
    background: var(--mainColor);
    color: #fff;
    font-weight: bold;
    padding: 15px 20px;
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.consultation-form .act-btn {
    text-align: center;
}

.consultation-form .act-btn .btn {
    width: 47%;
    font-size: 18px;
    margin: 0 5px;
}

.consultation-form .act-btn .btn.btn-secondary i {
    margin-left: 0;
    margin-right: 10px;
}

.final-sucess {
    padding: 25px;
    border-radius: 10px;
    font-size: 20px;
    text-align: center;
    background: #f8f8f8;
    font-weight: 600;
}

.final-sucess i {
    display: block;
    font-size: 60px;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--mainColor);
}

.quick-summary-box ul li {
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    padding-left: 45px;
    display: flex;
    align-items: center;
}

.quick-summary-box ul li:before {
    content: "\f26f";
    font-family: bootstrap-icons !important;
    font-style: normal;
    position: absolute;
    left: 0;
    color: #fff;
    background: var(--mainColor);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.quick-summary-box ul li .txt {
    padding-left: 10px;
}

.rating i {
    margin-right: 5px;
}

h3.sec-heading {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: bolder;
}

.table th,
.table td {
    padding: 17px;
}

.final-thoughts {
    text-align: center;
}

.final-thoughts .act-btn .btn {
    margin: 0 5px;
}

.final-thoughts .sec-heading {
    text-align: center !important;
}

.final-thoughts .container {
    max-width: 900px;
}

.blockquote-div {
    border-left: 5px solid var(--mainColor);
    background: #f8f8f8;
    padding: 15px;
    margin: 25px 0 0;
    border-radius: 0;
}

.blockquote-div .blockquote-footer {
    margin-bottom: 0;
}

.faqs-tab-content .accordion-button {
    font-size: 20px;
    padding: 20px 0;
    outline: 0 !important;
    box-shadow: none;
    font-weight: 700;
}

.faqs-tab-content .accordion-item {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #dee2e6;
}

.faqs-tab-content .accordion-body {
    padding: 0;
    padding-bottom: 20px;
}

.faqs-tab-content .accordion-button:not(.collapsed) {
    background: transparent;
    border: 0;
    color: #000;
}

.faqs-tab-content .accordion-button:focus {
    border: 0;
    box-shadow: none;
}

.faqs-tab-content .accordion-body p {
    color: #58595B;
}

.supplement-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.supplement-list .box {
    width: 50%;
    flex: 0 0 50%;
    padding: 0 10px;
    margin-bottom: 15px;
}

.supplement-list .box a {
    border: 1px solid #cecece;
    padding: 15px;
    display: block;
    border-radius: 10px;
    font-size: 16px;
    background: var(--mainColor);
    color: #fff;
}

.blog-table-content {
    border-radius: 10px;
}

.blog-table-content .top-head {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.table-content-body ul {
    list-style: decimal;
    padding-left: 25px;
    font-size: 16px;
}

.table-content-body ul li {}

.table-content-body ul li a {
    color: #626262;
    border-radius: 5px;
    transition: 0.5s;
    display: inline-block;
    padding: 5px;
}

.table-content-body ul li a:hover {
    background: #e6eaf0;
}

.health-conditions-list .title {
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 0 0 0.75rem;
    border: none;
    outline: none;
    color: var(--mainColor);
    /* text-transform: uppercase; */
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #e0e0e0;
    /* background: green; */
    /* color: #fff; */
}



.health-conditions-list ul li a {
    display: inline-block;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.25;
    padding: 4px 0;
    border: none;
    outline: none;
    color: #727272;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    transition: 0.5s;
    font-size: 15px;
}

.health-conditions-list ul {
    margin-bottom: 35px;
    list-style: disc;
    padding-left: 20px;
}

.health-conditions-list ul li a:hover {
    color: var(--mainColor);

}

.thank-you-content {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px #D6D4D4;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 80px 30px;
}

.thank-you-content .done {
    font-size: 80px;
    color: #00b262;
    line-height: 1;
    display: inline-block;
    margin-bottom: 15px;
}

.thank-you-content h1 {
    font-size: 55px;
    color: var(--mainColor);
}

.thank-you-content p {
    color: #595959;
}

.thank-you-content .sub-txt {
    font-size: 21px;
    font-weight: 500;
    color: #434343;
}

.alert-with-icon {
    border: 0;
    position: relative;
    overflow: hidden;
    padding-left: 65px;
}

.alert-with-icon i {
    background: #0000000a;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}


.grid-box {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.articles-home {
    display: grid;
    grid-gap: 25px;
    grid-template-columns: 1fr 1fr;
}

/* Left cards */
.articles-home .card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: block;
}

.articles-home .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.articles-home .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #0f766e;
    background: #e6f4f1;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.articles-home .card h3 {
    font-size: 20px;
    margin: 10px 0;
}

.articles-home .card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.articles-home .read-more {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    color: #0f766e;
    text-decoration: none;
    font-size: 15px;
}

.articles-home .read-more:hover {
    text-decoration: underline;
}

/* Hot Articles */
.hot-articles {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.hot-articles h3 {
    margin-bottom: 16px;
    font-size: 20px;
}

.hot-articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-articles li {
    margin-bottom: 14px;
    padding-left: 18px;
    position: relative;
}

.hot-articles li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #0f766e;
    font-size: 25px;
    line-height: 1;
    top: 9px;
    width: 10px;
    height: 10px;
    background: #0f766e;
    border-radius: 100%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.hot-articles a {
    text-decoration: none;
    color: #0f766e;
    font-size: 15px;
    line-height: 1.4;
}

.hot-articles a:hover {
    text-decoration: underline;
}




/* Filter Bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.search-box input {
    padding: 14px 22px;
    flex: 1;
    outline: none;
    font-size: 17px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.search-box {
    display: flex;
    align-items: center;
    max-width: 620px;
    width: 100%;
    position: relative;
}

.search-box button {
    border: none;
    background: #3bb77e;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    position: absolute;
    right: 7px;
}

.search-box button:hover {
    background: #2fa06d;
}

.category-select select {
    padding: 12px 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    font-size: 17px;
    min-width: 260px;
}



/* Food Grid */
.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.food-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.food-img {
    height: 180px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
    display: none;
}

.food-content {
    padding: 18px;
}

.food-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.food-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.food-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag {
    font-size: 0.75rem;
    background: var(--secondary);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
}

.view-btn {
    font-size: 0.85rem;
    text-decoration: none;
    color: #fff;
    background: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.view-btn:hover {
    background: #256f54;
}

.food-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 600px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box input,
    .category-select select {
        width: 100%;
    }
}


.supplement-section {
    margin-bottom: 60px;
}

.supplement-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.supplement-header .count {
    font-size: 28px;
    font-weight: 700;
    color: #2f8f6b;
    background: #000;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.supplement-header h2 {
    font-size: 32px;
    margin-bottom: 0;
}

.supplement-category {
    margin-bottom: 40px;
}

.supplement-category h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2f8f6b;
}

.supplement-category .item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.supplement-category .item-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.supplement-category .item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.supplement-category .item-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.supplement-category .item-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}


.video-grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-home {
    display: grid;
    grid-gap: 20px;
   /* grid-template-columns: 1fr 1fr 1fr;*/
     grid-template-columns: 1fr ;
}

.video-grid-box iframe {
    height: 350px;
    object-fit: contain;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}


.sticky-search {
    position: sticky;
    top: 93px;
    background: #fcfcfc;
    z-index: 9;
    padding: 15px 0;
}




/* Search Icon */
.header-search-icon {
    cursor: pointer;
    font-size: 18px;
}

/* Overlay */
#searchOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    z-index: 99999;
}

/* Close button */
#closeSearch {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Centered content */
.search-overlay-content {
    max-width: 700px;
    margin: 120px auto;
    padding: 0 20px;
}

/* Input */
#searchInput {
    width: 100%;
    padding: 18px;
    font-size: 22px;
    border-radius: 10px;
    border: none;
    outline: none;
}

/* Results box */
#searchResults {
    background: #fff;
    margin-top: 12px;
    border-radius: 10px;
    max-height: 420px;
    overflow-y: auto;
    display: none;
}

/* Single result */
#searchResults a {
    display: block;
    padding: 14px 18px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

#searchResults a:hover {
    background: #f5f5f5;
}


.hero-search {
    position: relative;
    /* Ã°Å¸â€Â´ KEY: parent must be relative */
}

#searchResults2 {
    position: absolute;
    top: 100%;
    /* Ã°Å¸â€Â´ appears just after input */
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    margin-top: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    /* toggle with JS */
}

/* Single result */
#searchResults2 a {
    display: block;
    padding: 14px 18px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-align: left;
}

#searchResults2 a:hover {
    background: #f5f5f5;
}

/* No result */
.search-empty {
    padding: 15px;
    color: #666;
}

/* Mobile */
@media (max-width: 768px) {
    .search-overlay-content {
        margin-top: 80px;
    }

    #searchInput {
        font-size: 18px;
        padding: 14px;
    }

    .newsletter-container .btn {
  
   margin-left: 1px;
  
}


}

.hot-articles li a {
    text-decoration: underline;
}


.all-conditions-list .title {
    font-size: 22px;
    line-height: 1.2;
    padding: 0 0 0;
    border: none;
    outline: none;
    color: #000;
    /* text-transform: uppercase; */
    text-rendering: optimizeLegibility;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* background: green; */
    /* color: #fff; */
}



.all-conditions-list ul li a {
    font-weight: 500;
    line-height: 1.25;
    padding: 6px 0;
    border: none;
    outline: none;
    color: #727272;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
    transition: 0.5s;
    font-size: 17px;
    display: inline-block;
}

.all-conditions-list ul {
    margin-bottom: 0;
    list-style: disc;
    padding-left: 25px;
}

.all-conditions-list ul li a:hover {
    color: var(--mainColor);

}

.all-conditions-list .title a {
    color: #000;
}

.all-conditions-list hr {
    margin: 30px 0;
}


.section {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    /*            box-shadow: 0 0 8px rgba(0,0,0,0.05);
*/
}

.section ul {
    list-style: none !important;
}

.section ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.section ul li:last-child {
    border-bottom: none;
}

.section a {
    color: blue !important;
    text-decoration: none !important;
}

.section a:hover {
    text-decoration: underline !important;
}



.symptom-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px;
    justify-content: left;
}

/* Pill base */
.symptom-pill {
    max-width: 100%;
    /* never overflow container */
    width: auto;
    /* auto width */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 7px;
    border-radius: 12px;
    background-color: #e6f5fb;
    color: #1b7ea6;
    font-size: 13px;
    font-weight: bolder;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    /* allow wrap */
    word-break: break-word;
    /* break long words */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    border: none;
}

/* Desktop hover */
@media (hover: hover) and (pointer: fine) {
    .symptom-pill:hover {
        background-color: #fff;
        color: #1b7ea6;
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(27, 126, 166, 0.25);
        cursor: pointer;
    }
}

/* Active */
.symptom-pill.active {
    background-color: #fff;
    color: #1b7ea6;
}

/* Tap feedback */
.symptom-pill:active {
    transform: scale(0.97);
}

/* Tablet+ */
@media (min-width: 768px) {
    .symptom-container {
        justify-content: flex-start;
    }

    .symptom-pill {
        font-size: 15px;
    }
}


/* Mobile tap (finger down) */
.symptom-pill:active {
    background-color: #fff;
    color: #1b7ea6;
    transform: scale(0.96);
}

/* Mobile tap highlight (after tap) */
.symptom-pill:focus-visible {
    background-color: #fff;
    color: #1b7ea6;
    box-shadow: 0 4px 14px rgba(27, 126, 166, 0.3);
}


.health-box-grid {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.health-box-grid .health-box {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: block;
}


/* -----------------------------
   Base
----------------------------- */

.parent-category {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
}

.parent-header {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px;
    cursor: pointer;
}

.parent-header h3 {
    margin: 0;
    font-size: 16px;
}

.parent-header:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.arrow {
    transition: transform 0.3s ease;
      margin-right: 20px;
    position: relative;
    top: -10px;
}

/* -----------------------------
   Accordion (Mobile)
----------------------------- */

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.parent-category.active .accordion-panel {
    max-height: 3000px;
    opacity: 1;
}

.parent-category.active .arrow {
    transform: rotate(180deg);
}

/* -----------------------------
   Subcategories
----------------------------- */

.subcategory-list {
    padding: 0 12px;
}

.subcategory-list li {
    list-style: disc;
    margin-left: 18px;
}

/* View more button */
.toggle-subcats {
    background: none;
    border: none;
    color: #007bff;
    font-weight: 600;
    margin: 8px 12px 12px;
    cursor: pointer;
}

/* -----------------------------
   DESKTOP (>=768px)
----------------------------- */

@media (min-width: 768px) {

    /* Disable accordion visuals */
    .accordion-panel {
        max-height: none;
        opacity: 1;
    }

    .arrow {
        display: none;
    }

    .parent-category {
        border: none;
    }
}


@media (max-width: 768px) {

    .toggle-subcats {

        display: none;
    }

    .hot-articles a {
    font-size: 17px;

}

.health-conditions-list ul li a{
     font-size: 17px;
}

}

/*
.parent-category {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
}

.parent-header {
    all: unset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px;
    cursor: pointer;
}

.parent-header:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.parent-header h3 {
    margin: 0;
    font-size: 16px;
}

.arrow {
    transition: transform 0.3s ease;
    margin-right: 20px;
    position: relative;
    top: -10px;
}

.parent-category.active .arrow {
    transform: rotate(180deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.parent-category.active .accordion-panel {
    max-height: 1000px;
    opacity: 1;
}

.subcategory-list {
    padding: 0 12px;
}

.subcategory-list li {
    display: none;
    list-style: disc;
    margin-left: 18px;
}

.subcategory-list li.visible {
    display: list-item;
}

.toggle-subcats {

    cursor: pointer;
}

@media (min-width: 768px) {
    .parent-category {
        border: none;
        margin-bottom: 15px;
    }

    .accordion-panel {
        max-height: none;
        opacity: 1;
    }

    .arrow {
        display: none;
    }
}*/

.yt-responsive {
    width: 100%;
   /* max-width: 720px;*/
    margin: 20px auto;
    cursor: pointer;
}

.yt-thumb,
.yt-responsive iframe {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

@supports not (aspect-ratio: 16 / 9) {
    .yt-thumb {
        padding-top: 56.25%;
    }
}

.yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yt-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
}

.yt-play svg {
    width: 80px;
    max-width: 20%;
    transition: transform 0.3s ease;
}

.yt-responsive:hover .yt-play {
    background: rgba(0, 0, 0, 0.4);
}

.yt-responsive:hover .yt-play svg {
    transform: scale(1.08);
}