.headquarter-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 821px) {
    .headquarter-list {
        flex-direction: row;
        gap: 50px;
    }
}

@media (min-width: 1200px) {
    .headquarter-list {
        gap: 109px;
    }
}

.headquarter-list__item-container {}

.headquarter-list__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-style: normal;
}

.headquarter-list__title {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.headquarter-list__data {
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.headquarter-list__data a {
    color: #fff;
    text-decoration: none;
}

.headquarter-list__data a:hover {
    text-decoration: underline;
}

.headquarter-list__data:before {
    display: inline-block;
    content: "";
    height: 24px;
    width: 24px;
    min-width: 24px;
    background-size: contain;
}

.headquarter-list__phone:before {
    background-image: url(../images/footer-phone.svg);
}

.headquarter-list__address:before {
    background-image: url(../images/footer-location.svg);
}