/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 21 2026 | 21:27:22 */
/* =========================================================
   01 — SECOND CREEK HERO LAYOUT

   Desktop layout calibrated for a true 1920px viewport
   while Chrome is set to 100% zoom.
   ========================================================= */

.sct-hero {
    --sct-navy: #111638;
    --sct-copy: #263555;
    --sct-muted: #58657a;
    --sct-blue: #0867f2;
    --sct-blue-hover: #0058d6;
    --sct-divider: rgba(17, 22, 56, 0.14);

    position: relative;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}


/* =========================================================
   HERO INNER CONTAINER

   The 1440px maximum width creates the same balanced side
   spacing that the previous design showed at 75% zoom.

   The header is approximately 110px tall, so the hero uses
   the remaining viewport height.
   ========================================================= */

.sct-hero-inner {
    width: 100% !important;
    max-width: 1440px !important;

    /*
     * Fixed to the tall-desktop reference height (1000px) so
     * the hero's own height no longer tracks viewport height.
     * A shorter browser window now reveals less of the same
     * hero and scrolls, instead of compressing it.
     */
    min-height: 1000px !important;

    margin-right: auto !important;
    margin-left: auto !important;

    /*
     * Original top padding = 26px
     * Header height = approximately 110px
     * 26 + 110 = 136px
     */
    padding:
        136px
        68px
        52px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   HERO COPY COLUMN

   Keeps the headline and supporting content constrained to
   the left portion of the hero without crowding the artwork.
   ========================================================= */

.sct-hero-copy {
    width: 52% !important;
    max-width: 780px !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    align-items: flex-start !important;

    overflow: visible !important;
    box-sizing: border-box !important;
}


/* =========================================================
   HERO TRUST SECTION WRAPPER

   Keeps the trust component below the hero copy after moving
   it outside the copy container.
   ========================================================= */

.sct-hero-trust-section {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    align-self: stretch !important;

    box-sizing: border-box !important;
}


/* =========================================================
   MOBILE HERO PANEL — BASE VISIBILITY

   Hidden on desktop and tablet. Mobile visibility and layout
   remain controlled by the dedicated mobile snippet.
   ========================================================= */

.sct-hero-mobile-panel {
    display: none !important;
}