/* =========================================
   RESET & BASE
========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

figure,
img {
    height: auto;
    min-width: 0;
    max-width: 100%;
}

figure {
    line-height: 0;
}


/* =========================================
   ROOT VARIABLES
========================================= */

:root {
    --primary-font: "Proxima Nova", sans-serif;

    --Dark-Grey: #444444;
    --METAL: #8AA6A9;
    --White: #FFFFFF;
    --color-Tints-gold: #EBDED4;
	--p-line-h: 1.4;
}


/* =========================================
   BASE
========================================= */

html {
    font-size: 100%;
}

@media (min-width: 1024px) {
    html {
        font-size: 75%;
    }
}

body {
    background-color: var(--White);
    font-family: var(--primary-font);
}


/* =========================================
   LAYOUT CONTAINER
========================================= */

.container {
    --page-padding: 2.25rem;

    width: 100%;
    max-width: calc(93.4375rem + (var(--page-padding) * 2));
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

@media (max-width: 1024px) {
    .container {
        --page-padding: 1.25rem;
    }
}


/* =========================================
   HEADER TOP
========================================= */

.header-top {
    padding: 0.625rem 0;
    background-color: var(--Dark-Grey);
}

.header-top p {
    color: var(--color-Tints-gold);
    font-size: clamp(0.75rem, 2vw, 1.3125rem);
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}


/* =========================================
   TOP BANNER
========================================= */

.top-banner {
    padding: 3.125rem 0;
    background-color: var(--color-Tints-gold);
}

.logo-both {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 3.5rem);
}

.logo-both .img-1 {
    max-width: clamp(8rem, 25vw, 22.25rem);
}

.logo-both .img-2 {
    width: 100%;
    max-width: clamp(18rem, 64vw, 54.8125rem);
    height: fit-content;
}


/* =========================================
   THANK YOU SECTION
========================================= */

.thank-you-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--White);
}

.thank-you-section .svg-divider {
    width: 100%;
    font-size: 0;
    line-height: 0;
}

.thank-you-section .svg-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

.thank-you-section .thank-you-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 42vh;
    padding: 6rem 1rem;
    text-align: center;
}

.thank-you-section .thank-you-content h2 {
    margin-bottom: 1.5rem;
    color: var(--Dark-Grey);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
}

.thank-you-section .thank-you-content p {
    margin: 0;
    color: #666666;
    font-size: clamp(1rem, 2vw, 1.688rem);
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-section {
    --cream-height: 200px;

    position: relative;
    padding: 75px 0 100px;
}

.contact-form-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: var(--cream-height);
    background-color: #F9F4F1;
    pointer-events: none;
}


/* Form Layout */

.contact-form-section nf-cells,
.contact-form-section nf-fields,
.contact-form-section nf-field {
    display: contents;
}

.contact-form-section .nf-form-content nf-rows-wrap {
    display: flex;
    flex-direction: column;
}

.contact-form-section .nf-row {
    display: flex;
    width: 100%;
    gap: clamp(3rem, 4vw, 6.25rem);
}

.nf-multi-cell .nf-row::after {
    display: none !important;
}

.nf-multi-cell .nf-cell {
    padding: 0 !important;
}


/* Form Spacing */

.contact-form-section .top-text.label-above .nf-field-element :first-child {
    margin-bottom: 3.125rem;
}

.contact-form-section .top-text.nf-field-container {
    margin-bottom: 6.25rem;
}

.contact-form-section .form-input-container {
    margin-bottom: 2.5rem;
}

.contact-form-section .f-text {
    margin: 3.125rem 0 4.688rem;
}

.contact-form-section .f-text.below-wave {
    margin-top: clamp(20px, 6vw, 75px) !important;
}


/* Form Text */

.contact-form-section .nf-form-cont p,
.contact-form-section .nf-field-description,
.contact-form-section .nf-field-description p,
.contact-form-section .nf-field-element p {
    margin-top: 0;
    color: var(--Dark-Grey);
    font-family: var(--primary-font);
    font-size: 1.6875rem;
    font-weight: 400;
    line-height: var(--p-line-h);
}

.contact-form-section .nf-field-element p strong {
    font-weight: 700;
}


/* Labels */

.label-above .nf-field-label {
    margin-left: 5px;
}

.contact-form-section .nf-field-label label,
.contact-form-section .nf-label-span {
    display: block;
    margin-bottom: 1rem;
    color: var(--Dark-Grey);
    font-family: var(--primary-font);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: var(--p-line-h);
}

.contact-form-section .ninja-forms-req-symbol,
.nf-form-fields-required {
    display: none;
}

.label-hidden .nf-field-label {
    display: none;
}

.label-hidden .nf-field-element {
    width: auto !important;
}


/* Inputs */

.contact-form-section .form-input {
    width: 100%;
    padding: 1.25rem 2rem;
    border: 1px solid var(--METAL);
    border-radius: 83px;
    background: var(--White);
    color: var(--Dark-Grey);
    font-family: var(--primary-font);
    font-size: 1.6875rem;
}

.contact-form-section .form-input::placeholder {
    color: #999999;
}


/* Checkbox */

.contact-form-section .checkbox-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    gap: clamp(0.7rem, 2vw, 1.5rem);
}

.contact-form-section .checkbox-wrap .nf-field-element {
    flex-shrink: 0;
}

.contact-form-section .checkbox-wrap p {
    margin-bottom: 1.563rem;
}

.contact-form-section .checkbox-wrap .nf-field-description p:last-child {
    margin-bottom: 0;
}

.contact-form-section .form-check-box[type="checkbox"] {
    position: relative;
    flex-shrink: 0;
    width: clamp(1.7rem, 3vw, 2.875rem);
    height: clamp(1.7rem, 3vw, 2.875rem);
    margin: 0;
    border: 1px solid var(--METAL);
    border-radius: 10px;
    background: var(--White);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.contact-form-section .form-check-box[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--METAL);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    transform: translate(-50%, -50%);
}


/* Links */

.contact-form-section .nf-form-cont a,
.contact-form-section .nf-field-element a,
.contact-form-section .nf-field-description a {
    color: var(--METAL) !important;
    text-decoration: none;
}

.contact-form-section a:hover {
    opacity: 0.8;
}

.contact-form-section .a-underline a {
    text-decoration: underline !important;
}


/* Errors */

.nf-after-field .nf-error-msg {
    position: absolute;
    bottom: -18px;
    left: 10px;
}

.nf-error-msg.nf-error-field-errors {
    display: none;
}


/* Submit */

.contact-form-section input[type="submit"] {
    margin-top: 1.563rem;
    padding: 20px;
    border: none;
    border-radius: 83px;
    background: var(--METAL);
    color: var(--White);
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
	width:10em !important;
}

.contact-form-section input[type="submit"]:hover {
    opacity: 0.85;
}


/* Wave */
.wave-svg{
	    margin-bottom: clamp(2rem, 6vw, 4.938rem) !important;
}
.wave-svg,
.wave-svg .nf-field-element {
    position: static !important;
}

.wave-svg svg {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 1.875rem 0;
    background-color: var(--Dark-Grey);
}

.site-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.2rem, 3vw, 1.5rem);
}

.site-footer p {
    color: var(--White);
    font-family: var(--primary-font);
    font-size: clamp(1rem, 2vw, 1.6875rem);
    font-weight: 400;
    line-height: normal;
}

.site-footer .footer-logo {
    width: 100%;
    max-width: clamp(7rem, 10vw, 8.875rem);
}

.site-footer .footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 1024px) {
    .contact-form-section {
        padding: 30px 0;
    }

    .contact-form-section .nf-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-section .nf-cell[style*="width: 50%"] {
        width: 100% !important;
    }

    .contact-form-section .nf-form-cont p,
    .contact-form-section .nf-field-description,
    .contact-form-section .nf-field-description p,
    .contact-form-section .nf-field-element p,
    .contact-form-section .form-input {
        font-size: clamp(1rem, 3vw, 1.125rem);
    }

    .contact-form-section .nf-field-label label,
    .contact-form-section .nf-label-span {
        margin-bottom: 0;
        margin-left: 0.75rem;
        font-size: clamp(1.1rem, 3vw, 1.25rem);
    }

    .contact-form-section .top-text.label-above .nf-field-element :first-child {
        margin-bottom: 2.725rem;
    }

    .contact-form-section .top-text.nf-field-container {
        margin-bottom: 3.25rem;
    }

    .contact-form-section .form-input-container {
        margin-bottom: 2rem;
    }

    .contact-form-section .f-text {
        margin: 1.5rem 0;
    }

    .contact-form-section .checkbox-wrap p {
        margin-bottom: 0.6rem;
    }

    .contact-form-section .checkbox-wrap .nf-field-description p:last-child {
        margin-bottom: 0;
    }

    .contact-form-section input[type="submit"] {
        padding: 0.8rem 3.5rem;
        margin-top: 1rem;
        width: 230px !important;
    }

    .contact-form-section .form-input {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}
