.section-feedback {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #edebdf;
}

.feedback {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    flex-direction: column;
}

.feedback h2 {
    font-family: "Autumn-Wind";
    font-size: 70pt;
    font-weight: 400;
}

.feedback p {
    text-align: center;
}

.feedback-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    /*margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    height: 300px;*/
    
}

.feedback-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
}

#name_f {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#email_f {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#phone_f {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#address_f {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#persons_f {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#kids_f {
    justify-content: space-evenly;
    height: 3vw;
    width: 30vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#message_f {
    display: flex;
    height: 8vw;
    width: 50vw;
    margin: 5px;
    font-size: 14pt;
    /*margin-left: 200px;*/
    background-color: whitesmoke;
}

#submit_f {
    width: 400px;
    height: 50px;
}

.feedback-form #submit_f {
    background-color: #92A69A;
    border-radius: 15px;
    /*margin-left: 200px;*/
    width: 50vw;
    height: auto;
    font-size: 14pt;
}

.feedback-form #submit_f:hover {
    cursor: pointer;
    background-color: #E4B4AE;
}

/*.feedback-form #radiobutton1 {
    margin-left: 650px;
    width: 100%;
    height: 2em;
    border: 10px;
    border-style: solid;
    border-color: var(--main-brand-color);
}*/

/*.feedback-form #radiobutton2 {
    margin-left: 650px;
    width: 100%;
    height: 2em;
    border: 10px;
    border-style: solid;
    border-color: var(--main-brand-color);
    
}*/

#radiobutton1-label {
    display: inline-flex;
    align-items: center;
    /*margin-left: 200px;*/
    margin-top: 10px;
    width: 75vw;
}

#radiobutton2-label {
    display: inline-flex;
    align-items: center;
    /*margin-left: 200px;*/
    margin-top: 10px;
    margin-bottom: 10px;
    width: 75vw;
}

#radiobutton1 {
    margin-right: 10px;
    height: 20px;
    width: 20px;
}

#radiobutton2 {
    margin-right: 10px;
    height: 20px;
    width: 20px;
}

@media(max-width: 800px) {
    .feedback h2 {
        max-width: 90%;
        font-size: 12vw;
    }
    .feedback p {
        max-width: 90%;
        font-size: 4vw;
    }
    .feedback-form {
        max-width: 90%;
    }
    .feedback-form input::placeholder {
        font-size: 2vw;
    }
    .feedback-form textarea::placeholder {
        font-size: 2vw;
    }
    .feedback-form #submit_f {
        width: 50vw;
        height: auto;
        font-size: 3vw;
    }
    #radiobutton1-label {
        display: inline-flex;
        align-items: center;
        /*margin-left: 200px;*/
        margin-top: 10px;
        width: 75vw;
    }
    
    #radiobutton2-label {
        display: inline-flex;
        align-items: center;
        /*margin-left: 200px;*/
        margin-top: 10px;
        margin-bottom: 10px;
        width: 75vw;
    }
    
    #radiobutton1 {
        margin-right: 10px;
        height: 3.5vw;
        width: 3.5vw;
    }
    
    #radiobutton2 {
        margin-right: 10px;
        height: 3.5vw;
        width: 3.5vw;
    }
    .feedback-form label {
        font-size: 3.5vw;
    }
}