.hero {
    height: 100%;
    background-repeat: no-repeat;
    background-position: top 0 left 0;
    background-size: 100%;
    padding-top: 158px;
    z-index: 0;
}

.hero--second::before {
    content: "";
    width: 100%;
    height: 263px;
    background-image: url(../img/header-2.svg);
    background-repeat: no-repeat;
    background-position: top 0 left 0;
    position: absolute;
    background-size: 100%;
    top: 0;
    left: 0;
    z-index: -5;
}

.page {
    padding-top: 35px;
}

.page__chats {
    margin-bottom: 141px;
}

.page__chats-title {}

.page__chats-content {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
}

.page__chats-content-item {
    border: 2px solid #F96B0A;
    border-radius: 10px;
    min-height: 207px;
    margin: auto;
    width: 1008px;
    display: flex;
    position: relative;
}

.page__chats-content-item:not(:last-child) {
    margin-bottom: 20px;
}

.page__chats-content-item::before {
    content: "";
    position: absolute;
    background-color: #F96B0A;
    width: 1px;
    height: 101%;
    top: -1px;
    left: 384px;
}

.page__chats-content-item-info {
    display: flex;
    width: 378px;
    height: 157px;
    margin: 22px 50px 28px 0px;
    padding-left: 16px;
}

.page__chats-content-item-info-image {
    background: #FFFFFF;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
    min-width: 143px;
    min-height: 157px;
    margin-right: 19px;
}

.page__chats-content-item-info-description {
    margin: 6px 0;
}

.page__chats-content-item-info-description-title {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;

    color: #000000;
}

.page__chats-content-item-info-description-contacts {
    margin-top: 6px;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;

    color: #000000;
}

.page__chats-content-item-info-description-contacts p {
    margin-bottom: 3px;
}

.page__chats-content-item-info-description-contacts a {
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #000000;
}

.page__chats-content-item-info-description-contacts-link {}

.page__chats-content-item-info-description-contacts-link>a {
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #000000;
}


.page__chats-content-item-info-description-full {
    margin-top: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;

    color: #000000;

}

.page__chats-content-item-form {
    position: relative;
    width: 630px;
}

.page__chats-content-item-form_messages {
    padding-top: 14px;
    padding-right: 22px;
}

.page__chats-content-item-form-message-item {
    display: flex;
}

.page__chats-content-item-form-message-item:not(:last-child) {
    margin-bottom: 10px;
}

.page__chats-content-item-form-message-item-text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    padding: 6px 12px;
    background-color: #F0EFEF;
    border-radius: 5px;
    width: 473px;

    color: #000000;
}

.message_received {
    flex-direction: row;
}

.page__chats-content-item-form-message-item-time {
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;

    color: #000000;
    display: flex;
    align-items: center;
    margin: 0px 10px;

}

.message_sent {
    flex-direction: row-reverse;
}

.message_sent>.page__chats-content-item-form-message-item-text {

    background-color: #F96B0A;
    color: #FFFFFF;
}

.page__chats-content-item-form-send {
    position: absolute;
    bottom: 21px;
    right: 22px;
    width: 97%;
    display: flex;
    justify-content: flex-end;
}

.page__chats-content-item-form-send>button {
    border-radius: 4px;
    border: 1px solid #F96B0A;
    background: #FFFFFF;
    color: #F96B0A;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    height: 21px;
    width: 92px;
    padding: 3px 12px;

}

.page__chats-content-item-form-send>input {
    margin-right: 10px;
    width: 490px;
    border: none;
    border-bottom: 1px solid #F96B0A;
    padding-left: 13px;

}