/* =========================================
   RADIOLOGY / DEPARTMENT DETAIL BOX
========================================= */

.text-box {
    background: #ffffff;
    padding: 25px 28px;
    margin-bottom: 22px;
    border: 1px solid #e5eef1;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(18, 52, 77, 0.06);
    transition: all 0.3s ease;
}

.text-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 52, 77, 0.09);
}


/* Main Heading */

.text-box h3 {
    position: relative;
    margin: 0 0 18px;
    padding-left: 15px;
    color: #12344d;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}

.text-box h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 24px;
    background: #16849b;
    border-radius: 4px;
}


/* Sub Heading */

.text-box h4 {
    margin: 0 0 12px;
    color: #16849b;
    font-size: 17px;
    font-weight: 600;
}


/* Paragraph */

.text-box p {
    margin: 0 0 15px;
    color: #5f6f78;
    font-size: 15px;
    line-height: 1.8;
}

.text-box p:last-child {
    margin-bottom: 0;
}


/* List */

.text-box ul {
    margin: 5px 0 0;
    padding: 0;
    list-style: none;
}

.text-box ul li {
    position: relative;
    padding: 8px 0 8px 27px;
    color: #5f6f78;
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid #eef3f5;
}

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


/* Check Icon */

.text-box ul li::before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 9px;
    color: #16849b;
    font-size: 12px;
}


/* Mobile */

@media (max-width: 767px) {

    .text-box {
        padding: 20px;
        margin-bottom: 18px;
    }

    .text-box h3 {
        font-size: 19px;
    }

    .text-box h4 {
        font-size: 16px;
    }

    .text-box p,
    .text-box ul li {
        font-size: 14px;
        line-height: 1.7;
    }

}  



  