.com-header-contacts{
    width: 250px;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 5px;
}
.com-header-contacts .-box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 5px 0;
}
.com-header-contacts .-icon{
    margin-right: 8px;
    width: 14px;
}
.com-header-contacts .-phone{
    font-family: HeliosCond, sens-serif;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    color: black;
}
.com-header-contacts .-mail{
    font-family: HeliosCond, sens-serif;
    color: #1476C6;
    border-bottom: 1px solid #1476C6;
    text-decoration: none;
    transition: border 0.2s;
}

.com-header-contacts .-mail:hover{
    border-bottom: none;
    border-bottom: 1px solid transparent;
}

@media (max-width: 768px){
    .com-header-contacts {
        width: 100%;
        padding-left: 0;
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 0;
    }
}

@media (max-width: 380px){
    .com-header-contacts {
        flex-direction: column;
    }
}