.structutre {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.structure__section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.structure__section-name {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    color: #474747;
    border-bottom: 1px solid #e6ede9;
}

.structure__items {
    --structure-gap: 16px;
    display: flex;
    gap: var(--structure-gap);
    flex-wrap: wrap;
    position: relative;
}

.structure-item {
    width: calc((100% - 2 * var(--structure-gap)) / 3);
    position: relative;
    padding: 0 16px 16px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.structure-item_online::before, .structure-item_offline::before {
    content: "";
    width: 18px;
    height: 20px;
    background: transparent none no-repeat;
    left: 0;
    top: 5px;
    position: absolute;
    box-sizing: border-box;
}

.structure-item_online::before {
    background-image: url(../../../../img/phone.png);
}

.structure-item_offline::before {
    background-image: url(../../../../img/pin.png);
}

.structure-item__name {
    font-size: 18px;
    font-weight: bold;
}

.structure-item__address span {
    font-weight: bold;
}

.structure-item__contact {

}

.structure-item__hours {

}

.structure-item__note {
    font-size: 16px;
    color: #494e4a;
}

@media (max-width: 760px) {
    .structure-item {
        width: calc((100% - var(--structure-gap)) / 2);
    }
}

@media (max-width: 540px) {
    .structure__items {
        flex-directon: column;
    }

    .structure-item {
        width: 100%;
    }
}
