/*
Theme Name: Bridgewood Properties 5:14
Theme URI: https://newbp.ae
Author: Bridgewood Properties
Author URI: https://newbp.ae
Description: Custom theme for Bridgewood Properties - Dubai Real Estate
Version: 1.0.2
License: Private
Text Domain: bridgewood
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --gold: #C29D47;
    --gold-light: #d4b468;
    --navy: #000929;
    --dark: #1a1a2e;
    --white: #ffffff;
    --light-bg: #f0f4f8;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --font-heading: 'DM Sans', 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.4s ease;
    --shadow: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   PRELOADER
   ============================================= */
#bw-preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#bw-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.bw-loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(194,157,71,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: bw-spin 0.8s linear infinite;
}
@keyframes bw-spin { to { transform: rotate(360deg); } }

/* =============================================
   HEADER
   ============================================= */
#bw-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
    padding: 30px 0;
}
#bw-header.scrolled {
    background: var(--navy);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 16px 0;
}
.bw-header-inner {
    width: 100%;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bw-logo a { display: inline-flex; align-items: center; }
.bw-logo img { height: 75px; width: auto; }
.bw-header-right {
    display: flex;
    align-items: center;
    gap: 75px;
}
.bw-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.bw-nav a {
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 1000;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}
.bw-nav a:hover { color: var(--gold); }
.bw-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: white;
    color: var(--gold);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: var(--transition);
    white-space: nowrap;
}
.bw-contact-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gold);
    transition: color 0.3s;
}
.bw-contact-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
}
.bw-contact-btn:hover svg { color: #ffffff; }
.bw-contact-btn::after { display: none; }
.bw-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 1100;
}
.bw-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    transition: var(--transition);
    border-radius: 2px;
}
.bw-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bw-hamburger.active span:nth-child(2) { opacity: 0; }
.bw-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.bw-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--navy);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.bw-mobile-menu.open { opacity: 1; visibility: visible; }
.bw-mobile-menu a {
    color: #ffffff;
    font-size: 22px;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.bw-mobile-menu a:hover { color: var(--gold); }

.bw-contact-btn-mobile {
    display: none;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}
.bw-contact-btn-mobile svg { width: 13px; height: 13px; flex-shrink: 0; }
.bw-contact-btn-mobile:hover { background: var(--gold); color: white; }

/* =============================================
   HERO SLIDER
   ============================================= */
#bw-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}
.bw-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}
.bw-slide.active {
    opacity: 1;
    z-index: 2;
}
.bw-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.00) 100%
    );
    z-index: 1;
}
.bw-slide-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 30px 0 80px;
}
.bw-slide-content {
    width: 55%;
    max-width: 720px;
    min-width: 300px;
    /* NO animation/opacity here — text must always be visible */
}
.bw-slide-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 14px;
    opacity: 1;
}
.bw-slide-title {
    font-family: 'DM Sans', 'Lato', sans-serif;
    font-size: clamp(46px, 5.5vw, 100px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.06;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    opacity: 1;
}
.bw-slide-desc {
	font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 34px;
    opacity: 1;
}
.bw-btn {
    display: inline-block;
    background: var(--gold);
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
}
.bw-btn:hover {
    background: var(--navy);
    color: #ffffff;
    transform: translateY(-2px);
}
.bw-slider-dots { display: none; }
.bw-dot { display: none; }

/* =============================================
   SECTION COMMON
   ============================================= */
.bw-section { padding: 90px 0; }
.bw-container {
    max-width: 1225px;
    margin: 0 auto;
    padding: 0 30px;
}
#bw-advantage .bw-container {
    max-width: none;
    padding-left: calc((100vw - 1225px) / 2 + 30px);  /* mirrors centered container */
    padding-right: 0;
}
#bw-advantage { 
    background: var(--white);
    padding: 60px 0 60px 0;    /* was 90px via .bw-section */
}
.bw-section-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.bw-section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}
.bw-section-desc {
    font-size: 18px;
    line-height: 1.7;
}
.bw-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.bw-reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   COMMUNITIES
   ============================================= */
#bw-communities { background: var(--light-bg); }
.bw-communities-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}
.bw-communities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.bw-community-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 22px;
    border: 1px solid rgba(0,0,0,0.07);
    transition: var(--transition);
    cursor: pointer;
}
.bw-community-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}
.bw-community-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.bw-community-desc { font-size: 14px; line-height: 1.5; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
#bw-why {
    background: var(--white);
    padding: 0;
    overflow: hidden;
	margin: 0;
}
.bw-why-grid {
    display: grid;
    grid-template-columns: 50% 50%;   /* was 55% 45% */
    gap: 0;
    align-items: stretch;
    min-height: 560px;
    height: auto;
}
.bw-why-imgs {
    position: relative;
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 560px;
	align-items: stretch;
    overflow: hidden;
}
.bw-why-img-1 {
    position: static;
    width: 38%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    flex-shrink: 0;
    display: block;
}
.bw-why-img-2 {
    position: static;
    width: 62%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: none;
    flex-shrink: 0;
    display: block;
}
.bw-why-img-1,
.bw-why-img-2 {
    object-fit: cover;
    object-position: center;
    align-self: stretch;
    height: 100% !important;
    max-width: none;
	border-radius: 30px;
    padding: 10px;
}
.bw-why-icon {
    position: absolute;
    top: 70%;
    left: 38%;
    transform: translate(-50%, -50%);
    width: 135px;
    height: 135px;
    background: rgba(255, 255, 255, 0.92);
    /* border: 2px solid var(--gold); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    box-shadow: none;
    z-index: 5;
}
.bw-why-txt {
    padding: 50px 50px 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#bw-why .bw-why-txt {
   	padding: 70px 50px 70px 60px
}
.bw-why-list { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.bw-why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.09);
}
.bw-why-item:first-child { padding-top: 0; }
.bw-why-item:last-child { border-bottom: none; padding-bottom: 0; }
.bw-why-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(194,157,71,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 20px;
    transition: var(--transition);
}
.bw-why-item:hover .bw-why-item-icon { background: var(--gold); color: white; }
.bw-why-item-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}
.bw-why-item-desc { font-size: 17px; color: var(--text-muted); line-height: 1.65; }

/* =============================================
   CORE ADVANTAGE
   ============================================= */
#bw-advantage { background: var(--white); }
.bw-adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding-right: 0;
}
.bw-adv-img {
    border-radius: 0;           /* was 16px */
    overflow: hidden;
    box-shadow: none;           /* was var(--shadow-lg) */
    height: 100%;
    min-height: 480px;
}
.bw-adv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.bw-adv-img:hover img { transform: scale(1.04); }
.bw-stats-row { display: flex; gap: 30px; margin: 36px 0; }
.bw-stat-item { text-align: center; }
.bw-stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.bw-stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.bw-adv-list { margin-top: 24px; }
.bw-adv-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bw-adv-list li:last-child { border-bottom: none; }
.bw-adv-list li .check { color: var(--gold); font-weight: bold; font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* =============================================
   CONTACT / TEAM
   ============================================= */
#bw-contact { background: var(--white); }
.bw-team-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
}
.bw-team-photo { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); margin-top: 40px; }
.bw-team-photo img { width: 100%; height: 440px; object-fit: cover; object-position: top; }
.bw-team-name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.bw-team-role {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.bw-team-bio {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}.bw-team-contacts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.bw-team-contact-item { display: flex; align-items: center; gap: 12px; font-size: 18px; }
.bw-team-contact-item .label { font-weight: 700; color: var(--text-dark); min-width: 130px; }
.bw-team-contact-item a { color: var(--gold); transition: color 0.3s; }
.bw-team-contact-item a:hover { color: var(--text-dark); }
.bw-socials { display: flex; gap: 14px; }
.bw-social-link {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: none;
    background: #e9e8f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition);
}
.bw-social-link:hover { background: var(--gold); color: white; }

/* =============================================
   STATS BAR
   ============================================= */
#bw-stats-bar { background: var(--navy); padding: 75px 0; }
.bw-stats-bar-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}
.bw-stats-bar-item { text-align: center; flex: 1; min-width: 150px; }
.bw-stats-bar-item i { font-size: 36px; color: var(--gold); display: block; margin-bottom: 14px; }
.bw-stats-bar-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.bw-stats-bar-label { font-size: 14px; color: rgba(255,255,255,0.65); }

/* =============================================
   PARTNERS / LOGOS
   ============================================= */
#bw-partners { padding: 100px 0; background: var(--white); }
.bw-partners-title {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.bw-logos-track-wrapper { overflow: hidden; position: relative; }
.bw-logos-track-wrapper::before,
.bw-logos-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px; height: 100%;
    z-index: 2;
}
.bw-logos-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.bw-logos-track-wrapper::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.bw-logos-track {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: bw-scroll 40s linear infinite;
    width: max-content;
}
.bw-logos-track img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    flex-shrink: 0;
}
.bw-logos-track img:hover { filter: none; opacity: 1; }
@keyframes bw-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   FOOTER
   ============================================= */
#bw-footer { background: var(--navy); padding: 70px 0 0; position: relative; overflow: hidden; }
.bw-footer-grid {
    display: grid;
    grid-template-columns: 2.8fr 1.8fr 1.8fr;
    gap: 50px;
    margin-bottom: 50px;
}
.bw-footer-logo { margin-bottom: 20px; }
.bw-footer-logo img { height: 90px; }
.bw-footer-about-text { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; }
.bw-footer-widget-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.bw-footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--gold);
}
.bw-footer-links { display: flex; flex-direction: column; gap: 12px; }
.bw-footer-links a { font-size: 16px; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.bw-footer-links a:hover { color: var(--gold); }
.bw-footer-contact-text { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.9; }
.bw-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; }
.bw-footer-bottom p { font-size: 16px; color: rgba(255,255,255,0.45); }
.bw-footer-vector { position: absolute; pointer-events: none; opacity: 0.06; }
.bw-footer-vector-1 { bottom: 0; left: -80px; width: 300px; }
.bw-footer-vector-2 { top: -40px; right: -60px; width: 250px; }

.bw-footer-addresses {
    display: flex;
    gap: 0;
    align-items: flex-start;
}
.bw-footer-address-col {
    flex: 1;
    min-width: 0;
}
.bw-footer-address-col .bw-footer-contact-text {
    word-break: normal;
    white-space: nowrap;
}
.bw-footer-address-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.bw-footer-address-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
    margin: 0 20px;
    flex-shrink: 0;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
#bw-whatsapp {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 999;
    width: 54px; height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s;
}
#bw-whatsapp:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
#bw-whatsapp img { width: 28px; height: 28px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1285px) {
    #bw-why .bw-why-txt {
        padding: 70px 40px 70px 50px;
    }
	#bw-advantage .bw-container {
        padding-left: 40px;
    }
}
@media (max-width: 1200px) {
    .bw-slide-inner  { padding-left: 50px; }
    .bw-slide-content { width: 65%; }
}
@media (max-width: 1100px) {
    .bw-communities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .bw-slide-inner  { padding-left: 40px; }
    .bw-slide-content { width: 70%; }
}
@media (max-width: 992px) {
    .bw-nav { display: none; }
    .bw-mobile-menu { display: flex; }
    .bw-why-grid { grid-template-columns: 1fr; }
	.bw-why-imgs { min-height: 300px; height: 300px; }
	.bw-why-txt { padding: 40px 30px; }
    .bw-adv-grid { grid-template-columns: 1fr; gap: 40px; }
    .bw-adv-grid .bw-adv-img { order: -1; height: 320px; }
    .bw-team-inner { grid-template-columns: 1fr; }
    .bw-team-photo { margin-top: 0px; }
    .bw-team-photo img { height: 340px; }
    .bw-footer-grid { grid-template-columns: 1fr 1fr; }
	.bw-logo img { height: 38px; width: auto; object-fit: contain; }
	.bw-logo .custom-logo { height: 38px; width: auto; object-fit: contain; }
	.bw-header-inner { padding: 0 20px; }
	.bw-hamburger { display: none; }
	.bw-header-right .bw-contact-btn { display: none; }
	.bw-contact-btn-mobile { display: none; }
	.bw-contact-btn-mobile { display: inline-flex; }
	.bw-nav { display: none; }
	.bw-header-right .bw-contact-btn { display: none; }
	.bw-mobile-menu { display: none !important; }
}
@media (max-width: 768px) {
    .bw-section { padding: 60px 0; }
    .bw-slide-inner  { padding-left: 24px; padding-right: 24px; }
    .bw-slide-content { width: 90%; }
    .bw-slide-title  { font-size: clamp(34px, 9vw, 54px); }
    .bw-communities-grid { grid-template-columns: repeat(2, 1fr); }
    .bw-communities-header { flex-direction: column; align-items: flex-start; }
    .bw-stats-row { flex-wrap: wrap; gap: 20px; }
    .bw-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .bw-stats-bar-item { min-width: 130px; }
	.bw-team-contact-item { flex-direction: column; gap: 4px; align-items: flex-start; font-size: 15px; }
	.bw-team-contact-item .label { min-width: unset; }
	.bw-team-contact-item a { word-break: break-all; }
	.bw-team-bio { font-size: 15px; }
}
@media (max-width: 480px) {
    .bw-slide-inner  { padding-left: 16px; padding-right: 16px; }
    .bw-slide-content { width: 95%; }
    .bw-slide-title  { font-size: 30px; }
    .bw-slide-desc   { font-size: 14px; }
    .bw-communities-grid { grid-template-columns: 1fr; }
    .bw-container { padding: 0 20px; }
    .bw-why-imgs { min-height: 260px; height: 260px; }
	.bw-why-img-1 { width: 40%; min-height: 260px; }
	.bw-why-img-2 { width: 60%; min-height: 260px; }
}