
.feedback-form-section {
    padding: 160px 0;
    position: relative;
    min-height: 782px;
}
.feedback-form-section__heading {
    grid-column: 1 / span 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.feedback-form-section__content-title {
    color: var(--White, #FFF);
}
.feedback-form-section__content-subtitle {
    color: var(--White, #FFF);
    margin-top: 20px;
}
.feedback-form {
    grid-column: 1 / span 6;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 2;
}
.feedback-form__inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feedback-form__bottom {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-column: 1 / -1;
    align-items: center;
}
.feedback-form__policy {
    color: white;
    flex: 1;
}
a.feedback-form__policy:hover {
    color: var(--Pink, #e5097f);
}
.feedback-form__img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 100%;
    z-index: 1;
}
.feedback-form-section__rating {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}
.feedback-form-section__rating-star {
    cursor: pointer;
}
.feedback-form-section__rating-star path {
    transition: 0.3s;
}
.feedback-form-section__rating-star:hover path,
.feedback-form-section__rating-star_filled path {
    fill: var(--Pink, #e5097f);
}
@media (max-width: 1439px) {
    .feedback-form-section {
        padding: 140px 0 473px;
    }
    .feedback-form-section__heading {
        grid-column: 1 / span 6;
        flex-direction: column-reverse;
        gap: 40px;
    }
    .feedback-form__img {
        bottom: 0;
        right: 0;
        max-height: 100%;
        z-index: 1;
    }
}
@media (max-width: 1023px) {
    .feedback-form-section {
        padding: 80px 0 400px;
    }
    .feedback-form-section__heading {
        grid-column: 1 / -1;
        gap: 20px;
    }
    .feedback-form-section__rating-star {
        width: 40px;
        height: 40px;
    }
    .feedback-form {
        grid-column: 1 / -1;
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        z-index: 2;
    }
    .feedback-form__bottom {
        margin-top: 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feedback-form__img {
        width: 100%;
    }
    .feedback-form__img img {
        min-width: 100%;
        object-fit: cover;
    }
}