.need__help {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light-grey);
    padding: 2rem;
}
.need__help .help__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    width: 100%;
    text-align: left;
}
.need__help .help__content {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
}
.help__content .help__item {
    position: relative;
    padding-left: 3rem;
    line-height: 24px;
    margin-bottom: 2rem;
}
.help__content .help__item a {
    color: #000;
    text-decoration: none;
    font-size:1.1rem;
    font-weight: 600;
}
.help__content .item__call {
    display: flex;
    flex-direction: column;
}
.help__content .help__item:before {
    width: 25px;
    height: 24px;
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
}
.help__item .phone__title {
    font-size: 1.063rem;
    font-weight: 600;
}
.help__item .phone__title a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}
.help__content .item__call:before {
    content: '';
    background-image: url("../svg/phone.svg");
}
.help__content .item__message:before {
    content: '';
    background-image: url("../svg/edit.svg");
}
.help__content .item__visit:before {
    content: '';
    background-image: url("../svg/home.svg");
}
.help__content .small__contact {
    font-size: 1rem;
}