/*
    Add your custom styles here
*/


.cm-panel, .cm-panel * {
	box-sizing: border-box;
}

.cm-panel {
	display: block;
	position: absolute;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	z-index: 99;
	padding: 20px;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	background-color: #fff;
	overflow: auto;
	visibility: hidden;
	transition: all 0.25s ease-in-out;
	transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-overflow-scrolling: touch;
}
.cm-panel.cm-open {
	visibility: visible;
	transform: translateY(0);
	opacity: 1;
}

/* PANEL REVEALS */
.cm-top {
	transform: translateY(-100%);
}
.cm-bottom {
	transform: translateY(100%);
	top: unset;
	bottom: 0;
}
.cm-left {
	transform: translateX(-100%);
}
.cm-right {
	transform: translateX(100%);
	left: unset;
	right: 0;
}
.cm-fade {
	opacity: 0;
}

/* MENU */
.cm-menu {
	display: block;
	position: relative;
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

.cm-menu .mnuIcon {
	float: left;
	padding-right: 8%;
	width: 120px;
}

.cm-menu div.socialIcons ul {
	display: flex;
}

.cm-menu li.mnuResidential span, .cm-menu li.mnuCommercial span  {
	line-height: 60px;
}
.cm-menu li {
	position: relative;
	min-height: 30px;
	list-style-type: none;
}
.cm-menu li > ul {
	display: none;
	position: relative;
	margin-top: 0;
	margin-bottom: 0;
	padding-left: 0;
}
.cm-menu li > ul a {
	position: relative;
	padding: 5px 15px;
	font-weight: initial;
}
.cm-menu a {
	display: block;
	position: relative;
	padding-top: 6px;
	padding-bottom: 6px;
	min-height: 30px;
	background-color: transparent;
	overflow: hidden;
	text-decoration: none;
	-webkit-text-decoration-skip: objects;
	color: #44687D;
	font-weight: 500;
}

/* BUTTON */
.cm-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	outline: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0;
	padding: 14px 16px;
	color: initial;
	text-decoration: none;
	text-transform: none;
	font: inherit;
	overflow: visible;
	-webkit-text-decoration-skip: objects;
	-webkit-tap-highlight-color: transparent;
}
.cm-button:active, .cm-button:focus, .cm-button:hover {
	outline: 1px solid rgba(0, 0, 0, 0.3);
}
.cm-button_text {
	display: inline-block;
}
.cm-button_icon {
	display: inline-block;
	position: relative;
	width: 18px;
	height: 2px;
	background-color: #000;
	transition: background-color 0.25s ease-in-out;
}
.cm-button_icon::before, .cm-button_icon::after {
	content: "";
	position: absolute;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: transform 0.25s, top 0.25s, background-color 0s;
}
.cm-button_icon::before {
	top: -5px;
}
.cm-button_icon::after {
	top: 5px;
}
.cm-button.cm-active .cm-button_icon {
	background-color: rgba(0, 0, 0, 0);
}
.cm-button.cm-active .cm-button_icon::before, .cm-button.cm-active .cm-button_icon::after {
	background-color: #000;
}
.cm-button.cm-active .cm-button_icon::before {
	top: 0;
	transform: rotate(135deg);
}
.cm-button.cm-active .cm-button_icon::after {
	top: 0;
	transform: rotate(225deg);
}
.cm-button_text + .cm-button_icon {
	margin-left: 5px;
}

/* OTHER ICONS */
.cm-icon {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	font-style: normal;
	text-align: left;
	text-indent: -9999px;
	color: #000;
	direction: ltr;
}
.cm-icon::before, .cm-icon::after {
	content: "";
	pointer-events: none;
}
.cm-icon-caret {
	width: 20%;
	height: 30px;
}
.cm-icon-caret::before, .cm-icon-caret::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto 0;
	width: 7px;
	height: 1px;
	box-shadow: inset 0 0 0 32px;
	transform-origin: right;
}
.cm-icon-caret::before {
	transform: rotate(45deg);
}
.cm-icon-caret::after {
	transform: rotate(-45deg);
}
.cm-menu-open + .cm-icon-caret {
	right: 2px;
}
.cm-menu-open + .cm-icon-caret::before, .cm-menu-open + .cm-icon-caret::after {
	top: 5px;
}
.cm-menu-open + .cm-icon-caret::before {
	transform: rotate(-225deg);
}
.cm-menu-open + .cm-icon-caret::after {
	transform: rotate(45deg);
}
.cm-icon-close {
	margin: 2px;
	width: 15px;
	height: 15px;
	transform: rotate(45deg);
}
.cm-icon-close::before, .cm-icon-close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	box-shadow: inset 0 0 0 32px;
	transform: translate(-50%, -50%);
}
.cm-icon-close::before {
	width: 15px;
	height: 1px;
}
.cm-icon-close::after {
	width: 1px;
	height: 15px;
}

  header{
	  position: relative;
	  z-index: 100;
  }
/* ==================  RESPONSIVE MEDIA QUERIES =========================== */

@media screen and (max-width: 767px){
			
}


/* Medium devices - TABLETS  */
@media screen and (min-width: 768px){
	
}

/* Large devices - DESKTOPS */
@media only screen and (min-width: 992px) {

}


