.place-of-care-section{
    background-image: url(/assets/imgs/img-place-off-care/img-background-yelloww.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 100px;
    padding: 50px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .place-of-care{
        display: flex;
        flex-direction: column;
        align-items: center;

    }

        .place-of-care-container-location{
            display: flex;
            justify-content: space-around;
            width: 80vw;
          }

            .place-of-care-unoder-list{
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .place-of-care-city{
                color: white;
                font-size: 1.2rem;
                font-family: 'Lato', sans-serif;
                font-weight:bold;

            }

                .place-of-care-sp-states{
                    height: 200px;
                    width: 300px;
                }

                    .little-menu-link-location{
                        align-self: start;
                    }

                        .place-of-care-button{
                            background-color:#002C42;
                            padding: 15px 100px;
                            border-radius: 15px;
                            border: none;
                            font-family: 'Montserrat', sans-serif;
                            font-weight: bold;
                            color: white;
                            font-size:1.2rem;
                            margin-top: 30px;
                            cursor: pointer;
                            max-width: 80vw;
                            transition: all .2s;
                        }
         
                            .place-of-care-button:hover{
                                background-color:#084462;
                            }


@media (max-width: 600px) {
    .place-of-care-container-location{
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .place-of-care-button{
        font-size:.8rem;
        padding: 15px 15px;
    }

    .place-of-care-container-location{
        justify-content: center;    
    }

}
                        