.feedback {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-image: url("../src/img/Feedback.png");
    background-size: cover;
    padding: 20px 40px;
}

.feedback::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 127, 48, 0.7);
}

.feedback > * {
    /* position: relative; */
}

.feedback-content > * {
    position: relative;
}

.feedback_button {
    border: 2px solid white;
    border-radius: 38px;
    color: white;
    font-size: 20px;
}

.feedback_button:hover {
    border: 2px solid white;
    border-radius: 38px;
    color: white;
    font-size: 20px;
}

.feedback-content {
    display: flex;
}

.feedback_left {
    flex: 1;
}

.feedback_left h4 {
    font-size: 36px;
    font-family: "Outfit", sans-serif;
    color: white;
    margin: 0;
}

.feedback_left p {
    font-size: 20px;
    color: white;
}

.feedback_right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.modal-dialog {
    background-color: white;
    border-radius: 7px;
}

.feedback-modal-content {
    /* background-color: #fff; */
    /* margin: 15% auto; */
    /* width: 50%; */
    /* text-align: center; */
    /* width: 90%; */
    max-width: fit-content;
    height: auto;
}

.modal-header h1 {
    font-size: 32px;
    color: #027f30;
    font-weight: bold;
    font-family: "Manrope", serif;
}

.modal-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.map-info {
    flex: 1;
}

.contact-information {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* .fa-home,
.fa-location,
.fa-envelope,
.fa-phone{
    color: #027F30;
} */

.feedback-form {
    flex: 1;
}

.feedback-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feedback-form form .contact-button {
    background-color: #0f8d3d;
    border-radius: 10px;
}

.feedback-form form .contact-button button {
    color: white;
    font-size: 20px;
}

.feedback-form form .contact-button:hover {
    cursor: pointer;
}

/* MOBILE VIEW */
@media (max-width: 767px) {
    .feedback {
        padding: 20px 20px;
        flex-direction: column;
    }
    .feedback-content {
        flex-direction: column;
        gap: 15px;
    }

    .feedback_left h4 {
        font-size: 24px;
        text-align: center;
    }

    .feedback_left p {
        font-size: 14px;
        text-align: center;
    }

    .feedback_right {
        justify-content: center;
    }

    .feedback_button {
        font-size: 16px;
        padding: 8px 16px;
    }

    .modal-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }
    .contact-information {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 10px;
    }
    .feedback-form form {
        display: flex;
        flex-direction: column;
    }
}
