.feedback .container {
    display: grid;
    grid-template-columns: 55% calc(45% - 53px);
    gap: 53px;
    align-items: center;
}

.feedback_img {
    position: relative;
}

.feedback_rec {
    position: absolute;
    top: 30px;
    left: -30px;
}

.feedback_photo {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    border-radius: 6px;
}

.feedback_form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feedback_form .feedback_fos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.feedback_fos input {
    border: 1px solid #5ab563;
    border-radius: 6px;
    padding: 10px 16px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #323232;
}

.feedback_form_subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #323232;
}

.feedback_form_text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    color: #323232;
}

.feedback_fos_inscription {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #8d8d8d;
}

::-webkit-input-placeholder {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    color: #323232;
}

.successful_sending {
    display: flex;
    align-items: center;
    gap: 16px;
}

.successful_sending_text_title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #323232;
    margin-bottom: 10px;
}

.successful_sending_text_subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #8d8d8d;
}

@media screen and (max-width: 1500px) {
    .feedback_photo {
        width: 100%;
    }
}

@media screen and (max-width: 1080px) {
    .feedback .container {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 672px) {
    .feedback .container {
        gap: 0px;
    }
}
