#gform_fields_26 span.gfield_required {
    color: #FFA8A8;
    margin-left: 3px;
}

/* Flexbox for the field container */
#gform_fields_26 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

/* Make all fields full width by default */
#gform_fields_26>.gfield {
    flex: 1 1 100%;
    min-width: 0;
}

/* First two: Your Name & Your Business - side by side */
#gform_fields_26>#field_26_11,
#gform_fields_26>#field_26_3 {
    flex: 1 1 47%;
    min-width: 100px;
}

/* Friends Name & Friends Business - side by side */
#gform_fields_26>#field_26_17,
#gform_fields_26>#field_26_14 {
    flex: 1 1 47%;
    min-width: 100px;
}

/* Emails: full width */
#gform_fields_26>#field_26_8,
#gform_fields_26>#field_26_16 {
    flex: 1 1 100%;
    min-width: 0;
}

/* Mobile: stack everything */
@media (max-width: 600px) {
    #gform_fields_26 {
        gap: 0.5rem;
    }

    #gform_fields_26>.gfield {
        flex-basis: 100% !important;
    }
}


.landing-page .landing-page__hero {
    height: 90vh;
    position: relative;
    margin-bottom: 80px;
}

.landing-page .mobile-sticky {
    display: none;
}

@media (max-width: 1750px) {
    .landing-page .landing-page__hero {
        height: 95vh;
    }
}

@media (max-width: 1550px) {
    .landing-page .landing-page__hero {
        height: 950px;
    }
}

.landing-page .landing-page__hero .hero-logo,
.landing-page .landing-page__hero .hero-logo img {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 300px;
    height: auto;
    z-index: 2;
}

.landing-page .landing-page__hero .hero-image,
.landing-page .landing-page__hero .hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.landing-page .landing-page__hero .hero-copy {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-transform: uppercase;
    padding-left: 5rem;
    text-shadow: 2px 4px 10px #000000a5;
    max-width: 50%;
}

.landing-page .landing-page__hero .landing-page__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    content: "";
    background: rgba(0, 0, 0, 0.5);
}

.landing-page .landing-page__hero .hero-copy h2,
.landing-page .landing-page__hero .hero-copy h1 {
    color: white;

    /* max-width: 50%; */
}

.landing-page .landing-page__hero .hero-copy h2 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 3px;
}

.landing-page .landing-page__hero .hero-copy h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 62px;
}

.landing-page .landing-page__hero .hero-copy h1 span {
    color: var(--blue-md);
}

.hero-copy__divider {
    height: 40px;
    width: 60%;
    transform: translateX(-20%);
    background-color: var(--blue-md);
    margin: 20px 0;
}

.landing-page .landing-page__hero .hero-copy p {
    /* max-width: 50%; */
    color: var(--white);
    font-size: 22px;
    text-transform: none;
}

.landing-page .landing-page__hero .hero-form {
    position: absolute;
    top: 30px;
    right: 5rem;
    border: 8px solid #2FA1E0;
    border-radius: 15px;
    z-index: 2;
    background: #005374;
    opacity: 0.96;
    padding: 1.5rem 3rem;
    width: 550px;
}

.landing-page .landing-page__hero .hero-form h2,
.hero-form h3 {
    color: white;
    text-align: center;
}

.landing-page .landing-page__hero .hero-form h2 {
    font-size: 36px;
    font-weight: 700;
}

.landing-page .landing-page__hero .hero-form h3 {
    font-size: 28px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 1rem;
}

.landing-page .landing-page__hero .hero-form .gform-body legend,
.landing-page .landing-page__hero .hero-form .gform-body label {
    color: white;
}

.landing-page .landing-page__hero input:not([type="submit"]),
.landing-page .landing-page__hero select,
.landing-page .landing-page__hero textarea {
    background: transparent;
    color: var(--gray-dk);
    border: 2px solid var(--gray-dk);
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
}

.landing-page .landing-page__hero textarea {
    background: transparent;
    color: var(--gray-dk);
    border: 2px solid var(--gray-dk);
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    max-height: 100px;
}

.landing-page .landing-page__hero input::placeholder,
.landing-page .landing-page__hero ::placeholder,
.landing-page .landing-page__hero ::-webkit-input-placeholder {
    color: var(--gray-dk);
}

.landing-page .landing-page__hero .gform_button[type="submit"] {
    width: 100%;
    /* padding: 8px 40px; */
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 21px;
    margin: 20px auto 0 !important;
    /* Margin important to override a different important in forms.css */
}

.landing-page .landing-page__hero .hero-form a {
    width: 100%;
    padding: 8px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 21px;
}

.landing-page .landing-page__hero .hero-form form {
    margin-bottom: 0;
}

.landing-page .landing-page__hero .gform-footer.gform_footer.top_label {
    padding-bottom: 0;
}

/*mobile*/

@media (max-width: 1600px) {
    .landing-page .landing-page__hero .hero-form h2 {
        font-size: 30px;
        line-height: 32px;
    }

    .landing-page .landing-page__hero .hero-form {
        width: 450px;
    }
}

@media (max-width: 1440px) {
    .landing-page .landing-page__hero .hero-form {
        right: 2rem;
    }

    .landing-page .landing-page__hero .hero-copy {
        /* max-width: calc(100vw - 550px); */
        padding-left: 2rem;
    }
}

@media (max-width: 1200px) {
    .landing-page .landing-page__hero .hero-copy h2 {
        font-size: 1.5rem;
    }

    .landing-page .landing-page__hero .hero-copy h1 {
        font-size: 3rem;
        line-height: 50px;
    }

    .landing-page .landing-page__hero .hero-form h2 {
        font-size: 32px;
        line-height: 35px;
    }

    .landing-page .landing-page__hero .hero-form h3 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 992px) {
    .landing-page .landing-page__hero .hero-phone.btn {
        display: none;
    }

    .landing-page .landing-page__hero .hero-logo,
    .landing-page .landing-page__hero .hero-logo img {
        width: 150px;
    }

    .landing-page .landing-page__hero .hero-logo {
        width: 160px;
    }

    .landing-page .landing-page__hero .hero-copy {
        position: relative;
        top: unset;
        left: unset;
    }

    .hero-copy__divider,
    .landing-page .landing-page__hero .hero-copy p {
        display: none;
    }

    .landing-page .landing-page__hero .hero-form {
        position: relative;
        top: unset;
        right: unset;
        opacity: 1;
        width: auto;
        margin-top: 225px;
        border-radius: 0;
    }

    .landing-page .landing-page__hero {
        height: auto;
    }

    .landing-page .landing-page__hero .hero-image {
        height: auto;
        aspect-ratio: 16/9;
        min-height: 360px;
    }

    .landing-page .landing-page__hero .hero-copy {
        max-width: unset;
        top: 210px;
        transform: unset;
        padding-left: 2rem;
    }

    .landing-page .landing-page__hero .hero-logo {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .landing-page .landing-page__hero .hero-form {
        margin-top: 150px;
    }

    .landing-page .landing-page__hero .hero-copy {
        top: 110px;
    }

    .landing-page .landing-page__hero .hero-copy h2,
    .landing-page .landing-page__hero .hero-form h3 {
        font-size: 1rem;
        line-height: 20px;
    }

    .landing-page .landing-page__hero .hero-copy h1 {
        font-size: 2rem;
        line-height: 35px;
    }

    .landing-page .landing-page__hero .hero-form h2 {
        font-size: 24px;
        line-height: 30px;
    }
}

@media (max-width: 480px) {
    .landing-page .landing-page__hero .hero-image {
        min-height: 400px;
    }

    .landing-page .mobile-sticky {
        display: block;
        position: fixed;
        bottom: 5;
        right: 10;
        z-index: 10;
        background-color: var(--blue-md);
        border-color: var(--blue-dk);
    }
}

/* #field_3_9 {
    display: flex;
    gap: 10px;
}

#field_3_9 label {
    margin-bottom: 8px;
}

#field_3_9 legend {
    width: fit-content;
}

.landing-page .hero-form label.gfield_label.gform-field-label:not([for=input_3_4]) {
    height: 25px;
}

.landing-page .hero-form select#input_3_4 {
    height: 45px;
} */