/*-------------------------------- RESET CSS ---------------------------------------*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
/*============================ END RESET CSS =======================================*/


@font-face {
    font-family: "Rubik";
	font-weight: 400;
    src: url(font/Rubik-Regular.ttf);
	font-display: swap;
}
@font-face {
    font-family: "Rubik";
	font-weight: 500;
    src: url(font/Rubik-Medium.ttf);
	font-display: swap;
}
@font-face {
    font-family: "Rubik";
	font-weight: 700;
    src: url(font/Rubik-Bold.ttf);
	font-display: swap;
}

html, body{
	margin: 0;
	padding: 0;
	font-size: 17px;
	line-height: 21px;
	color: #555;
	/* background: #f7f7f7; */
	background: #FAFAFA;
	font-family: 'Rubik', sans-serif;
	font-weight: 400;

	width: 100%;
	height: 100%;

	-webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}
::selection { 
	background: #00B0F5;
	color: #FAFAFA;
}
.white::selection { 
	background: #FAFAFA;
	color: #00B0F5;
}
.gray {
	color: #555;
}
.black {
	color: #333;
}
.blue {
	color: #00B0F5;
}
.white {
	color: #FAFAFA;
}
.regular {
	font-weight: 400;
}
.medium {
	font-weight: 500;
}
.bold {
	font-weight: 700;
}
.underline {
	text-decoration: underline;
}
.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
hr {
	border: 0;
	border-top: 1px solid rgb(87 138 230 / 20%);
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover,
a:focus,
a:visited {
	/* color: inherit; */
	text-decoration: none;
}
.spacer_10 {
	display: table;
	width: 100%;
	height: 10px;
}
.spacer_25 {
	display: table;
	width: 100%;
	height: 25px;
}
.section {
	display: table;
	width: 100%;
	margin: auto;
}
.section_inner {
	display: table;
	width: 100%;
	/* max-width: 95%; */
	max-width: 1000px;
	margin: auto;
}
.button {
	display: table;
    width: 100%;
    max-width: 250px;
    margin: auto;
    background: #00B0F5;
	/* background: linear-gradient(45deg, #007ad0, #00B0F5); */
    color: #FAFAFA !important;
    font-size: 19px;
    line-height: 25px;
    font-weight: 700;
    padding: 15px 10px;
    border-radius: 10px;
	text-align: center;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.button:hover {
	cursor: pointer;
	background: #007ad0;
	/* background: linear-gradient(45deg, #00B0F5, #007ad0); */
}
.full {
	display: table;
	width: 100%;
}
.half {
	display: inline-block;
	vertical-align: top;
	width: 45%;
	margin: auto;
	padding: 0 10px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.third {
	display: inline-block;
	vertical-align: top;
	width: 30%;
	margin: auto;
	padding: 0 10px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.quarter {
	display: inline-block;
	vertical-align: top;
	width: 24%;
	margin: 15px auto;
	padding: 0 10px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
ol,
ul {
	font-size: 15px;
	line-height: 19px;
}
.faq ul {
	list-style: disc;
}
.faq ul li {
	margin-left: 25px;
}

/*--- SECTION - HEADER ---*/
.section_header_top {
	font-size: 15px;
	line-height: 19px;	
	background: #333;
	color: #FAFAFA;
}
.section_header_top .section_inner {
	position: relative;
}
.top_item_contact {
	display: table;
	float: left;
	position: relative;
	padding: 15px 0;
}
.top_item_contact img {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	height: 20px;
	margin-right: 5px;
}
.top_item_contact span {
	display: inline-block;
	vertical-align: middle;
}
.top_item_button {
	display: table;
    position: absolute;
	z-index: 10;
    right: 0;
    top: 0;
    width: auto;
	font-weight: bold;
    background: #00B0F5;
    padding: 20px 50px;
    border-radius: 0 0 10px 10px;
}
.top_item_button:hover {	
	background: #007ad0;
}

.section_header {
	font-size: 15px;
	line-height: 19px;
	padding: 15px 0;
}
.section_header .section_inner {
	position: relative;
}
.header_center {
	display: table;
	margin: auto;
}
.header_left {
	display: table;
	float: left;
}
.header_right a {
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
	text-decoration: none;
	font-size: 17px;
	color: #555;
}
.header_right a:hover {
	text-decoration: underline;
}
.header_right {
	position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
	display: table;
	float: right;
	text-decoration: none;
	color: #555;
	text-align: right;
}
.header_right_mobile {
	display: none;
	padding: 10px;
	background: #00B0F5;
	border-radius: 10px;
	/* margin-top: -3px; */
}
.header_right_mobile img {
	display: table;
	margin: auto;
	width: 20px;
	height: auto;
}
.header_right_mobile span {
	display: table;
    position: absolute;
    top: -3px;
    right: -3px;
	width: 15px;
    height: 15px;
    background: #5CB85C;
    border-radius: 100%;    
}
.green_circle_live {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	background: #5CB85C;
	border-radius: 100%;
}

.pulse_button {
	box-shadow: 0 0 0 rgba(92, 184, 92, 0.5);
	transform: scale(1);
	animation: pulse 1.5s infinite;
}
.pulse_button:hover {
	animation: none;
}
@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.77);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 8px rgba(226, 39, 38, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(226, 39, 38, 0);
	}
}

.header_right_row_1 span {
	display: inline-block;
	vertical-align: middle;	
}
.header_right_row_2 img {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	height: 15px;
}
.header_right_row_2 span {
	display: inline-block;
	vertical-align: middle;
	font-weight: 700;
	color: #00B0F5;
}
.header_center {
	display: table;
	width: 100%;
	margin: auto;
}
.logo {
	display: table;
	margin: auto;
	text-decoration: none;
}
.logo img {
	width: auto;
	height: 50px;
	margin: auto;
}

/*--- SECTION HERO ---*/
.section_hero {
	text-align: center;    
    background-size: cover, cover;
    background-repeat: no-repeat;    
	background: #f3f2f1;
}
.section_hero_homepage {
	padding: 27vh 0 5vh 0;
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,1)), url(../img/hero_blue.jpg);
	background-position: center top, center top;
}
.section_hero_restoration {
	padding: 25vh 0 15vh 0;
	background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.7)), url(../img/restoration/restoration_hero.jpg);
	background-position: center;
}
h1 {
	display: table;
	margin: 0 auto 15px auto;
	font-size: 50px;
	line-height: 55px;
	width: 95%;
	max-width: 800px;
	text-align: center;
}
.section_hero h1 {
	text-shadow: 2px 2px #333;
}
.section_hero h2 {
	font-size: 23px;
	line-height: 27px;
}
h2 {
	display: table;
	margin: 0 auto;
	font-size: 27px;
	line-height: 33px;
} 
h3 {
	display: table;
	margin: 0 auto;
	font-size: 17px;
	line-height: 21px;
}  
.hero_CTA {
	display: table;
	margin: 50px auto;
	max-width: 300px;
}
.hero_CTA_400 {
	display: table;
	margin: 50px auto;
	max-width: 400px;
}
.hero_categories {
	display: table;
	margin: 30px auto 30px auto;
}
.category { 
	display: inline-block;
	vertical-align: top;
	max-width: 150px;
	padding: 10px 23px;
	margin: 3px;
	color: inherit;
	background: #FAFAFA;
	border: 2px solid #f3f2f1;
	border-radius: 5px;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}
.category:hover {
	cursor: pointer;
	border-color: #00B0F5;
	box-shadow: 0 0 15px 5px rgb(87 138 230 / 15%);
}
.category_icon {
	display: table;
	margin: auto;
	background-color: #f7f7f7;
	border-radius: 100%;
	color: #333333;
}
.category_icon .icon {
	display: table;
	font-size: 90px;
	margin: auto;
}
.category_text {
	font-weight: 500;
    margin-top: 5px;
}
.category:hover .category_icon .icon,
.category:hover .category_text {
	color: #00B0F5;
}
.hero_rating {
	display: table;
	margin: 20px auto 50px auto;
}
p,
.hero_rating_text {
	font-size: 15px;
	line-height: 19px;
}
.hero_rating_img {
	display: table;
    width: auto;
    height: 50px;
    margin: 10px auto 0 auto;
}
.section_advertised {
	/* background: #eaeaea; */
	background: linear-gradient(#eaeaea,#fafafa);
}
.advertised_img {
	display: table;
	width: 100%;
	max-width: 800px;
	margin: auto;
	padding: 20px 0;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.4;
}

/*--- SECTION SERVICES ---*/
.section_services {
	background-image: url(../img/services/services_bkg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	padding: 100px 0 100px 0;
	text-align: center;	
}
.section_services .quarter {
	padding: 0 10px 15px 10px;
}
.section_services .quarter:hover:not(.services_notactive) {
	cursor: pointer;
	box-shadow: 0px 0px 10px 0px #ddd;
    background: #fff;
    border-radius: 10px;
}
.section_services .quarter:hover .icon {
	color: #00B0F5;
}
.section_services h1 {
	margin-bottom: 50px;
}
.services_icon {
	display: table;
	margin: auto;
	background-color: transparent;
    border-radius: 100%;
}
.services_icon img {
	display: table;
	margin: auto;
	width: 100%;
	max-width: 120px;
	height: auto;	
}
.services_title {
	font-size: 20px;
	line-height: 25px;
	margin: 5px auto;
}

/*--- SECTION ABOUT ---*/
.section_about {
	padding: 100px 0 150px 0;
	background: #00b0f5;
}
.section_about .section_inner {
	max-width: 700px;
	}
.section_about_horizontal .section_inner {
	max-width: 1000px;
	text-align: center;
}
.section_about h1 {
	text-align: center;
	margin-bottom: 50px;
}
.about_text {
	font-size: 19px;
    line-height: 25px;
	text-align: left;
}
.section_about .half {
	display: inline-block;
	vertical-align: middle;
	}
.about_title {
	margin-bottom: 10px;
}
.about_img {
	display: table;
	margin: auto;
	width: 90%;
	/* max-width: 300px; */
}
.form {
	display: table;
	float: right;
	width: 100%;
	padding: 30px 20px;
	background: #FAFAFA;
	box-sizing: border-box;
	border-radius: 10px;
}
.form_cta {
	width: 100%;
	max-width: 100%;
	margin-top: 25px;
}
.form .half {
	width: 49%;
	padding: 10px 0;
}
.form .half:first-child {
	padding-right: 5px;
}
.form .half:nth-child(2) {
	padding-left: 5px;
}
.form_tcpa {
	display: table;
	width: 100%;
	text-align: justify;
	font-size: 13px;
	line-height: 15px;
	color: #888;
	margin: 10px auto;
}
.field_error {
	display: none;
    color: red;
    margin: 10px 0 0 0;
	padding: 0 10px;
	text-align: left;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.button_inactive {
	cursor: not-allowed;
	opacity: 0.7;
}
.ty_title {
	padding: 10px 0;
	text-align: center;	
}


/*--- SECTION TESTIMONIALS ---*/
.section_testimonials {
	background-image: url(../img/testimonials/testimonials_bkg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
	margin-top: -100px;
    padding: 200px 0 100px 0;	
    text-align: center;
	position: relative;
}
.section_testimonials .section_inner {
	display: block;
	max-width: calc(100vw - 20px);
}
.testimonials_stars {
	display: table;
	margin: auto;
	width: auto;
	height: 50px;
}
/*- testimonial carousel -*/
.testimonials {
	line-height: inherit;
	height: auto;
	width: 100%;
	margin: 30px auto;
	display: block;
}
.marquee {
	margin: 20px 0px !important;
	padding: 0px !important;
	overflow: hidden;
}
.js-marquee {
	margin-right: 0px !important;
} 
.testimonial {
	display: inline-block;
    vertical-align: top;
    width: 300px;
	min-height: 265px;
    margin-right: 10px;
    padding: 10px;
    background: #fcfcfc;
    border: 2px solid #f3f2f1;
	text-align: left;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.testimonial_img {
	display: inline-block;
	vertical-align: middle;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	margin-right: 10px;
}
.testimonial_title {
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
	line-height: 21px;
	text-align: left;
}
.testimonial_text {
	display: table;
	width: 100%;
	min-height: 95px;
	font-size: 15px;
	line-height: 19px;
	margin: 10px auto;
	text-align: left;
}


/*--- SECTION FAQ ---*/
.section_faq {
	padding: 170px 0 100px 0;
	margin-top: -120px;
	background: #fafafa;
	border-top: 1px solid #f3f2f1;
    border-bottom: 1px solid #f3f2f1;
}
.section_faq h1 {
    margin-bottom: 50px;
}
.section_faq .section_inner {
	max-width: 700px;
}
.faq {
	display: table;
	width: 100%;
	padding: 20px 15px;
	margin: 5px auto;
	background-color: #FAFAFA;
	border: 2px solid #f3f2f1;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	position: relative;
}
.faq:hover {
	cursor: pointer;
	background: #f7f7f7;
}
.faq_arrow {
	display: table;
    width: 15px;
    height: auto;
    position: absolute;
    top: 25px;
    right: 15px;
	transition-duration: 0.2s;
}
.faq_title {
	display: table;
	width: 100%;
	font-size: 17px;
	line-height: 21px;
	/* background-image: url('../img/arrow_down.svg');
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 15px; */
	padding-right: 20px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.faq_answer {
	display: none;
	padding: 20px 20px 10px 10px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.faq_open .faq_answer {
	display: block;
}
.faq_open .faq_arrow {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}


/*--- SECTION CTA BOTTOM ---*/
.section_bottom {
	padding: 70px 0;
	text-align: center;
}
.section_bottom h3 {
	max-width: 500px;
}
.bottom_icon {
	display: table;
    margin: auto;
    background-color: #f7f7f7;
    border-radius: 100%;
}
.bottom_icon .icon {
	font-size: 110px;
}
.bottom_subtitle {
	font-size: 19px;
	line-height: 25px;
	margin: 15px auto;
}
.bottom_subtitle {
	display: inline-block;
	vertical-align: middle;
}
.bottom_buttons {
	text-align: center;
	position: relative;
}
.bottom_divider {
	display: inline-block;
    vertical-align: middle;   
    position: absolute;
	height: 100%;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
}
.bottom_divider_line {
	display: table;
	width: 1px;
    height: 100%;
    background: #333333;
}
.bottom_divider_circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #FAFAFA;
	padding: 5px 7px;
	border: 1px solid #333333;
	border-radius: 100%;
}
.bottom_half_call {
	color: inherit;
}
.bottom_half_online:hover,
.bottom_half_call:hover {
	cursor: pointer;
}
.bottom_half_online:hover .icon-quote_online,
.bottom_half_call:hover .icon-quote_call {
	color: #00B0F5;
}
.bottom_half_online:hover .button_bottom_online,
.bottom_half_call:hover .button_bottom_call {
	background: linear-gradient(45deg, #00B0F5, #007ad0);
}


/*--- SECTION MAP ---*/
.section_map {
	background: #fdfdfd;
}
.section_map .section_inner {
	padding: 0 0 30px 0;
}
.section_map_inner {
	position: relative;
	background: #ddd;
}
.section_map iframe {
	-webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.9;
}
.section_map_info {
	display: table;
    max-width: 360px;
    height: 100%;
    margin: auto;
    position: absolute;
	z-index: 10;
    top: 0;
    /* right: 0;
    transform: translate(-50%,0%); */
	right: calc(100vw/2 - 1000px/2);
}
.section_map_info_div {
	display: table;
    float: right;
    background: #00b0f5;
    width: 100%;
	max-width: 360px;	
    height: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
}
.section_map_info_div_inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}
.section_map_info_item {
	display: table;
	margin: 25px auto;
	font-size: 17px;
	
}
.section_map_info_item img {
	display: inline-block;
    vertical-align: middle;
    width: auto;
    margin-right: 10px;
}
.section_map_info_cta {
	display: table;
	width: 100%;
	background: #333;
	color: #FAFAFA;
	padding: 15px 0;
	margin-top: 40px;
	border-radius: 10px;
	text-align: center;
	font-weight: bold;
}
.section_map_info_cta:hover {
	cursor: pointer;
	opacity: 0.9;
}

/*--- SECTION FOOTER ---*/
.section_footer {
	padding: 100px 0 100px 0;
	background: #333333;
	color: #FAFAFA;
	text-align: center;
}
.footer_ty {
	display: none;
}
.logo_footer {
	display: table;
	margin-bottom: 10px;
}
.logo_footer img {
	display: table;
	width: 100%;
	max-width: 240px;
	height: auto;
}
.section_footer .quarter p {
	font-size: 13px;
	line-height: 19px;
	text-align: center;
}
.section_footer .quarter {
	text-align: left;
}
.footer_menu_title {
	font-size: 13px;
	line-height: 17px;
	margin-bottom: 20px;
}
.footer_menu_item {
	display: table;
	font-size: 17px;
	line-height: 21px;
	margin-bottom: 10px;
}
.footer_menu_item:hover {
	color: #00b0f5;
}
.footer_social {
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
}
.footer_social:hover {
	cursor: pointer;
	opacity: 0.8;
}
.footer_social img {
	display: table;
	width: 30px;
	height: auto;
}
.quarter_inner {
	display: table;
	margin: auto;
}
.quarter_social {
	/* max-width: 150px; */
}



/*--- FORMS ---*/
input,
select {
	display: table;
	width: 100%;
	max-width: calc(100% - 4px);
	border: 2px solid #eee;
	background: #FFF;
	color: #333333;
	font-size: 17px; 
	padding: 10px 0;
	text-indent: 10px;
	border-radius: 10px;
	margin: 5px 0 10px 0;
	text-align: left;
	font-family: 'Rubik', sans-serif;
    font-weight: 500;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

}
input::placeholder {
	color: #aaa;
	font-weight: 300;
}
input[type=text],
input[type=tel] {
	-moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
.inputError {
    border-color: #FF004E!important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(255 0 78 / 25%)!important;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    /* background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAh0lEQVQ4T93TMQrCUAzG8V9x8QziiYSuXdzFC7h4AcELOPQAdXYovZCHEATlgQV5GFTe1ozJlz/kS1IpjKqw3wQBVyy++JI0y1GTe7DCBbMAckeNIQKk/BanALBB+16LtnDELoMcsM/BESDlz2heDR3WePwKSLo5eoxz3z6NNcFD+vu3ij14Aqz/DxGbKB7CAAAAAElFTkSuQmCC); */
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyMCAyMCcgZmlsbD0nbm9uZSc+PHBhdGggZD0nTTcgN2wzLTMgMyAzbTAgNmwtMyAzLTMtMycgc3Ryb2tlPScjMzMzJyBzdHJva2Utd2lkdGg9JzEuNScgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJy8+PC9zdmc+);
    background-repeat: no-repeat;
	background-position: center right 2px;
    background-size: 25px;
	/* text-align-last: center; */
	text-align-last: left;
}
input:active,
input:focus,
select:active,
select:focus {
	border-color: #00B0F5;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 176 245 / 25%);
}
input[type=radio] {
	display: inline-block;
	vertical-align: middle;
	width: 19px;
	height: 19px;
	border-radius: 100%;
}
input[type=radio]:active,
input[type=radio]:focus {
	box-shadow: none;
	border-color: initial;
}
input[type=radio]:hover {
	cursor: pointer;
}

.section_hero_forms {
	padding: 2vh 0 11vh 0;
	transition-duration: 0.3s;
	min-height: 430px;
}
.section_hero_forms_nobkg {
	background-position: left -50vw bottom, right -50vw bottom, center;
}
.hero_zip {
	display: table;
	margin: 50px auto 20px auto;
	width: 95%;
	max-width: 500px;
	background: #FAFAFA;
	padding: 5px;	
	border: 2px solid #f3f2f1;
	border-radius: 15px;
	box-shadow: 0px 0px 15px 0px #eee;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
#drips_phone {
	display: table;
	width: 100%;
	float: left;
	background: transparent;
	border: 0;
	margin: 5px auto;
	padding: 10px 0;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
}
.zip_button,
.drips_button {
	width: 45%;
    max-width: 180px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(0%,-50%);
}
.form_view {
	display: none;
    width: 95%;
    max-width: 700px;
    margin: auto;
    /* background: rgb(87 138 230 / 5%);
    border: 2px solid #00B0F5; */
	background: #FAFAFA;
    border: 2px solid #f3f2f1;
	border-top: 0;
    border-radius: 0px 0px 5px 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: 0px 0px 20px 0px #eee;
	position: relative;
}
.form_view_inner {
	display: table;
	width: 100%;
	text-align: center;
	padding: 50px 20px 30px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.form_location {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0%);
    padding: 10px 20px;
    font-size: 15px;
    text-align: center;
    background: rgb(87 138 230 / 20%);
    /* border: 2px solid #00B0F5;
	border-top: 0; */
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form_location img {
	display: inline-block;
    vertical-align: middle;
    height: 17px;
    margin-right: 5px;
}
.form_location span {
	display: inline-block;
    vertical-align: middle;
}
.progress_bar {
	display: table;
	width: calc(100% + 4px);
    margin-left: -2px;
	background: rgb(87 138 230 / 20%);
}
.progress_bar_inner {
	display: table;
	height: 7px;
	background: #00B0F5;
	transition-duration: 0.2s;
}
.form_half {
	display: table;
	width: 48%;
	margin: 5px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.float_left {
	float: left;
}
.float_right {
	float: right;
}
.form_question {
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 20px;
}
.form_button {
	display: table;
	width: 100%;
	margin: 10px auto;
	font-size: 19px;
	line-height: 25px;
	font-weight: 500;
	padding: 10px 0;
	text-align: center;
	border: 2px solid #eee;
	border-radius: 10px;
	transition-duration: 0.2s;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form_button:hover {
	cursor: pointer;
	color: #00B0F5;
	border-color: #00B0F5;
}
.form_button_selected {
	background: rgb(87 138 230 / 10%);
	color: #00B0F5;
	border-color: #00B0F5;
}
.view_div {
	display: table;
	width: 100%;
}
.button_age {
	display: inline-block;
	width: 23%;
	margin: 5px 1%;
}
.button_homeowner,
.button_insured,
.button_v2_insured {
	display: inline-block;
	width: 48%;
	margin: 10px 1%;
	max-width: 200px;
}
.button_homeowner:nth-child(1n),
.button_insured:nth-child(1n),
.button_v2_insured:nth-child(1n) {
	margin: 10px 2% 10px 0;
}
.button_homeowner:nth-child(2n),
.button_insured:nth-child(2n),
.button_v2_insured:nth-child(2n) {
	margin: 10px 0 10px 2%;
}
.button_vehicles {
	display: block;
	width: 100%;
	max-width: 300px;
}
.button_v2_vehicles {
	display: inline-block;
	width: 100%;
	max-width: 18%;
	margin: 1%;
}
.button_tobacco,
.button_gender {
	display: inline-block;
	width: 48%;
	margin: 10px 1%;
	max-width: 200px;
}
.button_tobacco:nth-child(1n),
.button_gender:nth-child(1n) {
	margin: 10px 2% 10px 0;
}
.button_tobacco:nth-child(2n),
.button_gender:nth-child(2n) {
	margin: 10px 0 10px 2%;
}
.button_coverage {
	display: block;
	width: 100%;
	max-width: 300px;
}
/* .form_buttons {
	display: table;
	width: 100%;
}
.back_button {
	display: table;
	width: 20%;
	float: left;
	background: #aaa;
	
} */
.next_button {
	display: table;
	width: 100%;
	max-width: 300px;
}
.submit_button {
	display: table;
	width: 100%;
	max-width: 88%;
}
.form_label {
	font-size: 17px;
	line-height: 21px;
	text-align: left;
	margin-left: 5px;
}
.tcpa {
	display: table;
    width: 88%;
    margin: 20px auto;
    text-align: justify;
    font-size: 13px;
    line-height: 15px;
    color: #aaa;
}
.tcpa a {
	color: #aaa;
	text-decoration: underline;
}
.icon-back_button {
	display: table;
	position: absolute;
	top: 20px;
	left: 10px;
	font-size: 40px;
	color: #00B0F5;
	border-radius: 100%;
	z-index: 10;
}
.icon-back_button:hover {
	cursor: pointer;
	/* color: #00B0F5; */
	background: rgb(87 138 230 / 5%);
}




/*--- MODALS ---*/
.modal {
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
}
.modal_inner {
	position: absolute;
	top: 11vh;
    left: 50%;
    transform: translate(-50%,0%);
	display: table;
	width: 95%;
	max-width: 700px;
	padding: 50px;
	background: #FAFAFA;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 10px;
	box-shadow: 0 0 10px 0 #333;
}
.modal_close {
	position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    border-radius: 100%;
}
.modal_close:hover {
	cursor: pointer;
	background-color: rgb(136 136 136 / 15%);
}
.modal_phone {
	display: table;
	margin: 40px auto 15px auto;
}
.modal_phone img {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	height: 30px;
	margin-right: 10px;
}
.modal_phone span {
	display: inline-block;
	vertical-align: middle;
	font-size: 30px;
}
.modal_agents_live {
	display: table;
	margin: auto;
}
.modal_agents_live .green_circle_live {
	width: 15px;
    height: 15px;
    margin-right: 5px;
    /* box-shadow: 0 0 0 0.2rem rgb(92 184 92 / 30%); */
}
.modal_agents_live .modal_agents_live_text {
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
	line-height: 21px;
}
.button_modal_close {
	width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

/*--- FORM ---*/
.section_header_form {
	border-bottom: 1px solid #eee;
	background: #FAFAFA;
}
.header_right_form {
	width: 80%;
	max-width: calc(100% - 300px);
}
.progress_bar_top {
	display: table;
	width: 100%;
    margin-left: -2px;
	background: rgb(0 176 245 / 25%);
	border-radius: 5px;
}
.progress_bar_top_inner {
    display: table;
    height: 7px;
    color: #fff;
    font-weight: bold;
    text-align: right;
    padding: 1px 10px 1px 0;
    background: #00b0f5;
	/* background: linear-gradient(45deg, #46CEFA, #0D85F5); */
    border-radius: 5px;
    transition-duration: 0.2s;
    box-sizing: border-box;
}
.section_form {
	display: table;
    width: 100%;
    height: 100vh;
    background-color: #00b0f5;
    background-image: url(../img/form_bkg.png);
    background-repeat: repeat;
    background-size: 300px 300px;	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.section_form .section_inner {
	max-width: 600px;
}
.section_form .form {
	box-shadow: 0 4px 5px 4px rgba(0,0,0,.15);
	margin-top: 40px;
}
.form_title {
	display: table;
	max-width: 90%;
    margin: 30px auto;
    font-size: 40px;
    line-height: 50px;
    font-weight: bold;
	text-align: center;
    color: #fff;
    text-shadow: 1px 2px #000;
}
.view_form {
	text-align: center;
}
.view_form_title {
	display: table;
    margin: 10px auto 20px auto;
    font-size: 21px;
    line-height: 27px;
    font-weight: 500;
    text-align: center;
}
.view_button {
	display: inline-block;
	vertical-align: middle;
	width: 48%;
	margin: 1%;
	text-align: center;
	background: #fff;
	padding: 15px;
	border: 3px solid #eee;	
	border-radius: 5px;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.view_button_half,
.view_button_half_dummy {
	display: inline-block;
	vertical-align: middle;
	/* width: 47%;
	max-width: 200px; */
	width: 31%;
	max-width: 250px;
	margin: 1%;
}
.view_button_full {
	display: table;
	width: 95%;
	max-width: 400px;
	margin: 1% auto;
	font-size: 20px;
    line-height: 25px;
    font-weight: bold;
}
.view_button:hover,
.view_button_active {
	cursor: pointer;
	color: #00B0F5;
	border-color: #00B0F5;
}
#view_services .full {
	max-width: 550px;
    margin: auto;
}
.view_button_services {
	padding: 10px;
}
.view_button_services img {
	display: table;
	width: 100px;
	height: auto;
	margin: auto;
	background: #fff;
	border-radius: 100%;
}
.view_button_services div {
	display: table;
	margin: 0 auto 10px auto;
	font-size: 20px;
	line-height: 25px;
	font-weight: bold;
}
#google_maps_satellite_loader {
	display: none;
	margin: 20px auto;
}
#google_maps_satellite_div {
	margin: 10px auto 30px auto;
}
#google_maps_satellite {
	display: table;
	width: 100%;	
	border-radius: 10px;
}
#view_address {
	max-width: 500px;
	margin: auto;
}
#view_name,
#view_phone_email {
	max-width: 400px;
    margin: auto;
}
.back_button {
	display: table;
	width: 150px;
	margin: 20px auto 10px auto;
	padding: 10px 0;
	background: #aaa;
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.back_button:hover {
	cursor: pointer;
	background: #888;
}


/*--- GENERAL PAGES ---*/
.general_page {
	margin-bottom: 100px;
}
.general_page h1 {
	margin: 50px auto 30px auto;
}
.general_page h2 {
	margin: 30px auto 20px auto;
}
.general_page p,
.general_page li {
	margin-bottom: 10px;
}
.general_page .section_inner {
	width: 95%;
}

.section_process {
	background-color: #00b0f5;
    background-image: url(../img/form_bkg.png);
    background-repeat: repeat;
    background-size: 300px 300px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.section_process h1 {
	color: #fff;
	margin: 100px auto;
}

.page_process {
	font-size: 17px;
	line-height: 21px;
}
.page_process .section_inner {
	max-width: 1100px;
}
/* .process_row {
	display: table;
	width: 100%;
	margin: 100px auto;
}
.page_process .half {
	display: inline-block;
	vertical-align: middle;
	width: 49%;
	text-align: left;
	box-sizing: border-box;
} */
.process_row {
	display: flex;
	align-items: center;
  	justify-content: center;
	margin: 150px auto;
}
.process_row_half {
	flex: 50%;
	box-sizing: border-box;
}

.process_row_text {
	padding: 0 50px;
}
.page_process h1 {
	margin: 100px auto;
}
.page_process h2 {
	margin: 0px 0 20px 0;
}
.page_process ul {
	list-style: disc;
}
.page_process ul li {
	padding-left: 5px;
    margin-left: 20px;
}
.page_process ul li,
.page_process p {
	font-size: 18px;
	line-height: 23px;
}
.process_background {
	display: table;
	width: 100%;
	height: 400px;
	margin: auto;	
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	border-radius: 10px;
}
.section_restoration {
	/* padding: 100px 0 150px 0; */
    background: #f3f3f3;
}
.flex_full {
	display: flex;
	width: 100%;
	flex-direction: row;
	align-items: center;
  	justify-content: center;
	margin: auto;
	height: 70vh;
}
.flex_half {
	flex: 1;
	box-sizing: border-box;
}
.restoration_water {	
	background-image: url(/img/restoration/water_damage.jpg);
	background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
	height: 100%;
}
.restoration_fire {
	background-image: url(/img/restoration/fire_damage.jpg);
	background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
	height: 100%;
}
.restoration_text {
	display: table;
	max-width: 500px;
	text-align: center;
}
.restoration_text_right {
	margin: auto auto auto 5vw;
}
.restoration_text_left {
	margin: auto 5vw auto auto;
}
.restoration_text h1 {
	margin: auto 0 5px 0;
	text-align: left;
}
.restoration_text h2 {
	text-align: left;
	margin: 0;
}
.restoration_p {
	margin: 30px auto auto auto;
}
.restoration_p p {
	font-size: 20px;
    line-height: 25px;
	text-align: left;
	margin: 0 auto 10px auto;
}
.section_restoration_bottom {
	padding: 150px 0 150px 0;
	background-color: #333;
    background-image: url(../img/form_bkg.png);
    background-repeat: repeat;
    background-size: 300px 300px;
	text-align: center;
}
.section_restoration_bottom h1 {
	text-shadow: 1px 2px #333;
}
.section_northwell {
	background-image: url(../img/northwell_hero.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 70px 0 170px 0;
	position: relative;
}
.section_northwell:before {
	content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 78 160 / 77%);
    /* background-image: radial-gradient(rgb(29 46 62 / 50%) 20%, rgb(29 46 62 / 10%) 10%); */
    background-position: 0 0;
    background-size: 8px 8px;
}
.section_northwell .section_inner {	
	position: relative;
}
.section_northwell .section_inner .half_form {
	padding: 0 4% 0 0;
}
.section_northwell .section_inner .half_text {
	padding: 0 0 0 4%;
}
.section_northwell h2 {
	font-size: 33px;
    line-height: 38px;
	text-shadow: 1px 2px black;
}

/* ----------------- LOADER PURE CSS ------------------ */
#loaderBIGOuter {
	position: fixed;
	z-index: 1000;
	height: 100%;
	width: 100%;
	text-align: center;
	top: 0px;
	/*opacity: 0.977;*/
	background: #555;
}
#loaderBIGInner {
	position: relative;
	margin: 0px auto;
	display: block;
	top: 35%;
}
#loaderBIGInner img {
    display: block;
    margin: 10px auto 20px auto;
    width: 200px;
    height: auto;
}

.loaderQuotesText {
	margin-top: 15px;
	color: #FAFAFA;
	display: table;
	width: 95%;
	margin: 15px auto;
	font-size: 15px;
	line-height: 20px;
}

.loaderCSS {
	margin: 0px auto;
	font-size: 5px;
	position: relative;
	text-indent: -9999em;
	border-top: 0.7em solid rgba(255, 255, 255, 0.1);
	border-right: 0.7em solid rgba(255, 255, 255, 0.1);
	border-bottom: 0.7em solid rgba(255, 255, 255, 0.1);
	border-left: 0.7em solid #F8F8FF;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 0.30s infinite linear;
	animation: load8 0.30s infinite linear;
}
.loaderCSS_blue {
	margin: 0px auto;
	font-size: 5px;
	position: relative;
	text-indent: -9999em;
	border-top: 0.7em solid rgba(0, 176, 245, 0.1);
	border-right: 0.7em solid rgba(0, 176, 245, 0.1);
	border-bottom: 0.7em solid rgba(0, 176, 245, 0.1);
	border-left: 0.7em solid #00b0f5;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 0.30s infinite linear;
	animation: load8 0.30s infinite linear;
}
.loaderCSS,
.loaderCSS:after,
.loaderCSS_blue,
.loaderCSS_blue:after {
	border-radius: 50%;
	width: 5em;
	height: 5em;
}
@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/*============================== END LOADER PURE CSS =============================*/



/*----------- MEDIA QUERIES -------------*/

@media only screen and (max-width: 1000px) {	
	.section_hero {
		text-align: center;
		padding: 20vh 0 10vh 0;		
	}
	.section_hero_forms_nobkg {
		background-position: left -85vw bottom, right -85vw bottom, center;
	}
	.section_advertised .section_inner,
	.section_header .section_inner,
	.section_about .section_inner,
	.section_faq .section_inner,
	.section_bottom .section_inner {
		max-width: 95% !important;
	}	
}
@media only screen and (max-width: 800px) {	
	h1 {
		font-size: 35px;
		line-height: 40px;
		max-width: 550px;
	}
	.tcpa {
		width: 100%;
	}
	.section_footer .quarter:first-child {
		display: table;
		width: 80%;
		margin-bottom: 50px;
		text-align: center;
	}
	.section_footer .quarter:last-child {
		display: table;
		width: 100%;
		margin-top: 50px;
	}
	.section_footer .quarter:nth-child(2),
	.section_footer .quarter:nth-child(3) {
		width: 45%;
	}
	.logo_footer {
		margin: 0 auto 10px auto
	}
	.testimonials_stars {
		height: 40px;
	}
	#mediaalpha_placeholder {
		margin-top: 0;
	}

	.page_process h1 {
		margin: 35px 0;
		max-width: 100%;
	}
	.process_row {
		flex-direction: column;
		margin: 50px auto;
	}
	.page_process .section_inner {
		max-width: 95%;
	}
	.process_background {
		height: 250px;
	}
	.process_row_half {
		width: 100%;
	}
	.process_row_img {
		order: 1;
		margin-bottom: 15px;
	}
	.page_process h2 {
		margin: 0 0 10px 0;
	}
	.process_row_text {
		order: 2;
		padding: 0 5px;
	}
}

@media only screen and (max-width: 600px) {
	/* .header_left {
		float: none;
    	margin: auto;
	} */
	.section_hero {
		text-align: center;
		padding: 20vh 0 10vh 0;
	}
	.section_hero_forms_nobkg {
		background-position: left -150vw bottom, right -150vw bottom, center;
	}
	h1 {
		font-size: 30px;
		line-height: 35px;
		max-width: 90%;
	}
	h2 {
		font-size: 21px;
		line-height: 25px;
		max-width: 90%;
	}
	.hero_h3 {
		max-width: 95%;
	}
	.section_about h1 {
		margin-bottom: 20px
	}
	.category {
		padding: 8px 19px;
	}
	.category_icon .icon {
		font-size: 70px;
	}
	.header_right_desktop {
		display: none;
	}
	.header_right_mobile {
		display: table;
	}
	.about_text {
		text-align: left;
	}
	.about_img {
		margin-top: 30px;
	}
	.half,
	.third {
		display: table;
		width: 100%;
		float: none;
		padding: 0;
	}	
	.section_services .quarter {
		margin-bottom: 30px;
	}
	.bottom_divider {
		display: table;
		width: 100%;
		max-width: 300px;	
		height: 1px;
		background: #333333;
		position: relative;
		margin: 50px auto;			    	
	}
	.button {
		max-width: 90%;
		padding: 10px;
	}
	.next_button,
	.button_vehicles {
		max-width: 100%;
	}
	.button_v2_vehicles {
		width: 48%;
		max-width: 48%;
	}
	.button_v2_vehicles:nth-child(1n) {	
		margin: 10px 0 10px 2%;	
	}
	.button_v2_vehicles:nth-child(2n) {		
		margin: 10px 2% 10px 0;
	}
	.footer_menu_title {
		text-align: center;
	}
	.footer_menu_item {
		margin: auto auto 10px auto;
	}
	.quarter_social {
		max-width: 100%;
		text-align: center;
	}
	.testimonials_stars {
		height: 35px;
	}
	.icon-back_button {
		top: 15px;
		left: 5px;
		font-size: 40px;
	}
	.icon-back_button:hover {		
		background: transparent;
	}
	.modal h2 {
		max-width: 100%;
	}
	.modal_inner {
		padding: 50px 20px;
	}
	.button_modal_close {
		max-width: 100%;
	}
	.section_header_top {
		text-align: center;
	}
	.top_item_contact {
		display: inline-block;
		vertical-align: middle;
		float: none;
		padding: 7px 0;		
	}
	.top_item_button {
		margin-top: 48px;
		border-radius: 10px;
		padding: 10px 20px;
		right: 5px;
	}
	.logo img {
		height: 30px;
	}
	.logo_northwell img {
		width: 95%;
		max-width: 350px;
    	height: auto;    
	}
	.header_right_desktop {
		display: none;
	}
	.section_services {
		padding: 50px 0;
	}
	.section_services .quarter {
		width: 49%;
    	margin: 5px auto;
	}
	.section_services h1 {
		margin-bottom: 10px;
	}
	.services_icon img {
		max-width: 100px;
	}
	.section_about {
		padding: 50px 0 150px 0;
	}
	.form {
		float: none;
		margin-top: 30px;
	}
	.form .half {
		display: table;
		width: 100%;
		padding: 5px 0 !important;
	}
	.section_testimonials {
		padding: 150px 0 50px 0;
	}
	.section_map_inner {
		background: transparent;
	}
	.section_map_info {
		width: 100%;
		max-width: 100%;
		position: relative;
		/* transform: translate(0,0); */
		right: 0;
	}
	.section_map_info_div {
		max-width: 100%;
		float: none;
	}
	.section_services {
		background-position: right center;
	}
	.section_testimonials {
		background-position: left center;
	}
	.form_cta {
		width: 100%;
		max-width: 100%;
	}

	/*--- FORM ---*/
	.header_left_form {
		float: none;
		margin: auto;
	}
	.header_left_form .logo img {
		height: 45px;
	}
	.header_right_form {
		width: 100%;
		max-width: 100%;
		position: relative;
		transform: unset;
		top: 0;
		margin: 10px auto 0 auto;
	}
	.progress_bar_top_inner {
		font-size: 13px;
		line-height: 15px;
	}
	.form_title {
		margin: 20px auto;
		font-size: 25px;
		line-height: 30px;
	}
	.section_form .form {
		margin-top: 10px;
		border-radius: 0;
		padding: 30px 10px;
	}
	.view_button_half_dummy {
		/* display: none; */
	}
	.view_button_half,
	.view_button_half_dummy {
		width: 47%;
		max-width: 200px;
	}

	/*--- RESTORATION ---*/
	.section_hero_restoration {
		padding: 25vh 0 15vh 0;
		background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(../img/restoration/restoration_hero.jpg);
		background-position: center;
	}
	.flex_full {
		flex-direction: column;
		height: 90vh;
	}
	.flex_half {
		width: 100%;
	}
	.flex_order_1 {
		order: 1;
	}	
	.restoration_text {
		max-width: 90%;
		margin: 20px auto 50px auto;
	}
	.restoration_text h1 {
		margin: auto auto 5px auto;
		text-align: center;
	}
	.restoration_text h2 {
		margin: auto;
		text-align: center;
	}
	.restoration_text_p {
		font-size: 18px;
		line-height: 23px;
		margin: 20px auto 0 auto;
		text-align: left;
	}
	.section_restoration_blue {
		padding: 50px 0 150px 0;
	}
	.top_item_button_northwell {
		display: none;
	}
	.section_northwell h2,
	.section_northwell p {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	/*--- NORTHWELL ---*/
	.half_text_desktop {
		display: none !important;
	}
	.half_text_mobile {
		display: table !important;
	}
	.section_northwell .section_inner .half_form {
		padding: 0;
	}
	.section_northwell {
		padding: 30px 0 150px 0;
	}
	.section_northwell h2 {
		font-size: 25px;
    	line-height: 30px;
	}
}

@media only screen and (max-width: 400px) {
	.section_hero {
		text-align: center;
		padding: 10vh 0 5vh 0;
	}
	.section_hero_forms {
		padding-top: 0;
	}
	.section_hero_forms_nobkg {
		background-position: left -150vw bottom, right -150vw bottom, center;
	}
	/* .section_hero_forms {
		min-height: 430px;
	} */
}

@media only screen and (max-width: 360px) {
	.top_item_contact {
		display: table;
		width: 100%;
		text-align: center;
	}
	.top_item_button {
		margin-top: 80px;
	}
}