.engineer-contacts-category, .engineer-contacts-location {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

#engineer-contacts-location {
    max-width: calc((100% / 3) * 2) !important;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 116px;
    

    .engineer-contacts-location {
        display: flex;
        gap: 25px;
        justify-content: space-between;
        .engineer-contact {
            width: calc(50% - 25px);
        }
    }
}

.engineer-contact {
    font-family: 'Roboto';
    box-sizing: border-box;
    gap: 25px;
    align-items: center;

    @media screen and (max-width: 900px) {
        flex: 0 0 calc((100% - 30px) / 2) !important;
    }

    @media screen and (max-width: 600px) {
        flex: 0 0 100% !important;
    }
}

.engineer-contact-image {
    width: max-content;
}

.engineer-contact-image img {
    border-radius: 50%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}


.engineer-contact-content {
    line-height: 1.5;
    font-size: 16px;
    border: 1px solid #000000;
    border-radius: 12px;
    width: 100%;
    padding: 12px;
}

.engineer-contact-content b{
    font-weight: bold;
    font-size: 18px;
}

.engineer-contact-content p{
    display: flex;
    font-size: 18px;
}

.engineer-contact-content svg{
   width: 19px;
   margin-right: 9px;
}

.engineer-contact-content svg.svg-phone{
   margin-right: 6px;
}

.engineer-contact-content a {
    font-weight: normal;
    color: #000;
}

.store-footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;

    #contactButton {
        width: calc(100% / 3);
        margin-top: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        a {
            width: max-content;
        }
    }
}
