.contacts-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.contacts-list__item {
    padding: 2rem;
    width: calc(33.333% - 16px);
    background: #fff;
    -webkit-box-shadow: 0 .25rem 2.1875rem rgba(18, 42, 92, .08);
    box-shadow: 0 .25rem 2.1875rem rgba(18, 42, 92, .08);
    border-radius: .3125rem
}

.contacts-list__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem
}

.contacts-list__title {
    margin-bottom: 1rem
}

.country-contact {
    font-weight: 600;
    margin: 2px 0 14px 0;
}

@media screen and (max-width: 1023px) {
    .contacts-list {
        margin-top: -1.5rem
    }

    .contacts-list__item {
        width: calc(50% - 12px);
        padding: 1.5rem;
        margin-top: 1.5rem
    }

    .contacts-list__item:last-of-type {
        margin-right: auto;
        margin-left: auto
    }

    .contacts-list__number {
        margin-bottom: 1rem
    }

    .contacts-list__title {
        margin-bottom: .5rem
    }
}

@media screen and (max-width: 767px) {
    .contacts-list {
        margin-top: -1rem
    }

    .contacts-list__item {
        width: calc(50% - 8px);
        padding: 1rem;
        margin-top: 1rem
    }
}

@media screen and (max-width: 580px) {
    .contacts-list__item {
        width: 100%
    }
}