.footer-container {
    background-color: #EC1C24;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}
.company-container {
    font-family: Cruinn-Bold, serif;
    color: #FFFFFF;
}
.address-wrapper {

}

.address-wrapper .phone,
.address-wrapper .email {
    margin-left: 10px;
}

.address-wrapper .phone a, .address-wrapper .email a {
    color: #FFFFFF;
    text-decoration: none;
}
.address-wrapper .phone a:before {
    content:url('../img/footer-phone.svg'); /* with class ModalCarrot ??*/
    position:relative; /*or absolute*/
    top:3px;
    margin-right: 10px;
}

.address-wrapper .email a:before {
    content:url('../img/footer-email.svg'); /* with class ModalCarrot ??*/
    position:relative; /*or absolute*/
    top:2px;
    margin-right: 10px;
}
.location-link, .phone-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.icon-wrapper {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}
.location-link span, .phone-link span {
    font-family: Cruinn-Black,serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}

@media (min-width: 375px) {
    .footer-container {
        padding: 16px 20px; /* 16px сверху и снизу */
        flex-direction: column-reverse;
    }
    .address-wrapper .address {
        display: block;
    }
}
@media (min-width: 768px) {
    .footer-container {
        padding: 16px 40px; /* 16px сверху и снизу */
        flex-direction: row;
    }
    .address-wrapper .address {
        display: inline;
    }
}

@media (min-width: 928px) {
    .footer-container {
        padding: 16px 80px; /* 16px сверху и снизу */
    }
}