@import url('https://fonts.googleapis.com/css?family=Open+Sans');
/*
@font-face {
	font-family: 'Open Sans', sans-serif;
	src: url('https://fonts.googleapis.com/css?family=Open+Sans');
}
*/
a, a img {
	border: 0px;
	text-decoration: none;
}

body { 
	width: 100%;
	margin: 0px; 
	padding: 0px;
	text-align: center;
	font-family: 'Open Sans', Arial, sans-serif;
	background-color: #fff;
}

.mainContainer {	/* Used as container for ALL pages with the global header */
	width: 100%;
	height: auto;
	margin: 0px;
	position: relative;
}

.headerContainer {
	max-width: 1366px;
	/* height: 260px; */
	margin: 0px auto;
	position: relative;
}

.headerUpperContainer {
	width: 100%;
	height: 168px; 
	/* background-image: linear-gradient(-90deg, #103b97, #106bcd); */
	background-image: url(../images/header_backgrounds/header_bg_bridge.jpg);
	background-color: #1063c5;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.currentWeatherContainer {
	width: 291px;
	height: 133px;
	position: relative;
	top: -9px;
}

.currentWeatherDataContainer {
	width: 100%;
	height: 100%;
	position: absolute;
}

.memphis {
	font-size: 26px;
	font-weight: 200;
	color: #fff;
	position: relative;
	top: 29px;
	right: 67px;
}

.currentTemp {
	font-size: 36px;
	font-weight: 200;
	color: #fff;
	position: relative;
	top: 24px;
	right: 94px;
}

.weatherDataBottom {
	width: 87%;
	height: 20px;
	position: relative;
	top: 21px;
	left: 8px;
	display: flex;
	align-items: center;
	background-color: rgba(129, 129, 129, .8);  /* #818181; */
	border-radius: 0px 0px 11px 11px;

}

.weatherDay, .weatherDescription {
	text-align: center;
	font-size: 13px;
	font-weight: 300;
	color: #fff;
	position: relative;
}

.weatherDay {
	width: 45%;
}

.weatherDescription {
	width: 55%;
	border-left: 1px solid #aaa;
}

/* Logo */
.headerLogoContainer {
	position: relative;
}

.headerLogoContainer a, .headerLogoContainer a img {
	border: 0px;
	text-decoration: none;
}

/* Right side of header */
.headerRightContainer {
	position: relative;
	display: flex;
	flex-direction: column;
} 

/* Header Search */
.searchContainer {
	width: 225px;
	height: 30px;
	margin: 0px;
	padding: 0px;
	line-height: 23px;
	text-align: right;
	position: relative;
	top: -20px;
}

/*
.headerSearchField {
	width: 165px;
	height: 24px;
	vertical-align: top;
	font-size: 16px;
	text-indent: 11px;
	color: #999;
	position: relative;
	border: 2px solid #cdcdcd;
	border-right: none;
	border-radius: 14px 0px 0px 14px;
}
*/
.headerSearchField {
    width: 165px;
    height: 28px;
    vertical-align: top;
    font-size: 16px;
    text-indent: 11px;
    color: #999;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 14px 0px 0px 14px;
    border-right: none;
padding: 0px;
}

/*
.headerSearchButton {
	width: 48px;
	height: 30px;
	position: relative;
	top: 0px;
	right: 5px;
	background-image: url(../images/header_search_button.png);
	background-repeat: no-repeat;
	background-color: Transparent;
	border: none;
}
*/

.headerSearchButton {
    width: 48px;
    height: 30px;
    position: relative;
    top: 0px;
    right: 7px;
    background-image: url(../images/header_search_button.png);
    background-repeat: no-repeat;
    background-color: Transparent;
    padding: 0px;
    border: none;

}

.headerSearchButton:hover {
	opacity: .7;
}

/* Social Media Links */

.headerSocialContainer {
	width: 268px;
	height: 42px;
	background-color: rgba(205, 205, 205, .8);  /* #cdcdcd; */
	position: relative;
	top: 20px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.headerSocialLink {
	height: 28px;
	width: 28px;
}

.headerSocialLink:hover {
	opacity: .6;
}

/* Main Navigation */

.mmContainer {
	max-width: 100%;
	height: 46px;
	background-color: #0099ff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mmItemContainer {
	width: 89%;
	color: #fff;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.mmItem, .mmItem a {
	height: 100%;
	position: relative;
	font-size: 18px;  
	font-weight: 400;   
	color: #fff;
}

.mmItem:hover, .mmItem a:hover {
	color: #ffde00;
	text-decoration: underline;
}

.mmItemSelected, .mmItemSelected a {
	font-weight: 500;
	color: #ffde00;
	text-decoration: underline;
}

#mmMobile {
	display: none;
}

/* Main Menu, Sub Menus Below */

.mmSubMenuContent, .mmMobileSubMenuContent {
	width: 370px;
	min-height: 60px;
	margin-top: 24px;
	white-space: nowrap;
	background-color: #0099ff;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-around;
	border: 1px solid white;
	z-index: 100;
}

.mmMobileSubMenuContent {
	width: 115px;
	top: 20px;
	left: -116px;
}

#buildersSubMenu, #commercialSubMenu, #mmMobileSubMenu {
	right: 0px;
}

.mmSubMenuContentCol, .mmSubMenuMobileContentCol {
	width: 43%;
	margin-top: 5px;
	margin-bottom: 7px;
	text-align: left;
}

.mmSubMenuMobileContentCol {
	width: 89%;
	margin-bottom: 0px;
}

.mmSubMenuItem {
	margin-top: 5px;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	position: relative;
}

.mmSubMenuItem a {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
}

.mmSubMenuItem a:hover {
	opacity: 0.7;
}

/* For lines between .mmSubMenuItems */

.mmSubHR {
	width: 98%;
	height: 1px;
	border-bottom: 1px solid #ccc;
}

/* MM Triangle/Arrow(s) */

.mmSelectorContainer {
	width: 85%;
	height: 14px;
	margin: auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.mmArrowUp, .mmArrowUpLeft, .mmArrowUpRight, .mmArrowUpMobile {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 12px solid #0099ff;
	position: absolute;
	top: -12px;
}

.mmArrowUpLeft {
	left: 32px;
}

.mmArrowUpRight {
	right: 32px;
}

.mmArrowUpMobile {
	right: 10px;
}

.mmSmallArrowDown {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 5px 0px 5px;
	border-color: #fff transparent transparent transparent;
	position: relative;
	top: 18px;
	left: 7px;
}

.mmLargeArrowRight {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 0px 11px 16px;
	border-color: transparent transparent transparent #fff;
	position: relative;
	left: -25px;
}

.mmLargeArrowRight:hover{
	barder-color: transparent transparent transparent #ffde00;
	opacity: 0.7;
}

/* Resposive */
@media screen and (max-width: 945px) {
	.mmItem, .mmItem a {
	font-size: 14px;
	}

	.mmSmallArrowDown {
	top: 12px;
	}
}

@media screen and (max-width: 775px) {
	.currentWeatherContainer, .headerSocialContainer, #mmBuilders, #mmAbout, #mmSocial, #mmContact, .mmPipe2, .mmPipe1 {
		display: none;
	}

.searchContainer {
	top: -42px;
}

.headerSearchField {
/*    width: 120px;
    height: 24px; */
}

	#mmMobile {
		display: block;
		right: -36px;
	}

	#mmMobile img {
		width: 69%;
		height: auto;
	}
}

@media screen and (max-width: 575px) {
	#mmMyAccount, #mmCommunity, .mmPipe3 {
		display: none;
	}

.searchContainer {
    width: 175px;
}

.headerSearchField {
    width: 120px;
/*    height: 24px; */
}


	.mmItemContainer {
		text-align: right;
		align-items: center;
		justify-content: space-around;
	}
	
	.mmLargeArrowRight {
		left: 0px;
	}

	.mmSubMenuContent {
		width: 300px;
	}

	.mmMobileSubMenuContent {
		width: 90px;
		left: -69px;
	}

	.mmSubMenuItem a {
	    font-size: 11px;
    }

    #residentialSubMenu {
    	/* left: -38px; */
    	left: -21px;
	}

    #commercialSubMenu {
    	/* left: -195px; */
        left: -154px;
        border: 1px solid;
    }

    .mmArrowUpLeft {
    	left: 50px;
	}

    .mmArrowUpRight {
	    right: 95px;
	}

	#mmMobile {
		right: 0px;
	}

}

@media screen and (max-width: 375px) {
	#mmResidential, #mmCommercial, .mmPipe4 {
		/* display: none; */
	}

	.mmItemContainer {
		/* justify-content: flex-end; */
	}

	.mmLargeArrowRight {
		justify-content: flex-end;
		/* left: -25px; */
	}
}