/**** review - HERO *****/
.review-hero {
    width: 100%;
    height: 500px;
    position: relative;
}

.review-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.review-hero-overlay {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(38, 38, 38, 0.747);
    padding: 20px 0 20px 5vw;
    box-sizing: border-box;
}

.review-hero-overlay h1 {
    color: white;
    margin: 0 0 10px 0;
    width: 600px;
    max-width: 90vw;
    position: relative;
}

.review-hero-overlay h1::after {
    content: '';
    width: 75px;
    bottom: -5px;
    height: 5px;
    background-color: var(--main-color);
    left: 0;
    display: block;
    position: absolute;
}

.review-hero-overlay p {
    color: white;
    margin: 0 0 30px 0;
    width: 600px;
    max-width: 90vw;
    font-size: 18px;
    text-align: start;
}

/**** review - BANNER *****/
.review-banner {
    padding: 50px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: white;
}

.review-banner h2 {
    margin: 0;
}

/*****BEGIN FORM STYLING*****/
/* 

    Styling for form templates.
    Modify as required. Initial styles are only to show outline of the form, and fonts, colors, etc. are free to be modified.

*/


/* 
    Color theme variables for form
*/

:root {
    --shadow-color: grey;
    --important-color: maroon;
    --input-outline: lightgray;
}


/* 
    Styling for wrapper on forms
    By default, includes a tight border to show dimensions of the form.
    Modify as required.
*/
/*
    Styling for form 
*/
.form-template-outside {
    padding: 20px;
    width: 100%;
    background-color: var(--accent-color);
    min-height: 60vh;
}

/* 
    Styling for subtitle/p above form
*/
.form-template-outside h2, p {
    text-align: center;
}

.form-template-outside p {
    margin-top: 10px;
}

.form-template-outside > .form-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}

.form-custom .form_field_wrapper {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_field_wrapper > .form_field_title {
    text-align: left;
    width: 100%;
    margin-bottom: 5px;
}

.form_field_wrapper > .form_field_content {
    width: 100%;
}

.form-custom input, textarea, select {
    width: 100%;
    padding: 10px;
    outline: none;
    border: solid 3px gray;
    transition: border 0.3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.form-custom input:focus, textarea:focus, select:focus {
    border: solid 3px var(--main-color);
}

.form-custom textarea {
    resize: none;
    height: 200px;
}

.form-custom .btn-primary {
    background-color: var(--main-color);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 2rem;
    transition: background-color 0.3s ease-in-out;
}

.form-custom .btn-primary:hover {
    background-color: var(--compliment-color);
    cursor: pointer;
}

/*****END FORM STYLING*****/