.com-footer-contacts {
    width: calc(60% + 40px);
    padding-right: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
}

.com-footer-contacts * {
    font-family: HeliosCond, sens-serif;
}

.com-footer-contacts .-left {
    width: 230px;
    padding: 15px 0;
}

.com-footer-contacts .-right {
    width: calc(100% - 230px);
    padding: 15px 0 15px 40px;
}

.com-footer-contacts .-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.com-footer-contacts .-left .-box {
    align-items: center;
}

.com-footer-contacts .-icon {
    width: 14px;
    margin-top: 4px;
    margin-right: 10px;
}

.com-footer-contacts .-phone {
    color: black;
    text-decoration: none;
}

.com-footer-contacts .-mail {
    color: #1D64A4;
    border-bottom: 1px solid #1D64A4;
    text-decoration: none;
    transition: border 0.2s;
}

.com-footer-contacts .-mail:hover {
    border-bottom: 1px solid transparent;
}

@media (max-width: 1100px) {
    .com-footer-contacts .-right {
        padding: 15px 0 15px 20px;
    }
}

@media (max-width: 768px) {
    .com-footer-contacts {
        width: 100%;
        padding-right: 0;
        order: 2;
    }

    .com-footer-contacts .-left {
        width: 100%;
        order: 1;
    }

    .com-footer-contacts .-right {
        width: 100%;
        padding: 15px 0;
        order: 2;
    }
}