@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 {
	width: 100%;
	/* max-height: 330px; */
	height: 323px;
	position: relative;
}

.headerTopContainer {
	width: 100%;
	/* height: 142px; */
	height: 45%;
	position: relative;
	display: flex;
	justify-content: center;
	/* border: 2px solid blue; */
}

.headerTopLeftContainer, .headerTopRightContainer {
    width: 47%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    /* border: 2px solid red; */
}

.headerTopLeftContainer {
	justify-content: flex-start;
}

.headerTopRightContainer {
    justify-content: flex-end;
}

/* Header Social Media Links */

.headerSocialContainer {
	/* width: 325px; */
	/* height: 48px; */
	width: 60%;
	height: 35%;
	width: 70%;
	text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    top: 9px;
    /* border: 1px solid black; */
}

.headerSocialContainer a {
/*	width: 20%; */
	margin-right: 13px;
}

.headerSocialContainer a img {
	max-width: 100%;
}

.headerSocialContainer a:hover {
    opacity: 0.6;
}

/* Header Search */

.headerSearchContainer {
	/* width: 192px; */
	/* height: 64px; */
	width: 33%;
	height: 40%;
	position: relative;
	top: 9px;
	border: 2px solid #f94913;
	border-radius: 7px;
/*	background-color: transparent; */
}

.headerSearchContainer > .headerSearchForm {
	width: 98%;
	/* height: 96%; */
	height: 80%;
	position: relative;
top: 10%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	justify-content: space-between;
}

.headerSearchField {
	width: 77%;
	height: 90%;
	font-size: 22px;
	color: #7a7a7a;
	text-indent: 9px;
	outline: none;
	border: none;
background-color: transparent;
}

#headerSearchButton {
	max-width: 20%;
	max-height: 78%;
	position: relative;
	right: 4px;
}

#headerSearchButton:hover {
    opacity: .6;
}

/* Logo */

.headerLogoContainer {
	/* width: 200px; */
	max-width: 17%;
	margin: auto;
	position: relative;
	bottom: 63px;
}

.headerLogoContainer a, .headerLogoContainer a img {
	width: 100%;
}

.headerLogoContainer a img:hover {
	opacity: 0.7;
}

/* Header Bottom MM's */
.headerBottomContainer {
    width: 100%;
    /* height: 188px; */
    height: 54%;
    position: relative;
    display: flex;
    align-items: space-around;
    justify-content: center;
    /* border: 2px solid #000; */

}

.headerBottomLeftContainer, .headerBottomRightContainer {
	width: 44%;
	height: 100%;
	position: relative;
	display: flex;
	/* border: 2px solid red; */
}

.headerBottomLeftContainer {
	justify-content: flex-start;
}

.headerBottomRightContainer {
	justify-content: flex-end;
}

/* Main Navigation */

.mmContainer {
	width: 96%;
	/* height: 90px; */
	height: 48%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: nowrap;
	border-top: 2px solid #717171;
	border-bottom: 2px solid #717171;
	z-index: 2;
}

/* Mobile hidden until screen is minimal */
#mmMobile {
	display: none;
}

.mmItem, .mmItem a {
	width: 33%;
	position: relative;
	/* font-size: 30px; */
	font-size: 28px;
	font-weight: 500;   
	color: #000;
	white-space: nowrap;
}

.mmItem:hover, .mmItem a:hover {
	/* color: #ffde00; */
	color: #ee3228;
	font-weight: 700;
cursor: pointer;
}

.mmItemSelected, .mmItemSelected a {
	font-weight: 700;
	color: #ee3228;
}

.mmSubMenuContent {
	width: 100%;
	margin: auto;
	background-color: #daf2fd;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-around;
	border: 1px solid white;
	z-index: 3;
}

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

.mmSubMenuItem, .mmSubMenuItem a, .mmSubMenuItemSelected {
	height: 49px; 
	width: 97%;
	padding: 3px 0px;
	display: flex;
	align-items: center;
	position: relative;
	font-size: 22px;
	font-weight: 500;
	color: #000;
}

.mmSubMenuItemSelected a, .mmSubMenuItem a:hover {
	color: #ee3228;
	font-weight: 700;
}

/* For lines between .mmSubMenuItems */

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

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

/* Responsive */

/* @media screen and (max-width: 1225px) { */
 @media screen and (max-width: 1225px) {
	.headerContainer {
		height: 290px;
	}

	.headerLogoContainer {
		bottom: 64px;
	}


	.headerSearchContainer {
		/* width: 24%; */
		/* height: 45%; */
    	width: 39%;
	    height: 40%;
    }

	.headerSearchButton {
		background-size: 63%;
	}

	.mmContainer {
		height: 75px;
	}

	.mmItem, .mmItem a {
		font-size: 24px;
	}

	.mmSubMenuContentCol {
/*		width: 15%; */
	}

	.mmSubMenuContent {
		margin-top: -42px;
	}

	.mmSubMenuItem, .mmSubMenuItem a, .mmSubMenuItemSelected {
		height: 48px;
		font-size: 18px;
	}
}

/* @media screen and (max-width: 995px) { */
@media screen and (max-width: 995px) {
	.headerContainer {
		height: 250px;
	}

	.headerLogoContainer {
		bottom: 53px;
	}

    .headerSearchContainer {
    	/* width: 39%; */
        /* height: 40%; */
        width: 37%;
        height: 33%;
    }

    .headerSearchField {
		font-size: 18px;
	}

    .headerSearchButton {
        background-size: 63%;
    }

    .mmContainer {
        height: 56px;
    }

    .mmItem, .mmItem a {
    	/* , .mmItem a { */
    	font-size: 18px;
    }

    .mmSubMenuContent {
    	margin-top: -51px;
	}

	.mmSubMenuContentCol {
/*		width: 17%; */
	}

    .mmSubMenuItem, .mmSubMenuItem a, .mmSubMenuItemSelected {
    	height: 42px;
	    font-size: 14px;
	}
}

/* @media screen and (max-width: 775px) { */
@media screen and (max-width: 775px) {
	.headerContainer {
		height: 200px;
	}

    .headerSocialContainer {
        width: 71%;
    }

    .headerSocialContainer a {
        /* width: 20%; */
        margin-right: 9px;
    }

    .headerSearchContainer {
        width: 42%;
    }

    .headerSearchField {
        font-size: 14px;
    }

	.headerSearchButton {
		background-size: 66%;
		bottom: 1%;
	}

 	.headerLogoContainer {
		Bottom: 46px;
	}

	.mmContainer {
		height: 44px;
	}

	.mmItem, .mmItem a {
	    font-size: 12px;
		font-weight: 500;
	}

    .mmSubMenuItem, .mmSubMenuItem a, .mmSubMenuItemSelected {
        height: 34px;
        font-size: 13px;
    }
}

@media screen and (max-width: 575px) {
	.headerContainer {
		height: 185px;
	}

	.headerSocialContainer {
		width: 77%;
		top: 3px;
	}

    .headerSocialContainer a {
    	margin-right: 6px;
    }

	.headerSearchContainer {
        width: 51%;
        top: 3px;
    }

    .headerSearchField {
        font-size: 12px;
    }

	.headerLogoContainer {
		bottom: 31px;
	}

	.mmContainer {
		height: 38px;
	}

    .mmItem, .mmItem a {
        font-size: 12px;
    }

    .mmSubMenuItem, .mmSubMenuItem a, .mmSubMenuItemSelected {
        height: 34px;
        font-size: 12px;
    }
}

/* @media screen and (max-width: 475px) { */
 @media screen and (max-width: 515px) {
	#mmResidential, #mmCommercial, #mmBuilders, #mmAbout, #mmCommunity {
		display: none;
	}

	.headerTopContainer {
		height: 97px;
	}

    .headerLogoContainer {
        bottom: 24px;
    }

    .headerSearchContainer {
        width: 53%;
        height: 27%;
    }

    .headerSearchField {
        font-size: 12px;
        color: black;
    }

    .headerSearchButton {
        background-size: 73%;
    }
    
    .mmItem, .mmItem a {
        font-size: 14px;
    }
    
	/* Mobile MM */
    #mmMobile {
        display: block;
    }

    #mmMobileSubMenu {
        display: block;
    }

    .mmMobileSubMenuContent {
        width: 100%;
        padding: 0px;
        position: absolute;     
        top: 90px;
        left: 25%;
    }

    .mmSubMenuItem {
        width: 90%;
        margin-left: 7px;
    }

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

	.mmLargeArrowRight {
		justify-content: flex-end;
	}
}