/* General */
body {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}
@media (max-width: 767px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.7rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.3rem;
    }
    h5 {
        font-size: 1.1rem;
    }
    h6 {
        font-size: 1rem;
    }
}
@media (max-width: 575px) {
    h1 {
        font-size: 2rem;
    }
}
ul {
    margin: 0 0 0 20px;
    padding: 0;
    list-style: none;
}
ul li {
    margin-bottom: 5px;
}
ul li:before {
    content: '\2022';
    display: inline-block;
    width: 20px;
    margin-left: -20px;
    color: #ff5800;
    font-weight: bold;
}
a {
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
a:hover {
	color: #ff5800;
}
.orange {
	color: #ff5800;
}
#content {
	position: relative;
	z-index: 1;
}
.clearFix:after {
    clear: both;
    display: table;
    content: '';
}
.noPadTop {
    padding-top: 0 !important;
}
.noPadBottom {
    padding-bottom: 0 !important;
}
h1.underlineCenter, h1.underlineLeft {
    margin-bottom: 3rem;
}
.underlineCenter:after {
    content: '';
    background-color: #ff5800;
    display: block;
    width: 80px;
    height: 1px;
    margin: 0.5rem auto 0;
}
.underlineLeft:after {
    content: '';
    background-color: #ff5800;
    display: block;
    width: 80px;
    height: 1px;
    margin-top: 0.5rem;
}
.alignnone, .alignleft, .aligncenter, .alignright {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.alignnone {
    margin: 5px 20px 20px 0;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto 20px;
}
.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
.btnBox {
    background-color: #ff5800;
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #ff5800;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.btnBox:hover {
    background-color: #fff;
    border-color: #ff5800;
    color: #ff5800;
}
@media (max-width: 991px) {
    .alignleft, .alignright {
        float: none;
        display: block;
        margin: 5px auto 20px;
    }
}
@media (max-width: 767px) {
    .btnBox {
        padding: 8px 25px;
    }
}
@media (max-width: 575px) {
    .btnBox {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Video Responsive */
.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/* Slick Slider */
.slick-dots {
    z-index: 1000;
}
.slick-dots li:before {
    content: '';
    display: none;
}
.slick-dots li button {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
}
.slick-dots li.slick-active button {
    background-color: #ff5800;
    border-color: #ff5800;
}
.slick-dots li:only-child {
    display:none;
}

/* Skip to main */
#skip-main {
    position: absolute;
    top: auto;
    left: -999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}

/* Skip Map */
#skip-map {
    position: absolute;
    top: auto;
    left: -999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
} 
/* Header */
header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header.fixed {
	background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
body.admin-bar header.fixed {
    top: 32px;
}
header.fixed.notFixed {
    position: relative;
    top: auto;
    left: auto;
}
#utility-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
#utility-menu li {
	display: inline-block;
    margin: 0 10px;
}
#utility-menu li:before {
    content: '';
    display: none;
}
#utility-menu li a {
    position: relative;
	display: inline-block;
    padding: 10px 0;
    color: #000;
    text-decoration: none;
}
#utility-menu li a:hover {
	color: #ff5800;
}
li.current-menu-item > a {
    color: #ff5800 !important;
}
#utility-menu .menuSearch {
	cursor: pointer;
}
#utility-menu .menuSearch form {
	display: inline-block;
	width: 0;
	-webkit-transition: all 0.4s;
    transition: all 0.4s;
}
#utility-menu .menuSearch form input {
	display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #000;
    color: #000;
}
#utility-menu .menuSearch form input::-webkit-input-placeholder {
	color: #000;
}
#utility-menu .menuSearch form input::-moz-placeholder {
	color: #000;
}
#utility-menu .menuSearch form input:-ms-input-placeholder {
	color: #000;
}
#utility-menu .menuSearch form input:-moz-placeholder {
	color: #000;
}
#utility-menu .menuSearch.opened form {
	width: 200px;
	margin-left: 10px;
}
#utility-menu .textSize {
	padding: 0 10px;
    border: 1px solid #000;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
#utility-menu .textSize:hover {
	background-color: #ff5800;
	border-color: #ff5800;
}
#utility-menu .textSize a {
    padding: 0;
}
#utility-menu .textSize a:hover {
    color: #000;
}
#utility-menu .textSize span {
	font-size: 0.8rem;
}
#utility-menu li.menu-item a:hover::before {
    content: '';
    background-color: #ff5800;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
}
header.basic .mainLogo {
    max-height: 70px;
}
header.basic nav ul li:before {
    content: '';
    display: none;
}
header.basic nav ul li a {
    position: relative;
    text-decoration: none;
}
header.basic nav ul li a:hover {
	color: #ff5800;
}
header.basic nav ul li a:hover::before {
    content: '';
    background-color: #ff5800;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
}
header.basic nav .hasDropdown ul {
    top: 40px;
	width: 220px;
	padding: 15px 20px;
}
header.basic nav .hasDropdown ul li {
	padding: 0;
}
header.basic nav .hasDropdown ul li a {
	font-size: 0.9rem;
}
header.basic nav .hasDropdown ul li a:hover {
    text-decoration: underline;
}
header.basic nav .hasDropdown:hover ul li a:before, header.basic nav .hasDropdown ul li a:hover::before, header.basic nav ul li.hasDropdown span {
    display: none;
}
@media (max-width: 1440px) {
	#utility-menu li a, header.basic nav ul li a {
		font-size: 0.9rem;
	}
}
@media (min-width: 1200px) {
    header.basic nav .hasDropdown a:focus + ul, header.basic nav .hasDropdown:focus-within ul {
        display: block !important;
        animation: slideDown 0.2s ease-in both;
    }
}
@media (max-width: 1199px) {
    header.basic .mainLogo {
        max-height: 60px;
    }
	header.basic .menu-utility-menu-container {
		display: inline-block;
	    margin-right: 10px;
	    vertical-align: middle;
	}
    header.basic.opened .navButton span:before, header.basic.opened .navButton span:after {
    	background: #fff;
    }
    header.basic nav {
    	background-color: #1d1e20;
    	border-color: #232527;
    }
    header.basic nav ul li a:hover::before {
        display: none;
    }
    header.basic nav ul li {
    	border-color: #232527;
    }
    header.basic nav ul li a, header.basic nav .hasDropdown span {
    	color: #fff;
    }
    header.basic nav .hasDropdown ul {
        top: auto;
    	width: 260px;
    	padding: 0;
    }
    header.basic nav .hasDropdown ul li:last-child {
    	border-bottom: 0;
    }
    header.basic nav .hasDropdown ul li a {
    	color: #000;
    }
    header.basic nav .hasDropdown ul li a:hover {
    	color: #ff5800;
    }
    header.basic nav ul li.hasDropdown span {
		display: block;
	}
	header.basic nav ul li.mobileSearch input {
		background-color: transparent;
	    padding: 15px;
	    border: 0;
	    outline: 0;
	    color: #fff;
	    font-size: 0.9rem;
	    font-family: 'Open Sans', sans-serif;
	}
	header.basic nav ul li.mobileSearch input::-webkit-input-placeholder {
		color: #fff;
	}
	header.basic nav ul li.mobileSearch input::-moz-placeholder {
		color: #fff;
	}
	header.basic nav ul li.mobileSearch input:-ms-input-placeholder {
		color: #fff;
	}
	header.basic nav ul li.mobileSearch input:-moz-placeholder {
		color: #fff;
	}
}
@media (max-width: 767px) {
    body.admin-bar header.fixed {
        top: auto;
    }
}

/* Request Form */
#requestForm {
    background-color: #ff5800;
    position: relative;
    width: 100%;
    z-index: 9;
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
#requestForm.fixed {
	position: fixed;
	top: 0;
    left: 0;
    opacity: 1;
}
#requestForm .formWrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 15px 20px;
}
#requestForm .formWrapper h5 {
    margin-bottom: 0.5rem;
}
#requestForm .gform_wrapper {
    margin: 0;
}
#requestForm .gform_wrapper form {
    position: relative;
}
#requestForm .gform_wrapper form:after {
    clear: both;
    display: table;
    content: '';
}
#requestForm .gform_wrapper .gform_body {
    float: left;
    width: 80%;
}
#requestForm .gform_wrapper ul.gform_fields {
    margin: 0;
    padding: 0;
    list-style: none;
}
#requestForm .gform_wrapper .validation_message,
#requestForm .gform_fields .gfield_description .validation_message {
	background: #000;
	color: #fff;
	padding: 2px 4px;
	width: 170px;
	text-align: center;
}
#requestForm .gform_wrapper .gfield_error .gfield_label,
#requestForm .gform_wrapper li.gfield_error ul.gfield_checkbox,
#requestForm .gform_wrapper .gfield_required {
	color: #000;
}
#requestForm .gform_wrapper ul.gform_fields:after {
    clear: both;
    display: table;
    content: '';
}
#requestForm .gform_wrapper ul.gform_fields li.gfield {
    clear: none;
    float: left;
    width: 25%;
    max-width: none !important;
    margin: 0;
    padding: 0 5px 0 0;
}
#requestForm .gform_wrapper .ginput_container input {
    width: 100%;
    height: 40px;
    margin-bottom: 5px;
    padding: 5px 10px;
    border: 0;
}
#requestForm .gform_wrapper ul li:before{
	display:none;
}
#requestForm .gform_wrapper .ginput_container input:focus {
    outline: -webkit-focus-ring-color auto 5px;
}
#requestForm #field_1_7 {
    width: 100%;
    margin-top: 0;
}
#requestForm #field_1_7 .gfield_label {
    display: inline-block;
    margin: 0 20px 0 0;
}
#requestForm .gform_wrapper .top_label .ginput_container {
    display: inline-block;
    width: 100%;
    margin: 0;
    vertical-align: middle;
}
#requestForm .gform_wrapper .top_label .ginput_container .gfield_checkbox {
    width: 100%;
    margin: 0;
}
#requestForm .gform_wrapper .top_label .ginput_container .gfield_checkbox li {
    display: inline-block;
    margin: 0 15px 0 0;
}
#requestForm .gform_wrapper .top_label .ginput_container .gfield_checkbox li input {
    height: 16px;
    margin: 0;
}
#requestForm .gform_wrapper .top_label .ginput_container .gfield_checkbox li label {
    max-width: none;
}
#requestForm .gform_wrapper .top_label .gfield_label, #requestForm .gform_wrapper .instruction {
    display: none;
}
#requestForm .gform_wrapper .gform_footer {
    clear: none;
    float: left;
    width: 20%;
    margin: 0;
    padding: 0;
}
#requestForm .gform_wrapper .gform_footer input {
    background-color: #000;
    width: 100%;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid #000;
    color: #fff;
    font-weight: 400;
    line-height: inherit;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
#requestForm .gform_wrapper .gform_footer input:hover, #requestForm .gform_wrapper .gform_footer input:focus {
    background-color: #fff;
    color: #000;
}
#requestForm .gform_wrapper .validation_error {
    display: none;
}
#requestForm .gform_wrapper ul.gform_fields li.gfield.gfield_error {
    background-color: transparent;
    margin: 0 !important;
    border: 0;
}
#requestForm .gform_wrapper ul.gform_fields li.gfield.gfield_error .validation_message {
    padding: 0;
}
#requestForm .gform_wrapper ul.gform_fields .gfield.gfield_html {
    float: none;
    position: absolute;
    bottom: 7px;
    right: 0;
    width: auto;
    padding: 0;
    font-size: 0.8rem;
}
#requestForm #gform_confirmation_message_1 {
    font-weight: bold;
    text-align: center;
}
#requestForm .charleft.ginput_counter.warningTextareaInfo {
	display: none;
}
#requestForm .gform_confirmation_message a {
	color:#000;
}
@media (max-width: 991px) {
	#requestForm .gform_wrapper .ginput_container input {
		height: 35px;
	}
	#requestForm .gform_wrapper .gform_footer input {
		height: 35px;
		font-size: 14px;
	}
}
@media (max-width: 767px) {
	#requestForm {
		position: relative;
		top: auto;
		left: auto;
		opacity: 1;
        z-index: 1;
	}
	#requestForm .formWrapper {
		max-width: 500px;
		padding: 20px;
	}
	#requestForm .formWrapper h5 {
		margin-bottom: 1rem;
		text-align: center;
	}
	#requestForm .gform_wrapper .gform_body {
		float: none;
		width: 100%;
	}
	#requestForm .gform_wrapper ul.gform_fields li.gfield {
		width: 50%;
	}
	#requestForm .gform_wrapper .ginput_container input {
		height: 44px;
	}
	#requestForm #field_1_7 {
		margin-top: 1rem;
	}
	#requestForm #field_1_7 .gfield_label {
		margin: 0 0 1rem;
	}
	#requestForm .gform_wrapper .top_label .ginput_container .gfield_checkbox li {
		width: 50%;
		margin: 0;
		padding: 0 10px 5px 0 !important;
	}
	#requestForm .gform_wrapper .gform_footer {
		float: none;
		width: 100%;
		margin-top: 1rem;
	}
	#requestForm .gform_wrapper .gform_footer input {
		width: auto;
		height: auto;
		padding: 10px 30px;
		font-size: 1rem;
	}
    #requestForm .gform_wrapper ul.gform_fields .gfield.gfield_html {
        clear: both;
        float: left;
        display: block;
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 10px;
    }
    #requestForm .gform_wrapper .gform_footer {
        text-align: center;
    }
}
@media (max-width: 575px) {
	#requestForm .formWrapper {
		max-width: 100%;
	}
	#requestForm .gform_wrapper ul.gform_fields li.gfield {
		float: none;
		width: 100%;
	}
	#requestForm .gform_wrapper .top_label .ginput_container .gfield_checkbox li {
		width: 100%;
		padding: 0 0 5px !important;
	}
}

/* Request CTA */
#requestCTA {
    display: none;
}
@media (max-width: 767px) {
    #requestCTA {
        display: block;
        background-color: #ff5800;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px 10px;
        color: #fff;
        font-weight: bold;
        text-align: center;
        text-transform: uppercase;
        cursor: pointer;
        z-index: 9;
    }
    #requestCTA.hide {
        display: none !important;
    }
    #requestCTA .fas {
        margin-left: 5px;
    }
}

/* Footer */
footer {
	background-color: #323232;
    font-size: 18px;
}
footer p, footer a {
	color: #fff;
}
footer.basic .socialIcons a {
	margin: 0 15px;
}
footer .footerLinks {
	/*font-size: 0.9rem;*/
    line-height: 2rem;
}
footer .footerLinks a {
	display: inline-block;
}
footer.basic .copyright {
    font-size: 1em;
}
@media (max-width: 575px) {
	footer.basic .socialIcons a {
		margin: 0 10px;
		font-size: 1rem;
	}
	footer .footerLinks, footer.basic .copyright {
		font-size: 0.8rem;
	}
}

footer #field_2_1::before {
	display: none;
}

footer h5 {
	color: #fff;
}
footer .gform_wrapper .top_label .gfield_label, .gform_wrapper legend.gfield_label {
	display: none;
}
footer .gform_wrapper .gform_body {                            
	width: 100%;
}

footer #gform_2 > div.gform_body {
	width: 300px;
	display: inline-block;
	float: left;
	padding-right: 0px;
}

footer #gform_2 > div.gform_footer.top_label {
	width: 120px;
	display: inline-block;
}

footer #input_2_1 {
	width: 100%;
	height: 50px;
	font-weight: 100;
	padding-left: 20px;
}

footer #gform_2 > div.gform_footer.top_label {
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-left: -17px;
	background-color: #ff5800;
	text-align: center;
}

footer #gform_submit_button_2 {
	height: 50px;
	position: relative;
	margin: 0px auto;
	background-color: transparent;
	color: white;
	text-transform: uppercase;
	font-weight: 400;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

footer .gform_confirmation_message {
	color: #fff;
}

footer .gform_wrapper li.gfield.gfield_error,
footer .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: transparent;
	border: 0;
	padding: 0;
}
footer .gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
footer .gform_wrapper li.gfield_error textarea {
	border: none;
}
footer .validation_error {
	display: none;
}
footer .gform_wrapper .field_description_below .gfield_description {
	padding-top: 5px;
}
footer .gform_wrapper .validation_message {
	color: #000;
	width: auto;
	padding: 5px 20px;
	background-color: #ff0000;
	display: inline-block;
}

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

	/*FORM WRAPPER*/
	footer #gform_2 > div.gform_footer.top_label {                                
		margin-left: 0px;
	}

}

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

	/*FORM INPUT FIELD*/
	footer #input_2_1 {
		position: relative;
		margin: 0px auto;
		padding-left: 5px;
	}

	footer #gform_2 > div.gform_footer.top_label {
		display: block; 
		width: 100%;
	}

	footer #gform_2 > div.gform_body {
		width: 100%;
		display: block;
		float: none;
		padding-right: 0px;
	}

	#page > footer > div > div > div:nth-child(1) > h5, #page > footer > div > div > div:nth-child(1) > p, footer #input_2_1 {
		text-align: center;
	}
}

/* Homepage */
.leadSliderContainer {
    position: relative;
}
.sliderControls {
    position: absolute;
    bottom: 20px;
    right: 10px;
    margin: 0;
    z-index: 1;
}
.sliderControls span {
    display: inline-block;
    padding: 0 10px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.sliderControls span:hover {
    color: #ff5800;
}
.leadSlider {
    display: none;
    position: relative;
    height: auto;
    z-index: 0;
}
.leadSlider.slick-initialized {
    display: block;
}
.leadSlider .slick-list, .leadSlider .slick-track {
	height: 100%;
	opacity: 1;
}
.leadSlider .slick-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 700px;
}
.leadSlider .slick-slide .slideCopy {
    background-color: rgba(0, 0, 0, 0.75);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    z-index: 1;
}
.leadSlider .slideCopy .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 20px;
}
.leadSlider .slideCopy .caption .title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
}
.leadSlider .slideCopy .caption .btnBox {
    margin-top: 1rem;
}
.leadSlider .slick-arrow {
    background-color: rgba(0,0,0,0.5);
    top: 40%;
    width: 43px;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.leadSlider .slick-arrow:hover {
    background-color: #ff5800;
}
.leadSlider .slickPrev {
    left: 10px;
}
.leadSlider .slickNext {
    right: 10px;
}
.leadSlider .slick-dots {
    position: relative;
    bottom: auto;
    left: auto;
}
@media (max-width: 1199px) {
    .leadSlider .slick-slide {
        height: 600px;
    }
    .leadSlider .slick-slide .slideCopy {
        width: 320px;
    }
    .leadSlider .slideCopy .caption {
        padding: 20px;
    }
    .leadSlider .slideCopy .caption .title {
        font-size: 1.6rem;
    }
}
@media (max-width: 991px) {
    .leadSlider .slick-slide {
        height: 500px;
    }
    .leadSlider .slick-slide .slideCopy {
        width: 260px;
    }
    .leadSlider .slideCopy .caption .title {
        font-size: 1.4rem;
    }
}
@media (max-width: 767px) {
    .leadSlider .slick-slide {
        height: 300px;
        margin-bottom: 80px;
    }
    .leadSlider .slick-slide .slideCopy {
    	background: #000;
        width: 230px;
        bottom: -80px;
    }
    .leadSlider .slideCopy .caption .title {
        font-size: 1.2rem;
    }
    .leadSlider .slick-arrow {
    	width: 28px;
    	height: 28px;
    	font-size: 1.2rem;
    }
}
@media (max-width: 575px) {
    .leadSlider .slick-slide {
        height: 250px;
        background-position: center right 19%;
    }
    .leadSlider .slick-slide .slideCopy {
        top: auto;
        /*bottom: 0;*/
        width: 100%;
        max-width: none;
        height: auto;
    }
    .leadSlider .slideCopy .caption {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 15px;
        text-align: center;
    }
    .leadSlider .slideCopy .caption .title {
        font-size: 0.9rem;
    }
    .leadSlider .slideCopy .caption .btnBox {
        margin-top: 0;
    }
}

@media (max-width: 375px) {
	.leadSlider .slick-slide {
		background-position: center right 22%;
	}
}

@media (max-width: 320px) {
	.leadSlider .slick-slide {
		background-position: center right 28%;
	}
}

.home3Col:after {
    clear: both;
    display: table;
    content: '';
}
.home3Col > div {
    float: left;
    width: 33.333333%;
    overflow: hidden;
}
.home3Col a {
    position: relative;
    display: block;
    text-align: center;
}
.home3Col .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.home3Col h2 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}
.home3Col img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.home3Col a:hover img, .home3Col a:focus img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.home3Col a:hover .overlay, .home3Col a:focus .overlay {
    background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 991px) {
    .home3Col h2 {
        font-size: 1.5em;
    }
}
@media (max-width: 767px) {
    .home3Col {
        max-width: 380px;
        margin: 0 auto;
    }
    .home3Col > div {
        float: none;
        width: 100%;
    }
}
@media (max-width: 575px) {
    .home3Col {
        max-width: 300px;
    }
}
.homeCounter {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
}
.homeCounter .number {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 4rem;
    font-weight: bold;
}
.homeCounter h2 {
    margin-bottom: 0.5rem;
}
.homeCounter p {
    margin-bottom: 0;
    font-size: 1.2rem;
}
@media (max-width: 991px) {
    .homeCounter .number {
        font-size: 3rem;
    }
}
@media (max-width: 575px) {
    .homeCounter .number {
        font-size: 2rem;
    }
}
.howItWorksContainer {
    position: relative;
}
.howItWorks .slick-dots {
    position: relative;
    bottom: auto;
    left: auto;
}
.howItWorks h3 {
    position: relative;
    display: inline-block;
    font-weight: 400;
}
.howItWorks h3:before, .howItWorks h3:after {
    content: '';
    background-color: #000;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.howItWorks h3:before {
    left: -60px;
}
.howItWorks h3:after {
    right: -60px;
}
.howItWorks h2 {
    color: #ff5800;
    text-transform: uppercase;
}
.howItWorks p {
    max-width: 90%;
    margin: 0 auto;
    font-size: 1.2rem;
}
@media (max-width: 767px) {
    .howItWorks p {
        max-width: none;
        margin: 0;
        font-size: 1rem;
    }
}
.homeColumns {
    background-color: #eee;
}
.homeColumns img {
    max-width: 150px;
}
.homeColumns p {
    font-size: 0.9rem;
}
@media (max-width: 991px) {
    .homeColumns .col-12 {
        margin-top: 2rem;
    }
    .homeColumns .col-12:first-child {
        margin-top: 0;
    }
}

/* Design Inspiration - Main */
.diSlider {
    position: relative;
}
.diSlider .slick-arrow {
    background-color: rgba(0,0,0,0.5);
    top: 35%;
    width: 43px;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.diSlider .slick-arrow:hover {
    background-color: #ff5800;
}
.diSlider .slickPrev {
    left: 10px;
}
.diSlider .slickNext {
    right: 10px;
}
.diSlider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}
.diSlider .slick-dots {
    position: relative;
    bottom: auto;
    left: auto;
}
.diSlider a {
    text-decoration: none;
}
.diSlider a:hover {
    color: inherit;
}
.diSlider .slide {
    margin: 0;
}
.diSlider .slide img {
    display: block;
    width: 100%;
    margin: 0;
}
.diSlider .slide .copy {
    background-color: #f7f7f7;
    padding: 20px;
}
.diSlider .slide .copy h3:hover {
    color: #ff5800;
    text-decoration: underline;
}
.diSlider .slide .copy p {
    margin: 0;
}
@media (max-width: 991px) {
    .diSlider .slick-arrow {
        top: 30%;
    }
}
@media (max-width: 767px) {
    .diSlider .slick-arrow {
        top: 25%;
    }
}
@media (max-width: 575px) {
    .diSlider .slick-arrow {
        top: 20%;
    }
}

/* Design Inspiration - Single */
.singleDI .mainImg {
    display: block;
    width: 100%;
    margin: 0;
}
.singleDI .productsUsed ul {
    margin: 0 -10px;
    padding: 0;
    list-style: none;
}
.singleDI .productsUsed ul li {
    float: left;
    display: block;
    width: 50%;
    padding: 0 10px;
}
.singleDI .productsUsed ul li:before {
    content: '';
    display: none;
}
.singleDI .productsUsed.four ul li {
    width: 25%;
}
.singleDI .productsUsed ul li a {
    display: block;
}
.singleDI .ourBenefits {
    padding-left: 40px;
}
.singleDI .ourBenefits .icon {
    float: left;
    margin-right: 20px;
}
.singleDI .ourBenefits .icon i {
    font-size: 2.5rem;
}
.singleDI .ourBenefits .benefitCopy {
    overflow: hidden;
}
@media (max-width: 1199px) {
    .singleDI .ourBenefits .icon i {
        font-size: 2rem;
    }
}
@media (max-width: 991px) {
    .singleDI .productsUsed {
        margin-bottom: 1.5rem;
    }
    .singleDI .productsUsed ul li {
        width: 25%;
    }
    .singleDI .ourBenefits {
        padding-left: 20px;
    }
}
@media (max-width: 767px) {
    .singleDI .productsUsed ul li, .singleDI .productsUsed.four ul li {
        width: 50%;
    }
}

/* Single Project */
.singleProject .mainImg {
    margin-bottom: 20px;
}

/* Single Product */
.woocommerce .woocommerce-breadcrumb, .woocommerce .woocommerce-breadcrumb a {
    color: #000;
}
.woocommerce .woocommerce-breadcrumb a:hover {
    color: #ff5800;
}
.woocommerce-product-gallery .mainImg, .woocommerce-product-gallery .mainNav {
    display: none;
}
.woocommerce-product-gallery .mainImg.slick-initialized, .woocommerce-product-gallery .mainNav.slick-initialized {
    display: block;
}
.woocommerce-product-gallery .mainImg .img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 500px;
    border: 1px solid #ccc;
}
.woocommerce-product-gallery .mainNav {
    position: relative;
    max-width: 80%;
    margin: 20px auto 0;
}
.woocommerce-product-gallery .mainNav .slick-arrow {
    color: #000;
}
.woocommerce-product-gallery .mainNav .slick-prev {
    left: -40px;
}
.woocommerce-product-gallery .mainNav .slick-next {
    right: -40px;
}
.woocommerce-product-gallery .mainNav .slick-arrow:hover {
    color: #ff5800;
}
.woocommerce-product-gallery .mainNav .thumb {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 130px;
    margin: 0 5px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.woocommerce-product-gallery .mainNav .thumb.slick-current {
    border-color: #ff5800;
}
.woocommerce div.product div.images img {
    max-height: 528px;
}
.woocommerce ul.products li:before {
    content: '';
    display: none;
}
.woocommerce ul.products li.product a img {
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
}
.woocommerce .products ul, .woocommerce ul.products {
    margin: 0 -10px 1rem;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    width: 25%;
    margin: 0 !important;
    padding: 0 10px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin: 0 0 1rem;
    padding: 0;
    font-family: 'Open Sans';
    font-weight: 400;
    text-decoration: underline;
}
.woocommerce .summary .product_meta a {
    display: inline-block;
    background-color: #e7e7e7;
    margin-top: 5px;
    margin-right: 5px;
    padding: 5px 15px;
    border: 1px solid #ccc;
    text-decoration: none;
}
.woocommerce .summary .product_meta a:hover {
    background-color: #ff5800;
    border-color: #ff5800;
    color: #fff;
}

.single-product .zip-search {
    padding-top: 1.5em;
}
@media (max-width: 1199px) {
    .woocommerce-product-gallery .mainImg .img {
        height: 440px;
    }
    .woocommerce-product-gallery .mainNav .thumb {
        height: 108px;
    }
}
@media (max-width: 991px) {
    .woocommerce div.product div.images.woocommerce-product-gallery, .woocommerce div.product div.summary {
        float: none !important;
        width: 100% !important;
    }
    .woocommerce-product-gallery .mainImg .img {
        height: 400px;
    }
    .woocommerce div.product div.images img {
        max-width: 400px;
        margin: 0;
    }
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        width: 25% !important;
    }
}
@media (max-width: 768px) {
    .woocommerce div.product div.images.woocommerce-product-gallery, .woocommerce div.product div.summary {
        float: none !important;
        width: 100% !important;
    }
    .woocommerce-product-gallery .mainImg .img {
        height: 400px;
    }
    .woocommerce div.product div.images img {
        max-width: 400px;
        margin: 0;
    }
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        clear: none !important;
        width: 25% !important;
    }
}
@media (max-width: 767px) {
    .woocommerce-product-gallery .mainImg .img {
        height: 350px;
    }
    .woocommerce div.product div.images img {
        max-width: 350px;
        margin: 0;
    }
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        width: 50% !important;
    }
}
@media (max-width: 575px) {
    .woocommerce-product-gallery .mainImg .img {
        height: 300px;
    }
    .woocommerce-product-gallery .mainNav .thumb {
        height: 80px;
    }
    .woocommerce-product-gallery .mainNav .slick-prev {
        left: -30px;
    }
    .woocommerce-product-gallery .mainNav .slick-next {
        right: -30px;
    }
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
        clear:both!important;
    }
}

/* Product Categories */
.page-template-product-category .sectionPad .container:after {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background-color: #ccc;
    margin: 0 auto;
}
.page-template-product-category .sectionPad:first-child .container:after, .page-template-product-category .sectionPad:last-child .container:after, .page-template-product-category .sectionPad.cabinets .container:after  {
    display: none;
}
.collectionGrid {
    margin: 2rem -10px;
    padding: 0;
    list-style: none;
}
.collectionGrid li:before {
    content: '';
    display: none;
}
.collectionGrid li {
    float: left;
    width: 25%;
    padding: 0 10px;
}
.w-33 .collectionGrid li {
    width: 33%;
}
.collectionGrid li img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 0 0.5rem;
    border: 1px solid #ccc;
}
.collectionGrid.cabinets {
    margin: 0 -10px;
}
.collectionGrid.cabinets li {
    width: 33.333333%;
}
.collectionGrid.cabinets li img {
    border: 0;
}
.collectionGrid.cabinets li p {
    margin: 0;
}
@media (max-width: 767px) {
    .collectionGrid li {
        width: 50%;
    }
    .collectionGrid.cabinets li {
        width: 100%;
        margin-bottom: 2rem;
    }
    .collectionGrid.cabinets li img {
        max-width: 350px;
        margin: 0 auto 0.5rem;
    }
}
@media (max-width: 575px) {
    .collectionGrid.cabinets li img {
        max-width: 300px;
    }
}

/* Main Locations */
#errorMessage {
    display: none;
    position: relative;
    background-color: #fff;
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid #ccc;
    border-bottom: 0;
}
#errorMessage .close {
    position: absolute;
    top: 50%;
    right: 20px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.4s;
}
#errorMessage .close:hover {
    color: #ff5800;
}
#errorMessage p {
    margin: 0;
}
#searchGoogleMap {
    background-color: #f4f3f3;
    padding: 1rem;
    border: 1px solid #ccc;
}
#searchGoogleMap form > div {
    display: inline-block;
}
#searchGoogleMap .zipcode, #searchGoogleMap .radius {
    margin-right: 10px;
}
#searchGoogleMap form label {
    margin-bottom: 0;
    margin-right: 5px;
}
#searchGoogleMap form input, #searchGoogleMap form select {
    display: inline-block;
    width: auto;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#searchGoogleMap form input:focus, #searchGoogleMap form select:focus {
    outline: -webkit-focus-ring-color auto 5px;
}
#zipcodeInput {
    display: inline-block;
    width: 100px !important;
    margin-bottom: 0;
    padding: .5rem;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#searchGoogleMap .radius .selectWrapper {
    position: relative;
    display: inline-block;
}
#searchGoogleMap .selectWrapper:after {
    content: '\f0dd';
    position: absolute;
    top: 7px;
    right: 12px;
    font-family: Font Awesome\ 5 Pro;
    font-weight: 900;
    z-index: 1;
    pointer-events: none;
}
#radiusDropdown {
    padding-right: 20px;
}
#searchMap {
    background-color: #ff5800;
    height: 42px;
    border: 1px solid #ff5800;
    padding: 0 15px;
    color: #fff;
    font-weight: bold;
    line-height: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
#searchMap:hover {
    background-color: #fff;
    color: #ff5800;
}
#googleMap {
    height: 500px;
    border: 1px solid #ccc;
    border-top: 0;
}
.googleMapWindow {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
}
.googleMapWindow p {
    margin: 0;
}
@media (max-width: 767px) {
    #searchGoogleMap {
        font-size: 0.9rem;
    }
    #searchMap {
        height: 39px;
    }
}
@media (max-width: 575px) {
    #searchGoogleMap form .search {
        display: block;
        margin-top: 15px;
    }
    #searchGoogleMap form .radius {
        margin-right: 0;
    }
    #zipcodeInput {
        width: 90px !important;
    }
    #searchMap {
        width: 100% !important;
    }
}
@media (max-width: 320px) {
    #searchGoogleMap form .radius {
        margin-top: 10px;
    }
}
.state {
    padding: 1rem 1.5rem;
    border: 1px solid #f2f2f2;
}
.state:nth-of-type(2n) {
    background-color: #f2f2f2;
}
.state .locationHeadline {
    position: relative;
    cursor: pointer;
}
.state .locationHeadline:hover {
    color: #ff5800;
}
.state .locationHeadline .fas {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.state .locationHeadline h4 {
    margin: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.state .locationHeadline .underlineLeft:after {
    width: 0;
    margin-top: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.state .locationContent {
    display: none;
    margin-top: 1.5rem;
    margin-bottom: -1rem;
}
.state.opened .locationHeadline .fas, .state:focus-within .locationHeadline .fas {
    -webkit-transform: rotate(180deg) translateY(70%);
    transform: rotate(180deg) translateY(70%);
}
.state.opened .locationHeadline .underlineLeft:after, .state:focus-within .locationHeadline .underlineLeft:after {
    width: 80px;
    margin-top: 0.5rem;
}
.state.opened .locationContent, .state:focus-within .locationContent, .state .locationHeadline:focus + .locationContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.state .locationHeadline:focus {
    color: #ff5800;
    outline: 0;
}
.state.opened .locationHeadline:focus {
    color: inherit;
}
.show_content {
    display: inherit !important;
}
.hide_content {
    display: none !important;
}
@media (max-width: 767px) {
    .state {
        padding: 1rem;
    }
}

/* Single Location */
.text-center__phone {
    color: #ff5800;
}

.sectionDivider {
    margin-top: 2rem;
    border-bottom: 1px solid #ccc;
}
@media (max-width: 991px) {
    .sectionDivider {
        display: none;
        margin-top: 1rem;
    }
}

.singleLocationTopLinks {
    text-align: right;
}
.singleLocationTopLinks > a:first-child {
    padding-right: 15px;
    border-right: 1px solid #000;
}
.singleLocationTopLinks > a:last-child {
    padding-left: 15px;
    border-left: 1px solid #000;
}
.singleLocationTopLinks .topSocialLinks {
    display: inline-block;
    margin: 0 15px;
}
.singleLocationTopLinks .topSocialLinks a {
    margin-right: 10px;
}
.singleLocationTopLinks .topSocialLinks a:last-child {
    margin-right: 0;
}
.staffSection .members .member:nth-of-type(2n+1) {
	clear:both;
}
@media (max-width: 991px) {
    .singleLocationTopLinks {
        text-align: center;
    }
}

.locationImgSlider {
    display: none;
    position: relative;
}
.locationImgSlider.slick-initialized {
    display: block;
}
.locationImgSlider .slick-arrow {
    background-color: rgba(0,0,0,0.5);
    top: 45%;
    width: 43px;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.locationImgSlider .slick-arrow:hover {
    background-color: #ff5800;
}
.locationImgSlider .slickPrev {
    left: 10px;
}
.locationImgSlider .slickNext {
    right: 10px;
}
.locationImgSlider:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}
.locationImgSlider .slick-dots {
    position: relative;
    bottom: auto;
    left: auto;
}

.locationCategories {
    margin: 0 -5px;
}
.locationCategories .box {
    float: left;
    width: 33.333333%;
    border: 5px solid transparent;
    text-align: center;
}
.locationCategories .box img {
    display: block;
    max-width: 100%;
    margin: 0 0 0.5rem;
}
@media (max-width: 767px) {
    .locationCategories {
        max-width: 300px;
        margin: 0 auto;
    }
    .locationCategories .box {
        float: none;
        width: 100%;
        margin-bottom: 1rem;
    }
}
@media (max-width: 575px) {
    .locationCategories {
        max-width: 250px;
    }
}

.singleLocationSide {
    padding-left: 20px;
}
.singleLocationSide .hours {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}
.singleLocationSide .offer {
	margin-bottom: 1rem;
	border: 6px solid #ff5800;
	padding: 10px;
}	
.singleLocationSide .offer .headline p {
	color: #ff5800;
	font-size: 2rem;
	font-weight: bold;
	text-transform: uppercase;
}	
.singleLocationSide .offer p a {
	font-size: .85rem;
}
.singleLocationSide .hours .hoursTitle {
    padding: 10px;
    color: #ff5800;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
}
.singleLocationSide .hours .hoursRow:after {
    clear: both;
    display: table;
    content: '';
}
.singleLocationSide .hours .hoursRow {
    padding: 5px 10px;
    text-align: left;
}
.singleLocationSide .hours .hoursRow:nth-of-type(2n+0) {
    background-color: #eee;
}
.singleLocationSide .hoursRow > div {
    float: left;
    width: 50%;
}
.singleLocationSide .hours .btnBox {
    margin: 1rem 0;
}
.singleLocationSide .map {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    text-align: center;
}
.singleLocationSide .map #sideMap {
    height: 300px;
}
.singleLocationSide .map .btnBox {
    margin: 1rem 0;
}
.singleLocationSide .areasServed {
    margin-bottom: 1rem;
    padding: 10px 15px;
    border: 1px solid #ccc;
}
.singleLocationSide .areasServed .headline {
    padding: 0 0 10px;
    font-size: 1.2rem;
    font-weight: bold;
}
.singleLocationSide #reviews {
    display: none;
    padding: 0 15px;
    border: 1px solid #ccc;
    font-size: 0.8rem;
    text-align: center;
}
.singleLocationSide #reviews .reviewTitle {
    padding: 10px 0;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
}
.singleLocationSide #reviews .hreview {
    text-align: left;
}
.singleLocationSide #reviews .details {
    font-weight: bold;
}
.singleLocationSide #reviews .hearts {
    margin-bottom: 0.5rem;
    color: #ff5800;
}
.singleLocationSide #reviews .readMore {
    text-decoration: underline;
    cursor: pointer;
}
.singleLocationSide #reviews .readMore:hover {
    color: #ff5800;
}
.singleLocationSide #reviews-link {
    margin: 0 0 1rem;
    font-size: 1rem;
}
.singleLocationSide .events {
	margin: 1rem 0;
	border: 1px solid #ccc;
}	
.singleLocationSide .events .eventsTitle {
	padding: 10px;
	color: #ff5800;
	font-size: 1.2rem;
	font-weight: bold;
}
.singleLocationSide .events .eventsRow {
	padding: 5px 10px;
}
.singleLocationSide .events .eventsRow:nth-of-type(2n+0) {
	background-color: #eee;
}
.singleLocationSide .events .eventsRow .title {
	font-weight: bold;
}
.singleLocationSide .events .eventsRow .dates, .singleLocationSide .events .eventsRow .location {
	font-size: 0.85rem;
}
@media (max-width: 991px) {
    .singleLocationSide {
        margin-top: 50px;
        padding-left: 0;
    }
    .singleLocationSide .hours {
        float: left;
        width: 49%;
        margin-right: 2%;
    }
    .singleLocationSide .map {
        float: left;
        width: 49%;
    }
    .singleLocationSide .map #sideMap {
        height: 262px;
    }
    .singleLocationSide .areasServed, .singleLocationSide #reviews {
        clear: both;
    }
}
@media (max-width: 767px) {
    .singleLocationSide {
        margin-top: 40px;
    }
    .singleLocationSide .hours, .singleLocationSide .map {
        float: none;
        width: 100%;
        margin-right: 0;
    }
    .singleLocationSide .map #sideMap {
        height: 250px;
    }
}
@media (max-width: 575px) {
    .singleLocationSide {
        margin-top: 30px;
    } 
}

.featuredProjects {
    position: relative;
    max-width: 90%;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
}
.featuredProjects .slick-arrow {
    top: 45%;
    width: 43px;
    font-size: 1.8rem;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.featuredProjects .slick-arrow:hover {
    color: #ff5800;
}
.featuredProjects .slickPrev {
    left: -60px;
}
.featuredProjects .slickNext {
    right: -60px;
}
.featuredProjects .slick-dots {
    position: relative;
    bottom: auto;
    left: auto;
}
.featuredProjects .slick-slide .img {
    width: 60%;
    padding-right: 30px;
}
.featuredProjects .slick-slide .img img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.featuredProjects .slick-slide .copy {
    width: 40%;
}
@media (max-width: 991px) {
    .featuredProjects {
        margin-top: 2rem;
    }
    .featuredProjects .slick-arrow {
        top: 25%;
    }
    .featuredProjects .slick-slide {
        display: block !important;
    }
    .featuredProjects .slick-slide .img {
        width: 100%;
        margin-bottom: 1.5rem;
        padding: 0;
    }
    .featuredProjects .slick-slide .img img {
        max-width: 500px;
    }
    .featuredProjects .slick-slide .copy {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .featuredProjects {
        max-width: 80%;
    }
    .featuredProjects .slick-arrow {
        top: 15%;
    }
    .featuredProjects .slickPrev {
        left: -50px;
    }
    .featuredProjects .slickNext {
        right: -50px;
    }
}

.sideAdvantages {
    margin-left: 20px;
    padding: 15px;
    border: 1px solid #ccc;
}
.sideAdvantages .advantagesTitle {
    margin-bottom: 10px;
    color: #ff5800;
    font-size: 1.2rem;
    font-weight: bold;
}
.sideAdvantages ul {
    font-size: 0.9rem;
}
.sideAdvantages ul li {
    margin-bottom: 10px;
}
@media (max-width: 991px) {
    .sideAdvantages {
        margin: 20px 0 0;
    }
}

.staffSection {
    padding-right: 40px;
}
.staffSection .members {
    margin-top: 30px;
}
.staffSection .members .member {
    float: left;
    width: 50%;
    padding-right: 20px;
    margin-bottom: 20px;
}
.announcementSection {
    padding-left: 40px;
    border-left: 1px solid #ccc;
}
.announcementSection.noBlogBorder {
    padding-left: 20px;
    border-left: 0;
}
@media (max-width: 991px) {
    .staffSection {
        padding-right: 20px;
    }
    .announcementSection {
        margin-top: 30px;
        padding-left: 20px;
        border-left: 0;
    }
    .announcementSection.noBlogBorder {
        padding-left: 20px;
    }
}
@media (max-width: 575px) {
    .staffSection .members .member {
        float: none;
        width: 100%;
        padding-right: 0;
    }
}

.woocommerce-breadcrumb.product-services {
    margin-bottom: 20px;
}

.w-33 ul li {
    width: 33%;
}

/* Product Services */
.modalOverlay{
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 11 !important;
    top: 0;
    left:0;
    display:none;
    align-items: center;
}
.modalContainer {
    background-color: #fff;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    border: 10px solid #ff5800;
    position: relative;
    padding: 20px;
}
.modalContainer h5 {
    font-size: 1.75em;
}
.modalContainer .gform_wrapper div.charleft{
    display: none;
}
.modalContainer span.modalClose {
    position: absolute;
    top: 10px;
    right: 10px;
}
.modalContainer span.modalClose:hover {
    cursor: pointer;
}
.modalContainer .gform_wrapper .top_label .gfield_label, .modalContainer .gform_wrapper legend.gfield_label, .modalContainer .instruction  {
    display: none;
}
.modalContainer #field_1_7 .gfield_label {
    display: inline-block;
}
.modalContainer .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    width: 100%;
}
.modalContainer .gform_wrapper .top_label li ul.gfield_checkbox, .gform_wrapper .top_label li ul.gfield_radio {
    columns: 3;
}
.modalContainer .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html {
    font-size: 0.6em;
}
.modalContainer .gform_button.button {
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 60px;
}
.modalContainer .validation_error {
	display:none;
}
.reno.reno-modal {
	margin-top: 5rem;
}
.reno-modal {
	border-top: 1px solid #ccc;
	padding-top: 2rem;
}

@media screen and (max-width: 767px) {
    .modalContainer h5 {
        font-size: 1em;
    }
    .modalContainer .gform_wrapper .top_label div.ginput_container {
        margin-top: auto;
    }
    .modalContainer input[type=text],input[type=email], select, textarea {
        margin-bottom: auto;
    }
    .modalContainer .gform_wrapper ul li.gfield {
        margin-top: auto;
    }
    .modalContainer .gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {
        font-size: 0.8em;
    }
    .modalContainer .gform_wrapper .top_label li ul.gfield_checkbox, .gform_wrapper .top_label li ul.gfield_radio {
        columns: 2;
    }
}
/* Contact Us */
.contactUsSide {
    padding-left: 20px;
}
#contactUsMap {
    height: 300px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}
@media (max-width: 991px) {
    .contactUsSide {
        margin-top: 20px;
        padding-left: 0;
    }
}

/* Our Certifications */
.certificationImages .imageRows {
    margin-top: 2rem;
}
.certificationImages .imageRows a {
    display: inline-block;
    margin: 0 20px 20px;
}
.certificationImages .imageRows img {
    display: block;
    max-width: 100%;
    max-height: 150px;
    height: auto;
}

/* FAQ */
.faq {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
}
.faq:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.faq p {
    margin-bottom: 0;
}
.faqSide img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
}
.faqSide img:last-child {
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .faqSide {
        margin-top: 30px;
    }
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li:before {
    content: '';
    display: none;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #fff;
    color: #ff5800;
    text-decoration: underline;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #ff5800;
    color: #fff;
}
.paging-navigation {
    margin-top: 2rem;
    padding: 1rem 0;
}
.paging-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.paging-navigation ul li {
    display: inline;
}
.paging-navigation ul li:before {
    content: '';
    display: none;
}
.paging-navigation .page-numbers.current {
    background-color: #ff5800;
    border-color: #ff5800;
    color: #fff;
    font-weight: bold;
}
.paging-navigation a.page-numbers, .paging-navigation span.page-numbers {
    padding: 5px 10px;
    border: 1px solid #ccc;
}

/* Search */
.searchResults .searchItem {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
}
.searchResults .searchItem:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.searchResults .searchItem .cat {
    display: block;
}


/* Our Advantages */
@media screen and (max-width: 767px) {
    .sideSlider .slick-dots{
        position: relative;
    }
    .sideSlider .slickNext {
        right: 0;
    }
}


/*News*/
#news-articles {
    font-size:0;
}
#news-articles article {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    padding: 0 20px 50px 20px;
    font-size: 16px;
}
#news-articles article h1, #news-articles article h2 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
}
#news-articles article h2 {
    color: #ff5800;
}
@media screen and (max-width: 767px) {
    #news-articles article {
        display: block;
        width: 100%;
    }
}

/*BLOG + ARTICLES*/
#blog-feed article {
    border: 2px solid #DDD;
    border-top: none;
    padding-right: 0;
    padding-left: 0;
    position: relative;
}
#blog-feed article .article-inner {
    padding: 1rem 1rem 2rem 1rem;
}
#blog-feed article h1 {
    font-size: 1.1rem;
    padding-top: 10px;
}
#blog-feed article a {
    text-decoration: none;
    cursor: pointer;
}
.blog-img {
    width: 100%;
    height: 10vw;
    background-size: cover;
}
#blog-feed article small.cat-tag {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}
#blog-feed article small.cat-tag a {
    background: #000;
    color: #FFF;
    font-size: 10px;
    text-transform: uppercase;
    padding: 5px;
    display: inline-block;
    border:1px solid #000;
}
#blog-feed article small.cat-tag a:hover {
    background: #FFF;
    color: #000;
}
#blog-feed article small.cat-tag ul.post-categories {
    display: inline-block;
    margin: 0;
    list-style: none;
}
#blog-feed article small.cat-tag ul.post-categories li {
    margin: 0;
    display: inline-block;
}
#blog-feed article small.cat-tag ul.post-categories li:before {
    display: none;
}
.blog-category span {
    font-weight: 400;
    color: #DDD;
}
#blog-article .blog-img {
    display: block;
    margin: 0 0 20px 0;
}
#blog-article .woocommerce-breadcrumb, #blog-article .article-meta {
    display: block;
    padding-bottom: 1.25rem;
}
#blog-article ul { 
    margin-bottom: 1rem;
	display: inline-block;
}
#blog-article ul.post-categories {
    display: inline-block;
    margin: 0;
    list-style: none;
}
#blog-article ul.post-categories li:before {
    display: none;
}
#recent-blog-posts article {
    padding-bottom: 30px;
    margin-bottom:30px;
    border-bottom: 1px solid #DDD;
}
#recent-blog-posts a h4 {
    font-size: 14px;
    margin-bottom: 0;
}
#blog-more-posts {
    margin-top: 40px;
    background-color: #f4f3f3;
    padding: 0 0 1.25rem 0;
    border: 1px solid #ccc;
}
#blog-more-posts h3 {
    background: #000;
    color: #FFF;
    margin-bottom: 1.5rem;
    padding: .75rem;
    font-size: 1.5rem;
}
#blog-more-posts h3 a {
    color: #FFF;
    text-decoration: none;
}
#blog-more-posts a h4 {
    font-size: 16px;
    margin-bottom: 0;
}
#blog-more-posts .blog-img {
    height: 15vw;
}
blockquote {
    position: relative;
    width: 85%;
    margin: 2rem auto 2rem auto;
    text-align: center;
    padding: 3rem;
    font-style: italic;
    line-height: 1.75rem;
}
blockquote:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    border-bottom: 2px solid #ff5800;
}
blockquote:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    border-bottom: 2px solid #ff5800;
}
blockquote p:last-child {
    margin:0;
}
@media screen and (max-width: 991px) {
    .blog-img, #blog-more-posts .blog-img {
        height: 15vw;
    }
}
@media screen and (max-width: 767px) {
    #recent-blog-posts {
        padding-top: 30px;
    }
    .blog-img, #blog-more-posts .blog-img {
        height: 30vw;
    }
    blockquote {
        width: 100%;
        padding: 2rem;
    }
}

@media screen and (max-width: 575px) {
    #blog-more-posts article {
        padding-bottom: 30px;
    }
}


/* Sitemap */
#sitemap-menu {
    margin: 0;
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4;
}
#sitemap-menu li {
    margin-bottom: 20px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}
#sitemap-menu li a {
    font-size: 1.2rem;
    font-weight: bold;
}
#sitemap-menu li:before {
    content: '';
    display: none;
}
#sitemap-menu li .sub-menu {
    margin: 20px 0 0;
}
#sitemap-menu li .sub-menu li a {
    font-size: 1rem;
    font-weight: normal;
}
@media (max-width: 991px) {
    #sitemap-menu {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }
}
@media (max-width: 767px) {
    #sitemap-menu {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
    }
}

/* Commercial Renovation*/
.img-fluid-75 {
    max-width: 75%;
    height: auto;
}
.page-template-commercial a[name] {
      padding-top: 160px;
      margin-top: -160px;
      display: inline-block; 
    }
    /*UTILITY*/
    .page-template-commercial .ul-2-col {
        columns: 2;
    }
    .page-template-commercial .sectionPadBtm {
        padding-bottom: 60px;
    }
    .page-template-commercial .sectionPadtop {
        padding-top: 60px;
    }
    .page-template-commercial .main-banner-img {
        width: 100%;
        height: 400px;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .page-template-commercial .main-banner-img .container {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

    /* JUMP NAV */
    .page-template-commercial .jump-nav {
        width: 100%;
        height: auto;
        background-color: #f2f2f2 !important;
        border-bottom: 5px solid #ff5800;
    }
    .page-template-commercial .jump-nav .nav-links {
        display: flex;
        justify-content: space-between;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .page-template-commercial .jump-nav .nav-links a {
        font-size: 22px;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
    }

    /* COMMERCIAL APPLICATIONS SLIDER */
    .page-template-commercial .commercial-app-slider {
        width: 100%;
        height: auto;
        margin-top: 40px;
    }
    .page-template-commercial .commercial-app-slider .slick-dots {
        position: static;
    }
    .page-template-commercial .commercial-app-slider .ca-slide img {
        width: 100%;
        height: auto;
    }
    .page-template-commercial .three-col h3 {
        margin-top: 15px;
    }
    @media only screen and (max-width: 475px) {
        /*UTILITY*/
        .page-template-commercial .ul-2-col {
            columns: 1;
        }
        .page-template-commercial .jump-nav .nav-links {
            display: initial;
            text-align: center;
        }
        .page-template-commercial .jump-nav .nav-links a {
            display: block;
            margin-bottom: 10px;
        }
    }

    /*TESTIMONIALS SLIDER*/
    .page-template-commercial .testimonial-slider {
        width: 100%;
        height: auto;
        margin-top: 40px;
    }
    .page-template-commercial .testimonial-slider .slick-dots {
        position: static;
    }

/* Quiz */
.quizOverlay {
        background-color: rgba(0,0,0,0.7);
        position: fixed;
        height: 100vh;
        width: 100vw;
        z-index: 11 !important;
        top: 0;
        left: 0;
        display: none;
        align-items: center;
    }
    .quizOverlay .modalContainer {
        width: 90%;
        height: 90%;
        max-width: 100%;
    }
    .quizOverlay h1 {
        font-weight: 400;
        font-size: 2.5em;
        margin-top: 1em
    }
    .quizOverlay .start p {
        padding: 4em 0;
    }
    .quizOverlay .start a {
        background-color: #ff5800;
        color: #fff;
        border-radius: 50%;
        text-decoration: none;
        padding: 3em;
        width: 6rem;
        height: 6rem;
    }
    .quizOverlay .question {
        align-items: stretch;
        height: inherit;
        overflow: hidden;
    }
    .quizOverlay .question a {
        display: inline-block;
        max-width: 50%;
        
    }
    .quizOverlay .question a img {
        padding: 0.5em;
        max-height: 365px;
    }
    .quizOverlay .question a:hover img {
        opacity: 0.5;
        cursor: pointer;
    }
    .quizOverlay .question .circle {
        background-color: #000;
        border-radius: 50%;
        color: #fff;
        position: absolute;
        padding: 3em;
        top: 50%;
        left: 50%;
        width: 12rem;
        height: 12rem;
        transform: translate(-50%,-50%);
        z-index: 1;
    }
    .quizOverlay .question .circle .text-container {
        position: relative;
    }
    .quizOverlay .question .circle .text {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    .quizOverlay .question.result a{
        display: block;
        max-width: 100%;
    }
    .quizOverlay .question.result a img{
        display: block;
        padding: 0;
        margin: 0 auto;
        max-width: 50%;
    }
    .quizOverlay .question nav {
        margin-top: 3em
    }
    .side-nav {
        font-size: 1.2em;
        margin: 1em 0;
    }
    .side-nav span {
        background-color: #ccc;
        border-radius: 50%;
        height: 20px;
        width: 20px;
        display: inline-block;
        margin-right: 2em;
    }
    .side-nav.active span {
        background-color: orange;
    }

    @media screen and (max-width: 1566px) {
        .quizOverlay .modalContainer {
            overflow: auto;
        }

        #sideNav {
            display: none;
        }
        .col-2.col-mob-top {
            flex: 0 0 100%;
            max-width: 100%;
            text-align: center;
        }
        .col-10.col-mob-body {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .col-mob-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .col-mob-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
        .offset-mob-0 {
            margin-left: 0;
        }

        .quizOverlay .question .circle {
            position: initial;
            width: 100%;
            border-radius: 0;
            top: 0;
            left: 0;
            transform: translate(0);
            height: 1em;
            padding: 1em;
        }
        .quizOverlay .question a {
            width: 49%;
        }
        .quizOverlay .question.result a {
            width: 100%;
            margin-bottom: 1em;
        }
        .quizOverlay .question.result a img {
            max-width: 100%;
        }
    }
    @media screen and (max-width: 767px) {
        .quizOverlay .question a {
            width: 100% !important;
            max-width: 100%;
        }
    }

