.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
}

.contacts-card{
    background-color: #FCFBF9;
    border-radius: 5%;
    border: 2px solid #D9D9D9;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contacts-card img {
    height: auto;
    display: block;
}
.description {
    background-color: #D9D9D9;
    justify-content: space-between;
    display: flex;
    background: #D9D9D9;
    border: 2px solid #D9D9D9;
    padding: /*8px */ 12px;
    border-radius: 8px;
}
.description h3 {
    margin: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: lighter;
}

@media (min-width: 768px) {
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1200px) {
    .contacts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
