/*===================================
 *              Global
 * 
 * 
 * Accent Blue = #537597
 * 
 * ================================*/

:root{
	/*  Colors  */
	--bbwd-accent-blue: #537597;
	--bbwd-gold-1: #D1AB4C;
	--bbwd-gold-2: #866C2C;
}


.bpTest{
	min-width: 150px;
	min-height: 150px;
	background: red;
}
html, body{
	scroll-behavior: smooth;
}
/****** flex styles ******/
.bbwdFlex{
	display: flex;
}
.bbwdCol{
	flex-flow: column;
}
.bbwdRow{
	flex-flow: row wrap;
}
.bbwdRowNW{
	flex-flow: row nowrap;
}
.bbwdCenterFull{
	justify-content: center;
	align-items: center;
}
.bbwdJcntAstart{
	justify-content: center;
	align-items: start;
}
.bbwdAcntJstart{
	justify-content: start;
	align-items: center;
}
.bbwdCenterBttm{
	justify-content: center;
	align-items: end;
}
.bbwdCenterTp{
	justify-content: center;
	align-items: start;
}
.bbwdCenterStch{
	justify-content: center;
	align-items: stretch;
}
.bbwdSpcBtnStch{
	justify-content: space-between;
	align-items: stretch;
}
.bbwdSpcArdStch{
	justify-content: space-around;
	align-items: stretch;
}
.bbwdJEnd{
	justify-content: end;
}
.bbwdGrow3{
	flex-grow: 3;
}
.bbwdGap10{
	gap: 10px;
}
.bbwdGap20{
	gap: 20px;
}
.bbwdGap50{
	gap: 50px;
}
.bbwdGap100{
	gap: 100px;
}

.bbwdPad20px{
	padding:  20px;
}
.bbwdPad40px{
	padding:  40px;
}

.bbwdSelfEnd{
	align-self: end;
}

.bbwdFlexGrow1{
	flex-grow: 1;
}
/**** end flex styles ****/
 
/****** Custom Classes ******/
.bbwd180{
	transform: rotate(180deg);
}
.bbwdTxtCntr{
	text-align: center;
}
.bbwdAutoMarg{
	margin: auto;
}
.bbwdMTop120{
	margin-top: 120px;
}
.bbwdMTop60{
	margin-top: 60px;
}
.bbwdMBot60{
	margin-bottom: 60px;
}
.homeReviews .elementor-testimonial__header{
	display: none;
}
.homeReviews .elementor-testimonial__text{
	display: grid;
	text-align: center;
}
/*.homeReviews .elementor-testimonial__name:after{
    content: " ";
    height: 2px;
    background: white;
    display: flex;
    width: 20%;
    text-align: center;
    justify-self: center;
    margin-top: 28px;
}*/

/** end custom classes  **/

/****** Site Wide ******/

/*===================================
 *            Modal
 * ================================*/
#bbwdModal{
    position: fixed;
    top: 0;
    z-index: 9999999;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    height: 100vh;
}
#bbwdModInner{
	width: 50%;
    max-width: 50%;
	max-height: 60vh;
	overflow-y: scroll;
    padding: 50px 60px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 5px 10px -3px;
	gap: 20px;
}
#bbwdCloseModal{
    position: absolute;
    top: 50px;
    right: 15%;
}


 /**end modal**/


a:has(.bbwdHeaderTxt){
	display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
	gap: 0;
}
.bbwdHeaderTxt{
	margin-top: -15px;
	color: var(--bbwd-accent-blue) !important;
}

.bbwdModalWrapper h2{
	margin-top: 0 !important;
}
.bbwdModalWrapper a.dialog-close-button.dialog-lightbox-close-button, .bbwdModalWrapper a.dialog-close-button.dialog-lightbox-close-button:has(svg:focus-visible), .bbwdModalWrapper a.dialog-close-button.dialog-lightbox-close-button:focus, .bbwdModalWrapper a.dialog-close-button.dialog-lightbox-close-button:focus-visible, .bbwdModalWrapper .dialog-close-button.dialog-lightbox-close-button svg, .bbwdModalWrapper .dialog-close-button.dialog-lightbox-close-button svg:focus, .bbwdModalWrapper .dialog-close-button.dialog-lightbox-close-button svg:focus-visible, a:-webkit-any-link:focus-visible
, :focus-visible{
	outline: none !important;
	border: none !important;
	outline-offset: none !important;
	outline-color: transparent !important;
}
.bbwdGoldTxt{
	/* Fallback color for browsers that don't support the properties below */
  color: var(--bbwd-gold-1); 
  
  /* Apply the gradient as a background image */
  background-image: linear-gradient(to bottom, var(--bbwd-gold-2), var(--bbwd-gold-1), var(--bbwd-gold-1), var(--bbwd-gold-2));
  
  /* Clip the background to the text */
  background-clip: text;
  -webkit-background-clip: text; /* Webkit prefix for compatibility */
  
  /* Make the text color transparent so the background shows through */
  color: transparent;
  -webkit-text-fill-color: transparent; /* Webkit prefix for compatibility */
  
}

/*===================================
 *        Style Overrides
 * ================================*/
.bbwdHideMe{
	display: none;
}

.bbwdW100{
	width: 100%;
}
.bbwdW50p{
	width: 50%;
}
.bbwdMaxH50px{
	max-height: 50px;
	min-height: 50px;
	height: 50px;
}

