/*===================================
 *              Global
 * 
 * 
 * ================================*/
header .elementor-item-active{
	font-weight: 700 !important;
}
.bpTest{
	min-width: 150px;
	min-height: 150px;
	background: red;
}
html, body{
	scroll-behavior: smooth;
}

#scrollToTopButton{
	opacity: 0;
}

/****** 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;
}
.bbwdSpcBtnCent{
	justify-content: space-between;
	align-items: center;
}
.bbwdSpcArdStch{
	justify-content: space-around;
	align-items: stretch;
}
.bbwdJEnd{
	justify-content: end;
}


.bbwdGrid3{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.bbwdGrow3{
	flex-grow: 3;
}
.bbwdGap10{
	gap: 10px;
}
.bbwdGap20{
	gap: 20px;
}
.bbwdGap50{
	gap: 50px;
}
.bbwdGap100{
	gap: 100px;
}

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

.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;
}

.bbwdBorder100{
	border-radius: 100px;
}
/** 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;
    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**/

/*===================================
 *        Home Page
 * ================================*/
.bbwdIconGrid{
	gap: 80px;
}
.bbwdIconGrid div{
	width: 306px;
	height: 306px;
	border-radius: 306px;
	background: #065D7412;
}

.bbwdIconGrid i{
	font-size: 80px;
	color: black;
}


/*===================================
 *        About Us Page
 * ================================*/
.bbwdAboutGrid .bbwdIconGrid p{
	font-family: Roboto;
	font-size: 24px;
	font-weight: 500;
	line-height: 28px;
	text-align: center;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;	
}

/*===================================
 *        Services Page
 * ================================*/
.bbwdWH130 .elementor-widget-container{
	width: 130px;
	height: 130px;
	border-radius: 130px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	
}
.bbwdWH130 h2{
	font-family: Roboto !important;
	font-size: 96px !important;
	font-weight: 900 !important;
	line-height: 28px !important;
	text-align: left !important;
	text-underline-position: from-font;
	text-decoration-skip-ink: none;
	color: #464646  !important;
}


/*===================================
 *        Contact Page
 * ================================*/

.bbwdContactForm form input{
	padding: 28px 35px !important;
}
.bbwdContactForm form input::placeholder{
	color: black !important;
}
.bbwdContactForm form:before{
	content: 't';
    display: block;
    position: absolute;
    z-index: 1;
    min-width: 50px;
    min-height: 50px;
    background: url(/wp-content/uploads/2025/02/loupe-1.png) no-repeat;
    right: 35px;
    top: 28px;
    color: transparent;
}

@media only screen and (max-width: 1024px) {
	

	.bbwdIconGrid div{
		width: 100%;
		height: 272px;
		border-radius: 306px;
		padding: 35px;
	}
	.bbwdIconGrid div img{
		width: 75px;
	}
}


/*===================================
 *        Mobile Styling
 * ================================*/
@media only screen and (max-width: 767px) {
	
	.bbwdIconGrid{
		grid-template-columns: 1fr;
	}
	.bbwdIconGrid div{
		width: 254px;
        height: 254px;
		border-radius: 306px;
		padding: 35px;
	}
	.bbwdIconGrid div img{
		width: 50px;
	}
}


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

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

