.page__wrap.contacts  .content {
    margin-bottom: 0;
}

.page__contacts .map iframe {
    display: block;
}

.contacts__header {
    display: flex;
    justify-content: center;
    height: 80px;
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
}

.contacts__header-item {
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.contacts__header-item:before {
    content: '';
    width: 25px;
    height: 25px;
    margin-right: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.contacts__header-item.address:before {
    background-image: url(../../img/contacts/ico-people.png);
}

.contacts__header-item.phone:before {
    background-image: url(../../img/contacts/ico-phone.png);
}

.contacts__header-item.email:before {
    background-image: url(../../img/contacts/ico-email.png);
}

.contacts__form h2 {
    text-align: center;
    font-size: 22px;
}

.contacts__form {
    border: 2px solid #ffc219;
    padding: 20px 30px;
    margin: 40px 0;
}

.contacts__form form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 2fr;
    grid-column-gap: 25px;
    grid-row-gap: 5px;
}

.contacts__form form > div:last-child {
    grid-column: 1 / 5;
    justify-self: center;
    padding: 10px 0;
}

.contacts__form .required label:before {
    content: '*';
    color: #05729b;
}

@media (max-width: 991px) {
    .contacts__header-item {
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .contacts__header {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .contacts__header-item {
        padding: 10px 0;
    }

    .contacts__form form {
        display: flex;
        flex-direction: column;
    }

    .contacts__form form > div:last-child {
        display: flex;
        justify-content: center;
    }
}