/*
* Description: Custom CSS Additions Go Here
* Template: twentyseventeen
* Version: 1.0
* Author: VDS
*/

/* vars vars vars vars vars vars vars vars vars vars vars vars vars vars  */

:root {
	/* color scheme vars */
	--accent1: #234058;          /* dark blue */
	--accent1_65: #234058A6;     /* accent1 @ 65% opacity */
	--accent2: #ACACAC;          /* cyan */

	--light1: #FFFFFF;           /* white */
	--light1_75: #FFFFFFBF;      /* light1 @ 75% opacity */
	--light1_50: #FFFFFF80;      /* light1 @ 50% opacity */
	--light2: #F5F5F5;           /* lighter grey */
	--light3: #EAEAEA;           /* light grey */

	--dark1: #8C2632;            /* dark grey */
	--dark1_75: #8C2632BF;	     /* dark1 @ 75% opacity */
	--dark2: #212121;            /* black */
	--dark3: #1F0A08;            /* black */

	--uihover: #ACACAC66;        /* cyan (accent2) opacity */

	/*--bluetextshadow: 2px 2px 0 var(--accent1);*/ /* blue text shadow (home h1) */

	/* font family vars */
	--IBMReg: 'Roboto-Bold', sans-serif;
	--MontM: 'Montserrat-Medium', sans-serif;
	--MontSB: 'Montserrat-SemiBold', sans-serif;
	--MontB: 'Montserrat-Bold', sans-serif;
}

/* /vars /vars /vars /vars /vars /vars /vars /vars /vars /vars /vars  */

/* quick vars quick vars quick vars quick vars quick vars quick vars  */

html { scroll-behavior: smooth; }
.height-auto { height: auto !important; }
.bakery ol {
    padding-left: 32px;
    margin-bottom: 15px;
}

body #content .wpb_row.dark2 h2 a,
body #content .wpb_row.dark2 p,
body #content .wpb_row.dark2 p a:not(a.btn-bt),
body #content .wpb_row.dark2 li,
body #content .wpb_row.dark2 li a,
body #content .wpb_row.accent1 p a:not(.btn-bt),
body #content .wpb_row.accent1 h3 a {
	color: var(--light1);
}
body #content .wpb_row.dark2 h2 a:hover,
body #content .wpb_row.dark2 p a:not(a.btn-bt):hover,
body #content .wpb_row.dark2 li a:hover,
body #content .wpb_row.accent1 p a:not(a.btn-bt):hover,
body #content .wpb_row.accent1 h3 a:hover {
	color: var(--accent2);
}

@media (min-width: 980px) {
	.vertical-align {
		align-items: center;
		display: flex;
	}
	.bakery .align-top .vc_inner,
	.bakery .align-top {
		align-items: start;
	}
}

/* /quick vars /quick vars /quick vars /quick vars /quick vars /quic  */

/* Megamenu */

@media (min-width: 980px) {
	/* FOR ALWAYS SHOWING WHILE UNDER DEV */
	li.megamenu > .sub-menu {
/*	    display: block !important;*/
	}
	/* HIDE THE PLACEHOLDER SUB MENUS (THEY ARE ONLY THERE SO WE GET THE DROPDOWN ARROW ICON) */
	li.has-sub-placeholder:hover > ul.sub-menu,
	li.has-sub-placeholder > ul.sub-menu {
		display: none !important;
	}
	/* REMOVE ALL THE NAV RELATIVE POSITIONING SO WE CAN BREAK THE MEGAMENU <li> OUTSIDE OF THE NORMAL NAV BOUNDS */
	.navigation-top,
	.nav-and-button,
	nav#site-navigation,
	.primary-menu-container,
	ul#top-menu {
	    position: unset !important;
	}
	/* BREAK THE MEGANENU <li> OUT OF THE NAV AND MAKE IT FULL WIDTH */
	nav ul li.megamenu {
	    position: absolute !important;
	    width: 100% !important;
/* 	    top: 92px !important; */
	    left: 0 !important;
	    z-index: 0;
	}
	/* MAKE THE MEGA SUB MENUS 100% LIKE THE <li> (defaults to a theme option value) */
	li.megamenu > .sub-menu {
	    width: 100% !important;
	}
	/* PUT THE OTHER NAV ITEMS ON TOP OF THE HIDDEN MEGAMENU <li> */
	nav ul li {
		z-index: 1;
	}
	nav ul li:not(.megamenu):not(.mega-trigger).btn-bt {
		z-index: 999;
	}
	.header-button a {
        z-index: 99999;
    }
	/* HIDE MEGAMENU TEXT */
	li.megamenu > a {
	    visibility: hidden;
	}
	/* ADD Z-INDEX BACK TO MEGA MENU SO LINKS ARE CLICKABLE WHEN CLICK THE OTHERS TO DISPLAY IT */
	nav ul li.megamenu.re-index {
	    z-index: 1 !important;
	}
	/* PUT LOGO BACK ON TOP SO IT IS CLICKABLE */
	div.logo {
		z-index: 9999;
	}
	/* TUNNEL VISION LIST STYLES */
	li.megamenu > ul.sub-menu {
	    padding: 60px 2% !important;
	    display: flex !important;
	    opacity: 0;
	}
	li.megamenu.re-index > ul.sub-menu {
	    display: flex !important;
	    opacity: 1;
	}
	li.megamenu > ul.sub-menu li.menu-item-has-children::after {
		display: none;
	}
	li.megamenu > ul.sub-menu li > ul.sub-menu {
		display: block !important;
		margin-left: 0 !important;
		width: 100% !important;
		position: relative;
		left: 0 !important;
	}
	.top-header.left-right-header nav.hide-small-desktop li.megamenu ul.sub-menu > li:first-child > a {
		padding-top: 0 !important;
	}
	.top-header.left-right-header nav.hide-small-desktop li.megamenu > ul.sub-menu li > ul.sub-menu li a {
		width: max-content !important;
		padding-bottom: 0 !important;
		padding-right: 0 !important;
		padding-left: 0 !important;
		padding-top: 0 !important;
	}
	.top-header.left-right-header nav.hide-small-desktop li.megamenu > ul.sub-menu li > ul.sub-menu li {
		margin-bottom: 20px;
	}
	li.megamenu ul.sub-menu li ul.sub-menu li.menu-item-has-children::after {
		display: none !important;
	}
	li.megamenu ul.sub-menu li ul.sub-menu li ul.sub-menu {
		display: none !important;
	}
	ul#top-menu li.megamenu li.mega-heading > a {
		border-bottom: 2px solid var(--accent1);
        padding-left: 0 !important;
        text-transform: initial;
        color: var(--dark1);
        font-weight: 700;
        font-size: 20px;
	}
	ul#top-menu li.megamenu li.mega-heading > ul.sub-menu {
		margin-top: 8px;
	}
	.top-header.left-right-header nav.hide-small-desktop ul.sub-menu li.mega-heading > a,
	.top-header.left-right-header nav.hide-small-desktop ul.sub-menu li.mega-heading:first-child > a  {
	     padding-top: 0 !important;
	}
	body .top-header.left-right-header nav.hide-small-desktop li.megamenu > ul.sub-menu li.mega-heading > a {
		padding-bottom: 14px !important;

	}
	ul#top-menu li.megamenu ul.sub-menu li ul.sub-menu li a {
        padding-bottom: 0px !important;
        padding-left: 0px !important;
		padding-top: 7px !important;
		font-family: var(--RHDMed);
        line-height: 20px;
        text-transform: none;
        font-size: 14px;
	}
	li.megamenu > ul.sub-menu li.fourth {
		width: 25%;
	}
	li.megamenu > ul.sub-menu li.half {
		width: 50%;
	}
	li.megamenu > ul.sub-menu li.two-col ul.sub-menu {
		column-count: 2;
		display: flex;
	}
	li.megamenu > ul.sub-menu > li:nth-child(1) {
		margin-right: 2.5%;
/* 		margin-top: -8px; */
	}
	li.megamenu > ul.sub-menu > li:nth-child(2) {
		margin-right: 1.25%;
		margin-left: 1.25%;
		margin-top: -4px;
	}
	li.megamenu > ul.sub-menu > li:nth-child(3) {
		margin-left: 2.5%;
		margin-top: -4px;
	}
	li.megamenu > ul.sub-menu > li:nth-child(3) {
		margin-right: 2.5%;
	}
	li.megamenu > ul.sub-menu > li:nth-child(4) {
		margin-right: 2.5%;
	}
	li.megamenu > ul.sub-menu li ul.sub-menu {
		background: transparent !important;
	}
	li.megamenu ul.sub-menu li.no-link > a {
		pointer-events: none;
	}
	li.megamenu > ul.sub-menu li ul.sub-menu li a {
		color: var(--dark2) !important;
	}
	li.megamenu > ul.sub-menu li ul.sub-menu li a:hover {
		color: var(--accent1) !important;
	}
	nav ul#top-menu li:not(.megamenu) ul.sub-menu {
	    background: var(--dark1);
	}
	nav ul#top-menu li:not(.megamenu) ul.sub-menu li a {
	    color: var(--light1);
	}
	nav ul#top-menu li:not(.megamenu) ul.sub-menu li a:hover {
	    color: var(--accent2);
	}
	li.special {
    	border-bottom: 0px solid var(--accent1) !important;
    	color: var(--dark1) !important;
    	margin-top: 22px !important;
    	padding-left: 0 !important;
    	font-size: 20px !important;
    	text-transform: initial;
    	width: 100% !important;
    	font-weight: 700;
	}
	ul#top-menu li.megamenu ul.sub-menu li ul.sub-menu li.special a {
		padding-bottom: 10px !important;
    	color: var(--dark1) !important;
    	line-height: 20px !important;
    	font-size: 20px !important;
	}
	ul#top-menu li.megamenu ul.sub-menu li ul.sub-menu li.btn-bt.default a {
        color: var(--light1) !important;
        padding: 10px 5px !important;
		text-transform: uppercase;
        border: 2px solid #8c2632;
		background: #8c2632;
        text-align: center;
        border-radius: 5px;
        line-height: 20px;
        font-weight: 700;
        margin-top: 30px;
        font-size: 14px;
        width: 200px;
        padding: 3px;
	}
	ul#top-menu li.megamenu ul.sub-menu li ul.sub-menu li.btn-bt.default a:hover {
		border: 2px solid #234058;
		background: #7B8C9B;
	}
		ul#top-menu li.megamenu ul.sub-menu li ul.sub-menu li.btn-bt.alternate a {
        color: var(--dark1) !important;
        padding: 10px 5px !important;
		text-transform: uppercase;
        border: 2px solid #234058;
		background: #ffffff;
        border-radius: 5px;
        text-align: center;
        line-height: 20px;
        font-weight: 700;
        margin-top: 30px;
        font-size: 14px;
        padding: 3px;
        width: 200px;
	}
	ul#top-menu li.megamenu ul.sub-menu li ul.sub-menu li.btn-bt.alternate a:hover {
		color: var(--light1) !important;
		border: 2px solid #234058;
		background: #234058;
	}
	.desktop-only{ 
		display: block !important;
	}
	.mobile-only {
		display: none !important;
	}
	ul#top-menu {
    	align-items: center;
	}
	 ul#top-menu li.btn-bt.alternate.main a {
        color: var(--dark1) !important;
        padding: 5px 5px !important;
        border: 2px solid #234058;
		background: #ffffff;
        border-radius: 5px;
        text-align: center;
        line-height: 20px;
        font-weight: 700;
        font-size: 14px;
        width: 200px;
        padding: 3px;
	}
	ul#top-menu li.btn-bt.alternate.main a:hover {
		color: var(--light1) !important;
		border: 2px solid #234058;
		background: #234058;
	}
	ul#top-menu li.btn-bt.alternate.main ul.sub-menu li a {
    	text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0);
		font-family: Roboto-Bold, sans-serif;
    	padding: 10px 20px !important;
    	text-transform: uppercase;
    	color: #ffffff !important;
    	background: transparent;
    	letter-spacing: 1px;
    	line-height: 14px;
    	text-align: left;
    	font-weight: 400;
    	font-size: 14px;
    	border: none;
    	width: auto;
	}
	.site-content {
    	position: relative;
		margin-top: 0;
		z-index: 1;
	}
	.site-content.re-index {
    	position: relative;
    	z-index: 0;
	}
	ul#top-menu ul.sub-menu {
		margin-top: 10px;
	}
}

@media (max-width: 979px) {
	li.megamenu > a,
	li.megamenu > button.sub-menu-toggle {
		display: none;
	}
	li.megamenu > ul.sub-menu {
		padding-left: 0 !important;
		display: block !important;
	}
	ul#top-menu.mobile-menu > li.megamenu > ul.sub-menu li:not(:last-child) {
	    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	}
/* 	ul#top-menu.mobile-menu > li.megamenu > ul.sub-menu li:last-child {
		padding-bottom: 0;
	} */
	.desktop-only{ 
		display: none !important;
	}
	.mobile-only {
		display: block !important;
	}
	.main-navigation.display-small-desktop ul {
    	background-color: #ffffff;
	}
	ul#left-menu li a, ul#right-menu li a, nav ul#top-menu li a {
		text-transform: capitalize;
	}
	.top-header .main-navigation ul#top-menu li.mega-heading.fourth a,
	.top-header .main-navigation ul#top-menu li a {
		color: var(--dark1);
        font-weight: 700;
		font-size: 20px;
	}
	.top-header .main-navigation ul#top-menu li.mega-heading.fourth ul.sub-menu li a,
	.top-header .main-navigation ul#top-menu ul.sub-menu li a{
		color: var(--dark3);
        font-weight: 400;
		font-size: 14px;
	}
	.top-header .main-navigation ul#top-menu li.mega-heading.fourth ul.sub-menu li,
	.top-header .main-navigation ul#top-menu ul.sub-menu li {
		padding: 0px 0px;
		
	}
	.top-header .main-navigation ul#top-menu li.mega-heading.fourth {
		border-bottom: 2px solid #000000 !important;
		padding: 16px 0;
	}
	.top-header .main-navigation ul#top-menu li.mega-heading.fourth ul.sub-menu,
	.top-header .main-navigation ul#top-menu ul.sub-menu{
		padding: 0px;
	}
	.two-buttons.mobile-only {
    	background-color: var(--accent1);
    	text-align: center;
        position: relative;
		z-index: 9999;
    	padding: 15px 0px;
	}
	ul#top-menu {
        margin-top: 53px;
    }
}

/* END Megamenu */

/* General */

@media (max-width: 480px) {
	body .form-field.wpmtst-submit label,
	body .form-field.wpmtst-submit label input {
		width: 100%;
	}
	/*.bakery a.btn-bt {
		width: 100%;
	}*/
	body .bakery.review-us input#wpmtst_submit_testimonial {
		letter-spacing: 1px;
		padding: 10px 16px;
	}
}

body input#wpmtst_submit_testimonial {
	text-transform: uppercase !important;
    font-family: var(--MontSB);
	text-decoration: none;
    display: inline-block;
    text-transform: none;
    letter-spacing: 3px;
    border-radius: 0px;
    text-align: center;
    padding: 14px 28px;
    line-height: 26px;
    font-size: 16px;
	border: none;
}
body input#wpmtst_submit_testimonial:hover {
	border: none;
}
body #content input.hs-button.primary.large {
	font-family: 'Roboto-Medium';
	border-radius: 5px;
	font-weight: 700;
	margin-top: 20px;
}
body input#wpmtst_submit_testimonial,
body .gform_footer input[type="submit"]:not(:hover):not(:active):not(.has-background),
body #content input.hs-button.primary.large {
	text-transform: uppercase !important;
	transition: all 0.3s ease-in-out;
    background-color: var(--dark1);
	border: 2px solid var(--dark1);
    color: var(--light1);
    font-size: 16px;
}
body input#wpmtst_submit_testimonial:hover,
body .gform_footer input[type="submit"]:hover,
body #content input.hs-button.primary.large:hover{
	text-transform: uppercase !important;
    background-color: var(--accent1);
    transition: all 0.3s ease-in-out;
	border: 2px solid var(--accent1);
    color: var(--light1);
    font-size: 16px;
}
body #content .wpb_row.dark1 a:not(.btn-bt) {
	transition: all 0.3s ease-in-out;
	color: var(--light1);
}
body #content .wpb_row.dark1:not(.keep-link-underlines) a:not(.btn-bt) {
	text-decoration: none;
}
body #content .wpb_row.dark1 a:not(.btn-bt):hover {
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	color: var(--accent2);
}
body #content a.unstyled-link {
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	color: var(--dark3);
}
body #content a.unstyled-link:hover {
	transition: all 0.3s ease-in-out;
	color: var(--accent2);
}
body .tt-none { text-transform: none; }
a.btn-bt, body input#wpmtst_submit_testimonial { min-width: 200px; }

.wpb_row.dark1 h2, .wpb_row.dark1 h3, .wpb_row.dark1 h4, .wpb_row.dark1 h5, .wpb_row.dark1 h6,
.wpb_row.dark2 h2, .wpb_row.dark2 h3, .wpb_row.dark2 h4, .wpb_row.dark2 h5, .wpb_row.dark2 h6,
.wpb_row.dark3 h2, .wpb_row.dark3 h3, .wpb_row.dark3 h4, .wpb_row.dark3 h5, .wpb_row.dark3 h6,
.wpb_row.dark1 p,  .wpb_row.dark2 p,  .wpb_row.dark3 p {
	color: var(--light1);
}
body h1 {
    text-transform: uppercase;
	color: var(--light1);
	font-weight: 700;
}
body .wpb_row:not(.fifty-fifty):not(.cta-row) h2 {
    margin-bottom: 20px;
}
body .wpb_row:not(.fifty-fifty) h3 {
    margin-bottom: 20px;
}
body .wpb_row:not(.fifty-fifty):not(.cta-row):not(.bottom-cta) .vc_col-sm-12 a.btn-bt {
	margin-top: 14px;
}
body .bakery .vc_section {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}
body .top-header.top-bottom-header .logo {
    padding: 40px 0px 0px 0px;
}
body .site-branding {
    margin-top: 0;
}
body .top-header.top-bottom-header .navigation-top {
	background-color: var(--light3);
	max-width: none;
}
body .top-header.top-bottom-header .nav-and-button {
    border-top: none;
    margin: 0 auto;
}

@media (min-width: 980px) {
	/* removes the desktop subnav dropdown icon */
	body nav#site-navigation.hide-small-desktop li.menu-item-has-children a {
    	padding-right: 0;
	}
	body nav#site-navigation.hide-small-desktop li.menu-item-has-children a::after {
		display: none;
	}
	/* /removes the desktop subnav dropdown icon */
	/* this moves the top level nav items down slightly - they were exact center, but visually don't look like it. */
	body nav#site-navigation.hide-small-desktop ul:not(.sub-menu) li a {
		position: relative;
		top: 2px;
	}
	body nav#site-navigation.hide-small-desktop ul.sub-menu li a {
		top: 0;
	}
	/* /this moves the top level nav items down slightly - they were exact center, but visually don't look like it. */
}

@media (max-width: 979px) {
	body .top-header {
	    height: 120px;
	}
	body .top-bottom-header .container {
	    justify-content: space-between;
	    flex-direction: row;
	    width: 95%;
	}
	body .top-header .logo {
		width: auto;
	}
	body .top-header.top-bottom-header .navigation-top {
	    background-color: unset;
    	margin: unset;
    	width: auto;
	}
	body .top-header.top-bottom-header .nav-and-button {
	    padding: 0;
	}
	nav#mobile-site-navigation {
	    position: absolute;
	    z-index: 99999;
	    top: 160px;
	}
	body .top-widget .span6.left {
	    width: 100%;
	}
	body .top-widget .span6.right {
	    display: none;
	}
	.buy-and-hold-loans .text-col.wpb_column.vc_column_container.vc_col-sm-6 {
    margin-bottom: 30px;
	}
	.commercial-bridge-loans .text-col.wpb_column.vc_column_container.vc_col-sm-6 {
    margin-bottom: 30px;
	}
	.home-construction-loans .text-col.wpb_column.vc_column_container.vc_col-sm-6 {
    margin-bottom: 30px;
	}

}

@media (min-width: 481px) {
	.no-bb {
		border-bottom: none !important;
	}
}

@media (max-width: 480px) {
	body .top-header .logo .site-branding a img {
	    height: 80px;
	}
	.no-bb-mobile {
		border-bottom: none !important;
	}
}

body .top-header.top-bottom-header nav.hide-small-desktop #top-menu li {
    padding: 9px;
}
body .top-header.top-bottom-header #top-menu:not(.mobile-menu) li:last-child {
    margin-right: 0;
}
nav#site-navigation ul.sub-menu {
    background: var(--light1);
}
.top-widget .textwidget {
    align-items: center;
    display: flex;
}

/* back to top */
body a.topbutton i.icon-up-circled2:before {
    transition: all 0.3s ease-in-out;
    background-color: var(--dark3);
    color: var(--light1);
    border-radius: 50px;
}
body a.topbutton:hover i.icon-up-circled2:before {
    transition: all 0.3s ease-in-out;
    background-color: var(--accent1);
    color: var(--light1);
}
/* /back to top */

/* top widget phone icon button */
.top-widget p.twa-phone {
	font-family: var(--IBMReg);
/* 	text-transform: uppercase; */
	color: var(--light1);
    text-align: left;
	font-weight: 500;
    margin-right: 0;
	margin-left: 1%;
	font-size: 12px;
	
}
body .top-widget p.twa-phone a:link {
	font-family: var(--IBMReg);
	text-decoration: none;
	color: var(--light1);
	
}
body .top-widget p.twa-phone a:link:hover {
	opacity: 0.60;
}
.top-widget p.twa-phone a.icon-btn {
    text-decoration: none;
    align-items: center;
    display: flex;
    height: 40px;
}
a.icon-btn i.icon-btn-icon {
	transition: all 0.3s ease-in-out;
    background: var(--light1);
    align-items: center;
    padding: 0 3.21px;
    display: flex;
    height: 100%;
}
a.icon-btn:hover i.icon-btn-icon {
	transition: all 0.3s ease-in-out;
	background: var(--accent1);
}
a.icon-btn i::before {
    transition: all 0.3s ease-in-out;
    color: var(--dark3);
    font-size: 24px;
}
a.icon-btn:hover i::before {
    transition: all 0.3s ease-in-out;
    color: var(--light1);
}
a.icon-btn span.icon-btn-text {
    transition: all 0.3s ease-in-out;
    font-family: var(--MontB);
    letter-spacing: 1px;
    align-items: center;
    padding: 0 0 0 8px;
	font-weight: 700;
    font-size: 12px;
    display: flex;
    height: 100%;
    color: #FFF;
}
/* /top widget phone icon button */

/* top widget contact button */
.two-buttons {
    display: flex;
}
body input#wpmtst_submit_testimonial,
a.twa-btn.btn-bt.alternate{
	border: 2px solid #234058;
    background: var(--light1);
    color: var(--dark1);
    border-radius: 5px;
    font-weight: 700;
	min-width: 130px;
    padding: 3px;
}
a.twa-btn.btn-bt.alternate.first {
    margin-right: 5px;
}
body input#wpmtst_submit_testimonial:hover,
a.twa-btn.btn-bt.alternate:hover{
	background: var(--accent1);
	color: var(--light1);
}

/* /top widget contact button */

/* global floating elements */
a.topbutton {
    bottom: 175px;
    right: 17px;
}
.grecaptcha-badge {
    bottom: 100px !important;
}
/* /global floating elements */

/* square socials */
.top-widget .span6.right .textwidget {
    justify-content: flex-end;
}
body .top-widget ul.social.top-widget-socials {
	margin-right: 3px;
}
ul.social.top-widget-socials {
    flex-direction: row;
    align-items: center;
    line-height: unset;
    font-size: unset;
    display: flex;
    height: 40px;
    padding: 0;
}
ul.social.top-widget-socials li {
    line-height: unset;
    margin-right: 3px;
    font-size: unset;
    height: 40px;
}
ul.social.top-widget-socials li a {
    text-decoration: none;
    line-height: unset;
    font-size: unset;
    display: flex;
    height: 40px;
}
body .top-widget ul.social.top-widget-socials li a i,
body .row.copyright ul.social.top-widget-socials li a i {
    background: var(--light1);
    justify-content: center;
    color: var(--accent1);
    align-items: center;
    padding: 0 3.21px;
    line-height: 24px;
    font-size: 24px;
    display: flex;
    height: 40px;
}
body .top-widget ul.social.top-widget-socials li a i:hover,
body .row.copyright ul.social.top-widget-socials li a i:hover {
    transition: all 0.3s ease-in-out;
    background: var(--accent1);
    color: var(--light1);
}
/* /square socials */

/* footer */
body footer#footer {
    padding: 60px 0;
}

@media(min-width: 980px) {
	footer#footer h5 {
		margin-bottom: 20px;
	}
	h5.address-icon,
	h5.phone-icon,
	h5.hours-icon {
		position: relative;
		padding-left: 43px;
	}
	h5.address-icon:before,
	h5.phone-icon:before,
	h5.hours-icon:before {
		background: var(--accent2);
		justify-content: center;
		font-family: 'Fontello';
		color: var(--light1);
		align-items: center;
		position: absolute;
		padding-left: 4px;
		font-size: 20px;
		display: flex;
		height: 30px;
		width: 30px;
		top: -5.5px;
		left: 0;
	}
	h5.address-icon:before { content: '\e81d'; } /* icon-location */
	h5.phone-icon:before   { content: '\e823'; } /* icon-phone */
	h5.hours-icon:before   { content: '\e83e'; } /* icon-clock */
}

body footer#footer p,
body footer#footer a {
	text-decoration: none;
	font-size: 14px;
}
footer#footer a,
footer#footer h5 {
	color: var(--dark1);
}
footer#footer p.small.links a {
    color: #000000;
}
img.aligncenter.size-medium.wp-image-2837 {
    width: 250px;
}
img.aligncenter.size-medium.wp-image-2845 {
    width: 200px;
}
footer#footer p.small {
    margin-bottom: 20px;
}

footer#footer a.btn-bt.default {
    transition: all 0.3s ease-in-out;
    border: 2px solid #234058;
    background: #ffffff;
    font-weight: 700;
	font-size: 16px;
    color: #8c2632;
}
footer#footer a.btn-bt.default:hover {
    transition: all 0.3s ease-in-out;
    border: 2px solid #234058;
    background: #234058;
    color: #ffffff;
}

@media (min-width:980px) {
/* .footer-address {
    display: flex;
    justify-content: space-between;
}
.vc_col-sm-4.span4.footer-mid {
    width: 50%;
	padding: 0px 60px;
}
.vc_col-sm-4.span4.footer-right,
.vc_col-sm-4.span4.footer-left{
    width: 25%;
} */
	.vc_col-sm-3.span3.footer-col-3 {
    	margin-top: 40px;
	}
}

@media (max-width: 979px) {
	body footer#footer {
	    text-align: center;
	    padding: 32px 0;
	}
	.vc_col-sm-3.span3.footer-col-1 {
	    margin-bottom: 24px;
	}
	.vc_col-sm-3.span3.footer-col-2,
	.vc_col-sm-3.span3.footer-col-3 {
	    margin-bottom: 10px;
		}
	.vc_col-sm-3.span3.footer-col-4 {
		margin-bottom: 0;
	}
}
/* /footer */

/* copyright */
.row.copyright {
    padding: 0;
}

@media (min-width: 1251px) {
	.copyright-text.span6.left-three-column {
	    padding-left: 2.5%;
	}
}

body p#copyright-p {
    font-size: 12px;
}
body .menu-copyright-menu-container ul#menu-copyright-menu {
}
body .menu-copyright-menu-container ul#menu-copyright-menu {
	justify-content: space-between;
	margin: 0 auto !important;
	max-width: 500px;
    padding: 0;
}
body .menu-copyright-menu-container ul#menu-copyright-menu li a {
    text-transform: uppercase;
    font-family: var(--MontM);
    text-decoration: none;
    font-size: 14px;
}

@media (max-width: 1250px) {
	body .row.copyright {
		padding:  28px 0;
	}
	.copyright .container {
	    flex-direction: column;
	    max-width: 95%;
	}
	.row.copyright .span6,
	.row.copyright .copyright-content.span6.right-three-column {
	    justify-content: center;
	    float: none !important;
	    width: 100% !important;
	    align-items: center;
		display: flex;
	}
	.row.copyright .span6.left-three-column {
	    margin-bottom: 14px;
	}
	.row.copyright .span6.middle-three-column {
	    margin-bottom: 24px;
	}
	body .menu-copyright-menu-container ul#menu-copyright-menu {
	    flex-direction: column;
	    max-width: unset;
	}
	body .menu-copyright-menu-container ul#menu-copyright-menu li {
	    line-height: 28px;
	    padding: 0;
	}
	body .menu-copyright-menu-container ul#menu-copyright-menu li a {
	    font-size: 16px;
	}
}
/* /copyright */

/* testimonial carousel */
.bakery .testimonials-opacity .container {
	background-color: rgba(255, 255, 255, 0.90);
	padding: 0px 2% 40px 2%;
	border-radius: 0px;
}
body .strong-view.wpmtst-simple .wpmtst-testimonial-inner {
	padding: 0;
}
body.home .testimonials h4 {
	font-family: var(--MontSB); /* Montserrat-SemiBold */
	background-color: var(--accent1); /* black */
	color: var(--light1); /* white */
	text-transform: capitalize;
	position: relative;
	line-height: 18px;
	border-radius: 0;
	max-width: 550px;
	padding: 18px 1%;
	font-size: 18px;
	margin: 0 auto;
	top: -27px;
}
body .strong-view.wpmtst-simple h3.wpmtst-testimonial-heading.testimonial-heading {
    margin-bottom: 20px !important;
    letter-spacing: 0.5px;
    text-transform: none;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
}
body .wpmtst-testimonial-content.testimonial-content {
    max-width: 550px;
    margin: 0 auto;
}
body .wpmtst-testimonial-content.testimonial-content p {
    text-align: center;
    font-style: italic;
    font-size: 14px;
}
body .wpmtst-testimonial-field.testimonial-field {
	text-align: center;
	font-weight: 700;
    margin-top: 20px;
	font-size: 14px;
}

@media (min-width: 980px) {
	.testimonials-opacity p em {
	    max-width: 370px;
	    display: block;
	}
}
body .strong-view.controls-style-buttons:not(.rtl) .wpmslider-prev:before,
body .strong-view.controls-style-buttons:not(.rtl) .wpmslider-next:before {
	transition: all 0.3s ease-in-out;
	background: var(--accent1);
	font-size: 40px;
	height: 50px;
	width: 50px;
}
body .strong-view.controls-style-buttons:not(.rtl) .wpmslider-next:before {
	left: -24px;
}
body .strong-view.controls-style-buttons:not(.rtl) .wpmslider-prev:hover:before,
body .strong-view.controls-style-buttons:not(.rtl) .wpmslider-next:hover:before {
	transition: all 0.3s ease-in-out;
	background: var(--accent2);
}

/* /testimonial carousel */

/* home hero */
	.home-hero {
		height: 925px;
	}
.home-hero h1 {
	text-shadow: 1px 1px 11px rgba(0, 0, 0, 0.8);
	margin-bottom: 24px;
}
#background-video {
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: -1;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}

.home-hero .container {
	height: 100%;
}

.home-hero .wpb_column.vc_column_container.vc_col-sm-12 {
	align-items: center;
	display: flex;
	height: 100%;
}

@media (max-width: 979px) {
    body .home-hero {
        padding-bottom: 0px !important;
        height: 500px;
    }
}

/* /home hero */

/* home promos */
.home-promos img {
    max-height: 85px;
    width: auto;
}
.home-promos h3 {
	margin-bottom: 12px;
	color: var(--dark1);
	margin-top: 25px;
}
.bakery .home-promos .wpb_text_column p:not(:first-child):not(:last-child) {
	margin-bottom: 20px;
	font-size: 14px;
}
.bakery .wpb_row.pdf-promos {
	padding: 70px 0 100px 0;
}
.pdf-promos .home-promos.vc_inner {
	align-items: start;
}
.pdf-promos .container {
	max-width: unset;
	width: 87%;
}
.home-promos h3 a {
    text-decoration: none;
}
body #content .pdf-promos h3 {
	font-family: var(--IBMReg);
    letter-spacing: 2px;
    margin-right: auto;
	margin-left: auto;
    line-height: 29px;
    margin-top: 14px;
	max-width: 280px;
    font-size: 25px;
}
.pdf-promos h2 {
	font-family: var(--MontB);
	line-height: 52px;
	font-size: 48px;
}
p.large {
	font-family: var(--IBMReg);
    line-height: 34px;
	font-weight: 700;
    font-size: 24px;
}
.pdf-promos h2,
.pdf-promos p.large {
	color: var(--dark2);
}

@media (min-width: 980px) {
	.home-promos .wpb_column:nth-child(1) {
		margin-right: 1%;
		width: 32%;
	}
	.home-promos .wpb_column:nth-child(2) {
		margin: 0 0.5%;
		width: 32%;
	}
	.home-promos .wpb_column:nth-child(3) {
		margin-left: 1%;
		width: 32%;
	}
	.home-promos .wpb_column .wpb_content_element .wpb_wrapper {
		max-width: 320px;
		margin: 0 auto;
	}
	.wpb_row:not(.align-top) .home-promos .wpb_text_column.wpb_content_element.mb0-desktop {
    	min-height: 330px;
	}
	.home-promos a.btn-bt.default.middle {
		margin-top: 64px !important;
	}
	.home-promos a.btn-bt.default.right {
		margin-top: 36px !important;
	}
	.new-fifty-fifty .container {
    	max-width: 90%;
    	align-items: center;
	}
	p.middle-link {
		margin-top: 41px;
	}
	.pdf-promos .home-promos.vc_inner .wpb_column .wpb_content_element .wpb_wrapper {
		max-width: unset;
	}
	.pdf-promos .home-promos.vc_inner .wpb_text_column.wpb_content_element.mb0-desktop {
    	min-height: unset;
	}
	.pdf-promos .vc_inner .wpb_column:nth-child(1) {
		margin-right: 1%;
		width: 25%;
	}
	.pdf-promos .vc_inner .wpb_column:nth-child(2),
	.pdf-promos .vc_inner .wpb_column:nth-child(3) {
		margin-left: 0 0.5%;
		width: 25%;
	}
	.pdf-promos .vc_inner .wpb_column:nth-child(4) {
		margin-left: 1%;
		width: 25%;
	}
}

@media (max-width: 979px) {
	.vc_row.wpb_row.home-promos-outer.light1.steps {
    	padding-bottom: 10px !important;
	}
}
/* /home promos */

/* fullwidth blurb */
.fw-blurb h2 {
	margin-bottom: 14px;
}
.vc_row.wpb_row.fw-blurb {
	background-position: center !important;
}
/* /fullwidth blurb */

/* cta row */
.bakery .cta-row {
    padding: 25px 0;
}
.bakery .cta-row .container .wpb_content_element .wpb_wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
}
.bakery .cta-row h2 {
	margin-right: 32px;
	color: var(--light1)
}
.bakery .cta-row h3 {
	color: var(--light1);
}
.cta-row.accent1.loan-rate .container {
    max-width: 100%;
}

@media (min-width: 980px) {
	.bakery .cta-row h3 {
		margin-bottom: 0px !important;
		margin-right: 30px;
    	margin-left: 20px;
	}
	.cta-row.accent1.loan-rate {
    	padding: 0px;
    	padding-top: 15px;
	}
}

@media (max-width: 979px) {
	.bakery .cta-row .container .wpb_content_element .wpb_wrapper {
	    flex-direction: column;
	    text-align: center;
	}
	.bakery .cta-row h2 {
		margin-bottom: 16px;
		margin-right: 0;
	}
	.bakery .cta-row p {
		width: 100%;
	}
	img.alignnone.size-thumbnail.wp-image-2844 {
		display: none;
	}
}
/* cta row */

/* fifty fifty */
.bakery .fifty-fifty {
	padding: 0;
}
.bakery .fifty-fifty .container {
	justify-content: center;
	max-width: none;
	display: flex;
	width: 100%;
}
.fifty-fifty .image-col .vc_column-inner {
	background-position: center top !important;
	height: 100%;
	padding: 0;
}
.bakery .fifty-fifty .text-col {
	padding: 0;
}
.fifty-fifty .text-col .vc_column-inner {
    max-width: 550px;
	padding: 60px 0;
    margin: 0 auto;
    width: 95%;
}
.fifty-fifty h2 {
	margin-bottom: 12px;
}
.fifty-fifty h3 {
	margin-bottom: 16px;
}
.fifty-fifty h4 {
	margin-bottom: 10px;
	font-weight: normal;
}
.fifty-fifty a.btn-bt {
    margin-top: 12px;
}
.vc_row.wpb_row.new-fifty-fifty.flip-mobile.accent1,
.vc_row.wpb_row.new-fifty-fifty.accent1,
.vc_row.wpb_row.new-fifty-fifty.dark1 ul li,
.vc_row.wpb_row.new-fifty-fifty.flip-mobile.dark1 ul li,
.vc_row.wpb_row.accent1.btm-cta {
    color: var(--light1);
}
.vc_row.wpb_row.accent1.btm-cta h3 {
    text-transform: none;
    line-height: 30px;
    font-size: 25px;
}
@media (min-width: 980px) {
	.vc_row.wpb_row.accent1.btm-cta {
    	height: 300px;
	}
}
/* this is for the inner row side=by-side image collage */
body .fifty-fifty .text-col .vc_column-inner .vc_column-inner {
    width: 100%;
    padding: 0;
    margin: 0 ;
}

@media (min-width: 980px) {
	body .fifty-fifty .text-col .vc_column-inner .wpb_row.vc_inner .vc_col-sm-6:not(.vc_col-has-fill):nth-child(1) {
		padding-right: 2%;
	}
	body .fifty-fifty .text-col .vc_column-inner .wpb_row.vc_inner .vc_col-sm-6:not(.vc_col-has-fill):nth-child(2) {
		padding-left: 2%;
	}
}

@media (min-width: 980px) {
	.bakery .fifty-fifty .text-col.vc_col-sm-6:not(.vc_col-has-fill):nth-child(2),
	.bakery .fifty-fifty .text-col.vc_col-sm-6:not(.vc_col-has-fill):nth-child(1) {
	    justify-content: center;
	    align-items: center;
	    display: flex;
	    padding: 0;
	}
}

@media (max-width: 979px) {
	.fifty-fifty .container {
		flex-direction: column;
	}
	.fifty-fifty.reverse .container {
		flex-direction: column-reverse;
	}
	.fifty-fifty .image-col {
	    height: 650px;
	}
	.fifty-fifty .text-col .vc_column-inner {
	    max-width: unset;
	    padding: 40px 0;
	    width: 90%;
	}
	.fifty-fifty .fake-collage img {
	    width: 100%;
	}
	.fifty-fifty .fake-collage .wpb_row.vc_inner {
	    justify-content: space-between;
	    display: flex;
	}
	.fifty-fifty .fake-collage .wpb_row.vc_inner .wpb_column {
	    max-width: 48.7%;
	}
	body:not(#single-location):not(.home) .bakery:not(.locations) .fifty-fifty.light1 .text-col:not(:last-child):not(.contact-nap-col) .vc_column-inner {
		padding-bottom: 0;
	}
	.bakery.our-team .fifty-fifty.light1 .text-col:last-child .vc_column-inner {
		padding-bottom: 0;
	}
	.new-fifty-fifty.flip-mobile {
/*     	padding-bottom: 0px !important; */
	}
	.new-fifty-fifty {
    	padding: 0px !important;
	}
	.new-fifty-fifty.flip-mobile .container {
    	flex-direction: column-reverse;
    	display: flex;
	}
	.vc_row.wpb_row.fw-blurb.light1 a.btn-bt.default {
		display:block;
	}
	.new-fifty-fifty a.btn-bt.default {
		display: block;
	}
	.wpb_row.fifty-fifty.contact .wpb_content_element {
		margin-bottom: 0 !important;
	}
}

@media (max-width: 480px) {
	body #content .fifty-fifty .text-col h2 {
	    letter-spacing: 0px;
	    line-height: 1.2;
	    font-size: 24px;
	}
	body #content .fifty-fifty .text-col h3 {
	    letter-spacing: 0px;
	    line-height: 27px;
	    font-size: 21px;
	}
}
/* /fifty fifty */

/* form */
body .gform_legacy_markup_wrapper {
    margin-bottom: 0;
    margin-top: 0;
}
body #content .gform_legacy_markup_wrapper ul.top_label div.ginput_container {
	margin-top: 0;
}
body .gform_legacy_markup_wrapper ul.top_label li.gfield {
	margin: 0 0 12px 0;
	border: none;
	width: 100%;
	padding: 0;
}
body .gform_legacy_markup_wrapper ul.top_label li.gfield label.gfield_label {
    color: var(--light1);
    margin-bottom: 5px;
    margin-left: 7px;
    font-size: 12px;
}
body .gform_legacy_markup_wrapper ul.top_label li.gfield input:not(.gform_button),
body .gform_legacy_markup_wrapper ul.top_label li.gfield select {
    padding: 0px 20px !important;
    height: 55px;
    border: none;
    width: 100%;
    margin: 0;
}
body .gform_legacy_markup_wrapper ul.top_label li.gfield textarea {
    padding: 12px 20px;
    height: 110px;
    border: none;
    width: 100%;
    margin: 0;
}
body .gform_legacy_markup_wrapper ul.top_label li.gfield input:not(.gform_button):focus,
body .gform_legacy_markup_wrapper ul.top_label li.gfield select:focus,
body .gform_legacy_markup_wrapper ul.top_label li.gfield textarea:focus {
	background-color: var(--accent2);
}

body .gform_legacy_markup_wrapper .gform_footer {
	padding: 0;
	margin: 0;
}
body .gform_legacy_markup_wrapper .gform_footer input.gform_button.button {
	width: 100%;
	margin: 0;
}
/* /form */

/* featured blog */
@media (min-width: 980px) {
	.bakery .vc_row.feat-blog {
	    padding-bottom: 70px;
	    padding-top: 80px;
	}
}

.feat-blog h4, .feat-blog h3 {
	color: var(--dark1);
}

img.feat-post-img {
    margin-bottom: 32px;
}
.featured-post h2 {
    margin-bottom: 24px;
    letter-spacing: 0;
    line-height: 40px;
    text-align: left;
}
.featured-post p.posted-on {
    margin-bottom: 24px !important;
    font-family: var(--MontB);
    text-align: left;
    font-size: 12px;
}
.featured-post div.feat-post-content {
	margin-bottom: 36px;
}
.featured-post .feat-post-content p {
    text-align: left;
}
.featured-post p.read-more {
	text-align: left;
}
@media (min-width: 980px) {
	.home .post-content {
    	float: left;
    	width: 45%;
	}
	.home .post-image {
    	float: right;
    	width: 50%;
	}
}
/* /featured blog */

/* partner logos */
.bakery .wpb_row.partners {
	padding: 60px 0;
}
.bakery .wpb_row.partners h3 {
	margin-bottom: 40px;
}
/* /partner logos */

/* bottom cta */
.bakery .bottom-cta {
	height: 600px;
}
body .bottom-cta h5 {
	color: var(--light1);
    letter-spacing: 8px;
	margin-bottom: 24px;
    font-weight: normal;
    line-height: 62px;
	font-size: 48px;
}
.bakery .wpb_row.fifty-fifty.dark2.contact .image-col .vc_column-inner {
	background-position: top left !important;
}

@media (max-width: 979px) {
	.bakery .vc_row.wpb_row.fifty-fifty.dark2.contact .image-col .vc_column-inner {
		background-image: url('/wp-content/uploads/2024/06/Global-Bottom-CTA-Form-bg-mobile-cropped@2x.jpg') !important;
		background-position: top right !important;
	}
}
/* /bottom cta */

/* promo cards */
.bakery div.vc_row.promo-cards {
	justify-content: space-between;
}
.bakery .promo-cards .vc_col-sm-3 {
    width: 23.5%;
}
.promo-cards .wpb_content_element.dark1.steps {
	justify-content: center;
	align-items: center;
	min-height: 100px;
	padding: 0 24px;
	display: flex;
}
.promo-cards .wpb_content_element.dark1.steps h3 {
	letter-spacing: 1.5px;
	text-transform: none;
	line-height: 32px;
	max-width: 185px;
	margin: 0 auto;
}
.promo-cards .wpb_content_element.dark1.steps p {
	color: var(--light1)
}
.box-shadow.wpb_column.vc_column_container.vc_col-sm-4 .wpb_wrapper, 
.box-shadow.five-steps .wrapper {
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
}
.box-shadow.five-steps .wpb_wrapper {
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
}
.box-shadow.wpb_column.vc_column_container.vc_col-sm-4 .wpb_text_column.wpb_content_element .wpb_wrapper, 
.box-shadow.five-steps .wpb_text_column.wpb_content_element .wpb_wrapper {
    box-shadow: none;
}
.box-shadow.wpb_column.vc_column_container.vc_col-sm-4 {
    min-height: 300px;
}
.box-shadow.five-steps {
    min-height: 371px;
}

.box-shadow.steps .mb0-desktop.steps-bottom {
    min-height: 165px;
}
.box-shadow.five-steps .mb0-desktop.steps-bottom {
	min-height: 200px;
}
.steps-bottom a.btn-bt.alternate {
    width: 100%;
    min-width: 100%;
    padding: 10px;
}
.box-shadow.five-steps p {
    font-size: 14px;
    line-height: 16px;
}

@media (min-width: 980px) {
	.promo-cards .wpb_column.vc_column_container.vc_col-sm-4 .vc_column-inner {
    	padding: 0px 30px;
	}
	.box-shadow.five-steps .vc_column-inner {
    	padding: 0px 10px;
	}
}

@media (max-width: 979px) {
	.box-shadow.five-steps .mb0-desktop.steps-bottom {
    	min-height: 120px;
	}
	.box-shadow.five-steps {
    	min-height: auto;
	}
}

.promo-cards-outer .container {
    max-width: 100%;
}
.promo-cards .wpb_content_element.dark1,
.promo-cards .wpb_content_element.accent2 {
	justify-content: center;
	align-items: center;
	min-height: 100px;
	padding: 0 24px;
	display: flex;
}
.promo-cards .wpb_content_element h3 {
	text-transform: none;
	letter-spacing: 1px;
	line-height: 32px;
/* 	max-width: 185px; */
	font-size: 25px;
}
.promo-cards .wpb_content_element.dark1 {
    background: var(--dark1);
}
.promo-cards .wpb_content_element.dark1 h3 {
    color: var(--light1);
}
.promo-cards .wpb_content_element.accent2 {
    background: var(--accent1);
}
.promo-cards .wpb_content_element.accent2 h3 {
    color: var(--light1);
}
a.card-link {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 176.94px;
	display: flex;
}
a.card-link img {
	position: absolute;
}
body #content a.card-link span.card-hover-text {
	transition: all 0.3s ease-in-out;
    font-family: var(--MontSB);
    justify-content: center;
	text-decoration: none;
	letter-spacing: 1px;
    align-items: center;
	position: absolute;
	color: transparent;
    font-size: 18px;
    display: flex;
	height: 100%;
    width: 100%;
}
body #content a.card-link:hover span.card-hover-text {
	background-color: var(--light1_75);
	transition: all 0.3s ease-in-out;
	color: var(--dark3);
}

@media (max-width: 979px) {
	.bakery div.vc_row.promo-cards {
	    flex-wrap: wrap;
	    display: flex;
	}
	.bakery .promo-cards .vc_col-sm-3 {
	    width: 47%;
	}
}

@media (max-width: 480px) {
	.bakery .promo-cards .vc_col-sm-3 {
	    max-width: 360px;
	    margin: 0 auto;
	    width: 100%;
	}
	.promo-cards .wpb_content_element h3 {
		max-width: 230px;
	}
}
/* /promo cards */

/* locations promo */

body #content .bakery .locations-promo h3 {
	font-family: var(--MontSB);
	margin-top: 16px;
}

@media (min-width: 980px) {
	.bakery .locations-promo.vc_inner {
		justify-content: space-between;
		display: flex;
	}
	.locations-promo.vc_inner .wpb_column {
		max-width: 300px;
	}
}

/* /locations promo */

/* testimonials page */
body .bakery.testimonials .fifty-fifty h4 {
	top: 0;
}
.wpb_row.testimonials-wall .strong-content.strong-normal.columns-1 {
    margin: 0;
}
.wpb_row.testimonials-wall .wpmtst-testimonial.testimonial:not(:first-child) {
	margin-top: 40px;
}
.wpb_row.testimonials-wall .wpmtst-testimonial.testimonial:not(:last-child) {
	border-bottom: 2px solid var(--accent1);
	padding-bottom: 40px;
	margin-bottom: 0;
}
body #content .wpb_row.testimonials-wall .strong-view.wpmtst-simple h3.wpmtst-testimonial-heading.testimonial-heading {
    margin-bottom: 14px !important;
    letter-spacing: 2.50px;
    text-transform: none;
    line-height: 32px;
    text-align: left;
    font-size: 24px;
    order: 2;
}
body #content .wpb_row.testimonials-wall .wpmtst-testimonial-content.testimonial-content p {
    font-style: normal;
    line-height: 26px;
    text-align: left;
    font-size: 14px;
}
body #content .wpb_row.testimonials-wall .wpmtst-testimonial-content.testimonial-content {
    max-width: unset;
    margin: 0;
    order: 3;
}
body #content .wpb_row.testimonials-wall .wpmtst-testimonial-field.testimonial-field {
    text-align: left;
    order: 4;
}
body #content .wpb_row.testimonials-wall .wpmtst-testimonial-field.testimonial-field:not(.testimonial-rating) {
    font-family: var(--MontSB);
    letter-spacing: 1px;
    line-height: 28px;
	font-size: 18px;
}
body #content .wpb_row.testimonials-wall .wpmtst-testimonial-field.testimonial-field.testimonial-rating {
    margin-bottom: 12px;
	margin-top: 0;
	order: 1;
}
body #content .wpb_row.testimonials-wall .wpmtst-testimonial-inner.testimonial-inner {
    display: flex !important;
    flex-direction: column;
}
body .strong-rating span.star:before {
    background: var(--accent2);
    color: var(--accent2);
}
p.five-stars i {
	color: var(--accent2);
}

@media (min-width: 980px) {
	.bakery .testimonials-wall {
	    padding: 70px 0;
	}
}

@media (max-width: 979px) {
	body #content .wpb_row.fw-blurb:not(.special-row):not(.ty-blurb) h3 {
		margin-bottom: 0;
	}
}

/* /testimonials page */

/* single location */

@media (min-width: 980px) {
	body #content .single-location-promo-outer h3 {
	    line-height: 30px;
	    font-size: 22px;
	}
}

/* /single location */

/* products index */

@media (min-width: 980px) {
	body#products-page .fifty-fifty .text-col .vc_column-inner {
	    padding: 80px 0;
	}
}

body#products-page .fifty-fifty .text-col h3 {
    font-family: var(--MontSB);
}

/* /products index */

/* single product */

.single-product-tiers-outer h3.outer {
    margin-top: 28px;
}

@media (min-width: 980px) {
	.bakery .wpb_row.vc_inner.single-product-tiers {
	    justify-content: space-between;
	    padding-top: 24px;
	    max-width: 800px;
	    margin: 0 auto;
	    display: flex;
	}
	.single-product-tiers .vc_col-sm-4 {
		margin-right: 2.5%;
		width: 33.33%;
	}
	.single-product-tiers .vc_col-sm-4:last-child {
		margin-right: 0;
	}
}

@media (max-width: 979px) {
	body:not(#single-service-page) .bakery .single-product-tiers-outer {
		padding: 0 !important;
	}
	.bakery .vc_row.vc_inner.single-product-tiers {
	    max-width: 300px;
	    margin: 0 auto;
	    width: 90%;
	}
}

@media (max-width: 480px) {
	body#single-product-page .bakery .wpb_row.single-product-tiers-outer {
		padding: 0 !important;
	}
}

.single-product-tiers .wpb_text_column.accent1 {
    background: var(--accent1);
    justify-content: center;
    align-items: center;
    min-height: 140px;
    display: flex;
}
.single-product-tiers .wpb_text_column.accent1 img {
    max-height: 70px;
    width: auto;
}

/* /single product */

/* services index */

@media (min-width: 980px) {
	.bakery .vc_inner.collage-combo {
		justify-content: space-between;
		display: flex;
	}
	.bakery .vc_inner.collage-combo .wpb_column.vc_col-sm-6 {
		padding: 0;
		width: 50%;
	}
	.bakery .vc_inner.collage-combo .wpb_column.vc_col-sm-6:nth-child(1) {
		margin-right: 1.5%;
	}
}

@media (max-width: 979px) {
	.bakery .wpb_row.membership-benefits {
		padding: 0;
	}
}

.bakery .vc_col-sm-6 ul li {
    margin-bottom: 8px;
    line-height: 28px;
}

/* /services index */

/* single service */
@media (max-width: 979px) {
	body#single-service-page .bakery .wpb_row.single-product-tiers-outer {
		padding: 32px 0 0 0 !important;
	}
}
/* /single service */

/* menu page */
@media (min-width: 769px) {
	body#menu-page .bakery .wpb_row.tabs ul.vc_tta-tabs-list {
	    justify-content: space-between;
	    max-width: 671px;
	}
	body#menu-page .bakery .wpb_row.tabs ul.vc_tta-tabs-list li.vc_tta-tab {
	    min-width: 31%;
	}
}

@media (min-width: 768px) {
	.tabs .vc_tta-color-grey.vc_tta-style-classic.vc_tta-tabs .vc_tta-panels {
	    background-color: transparent;
	}
}

body#menu-page .bakery .wpb_row.tabs .vc_tta-panels-container {
    padding: 0px;
}
body #content .tabs h3 {
    margin-bottom: 14px;
}
hr.accent1 {
	border-bottom: 2px solid var(--accent1);
	margin-bottom: 14px;
}
.menu-flex {
	justify-content: space-between;
	align-items: flex-start;
	display: flex;
}
.menu-flex.halves .menu-col {
	width: 49%;
}
.menu-flex.fourths .menu-col {
	width: 24%;
}

@media (min-width: 769px) {
	.menu-flex .menu-col:not(:last-child) {
		margin-right: 1%;
	}
}

body .tabs h4 {
	font-family: var(--MontSB);
	letter-spacing: 2px;
    margin-bottom: 10px;
	font-style: normal;
}
body .tabs .halves h4 {
	margin-bottom: 6px;
}
body .tabs h5 {
	font-family: var(--MontSB);
    letter-spacing: 2px;
    margin-bottom: 5px;
	font-style: normal;
	line-height: 24px;
    margin-top: 10px;
	font-size: 16px;
}

@media (max-width: 979px) {
	.menu-flex {
		flex-wrap: wrap;
	}
	.menu-flex.halves .menu-col {
		width: 49%;
	}
	.menu-flex.fourths .menu-col {
		width: 49%;
	}
	.vc_tta-panel-body,
	.menu-col {
		text-align: center;
	}
}

@media (max-width: 768px) {
	.menu-flex.halves .menu-col {
		width: 100%;
	}
	.menu-flex.fourths .menu-col {
		width: 100%;
	}
	body .tabs .halves h4 {
	    margin-bottom: 10px;
	    margin-top: 30px;
	}
	body .tabs .menu-flex.halves h5 {
	    margin-bottom: 10px;
	    margin-top: 30px;
	}
	body .menu-flex.fourths h5 {
		margin-bottom: 10px;
		margin-top: 30px;
	}
}
/* /menu page */

/* blog archive */

body#blog-page #content .wrap {
	padding: 40px 0;
}
body#blog-page #content .wrap #primary {
	max-width: 1440px;
	margin: 0 auto;
	width: 92%;
	display: flex;
	column-gap: 1%;
}
article.blog-post-row:nth-child(1) hr {
    display: none;
}
article.blog-post-row hr {
    margin-bottom: 32px;
}
/* body#blog-page #content .blog article:last-of-type {
    padding-bottom: 40px;
} */
body#blog-page #content .blog .blog-post-row {
    padding: 0;
}
body#blog-page #content .blog .wrap .blog-post-row {
    max-width: unset;
    width: 32%;
    padding: 0;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.25);
    padding-bottom: 32px;
}
body#blog-page #content #primary .post-image-and-text {
    margin-bottom: 22px;
}
body#blog-page #content #primary .post-image-wrap {
    margin-bottom: 48px;
}
body#blog-page #content #primary .post-text-wrap {
    width: 95%;
    margin: 0 auto;
}
body #content h2.archive-post-title {
    text-transform: none;
    letter-spacing: 1px;
}
body #content h2.archive-post-title a {
	transition: all 0.3s ease-in-out;
	text-decoration: none;
    color: var(--dark3);
}
body #content h2.archive-post-title a:hover {
	transition: all 0.3s ease-in-out;
	text-decoration: none;
    color: var(--accent1);
}
body#blog-page #content p.archive-post-date {
	font-family: var(--MontB);
	margin-bottom: 10px;
	font-size: 14px;
}
body#blog-page div#pagination {
    background: var(--dark3);
    padding: 25px 5%;
    width: 100%;
}
body#blog-page div#pagination .container {
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    width: 90%;
}
body.paged .left-pag,
body.paged .right-pag {
    text-align: center;
    width: 100%;
}
body#blog-page #content div#pagination a {
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
	font-family: var(--MontM);
	text-decoration: none;
	color: var(--light1);
	letter-spacing: 2px;
}
body#blog-page #content div#pagination a:hover {
	transition: all 0.3s ease-in-out;
	color: var(--accent2);
}

.post-text-wrap, .post-read-more-wrap { 
    text-align: center;                                                                     
}
body .blog .post-image-wrap img {
	margin: 0 auto;
    display: block;
    height: 276px;
    width: 100%;
}

@media (max-width: 979px) {
	body#blog-page #content .blog .wrap .blog-post-row {
		width: 49%;
	}
}

@media (max-width: 480px) {
	body#blog-page #content .blog .blog-post-row {
	    padding: 28px 0 0 0;
	}
	body#blog-page #content .blog article:last-of-type {
	    padding-bottom: 28px;
	}
	body#blog-page #content #primary .post-image-wrap {
	    margin-bottom: 16px;
	}
	body #content h2.archive-post-title {
	    letter-spacing: 0px;
	    line-height: 30px;
	    font-size: 24px;
	}
	body article.blog-post-row hr {
    	margin-bottom: 22px;
	}
	.post-read-more-wrap a {
	    width: 100%;
	}
	.post-read-more-wrap {
		width: 95%;
		margin: 0 auto;
	}
	body#blog-page #content .blog .wrap .blog-post-row {
		width: 100%;
	}
}

/* /blog archive */

/* Single Blog */

.blog .post-image-wrap img {
    margin: 0 auto;
    display: block;
}

@media (min-width: 980px) {
	body.single.admin-bar {
		margin-top: 0;
	}
}

@media (max-width: 979px) {
	html[lang="en-US"] {
		margin-top: 0 !important;
	}
	body.single.admin-bar {
		margin-top: 0;
	}
	body #content aside#secondary {
    	width: 100%;
    	margin-top: 40px;
    	padding: 40px;
	}
}

@media (max-width: 782px) {
	html[lang="en-US"] {
		margin-top: 0 !important;
	}
}

@media (max-width: 480px) {
	body #content aside#secondary {
    	padding: 20px;
	}
}

body.single #content .wrap {
	max-width: unset;
	width: 100%;
}
body.single #content .blog.single {
    padding-top: 0;
}
.single-intro {
	background: var(--dark1);
	padding: 40px 0;
	width: 100%;
}
.single-intro .container {
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    width: 90%;
}

p.single-post-meta, body #content span.single-post-author a {
    color: var(--light1);
}

@media (min-width: 980px) {
	.single-intro .container > div {
		margin-bottom: 0;
/*		width: 50%;*/
	}
	.single-intro .container > div:nth-child(1) {
		padding-right: 2.5%;
		width: 66.66%;
	}
	.single-intro .container > div:nth-child(2) {
		padding-left: 2.5%;
		padding-top: 0;
		width: 33.33%;
	}
	h1.single-post-title {
		margin-bottom: 20px;
	}
	h1.single-post-title,
	div.single-post-meta-wrap {
	    padding-left: 0;
	    margin-top: 0;
	}
}

@media (max-width: 979px) {
	.single-intro .container {
		flex-direction: column-reverse;
	}
	.single-intro .container > div {
		width: 100%;
	}
}

body #content .nav-previous a,
body #content .nav-next a{
	background-color: var(--accent1);
	color: var(--light1);
    text-align: center;
    padding: 15px 20px;
	min-width: 150px;
    display: block;
}
body #content .nav-previous a:hover,
body #content .nav-next a:hover{
    transition: all 0.3s ease-in-out;
    background: var(--accent1_65);
	text-decoration: none;
    color: var(--light1);
}

body #content a.all-blogs-link {
	padding: 15px 28px;
	margin-top: 24px;
    min-width: 130px;
    max-width: 90px;
    display: flex;
}
body.single h1.single-post-title {
    line-height: 36px;
    font-size: 32px;
}
body.single .single-post-feat-img-wrap img {
    height: auto;
    width: 100%;
}
body.single .single-post-content-wrap {
    margin-bottom: 0;
}
.blog-beef {
	padding: 40px 0;
	width: 100%;
}
.blog-beef .container,
.single-pagination .container {
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}
body.single .single-pagination {
    width: 100%;
}
body.single nav.navigation.post-navigation {
    background: unset;
    max-width: none;
    padding: unset;
    width: 100%;
    margin: 0;
}
body.single .navigation .nav-links > * {
    min-height: unset;
    min-width: unset;
}
body.single #content .navigation .nav-links a.btn-bt {
    text-transform: uppercase;
    font-family: var(--MontB);
    justify-content: center;
    text-decoration: none;
    letter-spacing: 2px;
    flex-direction: row;
    align-items: center;
    color: var(--dark3);
    border-radius: 2px;
    text-align: center;
    padding: 13px 28px;
    font-size: 14px;
    line-height: 1;
    display: flex;
}
body.single .single-post-content-wrap h2 {
	margin-bottom: 18px;
}
body.single .single-post-content-wrap h3 {
	margin-bottom: 16px;
}
body.single .single-post-content-wrap ul,
body.single .single-post-content-wrap ol {
	margin-bottom: 16px;
}
body.single .single-post-content-wrap a.btn-bt {
	margin-top: 16px;
}
body.single .single-post-content-wrap p {
	margin-bottom: 16px;
}
body.single .single-post-content-wrap img {
	margin-bottom: 2em;
	margin-top: 2em;
}

@media (max-width: 480px) {
	body.single h1.single-post-title {
    	line-height: 28px;
    	font-size: 18px;
    	margin: 15px 0px;
	}
	.single-intro {
    	padding: 30px 0 20px 0;
	}
	
}

/* END Single Blog */

/* Meet the Team */

p.team-socials {
    margin-top: 16px;
}
p.team-socials a i {
    font-size: 24px;
}

/* END Meet the Team */

/* contact us */

@media (min-width: 481px) {
	.contact-form-row p {
	    max-width: 550px;
	    margin: 0 auto;
	    width: 100%;
	}
	.bakery.contact-us div#gform_wrapper_1 {
	    max-width: 475px;
	    margin: 0 auto;
	}
}

/* /contact us */

/* specials */

@media (min-width: 980px) {
	.bakery.specials .fifty-fifty .text-col .vc_column-inner {
	    padding: 124px 0;
	}
}

/* /specials */

/* review us */
.bakery.review-us .strong-form label,
.bakery.review-us .strong-form span.after {
    color: var(--light1);
}
.bakery.review-us .strong-form .strong-rating label:before {
    background: var(--accent2);
    color: var(--accent2);
}
/* /review us */

/* privacy policy and ADA */

body#pp-page .wpb_row:not(.fifty-fifty) h3,
body#ada .wpb_row:not(.fifty-fifty) h3 {
    margin-bottom: 6px;
    margin-top: 0;
}
body#pp-page .bakery ul,
body#ada .bakery ul {
	margin-bottom: 35px;
}

/* /privacy policy and ADA */

/* 404 */

body.error404 #content .copyright a {
	transition: all 0.3s ease-in-out;
	color: var(--light1);
}
body.error404 footer#footer a {
	transition: all 0.3s ease-in-out;
	color: var(--dark3);
}
body.error404 footer#footer a:hover,
body.error404 #content .copyright a:hover {
	transition: all 0.3s ease-in-out;
	color: var(--accent2);
}

/* /404 */

/* G-Forms - gravity - Gravity */

ul.gfield_checkbox input {
    height: 34px !important;
    width: 34px !important;
}
.vc_row.wpb_row.fifty-fifty.dark2.contact .gform_legacy_markup_wrapper ul.gfield_checkbox li label {
    color: #ffffff;
}
ul.gfield_checkbox {
    column-count: 2;
}
body #content input[type=checkbox]:after {
   height: 30px;
   width: 20px;
   left: 8px;
   top: 0px;
}
.post-content h2 {
    padding-top: 30px !important;
}
.copyright-content.span6.middle-three-column {
    display: none;
}
.fifty-fifty.dark2.contact form input,
.fifty-fifty.dark2.contact form select {
	width: 100%;
}
/*form.hs-form label {
	display: inline-block;
	margin-left: 7px;
}
form.hs-form fieldset:not(:first-child) label {
	margin-top: 12px;
}*/
form.hs-form fieldset,
form.hs-form .hs-form-field,
form.hs-form input,
form.hs-form input select,
form.hs-form select.hs-input {
    width: 100% !important;
    max-width: unset;
}
form.hs-form input[type="radio"] {
	width: 25px !important;
}
li.hs-form-radio {
    list-style: none;
}
form.hs-form ul.inputs-list {
    padding-left : 0 !important;
}
label.hs-form-radio-display {
    justify-content: start;
    align-items: center;
    display: flex;
}
label.hs-form-radio-display input {
	margin-right: 6px;
}
.career-form-row p br {
	display: none;
}
.hard-money-loan-works h3 {
	color: var(--dark1)
}
.vc_row.wpb_row.accent1 {
	color: var(--light1)
}
.apply-hard-money-loans h3 {
	text-transform: capitalize;
}
.apply-hard-money-loans .half-row h3 {
	color: var(--dark1);
}
.wpb_text_column.wpb_content_element.accent1.steps {
    background-color: var(--accent1);
    justify-content: center;
    align-items: flex-end;
    min-height: 181px;
    color: #ffffff;
    padding: 20px;
    display: flex;
}
.box-shadow.other-loans.wpb_column.vc_column_container.vc_col-sm-4 {
    min-height: auto;
}
.box-shadow.other-loans.wpb_column.vc_column_container.vc_col-sm-4 .vc_column-inner {
    padding: 0px 15px;
}
.wpb_text_column.wpb_content_element.accent1.steps a.btn-bt.default {
    padding: 6px;
}
.wpb_text_column.wpb_content_element.accent1.steps p.extra-text {
    margin-top: -20px;
}
hr.blue {
    color: var(--accent1);
    margin-bottom: 20px;
    border: 2px solid;
}
.wpb_row .dark1 hr.blue {
	color: var(--light1);
	border-width: 1px;
}
.inner-calculate-row.light2 .container {
    max-width: 100%;
}
.vc_row.wpb_row.inner-calculate-row.light2 .wpb_text_column.wpb_content_element .wpb_wrapper {
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
}
.wpb_row.vc_inner.cities-row {
    padding-top: 14px;
}
.cities-row a.btn-bt {
	margin: 0 auto;
	width: 95%;
}

@media (min-width: 980px) {
	.vc_row.wpb_row.inner-calculate-row.light2 h3 {
    	margin-right: 20px;
	}
	img.alignnone.size-thumbnail.wp-image-2985 {
    	width: 100px;
    	padding-top: 20px;
	}
	.fix-and-flib-box h3 {
		margin-top: 8px;
	}
	.inner-calculate-row a.btn-bt.alternate {
    	margin-top: 0px !important;
	}
	.vc_row.wpb_row.cta-row.accent1.loan-rate a.btn-bt.alternate {
		margin-top: -9px;
	}
	.vc_row.wpb_row.inner-calculate-row.light2 .wpb_text_column.wpb_content_element .wpb_wrapper {
    	justify-content: space-between;
    	background-color: #ffffff;
    	align-items: center;
    	padding: 0px 30px;
    	display: flex;
	}
	.vc_row.wpb_row.inner-calculate-row.light2 h3 {
    	margin-bottom: 0px;
	}
	.vc_row.wpb_row.vc_inner.vc_row-fluid.half-row {
    	align-items: flex-start;
	}
}

@media (max-width: 979px) {
	.vc_row.wpb_row.inner-calculate-row.light2 .wpb_text_column.wpb_content_element .wpb_wrapper {
		text-align: center;
    	padding: 20px;
	}
	.vc_row.wpb_row.inner-calculate-row.light2 .wpb_text_column.wpb_content_element .wpb_wrapper img {
		display: block;
		margin: 0 auto;
	}
	.cities-row {
		padding-top: 0px !important;
	}
}

/* post grid  Recent Funded */

.vc_custom_heading.post-title.vc_gitem-post-data.vc_gitem-post-data-source-post_title h2 {
    line-height: 30px;
    font-size: 25px;
}
.vc_grid.vc_row.vc_grid-gutter-30px.vc_pageable-wrapper.vc_hook_hover.owl-carousel.vc_grid-owl-theme.owl-loaded.owl-drag,
.vc_grid.vc_row.vc_grid-gutter-30px.vc_pageable-wrapper.vc_hook_hover {
    display: block;
}
a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-color-white {
    color: var(--dark1) !important;
    background: var(--light1);
    border: 2px solid #234058;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    width: 180px;
}
a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-color-white:hover{
	background: var(--accent1) !important;
	color: var(--light1) !important;
}
a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-color-white {
	padding: 14px 28px;
}
.vc_gitem_row.vc_row.vc_gitem-row-position-top {
    justify-content: flex-start;
    padding: 10px 0px;
}
a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-flat.vc_btn3-color-blue {
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
    color: #ffffff !important;
    border: 2px solid #8c2632;
    background: #8c2632;
	padding: 17px 28px;
    font-weight: 700;
	font-size: 16px;
	width: 200px;
}

a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-flat.vc_btn3-color-blue:hover {
    border: 2px solid #234058 !important;
    transition: all 0.3s ease-in-out;
    background: #234058A6 !important;
    color: #ffffff !important;
}
@media (min-width: 980px) {
    .page-id-2904 .bakery .vc_col-sm-6:not(.vc_col-has-fill):nth-child(2) {
        padding-left: 0px;
    }
}

/* Locations Page */

@media (min-width: 980px) {
	.locations-fifty-fifty .text-col.wpb_column.vc_column_container.vc_col-sm-6 {
    	padding: 0px 40px !important;
	}
	.locations-fifty-fifty .image-col.wpb_column.vc_column_container.vc_col-sm-6.vc_col-has-fill {
    	padding: 0px 40px;
	}
	.locations-fifty-fifty .image-col.wpb_column.vc_column_container.vc_col-sm-6.vc_col-has-fill .vc_column-inner {
		padding-top: 0px;
	}
}

/* CITY INDEX PAGE (ie, phoenix) */

/* city programs button row */
.city-loan-programs .container {
    max-width: 1300px;
    width: 95%;
}
.city-loan-programs a.btn-bt {
	padding: 14px 2px !important;
	width: 97%;
}

@media (max-width: 1200px) {
	.city-loan-programs .vc_inner {
		padding-top: 10px !important;
		flex-wrap: wrap;
		float: left;
		width: 50%;
	}
	.city-loan-programs .vc_inner .wpb_column {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.city-loan-programs a.btn-bt {
	    padding: 14px 2px !important;
	    width: 97% !important;
	    min-width: unset;
	    margin: 0 auto;
	}
}

/* END CITY INDEX PAGE (ie, phoenix) */

/* CITY PROGRAM SUBPAGE (ie, phoenix - fix & flip) */

@media (max-width: 979px) {
	.mt35-979 {
		margin-top: 35px;
	}
	.mb70-979 {
		margin-bottom: 70px !important;
	}
}

/* areas we serve row */
.bakery .wpb_row.areas-we-serve {
	padding: 48px 0;
}
.bakery .wpb_row.areas-we-serve .container {
	max-width: 1350px;
	width: 95%;
}
.bakery .areas-we-serve a.btn-bt {
	margin-top: 0 !important;
	padding: 14px 2px;
	min-width: 160px;
	margin: 0 auto;
	width: 90%;
}
.bakery .wpb_row.areas-we-serve .vc_inner {
	padding-top: 30px;
}

@media (max-width: 1024px) {
	.bakery .areas-we-serve .vc_inner {
		flex-wrap: wrap;
	}
	.bakery .areas-we-serve .vc_inner .wpb_column {
		width: 33.33%;
	}
}

@media (max-width: 980px) {
	.bakery .wpb_row.areas-we-serve .vc_inner {
		display: flex;
	}
	.bakery .areas-we-serve .vc_inner .wpb_column {
		margin-bottom: 14px;
		width: 33.33%;
	}
}

@media (max-width: 768px) {
	.bakery .wpb_row.areas-we-serve .vc_inner {
		display: flex;
	}
	.bakery .areas-we-serve .vc_inner .wpb_column {
		width: 50%;
	}
	.bakery .areas-we-serve.quick-links .vc_inner .wpb_column.vc_col-sm-4 {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.bakery .wpb_row.areas-we-serve {
		padding: 24px 0;
	}
}

/* video row */
.bakery .wpb_row.video-row {
	padding: 60px 0;
}
.video-row .wpb_video_widget {
	position: relative;
}

@media (min-width: 1400px) {
	.video-row .wpb_video_widget::before {
		background: var(--dark1);
	    position: absolute;
	    max-height: 515px;
	    height: 122%;
	    content: "";
	    z-index: 0;
	    width: 60%;
	    left: 20px;
	    top: -40px;
	}
}

@media (max-width: 979px) {
	.bakery .wpb_row.new-fifty-fifty.video-row {
		padding: 60px 0 !important;
	}
	.bakery .wpb_row.new-fifty-fifty.video-row.pb0-979 {
		padding-bottom: 0 !important;
	}
}

/* hr row */
@media (max-width: 979px) {
	.lines-row hr.display-small-desktop {
		margin-bottom: 20px !important;
	}
}

/* flex-list */

/*.bakery ul.flex-list {
	padding-left: 0 !important;
	display: flex;
}
.bakery .wpb_row.dark1 ul li {
	color: var(--light1);
}
ul.flex-list.thirds li {
	position: relative;
	width: 33.33%;
}
ul.flex-list.icon-checklist li {
	justify-content: start;
	padding-left: 75px;
	align-items: center;
	list-style: none;
	font-size: 20px;
	display: flex;
	height: 75px;
}
ul.flex-list.icon-checklist li:before {
	background: url('/wp-content/uploads/2024/07/icon-checklist@2x.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	height: 75px;
	width: 75px;
	content: "";
	left: 0;
	top: 0;
}*/

/*@media (max-width: 979px) {
	ul.flex-list {
		flex-wrap: wrap;
	}
	ul.flex-list.thirds li {
		margin-bottom: 16px;
		width: 100%;
	}
}*/

p.checklist {
	justify-content: center;
	align-items: center;
	font-size: 20px;
	display: flex;
}
p.checklist img {
	height: auto;
	width: 75px;
}

@media (max-width: 979px) {
	p.checklist {
		justify-content: start;
		margin-right: auto;
		margin-left: auto;
		max-width: 300px;
	}
}

/* map-nap-row */
.bakery .wpb_row.map-nap-row {
    padding: 60px 0 20px 0;
}
.bakery .map-col .wpb_gmaps_widget .wpb_wrapper {
    padding: 0px;
}
body .nap-col h3 {
	letter-spacing: 1.5px !important;
}
body #content .wpb_row.light1 .nap-col a {
	text-decoration: underline;
	color: var(--dark2);
}
body #content .wpb_row.light1 .nap-col a:hover {
	text-decoration: underline;
	color: var(--accent2);
}
.city-loan-programs a.btn-bt {
	text-transform: uppercase;
}

@media (min-width: 980px) {
    .bakery .map-nap-row .vc_col-sm-6.nap-col {
        padding-left: 4% !important;
    }
}

@media (max-width: 480px) {
	.bakery .wpb_row.new-fifty-fifty.video-row,
	.bakery .wpb_row.padd36-mobile,
	.bakery .wpb_row.map-nap-row {
        padding: 36px 0 !important;
    }
    body .cta-row.loan-rate  h3 {
    	line-height: 28px;
	}
	.bakery .cta-row.loan-rate p:first-child {
		display: none;
	}
	body #content .bakery .cta-row.questions-cta h2 {
		font-size: 23px;
	}
}

/* END CITY PROGRAM SUBPAGE (ie, phoenix - fix & flip) */

/* long term rentals page */
.bakery .wpb_row.why-trust .container {
	max-width: 1350px;
	width: 95%;
}

@media (min-width: 980px) {
	.bakery .wpb_row.why-trust .vc_inner .wpb_column:first-child {
		padding-right: 1%;
	}
	.bakery .wpb_row.why-trust .vc_inner .wpb_column:last-child {
		padding-left: 1%;
	}
	.bakery .wpb_row.why-trust .vc_inner .wpb_column:not(:first-child):not(:last-child) {
		padding: 0 0.5%;
	}
}

/* Privacy Policy */

#legal-page #content .bakery hr {
    margin: 35px 0;
}
#legal-page #content .bakery ul:not(.social) {
    margin-bottom: 16px;
}
#legal-page #content .bakery ul ul {
    margin-top: 16px;
}
#legal-page #content .bakery ul:not(.social) li {
    margin-bottom: 7px;
}
#legal-page #content .bakery ol {
    margin-bottom: 16px;
    padding-left: 18px;
    margin-top: 36px;
}
#legal-page #content .bakery  h2 {
    margin-bottom: 0;
    font-size: 36px;
}
#legal-page #content .bakery li h3 {
    line-height: 1.25;
    font-size: 24px;
}
#legal-page #content .bakery p,
#legal-page #content .bakery p a:not(.ab-item),
#legal-page #content .bakery p span,
#legal-page #content .bakery ul:not(.social) li {
    font-size: 16px;
}

/* END Privacy Policy */

/* Search */

body.search .default-header {
    background-image: url(/wp-content/uploads/2024/06/Global-subpage-header@2x-scaled.jpg);
}

/* @media (max-width: 480px) {
    body.search .default-header {
        background-image: url(/wp-content/uploads/2024/08/Hero-mobile@2x.jpg);
    }
} */

body.search #content a.more-link {
    transition: all 0.3s ease-in-out;
    color: var(--accent2);
}
body.search section.no-results.not-found {
    display: none;
}
body.search .top-blurb {
    padding-bottom: 36px;
    padding-top: 28px;
}
body.search .vc_row.wpb_row.top-cta.search-cta {
    padding: 24px 0;
}

@media (min-width: 980px) {
    body.search .top-blurb {
        min-height: 500px;
    }
    body.search .top-cta h4 {
        margin-right: 24px;
    }
}

body.search #content .top-blurb h2 {
    margin-bottom: 24px;
    color: ;
}
body.search .default-header h1,
body.search .default-header h1 span {
    font-family: var(--Museo900);
    color: var(--light1) !important;
    text-transform: uppercase;
    font-size: 28px;
}
body.search .entry-content p,
body.search .entry-content {
    font-family: var(--Museo500);
    font-size: 16px;
}
body.search .bakery .top-cta.vc_row.accent2 {
    background: var(--accent2);
    padding: 16px 0;
}
body.search .top-cta .wpb_text_column .wpb_wrapper {
    justify-content: center;
    align-items: center;
    display: flex;
}
body.search .top-cta h4 {
    color: var(--light1);
    letter-spacing: 3px;
    font-size: 18px;
}
body.search .search-cta form.search-form {
    position: relative;
    width: 450px;
}
body.search .search-cta label {
    display: none;
}
body.search .bakery .search-cta input[type="search"] {
    border: 2px solid var(--light1);
    background: var(--dark2);
    color: var(--light1);
    margin: 0 !important;
    border-radius: 50px;
    font-size: 16px;
    padding: 0 24px;
    height: 44px;
}
body.search .search-cta button.search-submit {
    background-color: none !important;
    background: none !important;
    position: absolute;
    border: none;
    padding: 0;
    right: 6px;
    margin: 0;
    top: 6px;
}
body.search .search-cta button.search-submit i.icon-search {
    background-color: none !important;
    background: none !important;
    color: var(--dark1);
}
body.search button.search-submit i.icon-search::before {
    transform: rotate(272deg);
    font-weight: 600;
    font-size: 20px;
}
body.search-results .some-content.num-of-results {
    background: var(--dark1);
    padding: 24px 0;
}
body.search-results .some-content {
    padding: 40px 0px;
}
body.search-results .some-content .container {
    max-width: 800px;
    margin: 0 auto;
    width: 87%;
}
body.search-results .search-result-count.default-max-width {
    max-width: unset;
    width: 100%;
}
body.search-results .search-result-count.default-max-width p {
    font-family: var(--Museo700);
    color: var(--light1);
    text-align: center;
}
body.search-results .some-content .container {
    max-width: 800px;
    margin: 0 auto;
    width: 87%;
}
body.search-results article:nth-child(odd),
body.search-results article:nth-child(even) {
    background: var(--accent1);
}
body.search-results article {
    margin-bottom: 25px;
    padding: 20px;
}
body.search-results article .entry-header,
body.search-results article .entry-content {
    color: var(--light1);
    margin: 0;
}
body.search-results article .entry-header h2 {
    text-transform: none;
    color: var(--light1);
    margin-bottom: 5px;
    line-height: 36px;
    font-size: 24px;
}
body.search-results #content article .entry-header h2 a {
    color: var(--light1);
}
body.search-results #content article .entry-header h2 a:hover {
    color: var(--accent2);
}
body.search-results article .entry-header h2,
body.search-results article .entry-content p {
    max-width: unset !important;
    color: var(--light1);
    width: 100%;
}
body.search-results #content article .entry-header h2 a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
body.search-results a.page-numbers,
body.search-results span.page-numbers {
    font-family: var(--Museo700);
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 18px;
}
body.search-results span.page-numbers.current {
    color: var(--dark3);
}
span.nav-prev-text,
span.nav-prev-text span,
span.nav-next-text,
span.nav-next-text span {
    font-family: var(--Museo700) !important;
}
body.search-results a.prev.page-numbers,
body.seatch span.page-numbers.current,
body.search-results .nav-links a {
    text-decoration: none;
}
body.search-results a.more-link,
body.single .nav-links a .meta-nav {
    margin-right: unset !important;
    margin-left: unset !important;
    width: fit-content;
}
body.search-results article .entry-header figure,
body.search-results article .entry-footer {
    display: none;
}

@media (max-width: 480px) {
    body.search-results a.more-link,
    body.single .nav-links a .meta-nav {
        margin-top: 16px;
        width: 100%;
    }
}

/* END Search */

/* responsive */

@media (min-width: 980px) {
	body .bakery .fw-blurb.ty-blurb {
		padding: 75px 0;
	}
	.bakery .new-fifty-fifty .vc_col-sm-6:not(.vc_col-has-fill):nth-child(2) {
    	padding-left: 10%;
	}
	.bakery .new-fifty-fifty .vc_col-sm-6:not(.vc_col-has-fill):nth-child(1) {
    	padding-right: 10%;
	}
}

@media (max-width: 979px) {
	.nav-links {
	    text-align: unset !important;
	}
	.wpb_row.fw-blurb.special-row {
		padding-bottom: 40px !important;
		padding-top: 28px !important;
	}
	.vc_row.wpb_row.home-promos-outer.light1.slider {
    	padding-bottom: 0px !important;
	}
	.vc_row.wpb_row.fw-blurb.dark1 a.btn-bt.default {
    	display: block;
	}
	.vc_row.wpb_row.fw-blurb.dark1 .wpb_text_column.wpb_content_element.mb0-desktop {
		margin-bottom: 0px;
	}
	vc_row.wpb_row.promo-cards-outer.slider-above {
    	padding-bottom: 0px !important;
	}
	body #content .mb0-mobile {
		margin-bottom: 0px;
	}
}

@media (max-width: 641px) {
	body .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
	    line-height: 26px;
	    min-height: unset;
	}
}

@media (max-width: 480px) {
	div.default-header {
        margin-top: 60px;
    }
	body,
	body p,
	body li,
	body span,
	a.btn-bt,
	form label,
	.gform_footer input[type="submit"],
	button,
	span.vc_tta-title-text {
		line-height: 20px;
		font-size: 14px;
	}
	.mb0-desktop.steps-bottom {
/*    	min-height: 120px;*/
    	min-height: unset !important;
	}
	body h1 {
	    letter-spacing: 0px;
	    text-align: center;
	    line-height: 32px;
	    font-size: 30px;
	}
	body .home-hero {
	    height: 500px;
	}
	body .bakery .wpb_row.home-promos-outer {
	    padding: 40px 0 !important;
	}
	body h2 {
	    letter-spacing: 3px;
		line-height: 30px;
        font-size: 24px;
	}
	body .bakery .vc_row.vc_inner.home-promos {
	    padding: 24px 0 0 0 !important;
	}
	body .fifty-fifty .image-col {
	    height: 413px;
	}
	body .fifty-fifty .text-col .vc_column-inner {
	    max-width: unset;
	    padding: 32px 0;
	    margin: 0 auto;
	    width: 87%;
	}
	body .fifty-fifty .fake-collage .wpb_row.vc_inner {
		padding-top: 10px !important;
	}
	body .fifty-fifty .fake-collage .wpb_row.vc_inner .vc_column-inner {
		padding-top: 0 !important;
	}
	body .fifty-fifty .text-col.fake-collage .vc_column-inner {
	    padding: 24px 0;
	}
	body .bakery .wpb_row.promo-cards-outer {
	    padding: 16px 0 0 0 !important;
	}
	body .featured-post h2,
	body .featured-post p.posted-on,
	body .featured-post .feat-post-content p {
		text-align: left;
	}
	body .bakery .vc_row.feat-blog {
	    padding-bottom: 40px;
	    padding-top: 24px;
	}
	body .bakery img.feat-post-img {
	    margin-bottom: 16px;
	}
	body .featured-post h2 {
	    margin-bottom: 7px;
	    line-height: 30px;
	    font-size: 24px;
	}
	body .featured-post p.posted-on {
	    margin-bottom: 5px !important;
	    font-size: 14px;
	}
	body .featured-post div.feat-post-content {
	    margin-bottom: 16px;
	}
	body .bakery section.testimonials {
		padding-bottom: 28px !Important;
		padding-top: 136px !important;
	}
	body .bakery .testimonials-opacity .container {
	    padding: 0px 0% 30px 0%;
	}
	body .testimonial-slogan.mb0 {
	    margin-bottom: 45px !important;
	    margin-top: -100px;
	    position: relative;
	}
	body.home .bakery .testimonials h4 {
	    letter-spacing: 0;
		line-height: 28px;
	    padding: 14px 3%;
	    max-width: 100%;
	    font-size: 22px;
	    width: 100%;
	    top: 0;
	}
	body .strong-view.wpmtst-simple .wpmtst-testimonial-inner {
	    padding: 16px 0 0 0;
	}
	body .wpmslider-controls-direction {
	    display: none !important;
	}
	body .strong-view.wpmtst-simple h3.wpmtst-testimonial-heading.testimonial-heading {
	    margin-bottom: 10px !important;
	    letter-spacing: 0px;
	    line-height: 26px;
	    font-size: 18px;
	}
	body .wpmtst-testimonial-content.testimonial-content p {
		line-height: 20px;
		font-size: 14px;
	}
	body .bakery .wpb_row.partners {
	    padding: 24px 0 30px 0;
	}
	body .bakery .wpb_row.partners h3 {
	    margin-bottom: 16px;
	}
	body .bakery .bottom-cta h5 {
	    letter-spacing: 3px;
	    line-height: 40px;
	    font-size: 30px;
	}
	body .bakery .bottom-cta {
	    height: 372px;
	}
	body .wpb_row.testimonials-wall .wpmtst-testimonial.testimonial:not(:last-child) {
	    padding-bottom: 24px;
	}
	body .wpb_row.testimonials-wall .wpmtst-testimonial.testimonial:not(:first-child) {
	    margin-top: 26px;
	}
	body #content .wpb_row.testimonials-wall .strong-view.wpmtst-simple h3.wpmtst-testimonial-heading.testimonial-heading {
	    letter-spacing: 1px;
	    line-height: 26px;
	    font-size: 20px;
	}
	.home-hero h1 {
		margin-bottom: 24px;
    	max-width: 350px;
    	margin: 0 auto;
	}
	.wpb_row.promo-cards {
	    padding-top: 20px;
	}
	.wpb_row.feat-blog .wpb_content_element {
		margin-bottom: 0 !important;
	}
	.wpb_row.feat-blog .featured-post {
		margin-top: 16px;
	}
	.bakery.meettheteam .wpb_raw_code.wpb_content_element.wpb_raw_html {
	    margin-bottom: 0;
	}
	.bakery.meettheteam .dark1.reverse .wpb_column:nth-child(2) .vc_column-inner {
		padding-bottom: 0 !important;
	}
	.hs_submit .actions {
		padding: 0;
		margin: 0;
	}
	.new-fifty-fifty.flip-mobile .wpb_column:nth-child(1).text-col .wpb_text_column.mb0 {
		margin-bottom: 35px !important;
	}
	.pdf-promos h2 {
	    line-height: 28px;
	    font-size: 28px;
	}
	.bakery.client-access .wpb_content_element h2,
	.bakery.client-access .wpb_content_element p {
		text-align: center;
	}
}

@media screen and (max-width: 430px) {
	.vc_row.wpb_row.home-hero.vc_custom_1719343645898.vc_row-has-fill.vc_row-no-padding {
    margin-top: 177px;
}
.top-header.top-bottom-header {
    width: 100%;
    position: fixed;
    z-index: 8;
}
}

@media screen and (max-width: 830px) {
	.top-header.top-bottom-header
 {
    width: 100%;
    position: fixed;
    z-index: 8;
}
	
.vc_row.wpb_row.home-hero.vc_custom_1719343645898.vc_row-has-fill.vc_row-no-padding {
    margin-top: 184px;
}
}

/* responsive */