/*== Variables ==*/
/* CHANGE VARIABLES TO CHANGE THEME, DON'T CHANGE STATICALLY BELLOW VARIABLES */
:root{ 
	--primary: #002e5d;
	--primary-opacity: #000000cc;
	--secondary: #e21c21;
	--secondary-opacity: #000000cc;
	--accent: #e21c21;
	--reviews: #797979;
	--font: #333;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto/Roboto-Regular.ttf')  format('truetype');
}

/*== Tags ==*/
html {
	scroll-behavior: smooth;
}
body {
	color: var(--font);
	font-family: 'Roboto', sans-serif;
	font-size: 1.15rem;
	line-height: 1.65rem;
	text-align: center;
}
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, 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, main, canvas, details, embed, 
figure, figcaption, footer, header, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, main, menu, nav, section {
	display: block;
}
h1, 
h2, 
h3, 
h4 { /* ===================================================================== Change == */
	/*
	font-family: ;
	font-weight: 300;
	text-transform: uppercase;
	*/
}
h1 {
	font-size: 3rem;
	line-height: 3rem;
	margin: 15px 0 10px;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.25);
}
h2 {
	font-size: 2rem;
	line-height: 2.75rem;
	margin-bottom: 20px;
}
h3 {
	font-size: 1.5rem;
	line-height: 1.75rem;
	margin-bottom: 5px;
}
h4 {
	font-size: 1.25rem;
	line-height: 1.5rem;
	margin-bottom: 5px;
}
p, li {
	margin-bottom: 20px;
}
ol, ul {
	list-style: none;
}
a {
	color: var(--primary); /* ===================================================================== Change == */
	text-decoration: none !important;
}
a:-webkit-any-link, 
a:-moz-any-link, 
a:-ms-any-link, 
a {
	text-decoration: none !important;
}
p > a:hover, li > a:hover {
	text-decoration: underline !important;
}
p > a.btn:hover, li > a.btn:hover {
	text-decoration: none !important; 
}
em {
	font-style: italic !important;
}
strong {
	font-weight: bold !important;
}
sup {
	font-size: 70%;
	vertical-align: super;
}
hr {
	border-bottom: 1px solid #fff; /* ===================================================================== Change == */
	border-left: 0;
	border-right: 0;
	border-top: 0;
	margin: 20px 0px;
}
img {
	display: block;
}
form p {
	margin: 2px 0;
	text-align: left;
}

/* == Universal Classes == */
.form-group {
	float: left;
	padding: 2px 0;
	text-align: left;
	width: 50%;
}
.form-group:first-of-type {
	padding-right: 5px;
}
.form-group:nth-of-type(2) {
	padding-left: 5px;
}
.form-control { /* ===================================================================== Change == */
	/*
	background-color: transparent;
	border-radius: 5px;
	*/
	border: 1px solid #c2c2c2;
	box-sizing: border-box;
	font-size: 1rem;
	height: 50px;
	padding: 10px 20px;
	width: 100%;
}
.form-label {
	font-size: 14px;
	font-weight: bold;
}
input:invalid {
    box-shadow: none;
}
.btn { /* ===================================================================== Change == */
	background: var(--primary);
	border: 3px solid var(--primary);
	box-shadow: 5px 7px 0px rgba(0,0,0,0.3);
    color: #fff;
	display: block;
	font-size: 1.15rem;
    letter-spacing: 0.05rem;
	line-height: 1.5rem;
	margin: 0 auto;
	max-width: 320px;
	padding: 10px 15px;
	text-align: center;
	transition: .3s;
	transition-timing-function: ease;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
}
.btn:hover { /* ===================================================================== Change == */
    background: #fff;
	border-color: var(--primary);
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
	color: var(--primary);
	position: relative;
	transform: translateY(7px);
}
.header .btn{
	background: #e21c21!important;
	border: 3px solid #e21c21!important;
}
.header .btn:hover{
	background: #fff!important;
	border-color: #e21c21!important;
	color: #e21c21!important;
}
a.phone_number {
	font-size: 2rem; /* adjust if number and button are misaligned */
	font-weight: bold;
}
.hidden-sm {
	display: inline-block !important;
}
.hidden-md {
	display: none !important;
}
.large {
	font-size: 120% !important;
	line-height: 120% !important;
}
.small {
	font-size: 80% !important;
	line-height: 110% !important;
}
.brand-color {
	color: var(--accent); /* ===================================================================== Change == */
}
.no-wrap {
	white-space: nowrap;
}
.content {
	padding-top: 100px; /* Adjust depending on logo size */
}
.anchor-tag {
	display: block;
	height: 0;
	position: absolute;
	visibility: hidden;
}
.page-top {
	bottom: 20px;
	position: fixed;
	right: 20px;
	z-index: 99999;
}
.page-top a {
	background: var(--secondary-opacity); /* ===================================================================== Change == */
	border-radius: 5px;
	color: #fff;
	display: block;
	font-size: 2rem;
	padding: 10px 5px;
	transition: .3s;
	transition-timing-function: ease;
}
.page-top a:hover {
	transform: translateY(-10px);
}
.header,
.form, 
.quick-facts, 
.facts-top, 
.col-3, 
.call, 
.remodeling, 
.gallery, 
.facts, 
.data, 
.awards, 
.conditions {
    display: flex;
	max-width: 100%;
	position: relative;
	width: 100%;
}
.header, 
.form, 
.quick-facts, 
.facts-top, 
.col-3, 
.remodeling,
.gallery, 
.facts, 
.data, 
.awards, 
.conditions {
	flex-direction: row;
}
.form__wrapper, 
.facts-top-info, 
.col-3-info, 
.call, 
.call__info, 
.gallery, 
.facts-info, 
.data__info, 
.awards-info, 
.conditions-info, 
.privacy_policy {
	flex-direction: column;
}
.form__wrapper, 
.quick-facts-info, 
.facts-top-info, 
.col-3-info, 
.remodeling__block, 
.call__info, 
.facts-info, 
.data__info, 
.awards-info, 
.conditions-info, 
.privacy_policy {
	display: flex;
	margin: 0 auto;
	max-width: 1340px;
	padding: 40px;
	position: relative;
	width: 100%;
}
.call, 
.data { /* ===================================================================== Change == */
	background-color: var(--secondary);
	color: #fff;
}
.gallery{
	background-color: var(--reviews);
	color: #FFF;
}
.call_phone a.phone_number, 
.footer_phone a.phone_number { /* Change font size if phone number and image don't fit on one line */
	font-size: 2rem;
	line-height: 3rem;
	margin: 0 auto;
	max-width: 320px;
	color: #012e5d;
}
.footer_phone{
	margin-bottom: 20px;
}
.slopedown-top {
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
	height: 60px;
	margin-top: -1px;
	width: 100%;
}
.slopedown-bottom {
	background: #fff;
	clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
	height: 60px;
	width: 100%;
}
.slopeup-top {
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
	height: 60px;
	margin-top: -1px;
	width: 100%;
}
.slopeup-bottom {
	background: #fff;
	clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
	height: 60px;
	width: 100%;
}

/*== Header ==*/
.header { /* ===================================================================== Change == */
	align-items: center;
	background-color: #07263b;
	box-shadow: 0px 3px 7px rgba(0,0,0,0.25);
	padding: 10px 40px;
	position: fixed;
    width: 100%;
	z-index: 99999;
}
.header__logo {
	clear: both;
    display: block;
    flex-grow: 1;
	float: left;
	position: relative;
}
.header__logo a{
	float: left;
}
.header__logo img {
	height: 80px !important;
	margin: 0;
	position: relative;
	top: 0px;
	width: auto !important;
	display: inline-block;
	float: left;
}
.header__logo span.small {
	font-style: italic;
	float: left;
	margin: 0 0 0 20px;
	position: relative;
	top: 34px;
	color: #FFF;
}
.header__cta {
    align-items: center;
    display: flex;
    flex-direction: row;
}
.hello-bar {
	background-color: var(--primary);
	color: #fff;
	opacity: 0 !important;
	padding: 5px 20px;
	position: fixed;
	top: 100px;
	transition: .5s;
	transition-timing-function: ease;
	width: 100%;
	z-index: 99999;
	display:none;
}
.scroll-bar {
	opacity: 1 !important;
	transition: .5s;
	transition-timing-function: ease;
}
.hello-bar p {
	font-size: .9rem;
	line-height: 1.1rem;
	margin-bottom: 0;
}
.hello-bar p a {
	color: inherit;
}
.hello-bar p a:hover {
	text-decoration: underline !important;
}

/*== Form ==*/
.form {
	background-position: 0px 0;
	background-repeat: no-repeat;
	background-size: cover;
    flex-direction: column;
}
.form__wrapper {
	padding: 40px;
}
.form__wrapper_block { /* ===================================================================== Change == */
    background-color: var(--secondary-opacity); 
	box-shadow: 3px 3px 7px rgba(0,0,0,0.5);
	color: #fff;
	padding: 20px;
    width: 450px;
}
.form__wrapper_block svg {
	left: -20px;
	position: relative;
}
.form__wrapper_block svg path {
	fill: #fff; /* ===================================================================== Change == */
}
.hero-cta {
	background-color: var(--secondary); /* ===================================================================== Change == */
	color: #fff;
	margin: -20px -20px 0 -20px;
	padding: 20px;
	position: relative;
	text-align: center;
}
.form__wrapper_block_triger { /* ===================================================================== Change == */
	background-color: #fff; 
	color: var(--font);
	display: block;
	margin: 20px -20px -20px -20px;
    width: calc(100% + 40px);
}
.form__wrapper_block .form-label {
	color: #fff;
}
.form__wrapper_block .btn {
	margin: 20px auto;
}
.form__wrapper_block p {
	margin-bottom: 0;
}

/*== Quick Facts ==*/
.quick-facts-info {
	border-bottom: 1px solid var(--primary); /* ===================================================================== Change == */
	margin: 40px auto 0;
	padding: 0 0 40px;
}
.quick-facts-block {
	display: flex;
	width: 33.333%;
}
.quick-facts-text {
	width: 100%;
}
.quick-facts-text h2 {
	margin-bottom: 0;
}

/*== Facts Top & Bottom ==*/
.facts-top-info, 
.facts-info {
	border-bottom: 1px solid var(--primary); /* ===================================================================== Change == */
	margin: 0 auto;
	padding: 40px;
}
.facts__wrapper-top, 
.facts__wrapper {
	display: flex;
	flex-direction: row;
	margin-top: 20px;
}
.facts__wrapper_info-top, 
.facts__wrapper_info {
	padding-right: 5%;
	width: 75%;
}
.facts__wrapper_info_row-top, 
.facts__wrapper_info_row {
    align-items: center;
	display: flex;
	flex-direction: row;
	margin-bottom: 30px;
	padding-bottom: 30px;
}
.facts__wrapper_info_row-top:last-child, 
.facts__wrapper_info_row:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
.facts__wrapper_info_row-top:last-child, 
.facts__wrapper_info_row:last-child {
	border-bottom: 0;
}
.facts__wrapper_info_row_num-top {
	width: 15%;
}
.facts__wrapper_info_row_num-top > i.fas,
.facts__wrapper_info_row_num-top > i.fad {
	color: var(--primary); /* ===================================================================== Change == */
	font-size: 5rem;
}
.facts__wrapper_info_row_title-top {
	padding-right: 20px;
	text-align: right;
	width: 30%;
} 
.facts__wrapper_info_row_title {
	padding-right: 20px;
	width: 30%;
}
.facts__wrapper_info_row_text-top,
.facts__wrapper_info_row_text {
	text-align: left;
}
.facts__wrapper_info_row_text-top {
	width: 55%;
}
.facts__wrapper_info_row_text {
	width: 70%;
}
.facts__wrapper_info_row_text-top p, 
.facts__wrapper_info_row_text p {
	margin-bottom: 0;
	text-align: left;
	padding: 0 6px;
}
.facts__wrapper_info_row_title h2, 
.facts__wrapper_info_row_title h4, 
.facts__wrapper_info_row_title p, 
.facts__wrapper_info_row_title-top h2, 
.facts__wrapper_info_row_title-top h4,
.facts__wrapper_info_row_title-top p {
	text-align: right;
	margin-bottom: 0;
}
.facts__wrapper_info_row_text-top ul.check-list li:last-child {
	margin-bottom: 0;
}
.facts__wrapper_img-top,
.facts__wrapper_img {
	box-shadow: 20px 20px 0px rgba(0,0,0,0.1);
}
img.facts__wrapper_img-top,
img.facts__wrapper_img {
	height: 100% !important;
	min-height: 294px;
	width: 25% !important;
	object-fit: cover;
	object-position: center center;
}

/*== Services ==*/
.col-3 {
    flex-direction: column;
}
.col-3__block {
    align-content: center;
    display: flex;
    flex-direction: row;
}
.col-3__block_info {
    max-width: 33.333%;
	padding: 0 20px;
}
.col-3__block_info_text {
	height: 50%;
	padding-top: 20px;
	text-align: left;
}
img.col-3__block_info_img {
	height: auto !important;
	min-height: 175px;
	width: 100% !important;
}

/*== Call Box ==*/
.call {
	margin-bottom: 30px;
}
.call__info .btn {
	margin: 20px auto 0;
}

/*== Expectations/Remodeling ==*/
.remodeling__img {
	float: left;
    height: 100%;
    width: 50%;
}
.remodeling__info {
    float: right;
	padding-left: 40px;
	text-align: left;
    width: 50%;
}
.remodeling__info h2, 
.remodeling__info ul.check-list {
	margin-bottom: 20px;
}
.remodeling__info .btn {
	margin: 40px 0;
}
.remodeling__info i{
	color: var(--secondary);
}
.remodeling__info .description{
	text-align: left;
	padding: 0 6px;
}

/*== Image Carousel ==*/
.carousel-wrapper {
	box-shadow: 15px 15px 0px #ececec;
	height: 480px;
	margin: 0 auto;
	position: relative;
}
.carousel-item {
	bottom: 0;
	left: 0;
	opacity: 0;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.5s ease-in-out;
}
.carousel-caption {
	background-color: var(--secondary-opacity); /* ===================================================================== Change == */
	bottom: 0;
	box-shadow: -1px 0 5px rgba(0,0,0,0.5);
	color: rgba(255,255,255,1);
	padding: 10px 5px 5px;
	position: absolute;
	width: 100%;
}
.carousel-caption p{
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
}
ul.carousel-numbers {
	position: relative;
	top: 77%;
}
ul.carousel-numbers li {
	background-color: #fff;
	border-radius: 30px;
	display: inline-block;
	height: 30px;
	margin: 0 10px;
	padding-top: 1px;
	width: 30px;
}
a.carousel-selector {
	display: block;
	font-size: 1.75rem;
}
a.carousel-selector:hover, a.carousel-selector:focus {
	background-color: var(--primary);
	color: #fff;
	outline: none;
	text-decoration: none !important;
}
span.carousel-active {
	display: block;
	font-size: 2rem;
}
.arrow {
	background-color: var(--primary-opacity); /* ===================================================================== Change == */
	border-radius: 50px;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
	display: block;
	position: absolute;
	top: 50%;
	transition: .5s ease;
}
.arrow:hover, 
.arrow:focus {
	background-color: var(--primary-opacity); /* ===================================================================== Change == */
}
.arrow-prev {
	left: -15px;
}
.arrow-prev:hover, 
.arrow-prev:focus {
	transform: translateX(-5px);
}
.arrow-prev::before, 
.arrow-next::after {
	color: #FFF; /* ===================================================================== Change == */
	display: block;
	padding: 12px 15px;
}
.arrow-prev::before {
	content: "⇦";
}
.arrow-next {
	right: -15px;
}
.arrow-next:hover, 
.arrow-next:focus {
	transform: translateX(5px);
}
.arrow-next::after {
	content: "⇨";
}
.light{
	color: white;
}
.alert-banner {
	background-color: var(--primary);
}

.alert-banner a {
	color:#fff;
}
@media (max-width: 480px) {
	.arrow, 
	.light .arrow {
		background-position: 10px 50%;
		background-size: 10px;
	}
}
/*Select every element*/
[id^="item"] {
	display: none;
 }
.item-1 {
	background-size: cover;
	opacity: 1;
	z-index: 2;
 }
.item-2 {
	background-size: cover;
}
.item-3 {
	background-size: cover;
}
.item-4 {
	background-size: cover;
}
.item-5 {
	background-size: cover;
}
*:target ~ .item-1 {
    opacity: 0;
  }
#item-1:target ~ .item-1 {
    opacity: 1;
}
#item-2:target ~ .item-2,
#item-3:target ~ .item-3, 
#item-4:target ~ .item-4, 
#item-5:target ~ .item-5 {
    opacity: 1;
    z-index: 3;
}

/*== Quote Gallery ==*/
.gallery i{
	color: var(--secondary);
}
.gallery__info {
	margin: 0 auto;
	max-width: 1340px;
	padding: 40px 80px;
	position: relative;
	width: 100%;
}
.swiper-slide p {
	font-size: 1.4rem;
	margin: 0 20px 20px;
}
.swiper-slide p.quote::before, 
.swiper-slide p.quote::after {
	color: var(--secondary); /* ===================================================================== Change == */
	font-size: 200%;
	position: absolute;
}
.swiper-slide p.quote::before {
	content: "\201C";
	left: 0;
	top: 10px;
}
.swiper-slide p.quote::after {
	content: "\201D";
	right: 0;
	top: 10px;
}
p.review-name {
	font-style: italic;
	text-align: right;
}
.review-name span{
	white-space: nowrap;
}
.swiper-button-prev {
	left: 20px !important;
}
.swiper-button-next {
	right: 20px !important;
}
.swiper-button-next, 
.swiper-button-prev {
	background-color: rgba(255,255,255,0.6); /* ===================================================================== Change == */
	background-image: none !important;
	border-radius: 50px;
	height: auto !important;
	margin-top: 0 !important;
	opacity: .75;
	position: absolute;
	transition: .5s ease;
	top: 50% !important;
	width: auto !important;
}
.swiper-button-next::after,
.swiper-button-prev::before {
	color: var(--primary); /* ===================================================================== Change == */
	display: block;
	padding: 5px 8px;
}
.swiper-button-next::after {
	content: "⇨";
}
.swiper-button-prev::before {
	content: "⇦";
}
.swiper-button-next:hover, 
.swiper-button-next:focus, 
.swiper-button-prev:hover, 
.swiper-button-prev:focus {
	box-shadow: none;
	outline: none;
}
.swiper-button-next:hover, 
.swiper-button-prev:hover {
	background-color: rgba(255,255,255,.8); /* ===================================================================== Change == */
}
.swiper-button-next:hover {
	transform: translateX(10px);
}
.swiper-button-prev:hover {
	transform: translateX(-10px);
}

/*== Footer ==*/
.data__call {
	text-align: center;
}
.data__form {
	margin: 0 10%;
}
.footer-form {
	float: left;
	width: 50%;
}
.footer-form:nth-child(odd) {
	padding-right: 5px;
}
.footer-form:nth-child(even) {
	padding-left: 5px;
}
p.submit-row {
	display: block;
	float: left;
	width: 100%;
}
p.submit-row .btn {
	margin: 40px auto;
}

/*== Awards/Credentials ==*/
.awards-info {
	padding-bottom: 0;
}
ul.awards-list {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding: 0;
	margin-bottom: 24px;
}
ul.awards-list li {
	display: inline-block;
}
ul.awards-list li img {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	opacity: .7;
	width: auto;
	margin: 8px 24px 0 24px;
}

/*== Conditions ==*/
.conditions a{
	text-decoration: underline!important;
}
.conditions-info {
	padding-top: 0;
	font-size: 16px;
}

/* == Privacy Policy Page == */
.privacy_policy {
	text-align: left;
}

/* == Response Page == */
.form.response_page {
	background-position: top center;
	min-height: calc(100vh - 100px);
}
.response_page h2, 
.response_page p, 
.response_page a {
	color: #fff; /* ===================================================================== Change == */
}

/*== Media Queries ==*/
@media (max-width: 1024px) {
	h2 {
		font-size: 2rem;
		line-height: 2.25rem;
	}
	.form {
		background-position: -200px 0;
	}
	.quick-facts-info {
		margin: 40px 40px 0;
		padding: 0 0 40px 0;
	}
	.facts-top-info, .facts-info {
		margin: 40px;
		padding: 0 0 60px;
	}
	.facts__wrapper-top, 
	.facts__wrapper {
		flex-direction: column;
	}
	.facts__wrapper_info-top, 
	.facts__wrapper_info {
		padding-right: 0;
		width: 100%;
	}
	.facts__wrapper_img-top, 
	.facts__wrapper_img {
		margin: 30px auto 0;
	}
	.col-3__block_info {
		padding: 0 10px;
	}
	.col-3__block_info_text {
		height: 55%;
	}
	.remodeling__img {
		width: 40%;
	}
	.remodeling__info {
		width: 60%;
	}
	.carousel-wrapper {
		height: 280px;
	}
	.carousel-item {
		height: auto !important;
		width: 100% !important;
	}
	.carousel-caption {
		background: rgba(0,0,0,0.6); /* ===================================================================== Change == */
	}
	ul.carousel-numbers {
		top: 114%;
	}
	.arrow {
		top: 110%;
	}
	.arrow-prev {
		left: 0;
	}
	.arrow-next {
		right: 0;
	}
	.data__form {
		margin: 0;
	}
}
@media (max-width: 768px) {
	.hidden-sm {
		display: none !important;
	}
	.hidden-md {
		display: inline-block !important;
	}
	.header {
		padding: 10px 20px;
	}
	.header .hidden-sm {
		display: none !important;
	}
	.form {
		background-position: -150px 0;
	}
	.form__wrapper_block {
		margin: 0 auto;
		width: 420px;
	}
	.form__wrapper_block svg {
		display: none;
	}
	.form__wrapper_block form {
		margin-top: 0;
	}
	.form__wrapper_block_triger {
		padding: 5px 0;
	}
	.facts-top-info {
		margin-bottom: 0;
	}
	img.facts__wrapper_img-top,
	img.facts__wrapper_img {
		height: auto !important;
		min-height: 380px;
		min-width: 305px;
		width: auto !important;
	}
	.col-3__block {
		flex-direction: column;
	}
	.col-3__block_info {
		margin-bottom: 30px;
		max-width: 100%;
	}
	.col-3__block_info_text {
		text-align: center;
	}
	img.col-3__block_info_img {
		height: auto !important;
		margin: 0 auto;
		min-height: 241px;
		min-width: 380px;
		width: auto !important;
	}
	.remodeling__block {
		flex-direction: column;
	}
	.remodeling__img {
		height: auto;
		margin-bottom: 40px;
		width: 100%;
	}
	.remodeling__info {
		text-align: center;
		padding-left: 0;
		width: 100%;
	}
	.remodeling__info .btn {
		margin: 30px auto 0;
	}
	.carousel-wrapper {
		height: 500px;
		margin-bottom: 24px;
	}
	ul.carousel-numbers {
		top: 108%;
	}
	.arrow {
		top: 105%;
	}
	.data__form {
		max-width: 100%;
	}
}
@media (max-width: 500px) {
	body {
		padding-bottom: 76px;
	}
	h1 {
    font-size: 2.4rem;
    line-height: 2.4rem;
	}
	h2 {
		font-size: 1.5rem;
    line-height: 1.8rem;
	}
	.page-top {
		display: none;
	}
	.content {
		padding-top: 80px;
	}
	.form-group {
		width: 100%;
	}
	.form-group:first-of-type {
		padding-right: 0;
	}
	.form-group:nth-of-type(2) {
		padding-left: 0;
	}
	.call_phone a.phone_number, 
	.footer_phone a.phone_number {
		font-size: 2rem; /* ===================================================================== Change == */
		max-width: 100%;
	}
	.form__wrapper, 
	.quick-facts-info, 
	.facts-top-info, 
	.col-3-info, 
	.remodeling__block, 
	.call__info, 
	.facts-info, 
	.data__info, 
	.awards-info, 
	.conditions-info, 
	.privacy_policy {
		padding: 20px;
	}
	.header {
		flex-direction: column;
		height: 80px;
	}
	.header__logo {
		width: 100%;
	}
	.header__logo img {
		height: 50px !important;
		margin: 5px auto;
		width: auto !important;
		float: unset;
	}
	.header__cta {
		background: #fff;
		bottom: 0;
		border-top: 1px solid #ccc;
		padding: 10px;
		position: fixed;
		width: 100%;
	}
	.header__cta a.phone_number {
		font-size: 1.5rem;
		margin-bottom: 5px;
	}
	.hello-bar {
		top: 80px;
	}
	.hello-bar p {
		font-size: .7rem;
		line-height: 1rem;
	}
	.form {
		background-position: 0px 0;
		background-size: auto 315px;
	}
	.form__wrapper {
		margin-top: 250px;
		padding: 0;
	}
	.form__wrapper_block {
		border-radius: 0;
		margin: 0;
		width: 100%;
	}
	.form__wrapper_block form {
		margin-top: 0;
	}
	.form__wrapper_block_triger {
		padding: 5px 0;
	}
	.quick-facts-info {
		flex-direction: column;
		margin: 20px;
		padding: 0;
	}
	.quick-facts-block {
		margin: 20px 0;
		width: 100%;
	}
	.facts-top-info, .facts-info {
		margin: 20px;
		padding: 0 0 20px;
	}
	.facts__wrapper-top, 
	.facts__wrapper {
		flex-direction: column;
	}
	.facts__wrapper_info_row-top,
	.facts__wrapper_info_row {
		flex-direction: column;
	}
	.facts__wrapper_info_row_num-top {
		width: 100%;
	}
	.facts__wrapper_info_row_num-top img{
		margin:auto;
	}
	.facts__wrapper_info_row_title-top, 
	.facts__wrapper_info_row_title {
		margin: 10px 0;
		padding-right: 0;
		width: 100%;
	}
	.facts__wrapper_info_row_title-top h2, 
	.facts__wrapper_info_row_title h2, 
	.facts__wrapper_info_row_title-top h4,
	.facts__wrapper_info_row_title h4, 
	.facts__wrapper_info_row_title-top p,
	.facts__wrapper_info_row_title p {
		text-align: center;
	}
	.facts__wrapper_info_row_text-top,
	.facts__wrapper_info_row_text {
		text-align: center;
		width: 100%;
	}
	img.facts__wrapper_img-top,
	img.facts__wrapper_img {
		height: auto !important;
		margin-bottom: 40px;
		min-height: 349px;
		min-width: 280px;
		width: 100% !important;
	}
	img.col-3__block_info_img {
		height: auto !important;
		min-height: 166px;
		min-width: 260px;
		width: 100% !important;
	}
	.call {
		flex-direction: column;
	}
	.call_phone {
		max-width: 100%;
		text-align: center;
	}
	.carousel-wrapper {
		height: 210px;
	}
	ul.carousel-numbers {
		top: 118%;
	}
	ul.carousel-numbers li {
		margin: 0;		
	}
	.arrow {
		top: 93px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
	}
	.arrow-prev::before, .arrow-next::after{
		padding: 8px 10px;
	}
	.gallery__info {
		padding: 40px;
	}
	.swiper-container {
		margin-top: 0px !important;
	}
	.gallery-thumbs {
		display: none !important;
	}
	.swiper-button-next, .swiper-button-prev {
		top: 50% !important;
	}
	.swiper-slide p {
		font-size: 1.2rem;
	}
	.footer-form {
		width: 100%;
	}
	.footer-form:nth-child(odd) {
		padding-right: 0;
	}
	.footer-form:nth-child(even) {
		padding-left: 0;
	}
	.data__form {
		margin: 0;
	}
	.call_phone a.phone_number,
	.footer_phone a.phone_number {
		padding-left: 0;
	}
	ul.awards-list li {
		max-width: 50%;
	}
	ul.awards-list li img {
		margin: 6px auto;
    width: 75%;
    display: block;
    height: auto;
	}
	.response_page {
		height: 100%;
	}
	
	.alert-banner-wrap {
		padding:10px;
		margin-left:0px;
		margin-right:0px;
	}	
	.footer_phone{
		display: none;
	}
	.remodeling__info li{
		text-align: left;
	}
	ul.awards-list {
    flex-direction: row;
    margin-bottom: 0;
	}
}
@media (max-width: 400px) {
	.form {
		background-size: auto 255px;
	}
}