/*.custom-title-style {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #2E573D; 
}

.custom-title-style:before {
    content: "";
    width: 15px; 
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, transparent, orange);
    margin: 0 10px;
}
.custom-title-style:after {
    content: "";
    width: 25px; 
    flex: 1;
    height: 3px;
    background: linear-gradient(to left, transparent, orange);
    margin: 0 10px;
} */

.center-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-image {
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative; 
}

.center-image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; 
    height: 80px; 
    background: rgba(200, 150, 100, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.ssc-img {
    text-align: center !important;
}



.page-id-7971 section.subheader {
    padding-top: 0px !important;
  
}


/*.symptom-card {
    background: linear-gradient(135deg, #fff5e1, #ffd8b1); 
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #ff9800;
} */
.symptom-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.symptom-card:hover img {
    transform: scale(1.05); /* Zoom effect on hover */
}

.symptom-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    color: #333;
}

.symptom-card:hover {
   /* box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);*/
    transform: translateY(-5px);
}

@media (max-width: 992px) { 
    .hide-on-mobile {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide-on-desktop {
        display: none !important;
    }
}