.header-part {
    width: 100%;
    background: #e4e9e7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-part .header__cont {
    position: relative;
}
.header-part__cont {
    width: calc(100% + 20px);
    margin: 0 -10px;
    display: flex;
    align-items: initial;
    justify-content: space-between;
    padding: 10px 0;
}
.header-part__block {
    width: 100%;
    padding: 0 10px;
}
.header-part__block-head {
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: .2s;
    height: 100%;
    padding-right: 5px;
}
.header-part__block-head:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    display: none;
}
.header-part__block-title {
    font-size: 18px;
    font-weight: 600;
    color: #3E3E47;
    padding: 10px;
    cursor: default;
    max-width: calc(100% - 12px);
}
a.header-part__block-title {
    color: #e9001e;
    transition: .2s;
    cursor: pointer;
    white-space: nowrap;
}
.header-part__block-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
.header-part__block-arrow svg {
    stroke: #000;
}
.header-part__block-body {
    position: absolute;
    top: calc(100%);
    left: 0;
    box-shadow: 0 10px 20px rgba(13, 37, 60, 0.2);
    border-radius: 10px;
    background: #FFFFFF;
    width: 100%;
    padding: 10px;
    display: none;
}
.header-part__block-content {
    display: flex;
    align-items: initial;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: -6px;
    width: calc(100% + 12px);
}
.header-part__link-helper {
    width: 25%;
    padding: 6px;
}
.header-part__link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header-part__link-img {
    height: 60px;
    width: 60px;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid #e4e9e7;
    background-position: center;
    background-size: cover;
}
.header-part__link-img img {

}
.header-part__link-text {
    font-size: 16px;
    font-weight: 500;
    color: #3E3E47;
    width: calc(100% - 60px - 10px);
}

@media (hover: hover) {
    a.header-part__block-title:hover {
        color: #32B14B;
    }
    .header-part__block:hover .header-part__block-arrow {
        transform: scaleY(-1);
    }
    .header-part__link:hover .header-part__link-text {
        color: #32B14B;
    }
    .header-part__block:hover .header-part__block-body {
        display: block;
    }
    .header-part__block:hover .header-part__block-head:after {
        display: block;
    }
    .header-part__block:hover .header-part__block-head {
        background: #f1f5f1;
    }
}

@media (max-width: 1399px) {
    .header__cont {
        width: calc(100% - 34px - 34px);
    }
    .header-part__block-title {
        padding: 10px 5px;
        font-size: 15px;
    }
    .header-part__block {
        padding: 0 5px;
    }
    .header-part__cont {
        width: calc(100% + 10px);
        margin: 0 -5px;
    }
    .header-part__link-helper {
        width: calc(100% / 3);
    }
    .header-part__link-text {
        font-size: 14px;
        max-width: calc(100% - 45px - 5px);
    }
    .header-part__link-img {
        width: 45px;
        height: 45px;
        margin-right: 5px;
    }
}
@media (max-width: 799px) {
    .header-part {
        display: none;
    }
}