#care-plan {
    display: flex;
    flex-direction: column;
}

.care-plan-header h5 {
    color: #000000;
    font-family: open-sans, sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
}

.care-plan-content {
    font-family: open-sans, sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 26px;
}

.care-plan-content ul {
    padding-left: 8px;
}


.care-plan-content ul li {
    position: relative;
}

.care-plan-content ul li::before {
    position: absolute;
    right: 100%;
    letter-spacing: 0px;
    text-decoration: none;
    font-weight: normal;
    font-style: normal;
}

.care-plan-content ul>li::before {
    margin-right: 5px;
    content: '•';
}

.care-plan-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Icon SVG Rules */
.orange-hover * {
    fill: #888B8D;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    /* filter: invert(48%) sepia(33%) saturate(3688%) hue-rotate(7deg) brightness(99%) contrast(101%); */
}

.orange-hover:hover * {
    filter: invert(48%) sepia(33%) saturate(3688%) hue-rotate(7deg) brightness(99%) contrast(101%);
    color: #EA7600;
    text-decoration: none;
}

.orange-hover:hover {
    text-decoration: none;
}

.careplan-icon-svg {
    width: 100px;
    height: 100px;
    fill: #888B8D;
}

.careplans {
    font-weight: 400;
    font-family: maven-pro, sans-serif;
    color: #7f7f7f;
    text-transform: uppercase;
    text-align: center;
}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| xxs breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (max-width: 349px) {}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| xs breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 350px) and (max-width: 575px) {}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| sm breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 576px) and (max-width: 767px) {}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| md breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991px) {
    #care-plan {
        flex-direction: row;
    }

    .care-plan-header {
        padding: 0 15px;
    }

    .care-plan-content {
        padding: 0 15px;
    }

    .care-plan-img {
        flex-direction: row;
        justify-content: space-evenly;
    }
}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| lg breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 992px) and (max-width: 1199px) {
    #care-plan {
        flex-direction: row;
    }

    .care-plan-header {
        padding: 0 15px;
    }

    .care-plan-content {
        padding: 0 15px;
    }

    .care-plan-img {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .careplan-icon-svg {
        width: 120px;
        height: 120px;
    }
}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| xl breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 1200px) and (max-width: 1559px) {
    #care-plan {
        flex-direction: row;
    }

    .care-plan-header {
        padding: 0 15px;
    }

    .care-plan-content {
        padding: 0 15px;
    }

    .care-plan-img {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .careplan-icon-svg {
        width: 120px;
        height: 120px;
    }
}

/*------------------------------------------------------------------------------------------------*\
|
|
|
|
|
|
| xxl breakpoint
|
|
|
|
|
|
\*------------------------------------------------------------------------------------------------*/
@media (min-width: 1560px) {
    #care-plan {
        flex-direction: row;
    }

    .care-plan-header {
        padding: 0 15px;
    }

    .care-plan-content {
        padding: 0 15px;
    }

    .care-plan-img {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .careplan-icon-svg {
        width: 120px;
        height: 120px;
    }
}