.contacts_block_card_icon {
    width: 50px; height: 50px;
    background: var(--bgs);
    display: flex; align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 10px;
    svg, img {
        width: 24px; height: 24px;
        object-fit: contain;
    }
}

.contacts_block_contacts {
    display: grid; gap: var(--px30);
    grid-template-columns: repeat(4, 1fr);
}

.contacts_block_card_content .address *,
.contacts_block_card_content .time * {
  color: var(--head);
  font-weight: var(--medium);
  font-family: var(--font2);
  font-size: var(--fs20);
  line-height: var(--lh110);
}

.contacts_block_card {
    background: var(--bg_sec);
    padding: var(--px30);
    border-radius: 20px 20px 0 20px;
}

.contacts_block .map-holder {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px 20px 0 20px;
}

@media (max-width:1250px){
    .contacts_block_contacts {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:900px){
    .contacts_block_contacts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:550px){
    .contacts_block_contacts {
        grid-template-columns: repeat(1, 1fr);
    }
    .contacts_block .map-holder {
        height: 350px;
    }
}