/* /Views/Shared/Components/Header/Header.cshtml.rz.scp.css */
.vf-container[b-d5xvziwjyt] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top black bar with phone number */
.vf-top-bar[b-d5xvziwjyt] {
    background-color: var(--VF_BLACK);
    color: var(--VF_WHITE);
    padding: 8px 0;
    display: flex;
    justify-content: flex-end;
    font-family: var(--VF_PRIMARY_FONT_FAMILY);
}

.vf-phone-number[b-d5xvziwjyt] {
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}
    .vf-phone-number a[b-d5xvziwjyt] {
        text-decoration: none;
    }

    .vf-phone-number a:hover[b-d5xvziwjyt] {
        text-decoration: underline;
    }

/* Main navigation */
.vf-nav-container[b-d5xvziwjyt] {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.vf-main-nav[b-d5xvziwjyt] {
    background-color: var(--VF_WHITE);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

    .vf-main-nav .vf-container[b-d5xvziwjyt] {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        height: 80px;
    }

.vf-navbar-brand[b-d5xvziwjyt] {
    display: flex;
    width: 250px;
    align-items: center;
    padding-bottom: 10px;
}

    .vf-navbar-brand img[b-d5xvziwjyt] {
        height: 45px;
    }

/* Desktop navigation */
.vf-desktop-nav[b-d5xvziwjyt] {
    display: flex;
    align-items: center;
}

.vf-nav-links[b-d5xvziwjyt] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

    .vf-nav-links li[b-d5xvziwjyt] {
        margin-left: 30px;
    }
    .vf-nav-links li:first-of-type[b-d5xvziwjyt] {
        margin-left: 5px;
    }

    .vf-nav-links a[b-d5xvziwjyt] {
        color: var(--VF_BLACK);
        text-decoration: none;
        font-weight: 600;
        font-size: 18px;
        transition: color 0.3s;
        font-family: var(--VF_PRIMARY_FONT_FAMILY)
    }

        .vf-nav-links a:hover[b-d5xvziwjyt] {
            color: var(--VF_GOLD);
        }

.vf-cta-button[b-d5xvziwjyt] {
    background-color: var(--VF_GOLD);
    color: var(--VF_WHITE) !important;
    padding: 12px 20px;
    border-radius: 30px;
    margin-left: 15px;
    width: 240px;
    display: inline-block;
    text-align: center;
}

    .vf-cta-button:hover[b-d5xvziwjyt] {
        background-color: var(--VF_CHARCOAL);
        transition: background-color 0.3s;
    }

.vf-phone-icon[b-d5xvziwjyt] {
    display: none;
    margin-right: 5px;
    color: var(--VF_GOLD);
}

/* Mobile menu */
.vf-mobile-nav-menu[b-d5xvziwjyt] {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 24px;
}

/* Mobile menu toggle button */
.vf-mobile-menu-toggle[b-d5xvziwjyt] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;

}

    .vf-mobile-menu-toggle span[b-d5xvziwjyt] {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--VF_BLACK);
        margin: 5px 0;
        transition: all 0.3s;
    }

        .vf-mobile-menu-toggle:hover span[b-d5xvziwjyt] {
            background-color: var(--VF_GOLD);
        }

/* Mobile navigation flyout */
.vf-mobile-nav[b-d5xvziwjyt] {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--VF_BLACK);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

    .vf-mobile-nav.active[b-d5xvziwjyt] {
        transform: translateX(0);
    }
    .vf-mobile-nav:hover[b-d5xvziwjyt] {
        color: var(--VF_PRIMARY_FONT_FAMILY);
    }

.vf-mobile-nav-links[b-d5xvziwjyt] {
    list-style: none;
    padding: 30px 20px 0;
    margin: 0;
}

    .vf-mobile-nav-links li[b-d5xvziwjyt] {
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        font-family: var(--VF_PRIMARY_FONT_FAMILY);
    }

    .vf-mobile-nav-links a[b-d5xvziwjyt] {
        color: var(--VF_WHITE);
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        display: block;
        transition: color 0.3s;
    }

        .vf-mobile-nav-links a:hover[b-d5xvziwjyt] {
            color: var(--VF_GOLD);
            transition: color 0.3s;
        }

/* Responsive styles */
@media (max-width: 1090px) {
    .vf-nav-links li:nth-child(4)[b-d5xvziwjyt] {
        display: none; /* Hide the START A LOAN button */
    }

    .vf-desktop-nav[b-d5xvziwjyt] {
        display: none;
    }

    .vf-mobile-menu-toggle[b-d5xvziwjyt] {
        display: block;
    }

    .vf-mobile-nav[b-d5xvziwjyt] {
        display: block;
    }

    .vf-navbar-brand[b-d5xvziwjyt] {
        width: 175px;
    }

    .vf-navbar-brand img[b-d5xvziwjyt] {
        height: 40px;
    }

    .vf-main-nav .vf-container[b-d5xvziwjyt] {
        height: 70px;
        justify-content: space-between;
    }
}

@media (max-width: 970px) {
    .vf-top-bar[b-d5xvziwjyt] {
        display: none;
    }

    .vf-phone-icon[b-d5xvziwjyt] {
        display: block;
    }
}

/* Active state for the mobile menu toggle */
.vf-mobile-menu-toggle.active span:nth-child(1)[b-d5xvziwjyt] {
    transform: rotate(45deg) translate(5px, 6px);
}

.vf-mobile-menu-toggle.active span:nth-child(2)[b-d5xvziwjyt] {
    opacity: 0;
}

.vf-mobile-menu-toggle.active span:nth-child(3)[b-d5xvziwjyt] {
    transform: rotate(-45deg) translate(5px, -6px);
}

.vf-mobile-menu-toggle.active span[b-d5xvziwjyt] {
    background-color: var(--VF_GOLD);
    
}

.vf-mobile-menu-toggle.active[b-d5xvziwjyt] {
    opacity: 0.5;
}

    .vf-mobile-menu-toggle.active:hover[b-d5xvziwjyt] {
        opacity: 1;
    }
/* /Views/Shared/Components/Header/LandingHeader.cshtml.rz.scp.css */
.LandingHeader[b-s2o61q3r8e]{
    width:100%;
    background-color:#ffffff;
}
.LandingHeader__header[b-s2o61q3r8e] {
    height: 100px;
    width: 100%;
    max-width: 1330px;
    margin: 0 auto 0 auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    padding-top:25px;
}
.LandingHeader__header__logo[b-s2o61q3r8e] {
    height: 64px;
    width: 250px;
    cursor:pointer;
}
.LandingHeader__header__phone[b-s2o61q3r8e] {
}
.LandingHeader__header__phone__number[b-s2o61q3r8e] {
    font-size: 18px;
    line-height: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration:none;
    cursor:pointer;
}
@media (max-width: 700px) {
    .LandingHeader__header[b-s2o61q3r8e] {
        justify-content: center;
        height: 73px;
    }
    .LandingHeader__header__logo[b-s2o61q3r8e] {
        height: 52px;
        width: 214px;

    }
    .LandingHeader__header__phone[b-s2o61q3r8e] {
        display: none;
    }
}
/* /Views/Shared/Components/WebParts/VideoSlide.cshtml.rz.scp.css */
/* Video Slider Styles */

h2[b-yl6nytixc0], p[b-yl6nytixc0] {
    color: var(--VF_WHITE);
}

.testimonial-slider-container[b-yl6nytixc0] {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #2d2d2d;
    color: white;
    touch-action: pan-y;
    cursor: grab;
}

    .testimonial-slider-container:active[b-yl6nytixc0] {
        cursor: grabbing;
    }

.testimonial-slider[b-yl6nytixc0] {
    position: relative;
    height: 500px;
}

.slide[b-yl6nytixc0] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
}

    .slide.active[b-yl6nytixc0] {
        display: block;
        z-index: 2;
    }

.slide-content[b-yl6nytixc0] {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.play-button-container[b-yl6nytixc0] {
    margin-bottom: 20px;
}

.video-play-button[b-yl6nytixc0] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

    .video-play-button:hover[b-yl6nytixc0] {
        background-color: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }

    .video-play-button svg[b-yl6nytixc0] {
        width: 40px;
        height: 40px;
    }

.person-info[b-yl6nytixc0] {
    margin-bottom: 15px;
}

.person-name[b-yl6nytixc0] {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.person-details[b-yl6nytixc0] {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.9;
}

.testimonial-quote[b-yl6nytixc0] {
    font-size: 28px;
    font-weight: 500;
    max-width: 800px;
    line-height: 1.4;
}

/* Slider Navigation */
.slider-navigation[b-yl6nytixc0] {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 5;
    gap: 15px;
}

.slider-indicators[b-yl6nytixc0] {
    display: flex;
    gap: 10px;
    padding-top: 6px;
}

.indicator[b-yl6nytixc0] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--VF_WHITE);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .indicator.active[b-yl6nytixc0] {
        background-color: var(--VF_GOLD);
        border: 2px solid var(--VF_GOLD);
    }

/* Pause/Play Button */
.pause-play-button[b-yl6nytixc0] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

    .pause-play-button:hover[b-yl6nytixc0] {
        background-color: rgba(255, 255, 255, 0.3);
    }


/* Video Modal */
.video-modal[b-yl6nytixc0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .video-modal.open[b-yl6nytixc0] {
        opacity: 1;
        visibility: visible;
    }

.modal-content[b-yl6nytixc0] {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.close-modal[b-yl6nytixc0] {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}

.video-container[b-yl6nytixc0] {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body.modal-open[b-yl6nytixc0] {
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-slider[b-yl6nytixc0] {
        height: 400px;
    }

    .video-play-button[b-yl6nytixc0] {
        width: 60px;
        height: 60px;
    }

        .video-play-button svg[b-yl6nytixc0] {
            width: 30px;
            height: 30px;
        }

    .person-name[b-yl6nytixc0] {
        font-size: 24px;
    }

    .testimonial-quote[b-yl6nytixc0] {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-slider[b-yl6nytixc0] {
        height: 350px;
    }

    .video-play-button[b-yl6nytixc0] {
        width: 50px;
        height: 50px;
    }

        .video-play-button svg[b-yl6nytixc0] {
            width: 24px;
            height: 24px;
        }

    .person-name[b-yl6nytixc0] {
        font-size: 20px;
    }

    .testimonial-quote[b-yl6nytixc0] {
        font-size: 18px;
    }
}
.video-play-button:hover[b-yl6nytixc0] {
    background-color: #c79e51;
    border: 2px solid #c79e51;
}
