.contacts-brick {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.contacts-brick-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    max-width: 1400px;
    padding: 50px 10px;
    gap: 40px;
}

.contacts-brick-card {
    border: 1px solid #000;
    text-align: center;
    width: 33%;
    padding: 20px;
    margin: 0;
    line-height: 1.2;
    max-width: 280px;
}

.contacts-brick-card h2 {
    font-weight: 300;
    margin-bottom: 20px;
    font-size: 23px;
}

.contacts-brick-card .contacts-brick-description {
    margin-bottom: 20px;
    font-size: 16px;
}

.contacts-brick-card a {
    display: inline-block;
    height: 55px;
    width: 55px;
    margin: 0 auto;
}

.contacts-brick-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Media query  */
@media (max-width: 768px) {
    .contacts-brick-wrapper {
        align-items: center;
        flex-direction: column;
    }

    .contacts-brick-card {
        width: 100%;
        padding: 35px 50px;
        margin: 20px 0;
        font-family: "Open Sans", Sans-serif, serif;
        font-weight: 300;
        line-height: 1.5;
        color: #333;
        max-width: unset;
    }
}