.symptoms-warning-signs{
    display: flex;
    flex-direction: column;
}

.symptoms-warning-signs__title {
  font-size: var(--title-font);
  color: var(--brandClr);
  margin-top: 1rem;
}

.symptoms-container{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-left: 6rem;
    @media screen and (max-width: 768px) {
        margin-left: 0;
        justify-content: flex-start;
        padding-top: 1rem;
    }
}


.symptom{
    display: flex;
    align-items: center;
    width: 8rem;
    flex-shrink: 0;
    font-size: .566rem;
    
}

.point{
    background-color: var(--pinkClr);
    border-radius: 20%;
    width: .207rem;
    height: .207rem;
    margin-right: .5rem;
}