.contacts {
    padding-bottom: 60px
}

.contacts__list {
    margin-top: 50px
}

.contacts__feedback {
    margin-top: 30px
}

.contacts-list {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: 1fr
}

.contacts-list__header {
    align-items: center;
    -moz-column-gap: 14px;
    column-gap: 14px;
    display: flex
}

.contacts-list__icon {
    display: block;
    height: 21px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    width: 21px
}

.contacts-list__title {
    color: #171717;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2
}

.contacts-list__body {
    color: #171717;
    font-size: .875rem;
    line-height: 1.7142857143;
    margin-top: 24px
}

.contacts-list__body a {
    color: #0c70de;
    text-decoration: none
}

.contacts-list__body a:hover {
    text-decoration: underline
}

.feedback__btn {
    align-items: center;
    background: #07b108;
    border: none;
    border-radius: 10rem;
    box-shadow: 0 0 0 6px rgba(195, 255, 142, .259);
    color: #fff;
    display: flex;
    font-size: .8125rem;
    font-weight: 600;
    line-height: 3.8181818182;
    padding: 0 26px 0 8px;
    text-decoration: none;
    text-transform: uppercase;
    transition-duration: .15s;
    transition-property: background-color, box-shadow;
    transition-timing-function: ease-in-out;
    white-space: nowrap
}

.feedback__btn:hover {
    background-color: #01c102;
    box-shadow: 0 0 0 6px rgba(195, 255, 142, .4)
}

.feedback__icon-bg {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .17);
    border-radius: 50%;
    display: flex;
    font-size: .8125rem;
    height: 2.6153846154em;
    justify-content: center;
    margin-right: 1.0769230769em;
    width: 2.6153846154em
}

.feedback-form__controls {
    display: flex;
    flex-direction: column;
    row-gap: 13px
}

.feedback-form__btn {
    margin-top: 32px;
    width: 100%
}

@media only screen and (min-width:36em) {
    .contacts-list {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media only screen and (min-width:48em) {
    .feedback__btn {
        box-shadow: 0 0 0 11px rgba(195, 255, 142, .259);
        font-size: .9375rem;
        line-height: 3.4666666667;
        padding: 0 50px 0 8px
    }

    .feedback__btn:hover {
        box-shadow: 0 0 0 11px rgba(195, 255, 142, .4)
    }

    .feedback__icon-bg {
        margin-right: 2.0769230769em
    }
}

@media only screen and (min-width:62em) {
    .contacts-list {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media only screen and (min-width:75em) {
    .contacts__list {
        margin-top: 112px
    }
}