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

:root
{
   --lwre-navy: #0B1020;
   --lwre-ink: #111827;
   --lwre-muted: #5F6878;
   --lwre-blue: #0078D4;
   --lwre-cobalt: #0047FF;
   --lwre-yellow: #FFFF00;
   --lwre-bg: #F7F7FB;
   --lwre-line: #E5E7EB;
   --lwre-white: #FFFFFF;
   --lwre-red: #E3262E;
   --lwre-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

body.lwre-site
{
   margin: 0;
   background: var(--lwre-bg);
   color: var(--lwre-ink);
   font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
   font-size: 16px;
   line-height: 1.6;
}

.lwre-site img
{
   max-width: 100%;
   display: block;
}

.lwre-site a,
.lwre-index-section a
{
   color: var(--lwre-cobalt);
   text-decoration: none;
}

.lwre-site a:hover,
.lwre-index-section a:hover
{
   color: var(--lwre-blue);
   text-decoration: none;
}

.lwre-header
{
   position: fixed;
   inset: 0 0 auto 0;
   z-index: 9000;
   background: rgba(11, 16, 32, 0.96);
   border-bottom: 3px solid var(--lwre-yellow);
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.lwre-nav-wrap
{
   width: min(1180px, calc(100% - 32px));
   min-height: 92px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 24px;
}

.lwre-brand
{
   display: inline-flex;
   align-items: center;
   gap: 12px;
   color: var(--lwre-white) !important;
   min-width: 220px;
}

.lwre-brand img
{
   width: 70px;
   height: 68px;
   object-fit: contain;
}

.lwre-brand strong
{
   display: block;
   font-size: 15px;
   line-height: 1.15;
}

.lwre-brand span
{
   display: block;
   color: rgba(255, 255, 255, 0.72);
   font-size: 12px;
   margin-top: 2px;
}

.lwre-nav
{
   margin-left: auto;
   display: flex;
   align-items: center;
   gap: 2px;
}

.lwre-nav a
{
   color: var(--lwre-white);
   border-radius: 999px;
   font-size: 15px;
   font-weight: 700;
   padding: 11px 13px;
}

.lwre-nav a:hover,
.lwre-nav a.is-active
{
   color: var(--lwre-yellow);
   background: rgba(255, 255, 255, 0.08);
}

.lwre-header-cta
{
   margin-left: 8px;
   white-space: nowrap;
}

.lwre-menu-toggle
{
   display: none;
   margin-left: auto;
   width: 44px;
   height: 44px;
   border: 1px solid rgba(255, 255, 255, 0.24);
   border-radius: 999px;
   background: transparent;
   color: var(--lwre-white);
   cursor: pointer;
}

.lwre-menu-toggle span
{
   display: block;
   width: 20px;
   height: 2px;
   margin: 5px auto;
   background: currentColor;
}

.lwre-button
{
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   min-height: 44px;
   padding: 0 18px;
   border: 1px solid var(--lwre-blue);
   border-radius: 999px;
   background: var(--lwre-blue);
   color: var(--lwre-white) !important;
   font-size: 15px;
   font-weight: 700;
   letter-spacing: 0.01em;
   line-height: 1.15;
   box-shadow: 0 10px 22px rgba(0, 120, 212, 0.22);
   transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.lwre-button:hover
{
   background: var(--lwre-cobalt);
   border-color: var(--lwre-cobalt);
   color: var(--lwre-white) !important;
   transform: translateY(-1px);
   box-shadow: 0 14px 28px rgba(0, 71, 255, 0.25);
}

.lwre-button.secondary
{
   background: var(--lwre-white);
   color: var(--lwre-cobalt) !important;
   border-color: rgba(0, 71, 255, 0.35);
   box-shadow: none;
}

.lwre-button.secondary:hover
{
   border-color: var(--lwre-cobalt);
   color: var(--lwre-cobalt) !important;
}

.lwre-hero
{
   position: relative;
   min-height: 540px;
   padding: 150px 0 72px;
   overflow: hidden;
   background: var(--lwre-navy);
   color: var(--lwre-white);
}

.lwre-hero.video-hero
{
   min-height: 690px;
}

.lwre-hero.video-hero::before
{
   background: linear-gradient(90deg, rgba(11, 16, 32, 0.95), rgba(11, 16, 32, 0.76) 48%, rgba(11, 16, 32, 0.38));
   z-index: 1;
}

.lwre-hero-video
{
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.lwre-hero::before
{
   content: "";
   position: absolute;
   inset: 0;
   background:
      linear-gradient(90deg, rgba(11, 16, 32, 0.94), rgba(11, 16, 32, 0.78) 45%, rgba(11, 16, 32, 0.42)),
      var(--hero-image, none) center / cover no-repeat;
}

.lwre-hero > .lwre-container
{
   z-index: 2;
}

.lwre-hero.hero-compact
{
   min-height: 430px;
   padding-bottom: 56px;
}

.lwre-container
{
   position: relative;
   width: min(1180px, calc(100% - 32px));
   margin: 0 auto;
}

.lwre-hero-grid
{
   display: grid;
   grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
   gap: 34px;
   align-items: end;
}

.lwre-kicker
{
   margin: 0 0 14px;
   color: var(--lwre-yellow);
   font-size: 13px;
   font-weight: 900;
   letter-spacing: 0.12em;
   text-transform: uppercase;
}

.lwre-hero h1,
.lwre-section h1,
.lwre-section h2,
.lwre-index-section h2
{
   margin: 0;
   line-height: 1.05;
   letter-spacing: 0;
}

.lwre-hero h1
{
   max-width: 790px;
   font-size: clamp(40px, 7vw, 72px);
}

.lwre-hero p
{
   max-width: 660px;
   margin: 20px 0 0;
   color: rgba(255, 255, 255, 0.84);
   font-size: 19px;
}

.lwre-hero-actions
{
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 28px;
}

.lwre-hero-panel
{
   padding: 24px;
   border: 1px solid rgba(255, 255, 255, 0.18);
   border-radius: 8px;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
}

.lwre-hero-panel h2
{
   margin: 0 0 12px;
   color: var(--lwre-white);
   font-size: 22px;
}

.lwre-hero-panel p
{
   margin: 0;
   color: rgba(255, 255, 255, 0.78);
   font-size: 15px;
}

.lwre-hero-panel .lwre-feature-list li
{
   color: var(--lwre-white);
}

.lwre-pill-row
{
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 22px;
}

.lwre-pill
{
   display: inline-flex;
   align-items: center;
   min-height: 32px;
   padding: 0 12px;
   border: 1px solid rgba(255, 255, 255, 0.22);
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.08);
   color: rgba(255, 255, 255, 0.9);
   font-size: 13px;
   font-weight: 700;
}

.lwre-stats
{
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 16px;
   margin-top: 0;
   position: relative;
   z-index: 2;
}

.lwre-stat,
.lwre-card,
.lwre-property-card,
.lwre-contact-card
{
   border: 1px solid var(--lwre-line);
   border-radius: 8px;
   background: var(--lwre-white);
   box-shadow: var(--lwre-shadow);
}

.lwre-stat
{
   display: grid;
   grid-template-columns: auto 1fr;
   grid-template-rows: auto auto;
   column-gap: 16px;
   align-items: center;
   min-height: 132px;
   padding: 24px;
}

.lwre-stat i
{
   grid-row: 1 / span 2;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 46px;
   height: 46px;
   border-radius: 999px;
   background: rgba(0, 120, 212, 0.1);
   color: var(--lwre-cobalt);
   font-size: 20px;
}

.lwre-stat strong
{
   display: block;
   color: var(--lwre-ink);
   font-size: 24px;
   line-height: 1.1;
}

.lwre-stat span
{
   display: block;
   margin-top: 2px;
   color: var(--lwre-muted);
   font-size: 14px;
   line-height: 1.45;
}

.lwre-section,
.lwre-index-section
{
   padding: 72px 0;
   background: var(--lwre-bg);
}

.lwre-section.white,
.lwre-index-section.white
{
   background: var(--lwre-white);
}

.lwre-section.dark,
.lwre-index-section.dark
{
   background: var(--lwre-navy);
   color: var(--lwre-white);
}

.lwre-section.slim
{
   padding: 36px 0 50px;
}

.lwre-section.dark .lwre-section-head p,
.lwre-index-section.dark .lwre-section-head p
{
   color: rgba(255, 255, 255, 0.78);
}

.lwre-section-head
{
   display: flex;
   align-items: end;
   justify-content: space-between;
   gap: 24px;
   margin-bottom: 28px;
}

.lwre-section-head h2
{
   color: var(--lwre-ink);
   font-size: clamp(30px, 4.2vw, 48px);
}

.lwre-section.dark .lwre-section-head h2,
.lwre-index-section.dark .lwre-section-head h2
{
   color: var(--lwre-white);
}

.lwre-section-head p
{
   max-width: 560px;
   margin: 10px 0 0;
   color: var(--lwre-muted);
   font-size: 17px;
}

.lwre-grid-2
{
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
   gap: 28px;
}

.lwre-grid-3,
.lwre-card-grid,
.lwre-listing-grid
{
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 22px;
}

.lwre-grid-4
{
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 16px;
}

.lwre-card
{
   overflow: hidden;
   transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lwre-card:hover
{
   transform: translateY(-3px);
   border-color: rgba(0, 120, 212, 0.32);
   box-shadow: 0 22px 46px rgba(15, 23, 42, 0.18);
}

.lwre-card-body
{
   padding: 24px;
}

.lwre-card-icon
{
   width: 48px;
   height: 48px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 999px;
   background: var(--lwre-navy);
   color: var(--lwre-yellow);
   font-size: 22px;
}

.lwre-card h3,
.lwre-property-card h3,
.lwre-contact-card h3
{
   margin: 16px 0 8px;
   color: var(--lwre-ink);
   font-size: 22px;
   line-height: 1.2;
}

.lwre-card p,
.lwre-property-card p,
.lwre-contact-card p
{
   margin: 0;
   color: var(--lwre-muted);
}

.lwre-card-image
{
   width: 100%;
   aspect-ratio: 16 / 10;
   object-fit: cover;
}

.lwre-page-card
{
   min-height: 100%;
}

.lwre-page-card img
{
   width: 100%;
   aspect-ratio: 16 / 10;
   object-fit: cover;
}

.lwre-page-card .lwre-card-body
{
   display: grid;
   min-height: 250px;
   align-content: start;
}

.lwre-category
{
   color: var(--lwre-cobalt);
   font-size: 12px;
   font-weight: 900;
   letter-spacing: 0.12em;
   text-transform: uppercase;
}

.lwre-card-link
{
   margin-top: 20px;
   align-self: end;
   color: var(--lwre-cobalt) !important;
   font-weight: 900;
}

.lwre-split
{
   display: grid;
   grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
   gap: 40px;
   align-items: center;
}

.lwre-image-frame
{
   overflow: hidden;
   border-radius: 8px;
   border: 1px solid var(--lwre-line);
   box-shadow: var(--lwre-shadow);
   background: var(--lwre-white);
}

.lwre-image-frame img
{
   width: 100%;
   height: 100%;
   max-height: 540px;
   object-fit: cover;
}

.lwre-agent-frame
{
   display: grid;
   min-height: 520px;
   align-items: end;
   justify-items: center;
   padding: 24px 24px 0;
   background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FC 100%);
}

.lwre-agent-frame img
{
   width: auto;
   height: 100%;
   max-height: 520px;
   object-fit: contain;
}

.lwre-copy h2
{
   color: var(--lwre-ink);
   font-size: clamp(30px, 4vw, 48px);
}

.lwre-copy p
{
   margin: 16px 0 0;
   color: var(--lwre-muted);
   font-size: 17px;
}

.lwre-check-list,
.lwre-feature-list,
.lwre-link-list
{
   display: grid;
   gap: 12px;
   margin: 24px 0 0;
   padding: 0;
   list-style: none;
}

.lwre-check-list li,
.lwre-feature-list li
{
   position: relative;
   padding-left: 30px;
   color: var(--lwre-ink);
}

.lwre-check-list li::before,
.lwre-feature-list li::before
{
   content: "\f00c";
   position: absolute;
   left: 0;
   top: 1px;
   width: 18px;
   height: 18px;
   border-radius: 0;
   background: transparent;
   box-shadow: none;
   color: var(--lwre-yellow);
   font-family: FontAwesome;
   font-size: 15px;
   line-height: 18px;
   text-align: center;
}

.lwre-check-list li::before
{
   color: var(--lwre-blue);
}

.lwre-link-list li
{
   padding-bottom: 12px;
   border-bottom: 1px solid var(--lwre-line);
}

.lwre-link-list a
{
   color: var(--lwre-ink) !important;
   font-weight: 800;
}

.lwre-process
{
   display: grid;
   gap: 14px;
   counter-reset: process;
}

.lwre-process-item
{
   position: relative;
   padding: 20px 20px 20px 78px;
   border: 1px solid var(--lwre-line);
   border-radius: 8px;
   background: var(--lwre-white);
}

.lwre-process-item::before
{
   counter-increment: process;
   content: counter(process);
   position: absolute;
   left: 22px;
   top: 20px;
   width: 36px;
   height: 36px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: var(--lwre-navy);
   color: var(--lwre-yellow);
   font-weight: 900;
}

.lwre-process-item h3
{
   margin: 0 0 6px;
   font-size: 20px;
}

.lwre-process-item p
{
   margin: 0;
   color: var(--lwre-muted);
}

.lwre-property-card
{
   overflow: hidden;
   position: relative;
}

.lwre-property-card img
{
   width: 100%;
   aspect-ratio: 16 / 10;
   object-fit: cover;
}

.lwre-badge
{
   display: inline-flex;
   align-items: center;
   min-height: 28px;
   padding: 0 12px;
   border-radius: 999px;
   background: var(--lwre-red);
   color: var(--lwre-white);
   font-size: 12px;
   font-weight: 900;
   letter-spacing: 0.1em;
   text-transform: uppercase;
}

.lwre-property-body
{
   padding: 20px;
}

.lwre-property-meta
{
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 16px;
   color: var(--lwre-muted);
   font-size: 14px;
}

.lwre-property-meta span
{
   display: inline-flex;
   align-items: center;
   gap: 5px;
}

.lwre-property-detail
{
   display: grid;
   grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
   gap: 28px;
   align-items: start;
}

.lwre-detail-panel
{
   position: sticky;
   top: 118px;
   padding: 24px;
   border: 1px solid var(--lwre-line);
   border-radius: 8px;
   background: var(--lwre-white);
   box-shadow: var(--lwre-shadow);
}

.lwre-detail-panel dl
{
   margin: 0;
}

.lwre-detail-panel div
{
   display: flex;
   justify-content: space-between;
   gap: 18px;
   padding: 14px 0;
   border-bottom: 1px solid var(--lwre-line);
}

.lwre-detail-panel div:last-child
{
   border-bottom: 0;
}

.lwre-detail-panel dt
{
   color: var(--lwre-muted);
   font-weight: 700;
}

.lwre-detail-panel dd
{
   margin: 0;
   color: var(--lwre-ink);
   font-weight: 900;
   text-align: right;
}

.lwre-rich-copy
{
   padding: 30px;
   border: 1px solid var(--lwre-line);
   border-radius: 8px;
   background: var(--lwre-white);
   box-shadow: var(--lwre-shadow);
}

.lwre-rich-copy h2,
.lwre-rich-copy h3
{
   margin: 0 0 12px;
   line-height: 1.18;
}

.lwre-section.dark .lwre-rich-copy h2,
.lwre-section.dark .lwre-rich-copy h3
{
   color: var(--lwre-ink);
}

.lwre-rich-copy h3
{
   margin-top: 28px;
}

.lwre-rich-copy p
{
   color: var(--lwre-muted);
}

.lwre-empty-listing
{
   grid-column: 1 / -1;
   padding: 34px;
   border: 1px solid var(--lwre-line);
   border-radius: 8px;
   background: var(--lwre-white);
   box-shadow: var(--lwre-shadow);
}

.lwre-empty-listing h3
{
   margin: 0 0 8px;
   font-size: 26px;
}

.lwre-empty-listing p
{
   max-width: 680px;
   margin: 0 0 20px;
   color: var(--lwre-muted);
}

.lwre-gallery
{
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 14px;
}

.lwre-gallery img
{
   width: 100%;
   aspect-ratio: 16 / 10;
   object-fit: cover;
   border-radius: 8px;
   border: 1px solid var(--lwre-line);
}

.lwre-logo-tile
{
   display: grid;
   min-height: 320px;
   place-items: center;
   padding: 34px;
   border-radius: 8px;
   background:
      linear-gradient(135deg, rgba(255, 255, 0, 0.16), rgba(0, 120, 212, 0.12)),
      var(--lwre-white);
   border: 1px solid var(--lwre-line);
   box-shadow: var(--lwre-shadow);
}

.lwre-logo-tile img
{
   width: min(260px, 70%);
}

.lwre-contact-grid
{
   display: grid;
   grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
   gap: 28px;
   align-items: start;
}

.lwre-contact-card
{
   padding: 24px;
}

.lwre-contact-card + .lwre-contact-card
{
   margin-top: 16px;
}

.lwre-contact-card i
{
   color: var(--lwre-cobalt);
   font-size: 24px;
}

.lwre-form-frame
{
   overflow: hidden;
   border: 1px solid var(--lwre-line);
   border-radius: 8px;
   background: var(--lwre-white);
   box-shadow: var(--lwre-shadow);
}

.lwre-form-frame iframe
{
   width: 100%;
   min-height: 620px;
   border: 0;
}

.lwre-note
{
   margin-top: 16px;
   color: var(--lwre-muted);
   font-size: 14px;
}

.lwre-seo-links
{
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}

.lwre-seo-links a
{
   display: inline-flex;
   align-items: center;
   min-height: 36px;
   padding: 0 13px;
   border: 1px solid var(--lwre-line);
   border-radius: 999px;
   background: var(--lwre-white);
   color: var(--lwre-ink) !important;
   font-size: 14px;
   font-weight: 800;
}

.lwre-suburb-card
{
   min-height: 100%;
}

.lwre-suburb-card .lwre-card-body
{
   min-height: 236px;
}

.lwre-phone-link
{
   display: inline-flex !important;
   align-items: center;
   gap: 8px;
   color: var(--lwre-white) !important;
   font-weight: 800;
}

.lwre-legal
{
   max-width: 900px;
   margin: 0 auto;
   padding: 34px;
   border: 1px solid var(--lwre-line);
   border-radius: 8px;
   background: var(--lwre-white);
   box-shadow: var(--lwre-shadow);
}

.lwre-legal h2,
.lwre-legal h3
{
   margin: 28px 0 10px;
   line-height: 1.2;
}

.lwre-legal h2:first-child,
.lwre-legal h3:first-child
{
   margin-top: 0;
}

.lwre-legal p,
.lwre-legal li
{
   color: var(--lwre-muted);
}

.lwre-cta-band
{
   padding: 42px;
   border-radius: 8px;
   background: var(--lwre-navy);
   color: var(--lwre-white);
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 22px;
}

.lwre-cta-band h2
{
   margin: 0;
   color: var(--lwre-white);
   font-size: clamp(28px, 4vw, 44px);
}

.lwre-cta-band p
{
   margin: 10px 0 0;
   color: rgba(255, 255, 255, 0.76);
}

.lwre-faq
{
   display: grid;
   gap: 14px;
}

.lwre-faq details
{
   padding: 20px 22px;
   border: 1px solid var(--lwre-line);
   border-radius: 8px;
   background: var(--lwre-white);
   box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.lwre-faq summary
{
   cursor: pointer;
   color: var(--lwre-ink);
   font-weight: 900;
}

.lwre-faq p
{
   margin-bottom: 0;
   color: var(--lwre-muted);
}

.lwre-footer
{
   background: var(--lwre-navy);
   border-top: 8px solid var(--lwre-yellow);
   color: var(--lwre-white);
}

.lwre-footer-inner
{
   width: min(1180px, calc(100% - 32px));
   margin: 0 auto;
   padding: 44px 0 18px;
}

.lwre-footer-grid
{
   display: grid;
   grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(130px, 1fr));
   gap: 28px;
}

.lwre-footer img
{
   width: 86px;
   height: 84px;
   object-fit: contain;
}

.lwre-footer h2,
.lwre-footer h3
{
   margin: 12px 0 10px;
   color: var(--lwre-white);
}

.lwre-footer p,
.lwre-footer a
{
   color: rgba(255, 255, 255, 0.74);
   font-size: 14px;
}

.lwre-footer a
{
   display: block;
   margin: 7px 0;
}

.lwre-footer a:hover
{
   color: var(--lwre-yellow);
}

.lwre-copyright
{
   margin-top: 30px;
   padding-top: 16px;
   border-top: 1px solid rgba(255, 255, 255, 0.12);
   color: rgba(255, 255, 255, 0.58);
   font-size: 13px;
}

.lwre-index-section
{
   font-family: Arial, Helvetica, sans-serif;
}

.lwre-index-section .lwre-container
{
   position: relative;
}

.lwre-index-section .lwre-card
{
   text-align: left;
}

.lwre-index-section .lwre-section-head h2
{
   color: var(--lwre-ink);
}

@media (max-width: 980px)
{
   .lwre-nav-wrap
   {
      min-height: 84px;
   }

   .lwre-menu-toggle
   {
      display: block;
   }

   .lwre-nav
   {
      position: absolute;
      top: 84px;
      left: 0;
      right: 0;
      display: none;
      flex-direction: column;
      align-items: stretch;
      padding: 12px 16px 20px;
      background: rgba(11, 16, 32, 0.98);
      border-top: 1px solid rgba(255, 255, 255, 0.12);
   }

   .lwre-nav.is-open
   {
      display: flex;
   }

   .lwre-nav a
   {
      border-radius: 4px;
      padding: 14px;
   }

   .lwre-header-cta
   {
      margin: 8px 0 0;
      width: 100%;
   }

   .lwre-hero-grid,
   .lwre-grid-2,
   .lwre-split,
   .lwre-contact-grid,
   .lwre-footer-grid,
   .lwre-property-detail
   {
      grid-template-columns: 1fr;
   }

   .lwre-detail-panel
   {
      position: static;
   }

   .lwre-stats,
   .lwre-grid-4
   {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .lwre-grid-3,
   .lwre-card-grid,
   .lwre-listing-grid
   {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }
}

@media (max-width: 640px)
{
   .lwre-brand
   {
      min-width: 0;
   }

   .lwre-brand strong,
   .lwre-brand span
   {
      display: none;
   }

   .lwre-hero
   {
      min-height: 480px;
      padding-top: 132px;
   }

   .lwre-hero h1
   {
      font-size: 39px;
   }

   .lwre-section,
   .lwre-index-section
   {
      padding: 54px 0;
   }

   .lwre-section-head
   {
      display: block;
   }

   .lwre-stats,
   .lwre-grid-3,
   .lwre-card-grid,
   .lwre-listing-grid,
   .lwre-grid-4,
   .lwre-gallery
   {
      grid-template-columns: 1fr;
   }

   .lwre-cta-band
   {
      display: block;
      padding: 28px;
   }

   .lwre-cta-band .lwre-button
   {
      margin-top: 18px;
   }
}
