.department-contacts {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.department-contacts-item {
    width: calc(33.3333% - 24px);
    margin: 0 12px 24px;
    position: relative;
}
.info__list-content {
    display: flex;
    gap: 10px;
    align-items: center;
}
.department-contacts-item:after {
    content: '';
    width: 32px;
    height: 32px;
    position: absolute;
    top: -10px;
    left: calc(50% - 16px);
    background-image: url(/local/templates/main/dist/img/content/green-thumbtack.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 10;
}

.department-contacts-item-inner {
    position: relative;
    z-index: 10;
}

.department-contacts-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.department-contacts-item-bg .svg-bg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.department-contacts-item-bg .svg-shadow {
    position: absolute;
    bottom: -20px;
    left: -10px;
    width: calc(100% + 20px);
    height: 100%;
    z-index: 1;
}

@media (max-width: 1023px) {
    .department-contacts-item {
        width: calc(50% - 24px);
    }
}

@media (max-width: 600px) {
    .department-contacts-item {
        width: calc(100% - 24px);
    }

    .department-contacts-item:last-child {
        margin-bottom: 0;
    }
}