/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */


@import url('https://fonts.googleapis.com/css?family=Staatliches');
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,700,900');

@font-face {
	font-family: 'font';
	src:url('../fonts/Quicksand_Book.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'font2';
	src:url('../fonts/poppins.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'feathericons';
	src:url('../fonts/feathericons/feathericons.eot?-8is7zf');
	src:url('../fonts/feathericons/feathericons.eot?#iefix-8is7zf') format('embedded-opentype'),
		url('../fonts/feathericons/feathericons.woff?-8is7zf') format('woff'),
		url('../fonts/feathericons/feathericons.ttf?-8is7zf') format('truetype'),
		url('../fonts/feathericons/feathericons.svg?-8is7zf#feathericons') format('svg');
}


.home-reviews {
	    padding: 100px 0px;
       background: linear-gradient(to right, #ffffff00, #ffffff00), url(/img/deck-staining-01.jpg);
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
    background-color: #fff;
    background-repeat: no-repeat;
}


#ronbos-reviews {
  --r-card: #ffffff;
  --r-bg: #f7f9fc;
  --r-text: #0b1320;
  --r-muted: #5e6a7d;
  --r-accent: #0d47a1;
  --r-border: #e5e9f0;
  --r-radius: 14px;
  --r-shadow: 0 1px 2px rgba(0,0,0,.05), 0 8px 30px rgba(0,0,0,.06);
 /* background: var(--r-bg);*/
  padding: clamp(1rem, 1.5vw, 2rem) 1rem;
}
#ronbos-reviews .reviews-inner { max-width: 1100px; margin: 0 auto; }
#ronbos-reviews .reviews-title {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  font-weight: 800; letter-spacing: -.02em; margin: 0 0 50px; color: #fff; text-align: center;
	text-shadow: 2px 2px 1px #000;
}
#ronbos-reviews .review-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
#ronbos-reviews .review-card {
  background: var(--r-card);
  border: 1px solid var(--r-border);
  border-radius: var(--r-radius);
  box-shadow: var(--r-shadow);
  padding: 1rem;
  display: grid;
  gap: .5rem;
}
#ronbos-reviews .review-text { color: var(--r-text); line-height: 1.6; }
#ronbos-reviews .review-meta { color: var(--r-muted); font-size: .95rem; }
#ronbos-reviews .review-author { font-weight: 700; }
#ronbos-reviews .review-link {
  color: #0a96a0; text-decoration: underline; text-underline-offset: 2px;
  font-weight: 600; width: fit-content;
}
#ronbos-reviews .review-link:hover { text-decoration-thickness: 2px; }
#ronbos-reviews .review-stars { display: inline-flex; gap: 2px; }
#ronbos-reviews .review-stars svg { width: 18px; height: 18px; fill: #f6c343; }

#ronbos-reviews .reviews-cta { text-align: center; margin-top: .5rem; }
#ronbos-reviews .btn-more,
#ronbos-reviews .btn-leave {
  appearance: none; border: 0; border-radius: 999px; cursor: pointer;
     background: linear-gradient(to top, rgb(10, 150, 160), rgb(52, 201, 218)) !important; color: #fff; padding: .8rem 1.25rem; font-weight: 700;
  box-shadow: 0 6px 16px rgba(13,71,161,.25);
}
#ronbos-reviews .btn-more:hover,
#ronbos-reviews .btn-leave:hover { filter: brightness(1.05); }
#ronbos-reviews .btn-leave { display: inline-block; text-decoration: none; }

@media (max-width: 900px) {
  #ronbos-reviews .review-group { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  #ronbos-reviews .review-group { grid-template-columns: 1fr; }
}
@media (prefers-color-scheme: dark) {
  #ronbos-reviews {
    --r-card: #121821; --r-bg: #0b0f14; --r-text: #e8edf5; --r-muted: #bec8d8;
    --r-accent: #8ab4ff; --r-border: #1f2a39; --r-shadow: none;
  }
  #ronbos-reviews .review-link { color: var(--r-accent); }
}


.home-faqs {
	padding: 100px 0px 100px 0px;
}


#ronbos-faq {
  --faq-bg: #ffffff;
  --faq-card: #f8fafc;
  --faq-text: #0b1320;
  --faq-muted: #5e6a7d;
  --faq-accent: #0d47a1;   /* deep blue accent */
  --faq-border: #e5e9f0;
  --faq-border-strong: #cfd8e3;
  --faq-link: #0d47a1;
  --faq-link-hover: #08306b;
  --faq-focus: 2px solid #0d47a1;
  --faq-radius: 12px;
  --faq-shadow: 0 1px 2px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.06);
  background: var(--faq-bg);
  color: var(--faq-text);
  max-width: 980px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}

#ronbos-faq .faq-title {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--faq-text);
  text-wrap: balance;
}

#ronbos-faq .faq-list {
  display: grid;
  gap: 1rem;
}

/* Card / item container */
#ronbos-faq .faq-item {
  background: var(--faq-card);
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  box-shadow: var(--faq-shadow);
  overflow: clip;
}

/* Question button (full width) */
#ronbos-faq .faq-q {
  margin: 0;
}

#ronbos-faq .faq-trigger {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  background: transparent;
  border: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .75rem;
  text-align: left;
  padding: 1rem 1.125rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--faq-text);
  cursor: pointer;
}

#ronbos-faq .faq-trigger:hover {
  background: rgba(13,71,161,0.06);
}

#ronbos-faq .faq-trigger:focus-visible {
  outline: var(--faq-focus);
  outline-offset: -2px;
  border-radius: calc(var(--faq-radius) - 2px);
}

/* Plus/Minus icon */
#ronbos-faq .faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid var(--faq-border-strong);
  border-radius: 8px;
}

#ronbos-faq .faq-icon::before,
#ronbos-faq .faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 60%;
  height: 2px;
  background: var(--faq-accent);
  transform: translate(-50%, -50%);
}

#ronbos-faq .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg); /* vertical bar for plus */
}

#ronbos-faq .faq-trigger[aria-expanded="true"] .faq-icon::after {
  opacity: 0; /* becomes minus */
}

/* Answer panel */
#ronbos-faq .faq-panel {
  border-top: 1px solid var(--faq-border);
  padding: .25rem 1.125rem 1rem;
  background: #fff;
}

#ronbos-faq .faq-a p {
  margin: .75rem 0;
  color: var(--faq-muted);
  line-height: 1.6;
}

#ronbos-faq .faq-a ul,
#ronbos-faq .faq-a ol {
  margin: .5rem 0 0 1.25rem;
  padding: 0;
}

#ronbos-faq .faq-a li {
  margin: .4rem 0;
  color: var(--faq-text);
}

#ronbos-faq .faq-a a {
  color: var(--faq-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#ronbos-faq .faq-a a:hover,
#ronbos-faq .faq-a a:focus {
  color: var(--faq-link-hover);
  text-decoration-thickness: 2px;
}

/* Subtle divider between dense bullets on small screens */
@media (max-width: 520px) {
  #ronbos-faq .faq-trigger { padding: .9rem .95rem; }
  #ronbos-faq .faq-panel { padding: .25rem .95rem .95rem; }
}

/* Reduced motion = no hover fills, no animations */
@media (prefers-reduced-motion: reduce) {
  #ronbos-faq .faq-trigger,
  #ronbos-faq .faq-a a {
    transition: none !important;
  }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  #ronbos-faq {
    --faq-bg: #0b0f14;
    --faq-card: #121821;
    --faq-text: #e6ebf3;
    --faq-muted: #c3ccda;
    --faq-accent: #8ab4ff;
    --faq-border: #1d2836;
    --faq-border-strong: #2a3a4e;
    --faq-link: #8ab4ff;
    --faq-link-hover: #c2dbff;
    --faq-focus: 2px solid #8ab4ff;
    --faq-shadow: none;
  }
  #ronbos-faq .faq-panel { background: #0f151d; }
}

/* Print: keep content readable */
@media print {
  #ronbos-faq {
    box-shadow: none;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  #ronbos-faq .faq-item {
    break-inside: avoid;
    border: 1px solid #888;
  }
  #ronbos-faq .faq-panel[hidden] { display: block !important; } /* print all answers */
}


.modal-dialog {
    max-width: 1200px;
    top: 60px;
    margin: 1.75rem auto;
}

.numbered-list{
	list-style-type:decimal; 
}

/* ======================================== */
/* === Top Header Section ================= */
/* ======================================== */
.pre-nav {
	padding: 10px 0 0px 0; background: linear-gradient(rgb(0,4,4), rgb(0,33,36), rgb(0,64,69), rgb(0,91,98));	margin-bottom: 10px;
}
.pre-nav h5 {
	font-family: 'font'; font-size: 13px;	font-weight: 600;	color: rgb(255,255,255);
}
.pre-nav a {
	font-family: 'font'; font-size: 13px;	color: rgb(255,255,255);
}
.pre-nav a:hover {
	color: rgb(255,255,255);
}
.top-header {
	position: fixed; width: 100%;	z-index: 1;	padding: 0px 0 10px 0; background: linear-gradient(to top, rgb(10,150,160),rgb(52,201,218)) !important;	z-index: 5;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.top-header div[class*='col-']:first-child {
	display:flex;	justify-content: flex-end; align-items:center;
}
.top-header div[class*='col-']:first-child a {
	padding: 0;	font-size:15px;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.top-header div[class*='col-']:first-child a:hover {
	background-color:#fbfbfb;	color:#222;
}
.top-header div[class*='col-']:nth-child(2) {
	display:flex;	justify-content:center;	align-items:center;
}
.top-header .dropdown-menu {
	background: rgb(27,27,27); border-radius: 0;
}
.top-header .dropdown-menu a {
	color: rgb(60,119,125);	padding:3px 20px !important; font-family: 'font'; font-weight: 600; background: none;
}
.top-header .dropdown-toggle {
	background: #21212100; padding: 6px 25px;	outline: none !important;	border-color: #f3f3f3b5;
}
.btn-secondary:not([disabled]):not(.disabled).active, .btn-secondary:not([disabled]):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
	color: #000; background-color: rgb(255, 255, 255); border-color: #666e76; box-shadow:none !important;
}
.top-header .btn-secondary.focus,
.btn-secondary:focus {
	outline:none !important; box-shadow:none !important;
}
.dropdown {
  float: left; position: relative;
}
.dropdown .dropbtn {
  font-size: 17px; border: none; outline: none; color: white; padding: 14px 16px; background-color: inherit;font-family: inherit; margin: 0; font-weight: 600; font-family: 'Montserrat';
}
.dropdown .dropbtn:hover {
	color: rgb(0,99,107);
}
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: transparent;
}
.dropdown-one {
  cursor: pointer; display: none; position: absolute; background-color: #f9f9f9; min-width: 236px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-two {
  cursor: pointer; display: none; position: absolute; left: 160px; top: 0px; min-width: 225px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-three {
  cursor: pointer; display: none; position: absolute; left: 160px; top: 48px; min-width: 225px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-four {
  cursor: pointer; display: none; position: absolute; left: 160px; top: 96px; min-width: 225px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-five {
  cursor: pointer; display: none; position: absolute; left: 160px; top: 125px; min-width: 225px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-six {
  cursor: pointer; display: none; position: absolute; left: 160px; top: 150px; min-width: 225px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown:hover .dropdown-one, #link1:hover > .dropdown-two {
  display: block;
}
.dropdown:hover .dropdown-one, #link2:hover > .dropdown-three {
  display: block;
}
.dropdown:hover .dropdown-one, #link3:hover > .dropdown-four {
  display: block;
}
.dropdown:hover .dropdown-one, #link4:hover > .dropdown-five {
  display: block;
}
.dropdown:hover .dropdown-one, #link5:hover > .dropdown-six {
  display: block;
}
.dropdown-one .dItem {
    color: rgb(60,119,125); font-family: 'Montserrat'; font-weight: 600; padding: 5px 16px; font-size: 15px; display: block; background: rgb(255,255,255); text-align: left;
}
.dropdown-one .dItem:hover, .dropdown-two a:hover {
    background-color: #ddd;
}
a.dItem-link {
	color: rgb(60,119,125); font-family: 'Montserrat'; font-weight: 600; font-size: 12px;
}
























/*.dropdown2 {*/
/*	float: left; position: relative;*/
/*}*/
/*.dropdown2 .dropbtn2 {*/
/*    margin: 0 28px;*/
/*    font-weight: 900;*/
/*    font-size: 18px;*/
/*    color: rgb(255,255,255);*/
/*    font-family: 'font2';*/
/*}*/
/*.navbar a:hover, .dropdown2:hover .dropbtn2 {*/
/*	    color: #1d2735;*/
/*    background: #C6C6C6;*/
/*    box-shadow: 0px 0px 0px 10px #C6C6C6;*/
/*}*/
/*.dropdown-one2 {*/
/*	cursor: pointer; display: none; position: absolute; background: #c6c6c6;   padding-top: 25px; min-width: 500px;*/
/*  ; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); border: 3px solid #0f47c0;*/
/*    border-top: none;*/
/*}*/
/*.dropdown-one2 a {*/
/*	color: inherit;*/
/*}*/
/*.dropdown-one2 a:hover {*/
/*	color: inherit;*/
/*}*/
/*.dropdown-one2 h2 {*/
/*	color: #c6c6c6;*/
/*}*/
/*.dropdown2 h6 {*/
/*	color: #fff;*/
/*    font-family: font2;*/
/*    font-size: 12px; text-align: center;*/
/*}*/
/*.dropdown-two2 {*/
/*	cursor: pointer; display: none; position: absolute; left: 160px; top: 0px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
/*}*/
/*.dropdown-three2 {*/
/*	cursor: pointer; display: none; position: absolute; left: 160px; top: 48px; min-width: 160px; background-color: #f9f9f9; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
/*}*/
/*.dropdown2:hover .dropdown-one2, #link12:hover > .dropdown-two2 {*/
/*	display: block;*/
/*}*/
/*.dropdown2:hover .dropdown-one2, #link2:hover > .dropdown-three2 {*/
/*	display: block;*/
/*}*/
/*.dropdown-one2 .dItem2 {*/
/*	color: black; padding: 12px 16px; display: block; text-align: left;    font-family: font2;*/
/*    font-weight: 600;*/
/*}*/
/*.dropdown-one2 .dItem22 {*/
/*	color: black; padding: 12px 16px; display: block; text-align: right;    font-family: font2;*/
/*    font-weight: 600;*/
/*}*/
/*.dropdown-one2 .dItem2:hover, .dropdown-two2 a:hover {*/
/*	background-color: #0f47c0; color: #fff;*/
/*}*/
/*.dropdown-one2 .dItem22:hover, .dropdown-two2 a:hover {*/
/*	background-color: #0f47c0; color: #fff;*/
/*}*/




.dropdown2 {
  float: left;
  position: relative;
}

.dropbtn2 {
  margin: 0 28px;
  font-weight: 600;
  font-size: 17px;
  color: rgb(255, 255, 255);
  font-family: 'Montserrat';
}

.navbar a:hover,
.dropdown2:hover .dropbtn2 {
  color: #1d2735;
  background: #C6C6C6;
  box-shadow: 0px 0px 0px 10px #C6C6C6;
}

.dropdown-one2 {
  cursor: pointer;
  display: none;
  position: absolute;
  background: #c6c6c6;
	background-color: #f9f9f9;
  padding-top: 25px;
  min-width: 500px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  /*border: 3px solid #0f47c0;*/
  border-top: none;
	

}

.dropdown-one2 a {
  color: inherit;
}

.dropdown-one2 a:hover {
  color: inherit;
}

.dropdown-one2 h2 {
  color: #c6c6c6;
}

.dropdown2 h6 {
  color: #fff;
  font-family: font2;
  font-size: 12px;
  text-align: center;
}

.dropdown-two2 {
  cursor: pointer;
  display: none;
  position: absolute;
  left: 160px;
  top: 0px;
  min-width: 160px;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown-three2 {
  cursor: pointer;
  display: none;
  position: absolute;
  left: 160px;
  top: 48px;
  min-width: 160px;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.dropdown2:hover .dropdown-one2,
#link12:hover>.dropdown-two2 {
  display: block;
}

.dropdown2:hover .dropdown-one2,
#link2:hover>.dropdown-three2 {
  display: block;
}

.columns-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.column {
  flex: 1;
  padding: 10px;
}

.dItem2 {
    color: rgb(60, 119, 125);
    font-family: 'Montserrat';
    font-weight: 600;
    padding: 5px 0px;
    font-size: 13px;
    display: block;
    background: rgb(255, 255, 255);
    text-align: left;
}

.dItem2:hover,
.dropdown-two2 a:hover {
  background-color: #ddd;
  color: rgb(60, 119, 125);
}




























/* ======================================== */
/* === Navigvation Section ================ */
/* ======================================== */
.navbar-inverse .navbar-inner {
	display:none;
}
.mobile-menu {
	display:none;
}
.dropdown-wrapper {
	margin:0;	padding:0;
}
.mobile-menu .dropdown-menu-mobile, .mobile-menu .dropdown-menu-mobile-2 {
	position:relative; display:none; top: 100%; left: 0; z-index: 1000; float: left; height:0px; margin:0; width:100%; padding: 0; font-size: 18px; color: #e6e6e6 !important; text-align: left; list-style: none; background-color: #ffffff2e; border: 0; visibility: hidden; border-radius: 0; transform:scale(1,0); -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.dropdown-menu-animate, .dropdown-menu-animate-2 {
	display:inline-block !important; transform:scale(1,1) !important;	padding:25px 0 !important; height:auto !important; visibility: visible !important;
}
.mobile-menu .dropdown-menu-mobile a, .mobile-menu .dropdown-menu-mobile-2 a {
	color:#fff; font-weight:500 !important; font-size: 17px; font-family:'Raleway'; text-align:left;
}
/******* Mobile Navigation Section *******/

/******* Desktop CSS Styling *******/
/***** Home Section *****/
.home-slider-image .container {
	padding: 250px 0 150px 0; overflow: hidden;
}
.home-slider-image .parallax {
	background-image: linear-gradient(rgb(0,0,0,0.6), rgb(0,0,0,0.6)), url("/img/home-slide-1.jpg"); min-height: auto; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover;
}
.home-slider-image h2 {
	font-size: 50px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.home-slider-image h5 {
	font-size: 45px; font-family: Montserrat; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.home-slider-image p {
	font-size: 20px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255); padding-bottom: 25px;
}
.home-slider-image i.paint {
	font-size: 65px; color: rgb(255,255,255);
}
.home-slider-image a {
	padding: 13px 35px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.6rem;
	font-size: 17px; text-shadow: 2px 2px 6px rgb(137,125,125); color: rgb(255,255,255);
}
.home-slider-image a:hover {
	color: rgb(255,255,255);
}
.home-section-1 {
	padding: 100px 50px; background: linear-gradient(to right, rgb(38,184,199), rgba(8,151,162,0));
}
.home-section-1 .pad {
	padding: 10px 50px 0 0;
}
.home-section-1 h1 {
	font-size: 33px; font-weight: 600; text-align: left; color: rgb(0.53.58);
}
.home-section-1 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: left; color: rgb(6,41,43);
}
.home-section-1 img {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 5px rgb(0,0,0);
}
.home-section-2 .container {
	padding: 125px 0;
}
.home-section-2 .box {
	padding: 10px;
}
.home-section-2 .parallax {
	background-image: linear-gradient(to right, rgb(255,255,255), rgb(255,255,255), rgb(255,255,255), rgb(255,255,255), rgb(255,255,255,0.8), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url("/img/hist3a.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat;  background-size: cover;
}
.home-section-2 h2 {
	font-size: 55px; font-family: font; font-weight: 900; text-align: left; color: rgb(12,12,12);
}
.home-section-2 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: left; color: rgb(12,12,12);
}
.home-section-2 a {
	display: flex; flex-direction: column; padding: 13px 20px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)); border: 1px solid rgb(255,255,255); border-radius: 0.8rem;
	font-size: 15px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.home-section-2 a:hover {
	background: rgb(255,255,255); color: rgb(20,113,121);
}
.home-section-3 .container {
	padding: 125px 0;
}
.home-section-3 .parallax {
	background-image: linear-gradient(to left, rgb(0,0,0,0.9), rgb(0,0,0,0.9), rgb(0,0,0,0.9), rgb(0,0,0,0.9), rgb(0,0,0,0.8), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url("/img/parallax2a.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.home-section-3 .box {
	background: transparent;
}
.home-section-3 h3 {
	font-size: 45px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.home-section-3 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.home-section-4 .container {
	padding: 125px 0;
}
.home-section-4 .parallax {
	background-image: linear-gradient(to right, rgb(255,255,255), rgb(255,255,255), rgb(255,255,255), rgb(255,255,255), rgb(255,255,255,0.8), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url("/img/parallax3.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat;  background-size: cover;
}
.home-section-4 h2 {
	font-size: 55px; font-family: font; font-weight: 900; text-align: left; color: rgb(12,12,12);
}
.home-section-4 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(12,12,12);
}
.home-section-5 .container {
	padding: 125px 0;
}
.home-section-5 .parallax {
	background-image: linear-gradient(to left, rgb(0,0,0,0.5), rgb(0,0,0,0.5), rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.3), rgb(0,0,0,0.2), rgb(0,0,0,0.2), rgb(0,0,0,0.2)), url("/img/exterior-painting/003.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.home-section-5 h3 {
	font-size: 45px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.home-section-5 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.home-section-5 ul {
	color: rgb(255,255,255);
}
.home-section-6 .container {
	padding: 125px 0;
}
.home-section-6 .parallax {
	background-image: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.8), rgba(255,255,255,0.6), rgba(255,255,255,0.4), rgba(255,255,255,0), rgba(0,0,0,0), rgba(0,0,0,0), rgba(0,0,0,0)), url("/img/parallax5.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat;  background-size: cover;
}
.home-section-6 h2 {
	font-size: 55px; font-family: font; font-weight: 900; text-align: left; color: rgb(12,12,12);
}
.home-section-6 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(12,12,12);
}
.home-section-7 .container {
	padding: 125px 0;
}
.home-section-7 .parallax {
	background-image: linear-gradient(to left, rgb(0,0,0,0.8), rgb(0,0,0,0.9), rgb(0,0,0,0.9), rgb(0,0,0,0.9), rgb(0,0,0,0.8), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url("/img/parallax6.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.home-section-7 h3 {
	font-size: 45px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.home-section-7 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.home-section-8 {
	padding: 75px 25px; background-image: linear-gradient(to left, rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/parallax7.jpg); min-height: auto;background-position: top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;color: #fff; font-family: 'font';
}
.home-section-8 .background {
	padding: 10px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; box-shadow: 1px 1px 10px 1px #000;
}
.home-section-8 h2 {
	font-size: 45px; font-family: font; font-weight: 800; color: rgb(255,255,255);
}
.home-section-8 h4 {
	font-size: 30px; font-family: Montserrat; font-weight: 800; color: rgb(255,255,255);
}
.home-section-8 h5 {
	font-size: 22px; font-family: font; color: rgb(255,255,255); text-indent: 10px;
}
.home-section-8 h6 {
	font-size: 16px; font-family: font; color: rgb(255,255,255); text-indent: 15px;
}
.home-section-8 p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.modal-body h3.title {
	padding: 10px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; width: 50%; box-shadow: 1px 1px 10px 1px #000; font-size: 1.65rem; color: rgb(255,255,255);
}
.modal-body h4.title {
	padding: 5px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; width: 50%; box-shadow: 1px 1px 10px 1px #000; font-size: 19px; color: rgb(255,255,255);
}
.modal-body h5.title {
	padding: 5px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; width: 53%; box-shadow: 1px 1px 10px 1px #000; font-size: 19px; color: rgb(255,255,255);
}
.modal-body strong.title {
	font-size: 25px; text-shadow: 1px 1px 1px rgb(0,0,0);
}
.modal-body li.list {
	padding-right: 15px; font-size: 25px; list-style-type: '▸';
}
.modal-body p.content {
	font-size: 15px; text-align: justify; color: rgb(12,12,12);
}

/***** General Services Section *****/
.general-services {
	padding: 17% 20px 270px 35px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/services-page-header-bg.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';
}
.general-services h1 {
	font-size: 3rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255);
}
.general-services h3 {
	font-size: 3rem; font-weight: 600; line-height: 67px; letter-spacing: -1.5px; color: rgb(255,255,255);
}
.general-services p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.general-services .animated p {
	font-weight: 600;
}
.general-services li {
	list-style-type: '';
}
#services .animated h3 {
	color: #fff;
	font-size: 4em;
	font-weight:600;
	line-height: 67px;
	letter-spacing:-1.5px;
}
#services .animated p {
	color: rgb(255,255,255); font-weight: 600; font-family: 'font'; font-size: 17px; text-align: justify;
}
#services .section-divider {
	padding: 212px 50px;
}
#services .general-services li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv001.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv002.jpg) right -2em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv003.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv004.jpg) right -4em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv005.jpg) right -4em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius:10px; position:relative; left:0; transition:all .30s ease;
}
#services .general-services li a:hover {
	color:#ffffff;
}
#services .general-services li:hover a {
	margin-left:10px; padding-left:50px;
}
#services .general-services li a svg {
	transition:all .20s ease;
}
#services .general-services li a:hover svg {
	right:5px;
}
#services .exterior-services {
	background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1)), url("/img/parallax-services001a.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .interior-services {
	background-image: linear-gradient(to right, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1)), url("/img/parallax-services006b.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .plaster-services {
	background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1)), url("/img/parallax-services002a.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .deck-services {
	background-image: linear-gradient(to right, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1)), url("/img/parallax-services003a.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .carpentry-services {
	background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1)), url("/img/parallax-services004a.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .additional-services {
	background-image: linear-gradient(to right, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1)), url("/img/parallax-services005a.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}

/***** Interior Services Section *****/
.interior {
	padding: 17% 20px 270px 35px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/interior-bg.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';		
}
.interior h1 {
	font-size: 3rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255)
}
.interior p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.interior li {
	list-style-type: '';
}
#services .interior li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius:10px; position:relative; left:0; transition:all .30s ease;
}
#services .interior li:hover a {
	margin-left:10px; padding-left:50px;
}
#services .interior li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/rp2-bg-a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior001.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior002a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior003.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior004a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}


#services .interior li:nth-child(6) a {
	background: linear-gradient(to right, rgb(0,33,35) 75%, #25b7c600), url(/img/interior-painting/004.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(7) a {
	background: linear-gradient(to right, rgb(0,33,35) 75%, #25b7c600), url(/img/interior-painting/009.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(8) a {
	background: linear-gradient(to right, rgb(0,33,35) 75%, #25b7c600), url(/img/interior-painting/022.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(9) a {
	background: linear-gradient(to right, rgb(0,33,35) 75%, #25b7c600), url(/img/interior-painting/021.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}





#services .interior li:nth-child(10) a {
	background: linear-gradient(to right, rgb(0,33,35) 75%, #25b7c600), url(/img/rp2-bg-a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(11) a {
	background: linear-gradient(to right, rgb(0,33,35) 75%, #25b7c600), url(/img/interior-painting/009.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(12) a {
	background: linear-gradient(to right, rgb(0,33,35) 75%, #25b7c600), url(/img/parallax-interior002a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(13) a {
	background: linear-gradient(to right, rgb(0,33,35) 75%, #25b7c600), url(/img/interior-painting/021.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}



.residential-interior-painting .container {
	padding: 150px 20px;
}
.residential-interior-painting .parallax {
	background-image: url("/img/rp2-bg.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.residential-interior-painting h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.residential-interior-painting p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.interior-historical-restoration .container {
	padding: 150px 0;
}
.interior-historical-restoration .parallax {
	background-image: url("/img/parallax-interior001.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.interior-historical-restoration h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.interior-historical-restoration p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.plaster-repair .container {
	padding: 150px 0;
}
.plaster-repair .parallax {
	background-image: url("/img/parallax-interior002.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.plaster-repair h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.plaster-repair p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.drywall-repair .container {
	padding: 150px 0;
}
.drywall-repair .parallax {
	background-image: url("/img/parallax-interior003.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.drywall-repair h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.drywall-repair p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.cabinet-spraying .container {
	padding: 150px 0;
}
.cabinet-spraying .parallax {
	background-image: url("/img/parallax-interior004.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.cabinet-spraying h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.cabinet-spraying p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}

/**/
/**/
.interior-repainting .container {
	padding: 150px 20px;
}
.interior-repainting .parallax {
	background-image: url("/img/parallax-interior001.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.interior-repainting h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.interior-repainting p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}


.drywall-painting .container {
	padding: 150px 20px;
}
.drywall-painting .parallax {
	background-image: url("/img/parallax-interior002.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.drywall-painting h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.drywall-painting p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}



.accent-wall .container {
	padding: 150px 20px;
}
.accent-wall .parallax {
	background-image: url("/img/parallax-interior003.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.accent-wall h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.accent-wall p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}




.custom-interior .container {
	padding: 150px 20px;
}
.custom-interior .parallax {
	background-image: url("/img/rp2-bg.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.custom-interior h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.custom-interior p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}



/*.custom-interior-2 .container {
	padding: 150px 0;
}
.custom-interior-2 .parallax {
	background-image: url("/img/interior-painting/011.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.custom-interior-2 h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.custom-interior-2 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}

*/







/***** Exterior Services Section *****/
.exterior {
	padding: 17% 20px 270px 35px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/parallax-exterior001.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';		
}
.exterior h1 {
	font-size: 3rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255)
}
.exterior p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.exterior li {
	list-style-type: '';
}
#services .exterior li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius:10px; position:relative; left:0; transition:all .30s ease;
}
#services .exterior li:hover a {
	margin-left:10px; padding-left:50px;
}
#services .exterior li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/rp1-bg.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/hist3a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-exterior002.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-exterior003a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-carpentry006c.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.residential-exterior-painting .container {
	padding: 150px 0;
}
.residential-exterior-painting .parallax {
	background-image: url("/img/rp1-bg.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.residential-exterior-painting h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.residential-exterior-painting p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.exterior-historical-restoration .container {
	padding: 150px 0;
}
.exterior-historical-restoration .parallax {
	background-image: url("/img/hist3.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.exterior-historical-restoration h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.exterior-historical-restoration p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.stucco-repair .container {
	padding: 150px 0;
}
.stucco-repair .parallax {
	background-image: url("/img/parallax-exterior002.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.stucco-repair h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.stucco-repair p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.stucco-painting .container {
	padding: 150px 0;
}
.stucco-painting .parallax {
	background-image: url("/img/parallax-exterior003.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.stucco-painting h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.stucco-painting p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.deck-porch-fence-staining-painting .container {
	padding: 150px 0;
}
.deck-porch-fence-staining-painting .parallax {
	background-image: linear-gradient(to left, rgb(0,0,0,0.1), rgb(0,0,0,0.2), rgb(0,0,0,0.3), rgb(0,0,0,0.7), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1)), url("/img/parallax-carpentry006c.jpg"); min-height: auto; background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.deck-porch-fence-staining-painting h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.deck-porch-fence-staining-painting p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}

/***** Carpentry Services Section *****/
.carpentry {
	padding: 17% 20px 270px 35px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/car1a-bg.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';		
}
.carpentry h1 {
	font-size: 3rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255)
}
.carpentry p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.carpentry li {
	list-style-type: '';
}
#services .carpentry li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius: 10px; position: relative; left :0; transition: all .30s ease;
}
#services .carpentry li:hover a {
	margin-left: 10px; padding-left: 50px;
}
#services .carpentry li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv001.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv002.jpg) right -2em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv003.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv004.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-carpentry006.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.general-carpentry-services .container {
	padding: 150px 0;
}
.general-carpentry-services .parallax {
	background-image: url("/img/parallax-carpentry002.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.general-carpentry-services h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.general-carpentry-services p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.interior-trim .container {
	padding: 150px 0;
}
.interior-trim .parallax {
	background-image: url("/img/parallax-carpentry003.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.interior-trim h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.interior-trim p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.exterior-trim .container {
	padding: 150px 0;
}
.exterior-trim .parallax {
	background-image: url("/img/parallax-carpentry004.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.exterior-trim h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.exterior-trim p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.siding-eve-repair .container {
	padding: 150px 0;
}
.siding-eve-repair .parallax {
	background-image: url("/img/parallax-carpentry005.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.siding-eve-repair h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.siding-eve-repair p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.deck-porch-repair .container {
	padding: 150px 0;
}
.deck-porch-repair .parallax {
	background-image: linear-gradient(to left, rgb(0,0,0,0.1), rgb(0,0,0,0.2), rgb(0,0,0,0.3), rgb(0,0,0,0.7), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1), rgb(0,0,0,1)), url("/img/parallax-carpentry006b.jpg"); min-height: auto; background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.deck-porch-repair h2 {
	padding-bottom: 10px; font-size: 45px; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.deck-porch-repair p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}

/***** Areas We Service Section *****/
.areas-we-service-toc {
	padding: 150px 25px 50px 0px; background: linear-gradient(rgb(0,102,113), rgb(0,177,193));
}
.areas-we-service-toc h1 {
	font-size: 40px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.areas-we-service-toc p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.areas-we-service-toc li {
	font-size: 20px; font-family font; font-weight: 600; color: rgb(255,255,255);
}
.areas-we-service-toc hr {
	background: rgb(255,255,255);
}
.areas-we-service:nth-child(odd) {
	padding: 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.areas-we-service:nth-child(even) {
	padding: 75px 0; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.areas-we-service h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.areas-we-service p {
	font-size: 16px font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.areas-we-service iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem; box-shadow: 1px 1px 10px 5px rgb(0,0,0);
}
.areas-we-service a.learn-more {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
	
	
}

/***** SEO Pages *****/
/*** Oak Park, IL ***/
.oak-park {
	padding: 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.oak-park h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.oak-park h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.oak-park h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.oak-park h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.oak-park h6 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.oak-park p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.oak-park a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.oak-park iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.oak-park-carpentry {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.oak-park-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.oak-park-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.oak-park-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.oak-park-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.oak-park-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.oak-park-deck-fence {
	padding: 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.oak-park-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.oak-park-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.oak-park-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.oak-park-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.oak-park-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.oak-park-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.oak-park-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255); display: inline-flex; 
}
.oak-park-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.oak-park-plaster-drywall {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.oak-park-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.oak-park-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.oak-park-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.oak-park-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.oak-park-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}


/*Project Overview/Info Page*/
.project-info {
	padding: 205px 35px;; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.project-info h1 {
	font-size: 2.2rem; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.project-info h2 {
	font-size: 2.4rem; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.project-info h3 {
	font-size: 1.8rem; font-family: font; color: rgb(255,255,255);
	font-weight: 700;
}
.project-info h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.project-info h6 {
	font-family: font; color: rgb(255,255,255);
}
.project-info li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.project-info p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.project-info a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.project-info a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.project-info iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}




/*MODAL Page START*/



 .link-btn1{
    background: rgb(4,51,97);
    background-size: cover, 45% !important;
    padding: 10px 40px;
    margin: 0 0 4px;
    border-radius: 7px;
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: rgb(255, 255, 255);
}


.btn {
	/*background: black;*/
	background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218));
	color: white; 
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	
	
}


/*pop-up modal styling*/
 .modal-dialog {
	max-width: 1200px;
	top: 10px;
	margin: 1.75rem auto;
}
.modal-dialog ul li span{
	font-weight: 600;
}


/* Disable scrolling */
.modal-open {
    overflow: hidden;
}
 .m-box1 {
	padding: 15px; background: linear-gradient(to top, rgb(10,150,160),rgb(52,201,218)); height: auto;
}


.modal-body{
	background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100)) !important; color: #fff;
}
.modal-header{
	background: linear-gradient(to top, rgb(10,150,160),rgb(52,201,218)) !important;
}




/*Products Page END*/






















/*** River Forest, IL ***/
.river-forest {
	padding: 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.river-forest h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.river-forest h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.river-forest h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.river-forest h6 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.river-forest p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.river-forest a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.river-forest iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.river-forest-carpentry {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.river-forest-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.river-forest-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.river-forest-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.river-forest-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.river-forest-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.river-forest-deck-fence {
	padding: 75px 25px 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.river-forest-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.river-forest-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.river-forest-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.river-forest-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.river-forest-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.river-forest-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.river-forest-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.river-forest-plaster-drywall {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.river-forest-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.river-forest-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.river-forest-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.river-forest-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.river-forest-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** Hinsdale, IL ***/
.hinsdale {
	padding: 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.hinsdale h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.hinsdale h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.hinsdale h6 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.hinsdale p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.hinsdale a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.hinsdale iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.hinsdale-carpentry {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.hinsdale-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.hinsdale-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.hinsdale-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.hinsdale-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.hinsdale-deck-fence {
	padding: 75px 25px 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.hinsdale-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.hinsdale-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.hinsdale-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.hinsdale-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.hinsdale-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.hinsdale-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.hinsdale-plaster-drywall {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.hinsdale-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** Burr Ridge, IL ***/
.burr-ridge {
	padding: 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.burr-ridge h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge h6 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.burr-ridge a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.burr-ridge iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.burr-ridge-carpentry {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.burr-ridge-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.burr-ridge-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.burr-ridge-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.burr-ridge-deck-fence {
	padding: 75px 25px 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.burr-ridge-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.burr-ridge-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.burr-ridge-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.burr-ridge-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.burr-ridge-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.burr-ridge-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.burr-ridge-plaster-drywall {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.burr-ridge-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** Naperville, IL ***/
.naperville {
	padding: 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.naperville h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.naperville h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.naperville h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.naperville h6 {
	font-family: font; color: rgb(255,255,255);
}
.naperville li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.naperville p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.naperville a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.naperville a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.naperville iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.naperville-carpentry {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.naperville-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.naperville-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.naperville-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.naperville-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.naperville-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.naperville-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.naperville-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.naperville-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.naperville-deck-fence {
	padding: 75px 25px 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.naperville-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.naperville-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.naperville-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.naperville-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.naperville-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.naperville-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.naperville-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.naperville-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.naperville-plaster-drywall {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.naperville-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.naperville-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.naperville-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.naperville-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.naperville-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.naperville-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.naperville-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.naperville-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** La Grande, IL ***/
.la-grande {
	padding: 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.la-grande h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.la-grande h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.la-grande h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.la-grande h6 {
	font-family: font; color: rgb(255,255,255);
}
.la-grande li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.la-grande p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.la-grande a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.la-grande a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.la-grande iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.la-grande-carpentry {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.la-grande-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.la-grande-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.la-grande-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.la-grande-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.la-grande-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.la-grande-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.la-grande-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.la-grande-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.la-grande-deck-fence {
	padding: 75px 25px 75px 25px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.la-grande-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.la-grande-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.la-grande-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.la-grande-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.la-grande-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.la-grande-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.la-grande-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.la-grande-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.la-grande-plaster-drywall {
	padding: 75px 25px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.la-grande-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.la-grande-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.la-grande-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.la-grande-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.la-grande-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.la-grande-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.la-grande-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.la-grande-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/***** Gallery Sections *****/
.gallery1 {
	padding: 150px 0 50px 0; background: linear-gradient(rgb(0,102,113),rgb(0,177,193));
}
.gallery1 h1 {
	font-size: 50px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.gallery1 span {
	font-size: 18px; font-weight: 500;
}
.gallery2 {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.gallery2 h2 {
	margin: 0 0 30px; font-size: 2.5rem; font-weight: 800; text-align: center; text-shadow: 0 6px 12px #0000003d; text-transform: uppercase; color: rgb(0,161,175);
}
.gallery2 a {
	margin: 0 0 0px; font-size: 1.35rem; font-weight: 800; text-align: center; text-shadow: 0 6px 12px #0000003d; text-transform: uppercase; color: rgb(0,161,175);
	
	transition: 500ms; 
}
.gallery2 a:hover {
	/*margin: 0 0 0px; font-size: 1.5rem; font-weight: 800; text-align: center; text-shadow: 0 6px 12px #0000003d; text-transform: uppercase; color: rgb(0,161,175);*/
	text-decoration: underline !important;
	font-size: 1.55rem;
}
/***** Testimonials *****/
.testimonials {
	background: linear-gradient(rgb(26,51,61), rgb(43,87,100)); padding: 175px 0 75px 0;
}
.testimonials h1 {
	text-align: center; color: rgb(255,255,255); font-weight: 600; font-size: 55px;
}
.testimonials h5 {
	text-align: center; color: rgb(255,255,255); font-weight: 400; font-size: 35px; padding-bottom: 30px;
}
.testimonials h4 {
	color: rgb(255,255,255); text-align: center;
}
.testimonials .pad {
	padding: 0px;
}
.testimonials .carousel {
	--current-slide: 0; position: relative; overflow: hidden;
}
.testimonials .carousel-button {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; padding: 0; margin: 0.1rem; height: 40px; width: 40px; border-radius: 100%; line-height: 0.9; color: rgb(83,82,82); background-color: transparent; border: none; font-size: 1.5rem; cursor: pointer; transition: color 0.1s;
}
.testimonials .carousel-button:hover {
	color: rgba(0, 0, 0, 0.5); border: none;
}
.testimonials .carousel-button.active {
	border: none !important;
}
.testimonials .carousel-button_next {
	right: 0; border: none;
}
.testimonials .slides {
	display: flex; transition: transform 0.5s; transform: translateX(calc(-100% * var(--current-slide)));
}
.testimonials .slide {
	flex: 0 0 100%; padding: 0px 50px 0px 50px;
}
.testimonials span {
	color: rgb(255,255,255);
}
.testimonials .slide p {
	color: rgb(255,255,255); text-align: center; font-size: 17px; font-weight: 600; font-family: 'font';
}
.publications {
	padding: 75px 0; background: linear-gradient(to right,rgb(10,113,125,0.67),rgb(9,106,113));
}
.publications h4 {
	font-weight: 600; font-size: 18px; text-align: left; color: rgb(255,255,255); padding-bottom: 30px;
}
.publications p {
	color: rgb(255,255,255); font-size: 16px; text-align: justify; font-weight: 600; font-family: 'font';
}
.publications a.learn-more {
	padding: 13px 20px; background: rgb(0,0,0,0); color: rgb(255,255,255); border: 1px solid rgb(255,255,255); border-radius: 7px; display: flex; flex-direction: column;
	font-size: 18px; font-weight: 600; font-family: 'font'; color: rgb(255,255,255);
}
.publications a.learn-more:hover {
	color: rgb(20,113,121); background: rgb(255,255,255);
}

/***** Contact Page *****/
.contact1 {
	background: rgb(255,255,255);	padding: 150px 0 0px 0;
}
.contact1 .pad {
	padding-top: 75px;
}
.contact1 h1 {
	text-align: left; font-weight: 600; color: rgb(37,37,37);
}
.contact1 h2 {
	color: rgb(51,51,51); text-align: left; font-size: 20px; font-weight: 500;
}
.contact1 p {
	color: rgb(51,51,51); text-align: left; font-size: 20px; font-weight: 500;
}
.contact2 {
	background: rgb(204,204,204);
}
.contact2 h3 {
	text-align: left; color: rgb(7,131,142); font-size: 40px; font-weight: 700;
}
.contact2 .box {
	padding: 200px 0 0 100px;
}
.contact2 span {
	color: rgb(90,90,90); font-size: 1.5rem; font-weight: 500;
}

/***** Misc. Pages *****/
.painted-lady {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.painted-lady h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.painted-lady h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.painted-lady h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.painted-lady img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.painted-lady p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.painted-lady span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.painted-lady .space {
	padding-top: 20px;
}
.old-but-not-out {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.old-but-not-out h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.old-but-not-out h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.old-but-not-out h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.old-but-not-out img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.old-but-not-out p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.old-but-not-out span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.old-but-not-out .space {
	padding-top: 20px;
}
.to-paint-or-not-to-paint {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.to-paint-or-not-to-paint h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.to-paint-or-not-to-paint p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.to-paint-or-not-to-paint .space {
	padding-top: 20px;
}
.color-them-award-winners {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.color-them-award-winners h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.color-them-award-winners h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.color-them-award-winners h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.color-them-award-winners img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.color-them-award-winners p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.color-them-award-winners span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.color-them-award-winners .space {
	padding-top: 20px;
}
.local-painter-has-award-winning-year {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.local-painter-has-award-winning-year h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.local-painter-has-award-winning-year h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.local-painter-has-award-winning-year h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.local-painter-has-award-winning-year img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.local-painter-has-award-winning-year p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.local-painter-has-award-winning-year span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.local-painter-has-award-winning-year .space {
	padding-top: 20px;
}







/*Blog Page Start*/
.blog1 {
	padding: 205px 0 75px 0;
	background: rgb(255,255,255);
}
.blog1 h1 {
	text-align: center;
	font-weight: 600;
	font-family: 'font2';
	padding-bottom: 25px;
	color: rgb(12,12,12);
	font-size: 45px;
}
.blog1 h3 {
	font-family: 'font2';
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0.04rem;
	text-align: center;
	padding-bottom: 10px;
	color: rgb(0,0,0);
}
.blog1 h2 {
	font-weight: 600;
	font-family: 'font2';
	font-size: 21px;
	color: rgb(30,30,30);
	text-align: left; 
}
.blog1 h4 {
	font-weight: 600;
	font-family: 'font2';
	font-size: 21px;
	color: rgb(30,30,30);
}
.blog1 h5 {
	font-family: 'font';
	color: rgb(20,20,20);
	font-size: 15px;
}
.blog1 hr {
	border: 0.15rem solid rgb(21,135,198);
  max-width: 110px;
  opacity: 1;
  color: rgb(21,135,198);
  margin: auto;
}
.blog1 img {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}
.blog1 .img-fluid.box-image{
    width: 100%;
    height: 200px; /* Adjust the height as needed */
    object-fit: cover;
}
.blog1 .box {
	padding: 0px 0px 20px 0px;
	border-radius: 15px;
	background: rgb(255,255,255);
	box-shadow: 0 0 15px #00000029;
	height:650px;
}
.blog1 .pad {
	padding: 15px 10px 0px 10px;
}
.blog1 span {
	color: rgb(226,64,0);
}
.blog1 p {
	/*font-family: 'font';*/
	color: rgb(20,20,20);
	font-size: 17px;
}
.blog1 a {
	color: rgb(226,64,0);
	font-size: 15px;
	font-family: 'font2';
	font-weight: 600;
}
.blog1 a:hover {
	color: rgb(226,64,0,0.8);
}




.blog-top {
	background: rgb(12,12,12);
	padding: 200px 0 50px 0;
}
.blog-top .box {
	padding: 110px 45px 0px 50px;
}
.blog-top h1 {
	color: rgb(255,255,255);
	font-family: 'font2';
	letter-spacing: 0.04rem;
	font-weight: 600;
	font-size: 35px;
	text-align: center;
}
.blog-top h5 {
	color: rgb(255,255,255);
	font-family: 'font';
	text-align: left;
	font-size: 20px;
}
.blog-top p {
	color: rgb(255,255,255);
	font-family: 'font';
	font-size: 17px;
	text-align: left;
}
.blog-top a {
	color: rgb(255,255,255);
	padding: 10px 60px;
	text-transform: uppercase;
	letter-spacing: 0.04rem;
	font-weight: 600;
	font-size: 15px;
	font-family: 'font2';
	background: rgb(226,64,0);
	border-radius: 5px;
}
.blog-top a:hover {
	color: rgb(255,255,255);
	background: rgb(68,68,68);
}
.blog-top iframe {
	border: 15px solid rgb(255,255,255);
	border-radius: 10px;
}

.blog-top1 {
	background: rgb(21,135,198);
	padding: 60px 0 50px 0;
}
.blog-top1 .box {
	padding: 110px 45px 0px 50px;
}
.blog-top1 h1 {
	color: rgb(255,255,255);
	font-family: 'font2';
	letter-spacing: 0.04rem;
	font-weight: 600;
	font-size: 35px;
	text-align: left;
}
.blog-top1 h5 {
	color: rgb(255,255,255);
	font-family: 'font';
	text-align: left;
	font-size: 20px;
}
.blog-top1 p {
	color: rgb(255,255,255);
	font-family: 'font';
	font-size: 17px;
	text-align: left;
}
.blog-top1 a {
	color: rgb(255,255,255);
	padding: 10px 60px;
	text-transform: uppercase;
	letter-spacing: 0.04rem;
	font-weight: 600;
	font-size: 15px;
	font-family: 'font2';
	text-shadow: 1px 1px 1px #000;
/*	box-shadow: 1px 1px 2px 1px #000;*/
	background: rgb(68,68,68);
	border-radius: 5px;
}
.blog-top1 a:hover {
	color: rgb(255,255,255);
	
	background: rgb(226,64,0);
}
/*.blog-top1 span strong {
	 transform: rotate(90deg);
	 position: fixed;
}*/
.blog-top1 iframe {
	border: 15px solid rgb(255,255,255);
	border-radius: 10px;
}


.blog-template {
	background: linear-gradient(to right, #efefef00, #ffffff91), url(/img/wb-1.jpg) top right;
	background-size: cover;
	padding: 75px 0 75px 0;
}
.blog-template i {
	color: rgb(7, 155, 196);
}
.blog-template a {
	font-family: 'font';
	color: rgb(7, 155, 196);
}
.blog-template .numbered {
	
	list-style-type: decimal;
}
.blog-template h1 {
	color: rgb(20,20,20);
	text-align: left;
	font-weight: 600;
	font-family: 'font2';
	font-size: 35px;
}
.blog-template h2 {
	font-family: 'font';
	color: rgb(20,20,20);
	font-size: 33px;
}
.blog-template h3 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(21,135,198);
	font-size: 25px;
}
.blog-template h4 {
	color: rgb(20,20,20);
	text-align: left;
	font-weight: 400;
	font-family: 'font';
	font-size: 23px;
}
.blog-template h5 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(20,20,20);
	font-size: 25px;
}
.blog-template h6 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(0,0,0);
	font-size: 23px;
}
.blog-template p {
	color: rgb(20,20,20);
	font-size: 1rem;
	font-family: 'font2';
	font-weight: 800;
}
.blog-template li {
	color: rgb(20,20,20);
	font-size: 17px;
	font-family: 'font';
}
.blog-template li p span{
	color: black;
	font-size: 19px;
	font-family: 'font';
	text-decoration:underline;
	font-weight:300;
}
.blog-template a.contact-today {
	padding: 10px; background: rgb(226,64,0); border: 1px solid rgb(12,12,12); border-radius: 10px;
	font-size: 24px; font-family: font2; font-weight: 600; text-align: center; text-shadow: 2px 2px 1px rgb(0,0,0); text-transform: uppercase; color: rgb(255,255,255);
}
.blog-template a.services {
	padding: 10px; background: rgb(21,135,198); border: 1px solid rgb(12,12,12); border-radius: 10px;
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; text-shadow: 2px 2px 1px rgb(0,0,0); text-transform: uppercase; color: rgb(255,255,255);
}

.blog-template1 {
	background: rgb(255,255,255);
	padding: 75px 0 75px 0;
}
.blog-template1 i {
	color: rgb(7, 155, 196);
}
.blog-template1 a {
	font-family: 'font';
	color: rgb(7, 155, 196);
}
.blog-template1 h1 {
	color: rgb(20,20,20);
	text-align: left;
	font-weight: 600;
	font-family: 'font2';
	font-size: 35px;
}
.blog-template1 h2 {
	font-family: 'font';
	font-weight: 600;
	color: rgb(20,20,20);
	font-size: 33px;
}
.blog-template1 h3 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(21,135,198);
	font-size: 29px;
}
.blog-template1 h4 {
	color: rgb(20,20,20);
	text-align: left;
	font-weight: 600;
	font-family: 'font2';
	font-size: 35px;
}
.blog-template1 h5 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(21,135,198);
	font-size: 25px;
	padding: 7px;
}
.blog-template1 h6 {
	font-family: 'font2';
	font-weight: 600;
	color: rgb(0,0,0);
	font-size: 21px;
}
.blog-template11 p {
	color: rgb(20,20,20);
	font-size: 17px;
	font-family: 'font';
}
.blog-template li {
	color: rgb(20,20,20);
	font-size: 17px;
	font-family: 'font';
}
.blog-template .img-fluid.box-image{
	
	border-radius: 20px; 
	box-shadow: 1px 1px 10px 3px rgb(12,12,12);
}

.page-scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    width: 0%;
    background-color: rgb(4 85 91);
    z-index: 3;
}
/*Blog Page End*/






/*FAQ Page*/
.faq {
	/*background: white;*/
    background-image: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255 / 0%)), url(/img/tb-2.png);
    background-size: cover;
    background-color: rgb(60,60,60);
    background-position: 50% 5px;
    min-height: auto;
    background-attachment: fixed;
    overflow: hidden;
    color: #fff;
	padding: 200px 0 75px 0;
    background-repeat: no-repeat;
}
.faq h1 {
	font-size: 45px;
	font-weight: 800;
	padding-bottom: 15px;
	color: rgb(10, 150, 160);
	text-align: center;
}
.faq h2 {
	font-size: 25px;
	font-weight: 800;
	padding-bottom: 15px;
	color: white;
	text-align: center;
	margin-top:0; 
}
.faq .box{
  width: auto;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.faq span{
  transition: 200ms;
  font-weight: 600;
  font-size: 18px;
}
.faq .bg-dark {
  background-color: rgb(10, 150, 160) !important;
	color: black !important;;
}
.faq .bg-dark:hover {
  background-color: rgb(10, 150, 160) !important;
}
.faq .content, .faq .content_2, .faq .content_3, .faq .content_4, .faq .content_5,
.faq .content_6, .faq .content_7, .faq .content_8, .faq .content_9, .faq .content_10, .faq .content_11, .faq .content_12 {
  overflow: hidden;
  max-height: 0px;
  transition: 300ms ease-in;
	background: black;
	border: 1px solid black !important;
}
.faq .header, .faq .header_2, .faq .header_3, .faq .header_4, .faq .header_5,
.faq .header_6, .faq .header_7, .faq .header_8, .faq .header_9, .faq .header_10, .faq .header_11, .faq .header_12 {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
	text-transform: capitalize;
}
/*FAQ Page END*/






/***** Sections On Every Page *****/
.modal-dialog {
  max-width: 1600px; top: 40px; margin: 1.75rem auto;
}
#services a.learn-more {
	padding: 12px; background: linear-gradient(to top, rgb(10,150,160),rgb(52,201,218)); border-radius: 0.8rem;
	font-size: 24px; font-weight: 600; text-align: center; text-transform: uppercase; color: rgb(255,255,255);
	display: inline-block;
	
}
.area-map {
	padding-top: 0;
}
.area-map iframe {
	width: 100%; height: 450px; margin-bottom:-7px;
}
.common-paint-issues {
	padding: 75px 0; background: rgb(255,255,255);
}
.common-paint-issues h4 {
	font-size: 30px; font-weight: 800; text-align: center; color: rgb(30,30,30);
}
.common-paint-issues h5 {
	padding-bottom: 30px; font-size: 20px; font-family: font; font-weight: 600; text-align: center; color: rgb(30,30,30);
}
.common-paint-issues a.color-options {
	padding: 13px 30px; background: rgb(0,40,43); border: 1px solid rgb(136,136,136); border-radius: 1.5rem;
	font-size: 24px; font-family: font; font-weight: 800; text-align: center; color: rgb(17,173,187);
}
.home-contact {
	padding: 100px 0; background: linear-gradient(rgb(0,102,113), rgb(0,177,193));
}
.home-contact h4 {
	padding-bottom: 30px; font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.first-footer {
	padding: 40px 0 25px 0; background: rgb(193,193,193);
}
.first-footer ul {
	display: flex; flex-direction: row; text-decoration: none; list-style: none;
}
.first-footer li {
	color: rgb(4,67,72); padding: 0 15px; font-size: 20px; font-family: 'font'; font-weight: 600;
}
.first-footer h5 {
	font-weight: 800;
}
.first-footer a {
	color: rgb(0,82,88);
}
.first-footer a:hover {
	color: rgb(0,82,88);
}
.second-footer {
	padding: 50px 0 50px 0; background: rgb(60,60,60);
}
.second-footer h2 {
	color: rgb(255,255,255);
}
.second-footer a {
	color: rgb(255,255,255);
}



.owl-carousel .owl-stage-outer {
	padding:40px 0;
}
.owl-nav {
	position:absolute; width: 100%;	top:10%; display: none;
}
.owl-carousel .item {
	display:block; height:100%;
}
.owl-carousel .owl-item span {
	font-size: 20px; font-weight: 500;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
	position:absolute;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
	background:transparent !important; color:#212121 !important; opacity:.5 !important;
}
.owl-nav .owl-next {
	left:100%;
}
.owl-nav .owl-prev {
	right: 100%;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
	font-size:3em; display: block;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
	outline:none;
}
.pre-footer-section {
	padding:0 !important;	overflow:;
}
.pre-footer-section div[class*='col-']:last-child {
	background: url(/img/home-image-2.jpg) bottom no-repeat; background-size:cover;
}
.pre-footer-section .hours {
	display:flex;	color: #fff; flex-direction:column; justify-content:center;	padding:120px; background: #1d1d1d;
}
.pre-footer-section div[class*='col-']:last-child {
	padding:165px;
}
.pre-footer-section .hours p {
	display:flex;	padding:0 200px 0 0; flex-direction:row; justify-content:space-between;
}
.pre-footer-section a {
	margin: 40px 0 0;	color:#fff;	font-size: 20px; font-weight:700;
}
.pre-footer-section a:hover {
	color:#8a8a8a;
}

/* ========================================================== */
/* 			            Default Classes                       */
/* ========================================================== */

body {
	font-family: 'Montserrat', sans-serif;
}
body#barbajs {
	visibility:visible;
}
a, button, .btn {
	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
a {
	cursor:pointer;
	text-decoration: none !important;
}
a:hover {
	color: inherit; text-decoration: underline;
}
.btn {
	cursor:pointer;	border-radius: 0;
}
.btn.alert-trigger {
	color:#fdfdfd; background-color:#333;
}
.btn:hover {
	opacity: 0.9;
}
.inner-content-section .btn {
	background:rgba(135,170,188);	border-color: #949494; color: rgba(255,255,255,1);
}
.inner-content-section .btn:hover {
	background-color: rgba(135,170,188,0.4); color:#fff;
}
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {outline: none;box-shadow: none;background-color: #444;border-color: #949494;color: #fff;}
.btn-primary:hover {
	border-color: #949494;
}
.btn.focus, .btn:focus {
	outline:none;	box-shadow: none;
}
.estimate-section-divider .alert, .estimate-section-divider .alert p {
	text-align: left; font-size: inherit;
}
.block-overlay {
 display:inline-block; background:rgba(0, 0, 0, 0.25);	width:100%;	height:100%; top:0;	left:0;	right:0; bottom:0; z-index:-1;
}
.fadeDiv {
	position:fixed;	display: inline-block; z-index:1050; color: #fff;	background: #300e87; padding:50px; top:150px;	bottom:150px;	left:300px;	right:300px; transform:scale(0,0); box-shadow: 0px 0px 20px -1px #000; transition:all .20s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.menu-scaler {
	position:fixed;	display: inline-block; padding:50px; z-index:1050; top:150px;	bottom:150px;	left:300px;	right:300px; transform:scale(1,1);
}
.fadeDiv .fadeDiv-close {
	position:absolute; right: 20px; top: 10px; font-weight:900;	font-size: 2em;	font-family:'Lato';	cursor:pointer;
}
.navbar-collapse ul {
	width:100%;	padding-top: 0px;	display: flex; justify-content: center;	align-items: center;
}
.overlay {
	height: 100%;	width: 100%; background: #ffffffbf;
}
#myBtn {
	display: block; width: 50px; height: 50px; position: fixed; top:100%; right: 30px; z-index: 99; border: none; outline: none; background-color: #000000; color: #ffffff; cursor: pointer; font-size: 14px; padding-top: 0; border-radius: 0px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; transition: all .3s ease;
}
#myBtn i {
	color: white;
}
#myBtn:hover {
	background-color: #424242; color:#fff;
}

/* ========================================================== */
/* 			            Custom Navbar	                      */
/* ========================================================== */

.top-header-animate {
	background: rgb(12, 32, 63);
}
.top-header-animate .dropdown-toggle {
	color:#0a0a0a; font-size: 16px;
}
.top-header-animate .navbar-brand {
	font-size: 1.5em;
}
body {
	padding: 0;	-webkit-transition-property: all;	-webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out;	transition-property: all;	transition-duration: .30s; transition-timing-function: ease-in-out;
}
.navbar-scroll {
	padding: 78px 0 0; position: fixed;	background: rgb(83,82,82); width: 100%;	z-index: 4;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
.navbar-scroll .container {
	background: rgb(60,36,17,0); border-bottom-left-radius: 1.5rem;	border-bottom-right-radius: 1.5rem;
}
#projects .navbar-scroll {
	background:#fdfdfd;	position:relative !important;
}
#projects .navbar-scroll li a {
	color:#333;
}
#projects .navbar-scroll .navbar-brand {
	color:#252525;
}
#projects .navbar-light .lnr {
	color:#222;
}
.navbar-light .lnr {
	color: #fdfdfd;	font-size: 1.5em;	position: absolute;	top: 6px;	right: 10px;
}
.navbar-light .navbar-brand {
	color: #e8e8e8;	font-size: 20px; font-family: 'Montserrat', sans-serif;
}
.navbar-brand {
	font-size:2.5em; font-weight:700;	text-transform:uppercase;
}
.navbar-brand:focus, .navbar-brand:hover {
	color:#f3f3f3 !important;
}
.navbar-light .navbar-nav .nav-link {
	margin: 0 18px; padding: 6px 0px; font-weight: 600; font-size: 16px; color: rgb(255,255,255); font-family: 'Montserrat';
}
.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav
.nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light
.navbar-nav .show>.nav-link {
	color: rgb(255,255,255);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: rgb(0,99,107);
}
.navbar-light .navbar-nav li a {
	position:relative;
}
.navbar-collapse {
	height:100%;
}
.mobile-top-header {
	display:none !important;
}

/* ========================================================== */
/* 			            GALLERY / PROJECTS                    */
/* ========================================================== */

#portfolio input {
	display: flex; flex-direction: column; justify-content: center; align-items: center; position: absolute; margin: 0; top: 0; left: -60px; z-index: 2; width: 60px; height: 60px; -webkit-appearance: none; background-image: url(/img/icons/close-btn-icon-red.png); background-repeat: no-repeat; background-color: transparent; background-size: contain; color: #ffffff; border: none; cursor: pointer;
	outline: none !important; -webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}
#portfolio input:hover {
	background-color: #fff;	opacity: .;
}
#portfolio li:hover input {
	left: 0;
}
button.mfp-close, button.mfp-arrow {
	outline:none !important;
}
#portfolio, #portfolio2, #portfolio3, #portfolio4, #portfolio5, #portfolio6 {
  display: flex; padding: 0; overflow: hidden; flex-wrap: wrap; justify-content: center;
}
#portfolio li, #portfolio2 li, #portfolio3 li, #portfolio4 li, #portfolio5 li, #portfolio6 li {
  display: flex; justify-content: center; align-items: center; float: left; position:relative; overflow:hidden; margin: 0 10px 20px;
}
#portfolio li a, #portfolio2 li a, #portfolio3 li a, #portfolio4 li a, #portfolio5 li a, #portfolio6 li a {
  transform:scale(1,1); display:block; width:100%; height: 180px; width: 300px; overflow:hidden; -o-transition:all .30s ease; -moz-transition:all .30s ease; -webkit-transition:all .30s ease; transition:all .30s ease;
}
#portfolio li a:hover, #portfolio2 li a:hover, #portfolio3 li a:hover, #portfolio4 li a:hover, #portfolio5 li a:hover, #portfolio6 li a:hover {
	transform:scale(1.1,1.1) !important;
}
#portfolio li a img, #portfolio2 li a img, #portfolio3 li a img, #portfolio4 li a img, #portfolio5 li a img, #portfolio6 li a img {
	display: block; position: absolute; top: 0%; bottom: 0%; left: 0%; right: 0%; margin: auto; width: 100%; height: auto; transform: scale(1,1);
}
#portfolio li:hover .block-overlay, #portfolio2 li:hover .block-overlay, #portfolio3 li:hover .block-overlay, #portfolio4 li:hover .block-overlay, #portfolio5 li:hover .block-overlay, #portfolio6 li:hover .block-overlay {
	background-color:rgb(0,0,0,0.6);
}
#portfolio .block-overlay, #portfolio2 .block-overlay, #portfolio3 .block-overlay, #portfolio4 .block-overlay, #portfolio5 .block-overlay, #portfolio6 .block-overlay {
	background: rgb(0,0,0,0.1);	z-index: 1;	-webkit-transition: all .30s ease; -moz-transition: all .30s ease; -o-transition: all .30s ease; transition: all .30s ease;
}

/* ========================== Gallery ZoomIn Effect ================================ */

.mfp-ready .mfp-figure {
  opacity: 0; margin-left:-100px;
}
.mfp-zoom-in .mfp-figure, .mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler{
	opacity: 0; margin-left:-100px; -webkit-transition: all 0.3s ease-out; transition: all 0.3s ease-out; -webkit-transform: scale(0.95); -ms-transform: scale(0.95); transform: scale(0.95);
}
.mfp-zoom-in.mfp-bg,
.mfp-zoom-in .mfp-preloader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-image-loaded .mfp-figure, .mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler{
	opacity: 1;	margin-left:0; -webkit-transform: scale(1);	-ms-transform: scale(1); transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg,
.mfp-zoom-in.mfp-ready .mfp-preloader {
    opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-figure, .mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler{
	-webkit-transform: scale(0.95); -ms-transform: scale(0.95);	transform: scale(0.95);	opacity: 0;	margin-left:-100px;
}
.mfp-zoom-in.mfp-removing.mfp-bg,
.mfp-zoom-in.mfp-removing .mfp-preloader {
    opacity: 0; margin-left:-20px;
}
.mfp-iframe-scaler{ overflow: visible; /*so the close button is shown*/}
.mfp-zoom-out-cur { cursor: auto; }
.mfp-zoom-out-cur .mfp-image-holder .mfp-close { cursor: pointer; }

/* ========================================================== */
/* 			            REVIEWS PAGE                          */
/* ========================================================== */
.carousel-indicators li {
    position: relative; top: 51px; -ms-flex: 0 1 auto; flex: 0 1 auto; width: 30px; height: 3px; margin-right: 3px; margin-left: 3px; text-indent: -999px; background-color: rgb(191, 190, 190);
}
.carousel-indicators .active {
    background-color: #0f8029;
}

/* ========================================================== */
/* 			           FOOTER		                          */
/* ========================================================== */

.footer-section .vms-link-wrapper img {
	width: 50%;
}
.footer-section .vms-link-wrapper a {
    width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.footer-section {
	padding: 0 0 10px; background: linear-gradient(rgb(7 96 103),rgb(0 154 166)); color: rgb(255,255,255); font-size: 15px;	font-weight: 400;
}
.footer-section h3 {
	font-size: 1.3rem; color: rgb(255,255,255);	font-weight: bold;
}
.footer-section p {
	color: rgb(255,255,255); text-align: left; font-family: 'Arial'; font-size: 15px;  line-height: 30px;
}
.footer-section a {
	color: rgb(255,255,255); font-family: 'Arial'; font-size: 15px;
}
.footer-section .service-cities p {
	margin:0 0 3px;
}
.service-cities {
	margin-bottom:1em;
	padding: 50px 0 20px 0;
}
.service-cities img {
	padding-bottom: 20px;
}
.service-cities h5 {
	line-height:8px;
}
.service-cities h4 {
	font-size: 22px; text-align: left; font-weight: 500; font-family: 'Arial'; text-decoration: underline; color: rgb(255,255,255);     line-height: 45px;
}
.service-cities h3 {
	font-size: 22px; text-align: left; font-weight: 500; font-family: 'Arial'; text-decoration: underline; color: rgb(255,255,255);     line-height: 45px;
}
.bottom-footer .vms-link-wrapper {
	position:relative; top:-10px;
}
.bottom-footer div[class*='col-']:nth-child(2) {
	display:flex;	flex-direction: column;	justify-content:center;	align-items: center;
}
.bottom-footer div[class*='col-']:nth-child(3) {
	display:flex;	justify-content:flex-end;	font-size:14px;
}
.bottom-footer div[class*='col-']:nth-child(3) a {
	display:flex;	justify-content:center;	align-items:center;	border: 1px solid rgb(255,255,255);	color: rgb(255,255,255); background: transparent;	border-radius:100px; height:32px;	width:32px; margin: 0 4px;
}
.bottom-footer div[class*='col-']:nth-child(3) a:hover {
	background: transparent; text-decoration:none !important;	color: rgb(255,255,255,0.6); border: 1px solid rgb(255,255,255,255,0.6);
}

@media screen and (max-width : 1440px) {
	/*** Don't place anything here, unless absolutely necessary ***/
}

/* ======================================== */
/* === Sm. Laptop CSS Section ============= */
/* ======================================== */
@media screen and (max-width: 1024px) {

/***** Gen Services *****/
#services .general-services li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv001.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(2) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv002.jpg) right -2em no-repeat; background-size: cover, 56% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(3) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv003.jpg) right 0em no-repeat; background-size: cover, 50% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(4) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv004.jpg) right -4em no-repeat; background-size: cover, 64% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(5) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv005.jpg) right -4em no-repeat; background-size: cover, 64% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}

/***** Interior Services *****/

#services .interior li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/rp2-bg-a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior001.jpg) right -1em no-repeat; background-size: cover, 50% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior002a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior003.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior004a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}

/***** Exterior Services *****/

#services .exterior li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/rp1-bg.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/hist3a.jpg) right -1em no-repeat; background-size: cover, 59% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-exterior002.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-exterior003a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-carpentry006c-2.jpg) right -1em no-repeat; background-size: cover, 59% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}

/***** Carpentry Services *****/
#services .carpentry li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv001.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv002.jpg) right -2em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv003.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv004.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-carpentry006.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}

.mobile-top-header {
	display:block !important;	padding: 0 30px 0; background: rgb(135,170,188); z-index: 4; overflow:visible;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(255,255,255);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(255,255,255);
}
.btn {
	background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.footer-section {
	padding-top: 30px; text-align: center;
}
.footer-section img {
	max-width: 210px;	padding-bottom: 25px;
}
.service-cities h4 {
	font-size: 24px; font-weight: 600; color: rgb(255,255,255);
}
.service-cities a {
	font-size: 18px; line-height: 30px; color: rgb(255,255,255);
}
.top-header {
	background: rgb(12,32,63); display:none;
}
.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display:none;
}
.header-contact_info .navbar-brand {
	font-size:1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content:flex-start;
}
.top-header div[class*='col-'] { display:flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
  display:flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background:none; margin:0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size:inherit; line-height: inherit;
}
.alert h1,
.alert p {
	top: 2em; opacity: 0;  position:relative;
}
.alert h1 {
	margin-top: 0; color: #2b1663;
}
.custom-show {
    position: fixed; transform:scale(1,1); border: 0; background: white; border-radius:0; z-index: 1100; overflow: inherit; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu {
  text-align: center; position: fixed; height: 100%; width: 100%; display: block; padding-top: 6em; top: 100%; border: 0; background: linear-gradient(to top, rgb(10,150,160),rgb(52,201,218)); border-radius: 0; z-index: 1100; overflow: auto; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu .nav-link {
  font-size: 25px; color: #fff !important; font-family: 'Arial'; text-align: left; margin-left: 30px;
}
.mobile-menu-custom-show {
  top: 0%;
}
.mobile-menu-top-hero {
	background-size: cover; padding: 40px 0 0; top:0; left:0; width:100%; text-align: center;
}
.mobile-menu-top-hero h2 {
	padding:0 25px;
}
#mobile-menu-header {
  margin-top:0; background: #ffffff00; box-shadow: none;
}
#mobile-menu-header ul {
	list-style:none; padding:0 20px; margin-top: 8em; position: relative; width: inherit;
}
#mobile-menu-header ul li a {
	color:#ffffff; padding: 20px 20px;
}

}

/* ======================================== */
/* === Tablet CSS Section ================= */
/* ======================================== */
@media screen and (max-width: 991px) {
/***** Home Section *****/
.home-slider-image .container {
	padding: 150px 0 150px 0; overflow: hidden;
}
.home-slider-image .parallax {
	background-image: linear-gradient(rgb(0,0,0,0.6), rgb(0,0,0,0.6)), url("/img/home-slide-1.jpg"); min-height: auto; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover;
}
.home-slider-image h2 {
	font-size: 40px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.home-slider-image h5 {
	font-size: 35px; font-family: Montserrat; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.home-slider-image p {
	font-size: 20px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255); padding-bottom: 25px;
}
.home-slider-image i.paint {
	font-size: 65px; color: rgb(255,255,255);
}
.home-slider-image a {
	padding: 13px 35px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.6rem;
	font-size: 17px; text-shadow: 2px 2px 6px rgb(137,125,125); color: rgb(255,255,255);
}
.home-slider-image a:hover {
	color: rgb(255,255,255);
}
.home-section-1 {
	padding: 50px 0px; background: rgb(38,184,199);
}
.home-section-1 .pad {
	padding: 0;
}
.home-section-1 h1 {
	font-size: 28px; font-weight: 600; text-align: center; color: rgb(0,53,58);
}
.home-section-1 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(6,41,43);
}
.home-section-1 img {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 5px rgb(0,0,0);
}
.home-section-2 .container {
	padding: 125px 0;
}
.home-section-2 .box {
	padding: 10px; background: rgba(255,255,255,0.8);
}
.home-section-2 .parallax {
	background-image: linear-gradient(to right, rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/hist3a-1.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat;  background-size: cover;
}
.home-section-2 h2 {
	font-size: 45px; font-family: font; font-weight: 900; text-align: center; color: rgb(12,12,12);
}
.home-section-2 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(12,12,12);
}
.home-section-2 a {
	display: flex; flex-direction: column; padding: 13px 20px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)); border: 1px solid rgb(255,255,255); border-radius: 0.8rem;
	font-size: 15px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.home-section-2 a:hover {
	background: rgb(255,255,255); color: rgb(20,113,121);
}
.home-section-3 .container {
	padding: 125px 0;
}
.home-section-3 .parallax {
	background-image: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/parallax2a.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.home-section-3 .box {
	background: rgba(0,0,0,0.8);
}
.home-section-3 h3 {
	font-size: 45px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.home-section-3 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.home-section-4 .container {
	padding: 125px 0;
}
.home-section-4 .parallax {
	background-image: linear-gradient(to right, rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/parallax3-mobile.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat;  background-size: cover;
}
.home-section-4 .box {
	padding: 10px; background: rgba(255,255,255,0.8);
}
.home-section-4 h2 {
	font-size: 55px; font-family: font; font-weight: 900; text-align: left; color: rgb(12,12,12);
}
.home-section-4 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(12,12,12);
}
.home-section-5 .container {
	padding: 125px 0;
}
.home-section-5 .parallax {
	background-image: linear-gradient(to left, rgb(0,0,0,0.5), rgb(0,0,0,0.5), rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.3), rgb(0,0,0,0.2), rgb(0,0,0,0.2), rgb(0,0,0,0.2)), url("/img/exterior-painting/003.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.home-section-5 .box {
	background: rgba(0,0,0,0.8);
}
.home-section-5 h3 {
	font-size: 45px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.home-section-5 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.home-section-5 ul {
	color: rgb(255,255,255);
}
.home-section-6 .container {
	padding: 125px 0;
}
.home-section-6 .parallax {
	background-image: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/parallax5.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat;  background-size: cover;
}
.home-section-6 .box {
	padding: 10px; background: rgba(255,255,255,0.8);
}
.home-section-6 h2 {
	font-size: 40px; font-family: font; font-weight: 900; text-align: left; color: rgb(12,12,12);
}
.home-section-6 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(12,12,12);
}
.home-section-7 .container {
	padding: 125px 0;
}
.home-section-7 .parallax {
	background-image: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/parallax6.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.home-section-7 .box {
	background: rgba(0,0,0,0.8);
}
.home-section-7 h3 {
	font-size: 45px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.home-section-7 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.home-section-8 {
	padding: 75px 25px; background-image: linear-gradient(to left, rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/parallax7.jpg); min-height: auto;background-position: top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;color: #fff; font-family: 'font';
}
.home-section-8 .background {
	padding: 10px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; box-shadow: 1px 1px 10px 1px #000;
}
.home-section-8 h2 {
	font-size: 28px; font-family: font; font-weight: 800; color: rgb(255,255,255);
}
.home-section-8 h4 {
	font-size: 30px; font-family: Montserrat; font-weight: 800; color: rgb(255,255,255);
}
.home-section-8 h5 {
	font-size: 20px; font-family: font; color: rgb(255,255,255); text-indent: 10px;
}
.home-section-8 h6 {
	font-size: 16px; font-family: font; color: rgb(255,255,255); text-indent: 15px;
}
.home-section-8 p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.modal-body h3.title {
	padding: 10px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; width: 78%; box-shadow: 1px 1px 10px 1px #000; font-size: 1.65rem; color: rgb(255,255,255);
}
.modal-body h4.title {
	padding: 5px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; width: 69% /* nice */; box-shadow: 1px 1px 10px 1px #000; font-size: 19px; color: rgb(255,255,255);
}
.modal-body h5.title {
	padding: 5px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; width: 74%; box-shadow: 1px 1px 10px 1px #000; font-size: 19px; color: rgb(255,255,255);
}
.modal-body strong.title {
	font-size: 25px; text-shadow: 1px 1px 1px rgb(0,0,0);
}
.modal-body li.list {
	padding-right: 15px; font-size: 25px; list-style-type: '▸';
}
.modal-body p.content {
	font-size: 15px; text-align: justify; color: rgb(12,12,12);
}

/***** General Services Section *****/
.general-services {
	background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/services-page-header-bg.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; padding: 25% 0px 30px 0px; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';	
}
.general-services h1 {
	font-size: 2.5rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255);
}
.general-services h3 {
	font-size: 3rem; font-weight: 600; line-height: 67px; letter-spacing: -1.5px; color: rgb(255,255,255);
}
.general-services p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.general-services .animated p {
	font-weight: 600;
}
.general-services li {
	list-style-type: '';
}
.exterior-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.interior-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.plaster-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.deck-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.carpentry-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.additional-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
#services .animated h3 {
	padding: 10px 0; color: #fff; font-size: 2.5em; font-weight:600; line-height: 67px; letter-spacing:-1.5px; text-align: center;
}
#services .animated p {
	padding: 10px 15px; color: rgb(255,255,255); font-weight: 600; font-family: 'font'; font-size: 17px; text-align: justify;
}
#services .section-divider {
	padding: 0 0 300px 0;
}
#services .general-services ul {
	padding-left: 0rem;
}
#services .general-services li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv001.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(2) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv002.jpg) right -2em no-repeat; background-size: cover, 56% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(3) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv003.jpg) right 0em no-repeat; background-size: cover, 50% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(4) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv004.jpg) right -4em no-repeat; background-size: cover, 81% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(5) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv005.jpg) right -4em no-repeat; background-size: cover, 81% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius:10px; position:relative; left:0; transition:all .30s ease;
}
#services .general-services li a:hover {
	color:#ffffff;
}
#services .general-services li:hover a {
	margin-left:10px; padding-left:0px;
}
#services .general-services li a svg {
	transition:all .20s ease;
}
#services .general-services li a:hover svg {
	right:5px;
}
#services .exterior-services {
  background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(/img/parallax-services001.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .interior-services {
	background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(/img/parallax-services006b.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .plaster-services {
	background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%)), url("/img/parallax-services002a-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .deck-services {
	background-image: linear-gradient(to right, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%)), url("/img/parallax-services003a-2a.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .carpentry-services {
	background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%)), url("/img/parallax-services004a-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .additional-services {
	background-image: linear-gradient(to right, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%)), url("/img/parallax-services005a.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}

/***** Interior Services Section *****/
.interior {
	padding: 25% 0px 70px 0px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/interior-bg.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';		
}
.interior h1 {
	font-size: 2rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255)
}
.interior p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.interior li {
	list-style-type: '';
}
#services .interior ul {
	padding-left: 0rem;
}
#services .interior li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius:10px; position:relative; left:0; transition:all .30s ease;
}
#services .interior li:hover a {
	margin-left:10px; padding-left:50px;
}
#services .interior li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/rp2-bg-a.jpg) right -1em no-repeat; background-size: cover, 62% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior001.jpg) right -1em no-repeat; background-size: cover, 62% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior002a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior003.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior004a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.residential-interior-painting .container {
	padding: 0 0 300px 0;
}
.residential-interior-painting .parallax {
	background-image: url("/img/rp2-bg-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.residential-interior-painting .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.residential-interior-painting h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.residential-interior-painting p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.interior-historical-restoration .container {
	padding: 0 0 300px 0;
}
.interior-historical-restoration .parallax {
	background-image: url("/img/parallax-interior001-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.interior-historical-restoration .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.interior-historical-restoration h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.interior-historical-restoration p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.plaster-repair .container {
	padding: 0 0 300px 0;
}
.plaster-repair .parallax {
	background-image: url("/img/parallax-interior002-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.plaster-repair .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.plaster-repair h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.plaster-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.drywall-repair .container {
	padding: 0 0 300px 0;
}
.drywall-repair .parallax {
	background-image: url("/img/parallax-interior003-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.drywall-repair .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.drywall-repair h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.drywall-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.cabinet-spraying .container {
	padding: 0 0 300px 0;
}
.cabinet-spraying .parallax {
	background-image: url("/img/parallax-interior004-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.cabinet-spraying .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.cabinet-spraying h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.cabinet-spraying p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}

/***** Exterior Services Section *****/
.exterior {
	padding: 25% 0px 70px 0px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/parallax-exterior001.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';		
}
.exterior h1 {
	font-size: 2rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255)
}
.exterior p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.exterior li {
	list-style-type: '';
}
#services .exterior ul {
	padding-left: 0rem;
}
#services .exterior li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius:10px; position:relative; left:0; transition:all .30s ease;
}
#services .exterior li:hover a {
	margin-left:10px; padding-left:50px;
}
#services .exterior li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/rp1-bg.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/hist3a.jpg) right -1em no-repeat; background-size: cover, 74% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-exterior002.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-exterior003a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-carpentry006c-2.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.residential-exterior-painting .container {
	padding: 0 0 300px 0;
}
.residential-exterior-painting .parallax {
	background-image: url("/img/rp1-bg-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.residential-exterior-painting .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.residential-exterior-painting h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.residential-exterior-painting p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.exterior-historical-restoration .container {
	padding: 0 0 300px 0;
}
.exterior-historical-restoration .parallax {
	background-image: url("/img/hist3-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.exterior-historical-restoration .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.exterior-historical-restoration h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.exterior-historical-restoration p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.stucco-repair .container {
	padding: 0 0 300px 0;
}
.stucco-repair .parallax {
	background-image: url("/img/parallax-exterior002-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.stucco-repair .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.stucco-repair h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.stucco-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.stucco-painting .container {
	padding: 0 0 300px 0;
}
.stucco-painting .parallax {
	background-image: url("/img/parallax-exterior003-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.stucco-painting .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.stucco-painting h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.stucco-painting p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.deck-porch-fence-staining-painting .container {
	padding: 0 0 300px 0;
}
.deck-porch-fence-staining-painting .parallax {
	background-image: url("/img/parallax-carpentry006c-2.jpg"); min-height: auto; background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.deck-porch-fence-staining-painting .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.deck-porch-fence-staining-painting h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.deck-porch-fence-staining-painting p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}

/***** Carpentry Services Section *****/
.carpentry {
	padding: 25% 0px 70px 0px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/car1a-bg.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';		
}
.carpentry h1 {
	font-size: 2.25rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255)
}
.carpentry p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.carpentry li {
	list-style-type: '';
}
#services .carpentry ul {
	padding-left: 0rem;
}
#services .carpentry li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius: 10px; position: relative; left :0; transition: all .30s ease;
}
#services .carpentry li:hover a {
	margin-left: 10px; padding-left: 50px;
}
#services .carpentry li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv001.jpg) right -14px no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(2) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv002.jpg) right -14px no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(3) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv003.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(4) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv004.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(5) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-carpentry006.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.general-carpentry-services .container {
	padding: 0 0 300px 0;
}
.general-carpentry-services .parallax {
	background-image: url("/img/parallax-carpentry002-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.general-carpentry-services .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.general-carpentry-services h2 {
	padding: 10px 0; font-size: 40px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.general-carpentry-services p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.interior-trim .container {
	padding: 0 0 300px 0;
}
.interior-trim .parallax {
	background-image: url("/img/parallax-carpentry003-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.interior-trim .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.interior-trim h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.interior-trim p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.exterior-trim .container {
	padding: 0 0 300px 0;
}
.exterior-trim .parallax {
	background-image: url("/img/parallax-carpentry004-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.exterior-trim .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.exterior-trim h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.exterior-trim p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.siding-eve-repair .container {
	padding: 0 0 300px 0;
}
.siding-eve-repair .parallax {
	background-image: url("/img/parallax-carpentry005-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.siding-eve-repair .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.siding-eve-repair h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.siding-eve-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.deck-porch-repair .container {
	padding: 0 0 300px 0;
}
.deck-porch-repair .parallax {
	background-image: url("/img/parallax-carpentry006b.jpg"); min-height: auto; background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.deck-porch-repair .box {
	background: rgba(0,0,0,0.8); margin: 0 -25px;
}
.deck-porch-repair h2 {
	padding: 10px 0; font-size: 45px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.deck-porch-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}

/***** Areas We Service Section *****/
.areas-we-service-toc {
	padding: 150px 25px; background: linear-gradient(rgb(0,102,113), rgb(0,177,193));
}
.areas-we-service-toc h1 {
	font-size: 32px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.areas-we-service-toc p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.areas-we-service-toc li {
	font-size: 20px; font-family font; font-weight: 600; color: rgb(255,255,255);
}
.areas-we-service-toc hr {
	background: rgb(255,255,255);
}
.areas-we-service:nth-child(odd) {
	padding: 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.areas-we-service:nth-child(even) {
	padding: 75px 0; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.areas-we-service h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.areas-we-service p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.areas-we-service iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem; box-shadow: 1px 1px 10px 5px rgb(0,0,0);
}
.areas-we-service a.learn-more {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}

/***** SEO Pages *****/
/*** Oak Park, IL ***/
.oak-park {
	padding: 75px 0px 240px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.oak-park h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.oak-park h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.oak-park h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.oak-park h6 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.oak-park p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.oak-park a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.oak-park iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.oak-park-carpentry {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.oak-park-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.oak-park-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.oak-park-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.oak-park-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.oak-park-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.oak-park-deck-fence {
	padding: 50px 5px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.oak-park-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.oak-park-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.oak-park-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.oak-park-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.oak-park-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.oak-park-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.oak-park-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.oak-park-plaster-drywall {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.oak-park-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.oak-park-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.oak-park-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.oak-park-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.oak-park-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** River Forest, IL ***/
.river-forest {
	padding: 75px 0px 240px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.river-forest h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.river-forest h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.river-forest h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.river-forest h6 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.river-forest p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.river-forest a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.river-forest iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.river-forest-carpentry {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.river-forest-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.river-forest-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.river-forest-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.river-forest-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.river-forest-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.river-forest-deck-fence {
	padding: 50px 5px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.river-forest-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.river-forest-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.river-forest-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.river-forest-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.river-forest-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.river-forest-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.river-forest-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.river-forest-plaster-drywall {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.river-forest-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.river-forest-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.river-forest-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.river-forest-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.river-forest-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** Hinsdale, IL ***/
.hinsdale {
	padding: 75px 0px 240px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.hinsdale h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.hinsdale h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.hinsdale h6 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.hinsdale p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.hinsdale a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.hinsdale iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.hinsdale-carpentry {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.hinsdale-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.hinsdale-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.hinsdale-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.hinsdale-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.hinsdale-deck-fence {
	padding: 50px 5px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.hinsdale-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.hinsdale-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.hinsdale-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.hinsdale-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.hinsdale-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.hinsdale-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.hinsdale-plaster-drywall {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.hinsdale-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** Hinsdale, IL ***/
.burr-ridge {
	padding: 75px 0px 240px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.burr-ridge h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge h6 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.burr-ridge a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.burr-ridge iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.burr-ridge-carpentry {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.burr-ridge-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.burr-ridge-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.burr-ridge-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.burr-ridge-deck-fence {
	padding: 50px 5px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.burr-ridge-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.burr-ridge-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.burr-ridge-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.burr-ridge-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.burr-ridge-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.burr-ridge-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.burr-ridge-plaster-drywall {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.burr-ridge-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/***** Gallery Sections *****/
.gallery1 {
	padding: 150px 0 50px 0; background: linear-gradient(rgb(0,102,113),rgb(0,177,193));
}
.gallery1 h1 {
	font-size: 50px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.gallery1 span {
	font-size: 18px; font-weight: 500;
}
.gallery2 {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.gallery2 h2 {
	margin: 0 0 30px; font-size: 2.5em; font-weight: 800; text-align: center; text-shadow: 0 6px 12px #0000003d; text-transform: uppercase; color: rgb(0,161,175);
}

/***** Testimonials *****/
.testimonials {
	background: linear-gradient(rgb(26,51,61), rgb(43,87,100)); padding: 75px 0 75px 0;
}
.testimonials h1 {
	text-align: center; color: rgb(255,255,255); font-weight: 600; font-size: 55px;
}
.testimonials h5 {
	text-align: center; color: rgb(255,255,255); font-weight: 400; font-size: 35px; padding-bottom: 30px;
}
.testimonials h4 {
	color: rgb(255,255,255); text-align: center;
}
.testimonials .pad {
	padding: 0px;
}
.testimonials .carousel {
	--current-slide: 0; position: relative; overflow: hidden;
}
.testimonials .carousel-button {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; padding: 0; margin: 0.1rem; height: 40px; width: 40px; border-radius: 100%; line-height: 0.9; color: rgb(83,82,82); background-color: transparent; border: none; font-size: 1.5rem; cursor: pointer; transition: color 0.1s;
}
.testimonials .carousel-button:hover {
	color: rgba(0, 0, 0, 0.5); border: none;
}
.testimonials .carousel-button.active {
	border: none !important;
}
.testimonials .carousel-button_next {
	right: 0; border: none;
}
.testimonials .slides {
	display: flex; transition: transform 0.5s; transform: translateX(calc(-100% * var(--current-slide)));
}
.testimonials .slide {
	flex: 0 0 100%; padding: 0px 50px 0px 50px;
}
.testimonials span {
	color: rgb(255,255,255);
}
.testimonials .slide p {
	color: rgb(255,255,255); text-align: center; font-size: 17px; font-weight: 600; font-family: 'font';
}
.publications {
	padding: 75px 0; background: linear-gradient(to right,rgb(10,113,125,0.67),rgb(9,106,113));
}
.publications h4 {
	font-weight: 600; font-size: 18px; text-align: left; color: rgb(255,255,255); padding-bottom: 30px;
}
.publications p {
	color: rgb(255,255,255); font-size: 16px; text-align: justify; font-weight: 600; font-family: 'font';
}
.publications a.learn-more {
	padding: 13px 20px; background: rgb(0,0,0,0); color: rgb(255,255,255); border: 1px solid rgb(255,255,255); border-radius: 7px; display: flex; flex-direction: column;
	font-size: 18px; font-weight: 600; font-family: 'font'; color: rgb(255,255,255);
}
.publications a.learn-more:hover {
	color: rgb(20,113,121); background: rgb(255,255,255);
}

/***** Contact Page *****/
.contact1 {
	background: rgb(255,255,255);	padding: 150px 0 0px 0;
}
.contact1 .pad {
	padding-top: 75px;
}
.contact1 h1 {
	text-align: left; font-weight: 600; color: rgb(37,37,37);
}
.contact1 h2 {
	color: rgb(51,51,51); text-align: left; font-size: 20px; font-weight: 500;
}
.contact1 p {
	color: rgb(51,51,51); text-align: left; font-size: 20px; font-weight: 500;
}
.contact2 {
	background: rgb(204,204,204);
}
.contact2 h3 {
	text-align: left; color: rgb(7,131,142); font-size: 40px; font-weight: 700;
}
.contact2 .box {
	padding: 200px 0 0 100px;
}
.contact2 span {
	color: rgb(90,90,90); font-size: 1.5rem; font-weight: 500;
}

/***** Misc. Pages *****/
.painted-lady {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.painted-lady h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.painted-lady h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.painted-lady h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.painted-lady img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.painted-lady p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.painted-lady span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.painted-lady .space {
	padding-top: 20px;
}
.old-but-not-out {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.old-but-not-out h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.old-but-not-out h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.old-but-not-out h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.old-but-not-out img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.old-but-not-out p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.old-but-not-out span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.old-but-not-out .space {
	padding-top: 20px;
}
.to-paint-or-not-to-paint {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.to-paint-or-not-to-paint h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.to-paint-or-not-to-paint p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.to-paint-or-not-to-paint .space {
	padding-top: 20px;
}
.color-them-award-winners {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.color-them-award-winners h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.color-them-award-winners h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.color-them-award-winners h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.color-them-award-winners img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.color-them-award-winners p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.color-them-award-winners span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.color-them-award-winners .space {
	padding-top: 20px;
}

/***** Sections On Every Page *****/
.modal-dialog {
  max-width: 1600px; top: 40px; margin: 1.75rem auto;
}
#services a.learn-more {
	padding: 20px; background: linear-gradient(to top, rgb(10,150,160),rgb(52,201,218)); border-radius: 0.8rem;
	font-size: 24px; font-weight: 600; text-align: center; text-transform: uppercase; color: rgb(255,255,255);
}
.area-map {
	padding-top: 92px;
}
.area-map iframe {
	width: 100%; height: 450px; margin-bottom:-7px;
}
.common-paint-issues {
	padding: 75px 0; background: rgb(255,255,255);
}
.common-paint-issues h4 {
	font-size: 30px; font-weight: 800; text-align: center; color: rgb(30,30,30);
}
.common-paint-issues h5 {
	padding-bottom: 30px; font-size: 20px; font-family: font; font-weight: 600; text-align: center; color: rgb(30,30,30);
}
.common-paint-issues a.color-options {
	padding: 13px 30px; background: rgb(0,40,43); border: 1px solid rgb(136,136,136); border-radius: 1.5rem;
	font-size: 24px; font-family: font; font-weight: 800; text-align: center; color: rgb(17,173,187); display: inline-flex; 
}
.home-contact {
	padding: 100px 0; background: linear-gradient(rgb(0,102,113), rgb(0,177,193));
}
.home-contact h4 {
	padding-bottom: 30px; font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.first-footer {
	padding: 40px 0 25px 0; background: rgb(193,193,193);
}
.first-footer ul {
	display: flex; flex-direction: row; text-decoration: none; list-style: none;
}
.first-footer li {
	color: rgb(4,67,72); padding: 0 15px; font-size: 20px; font-family: 'font'; font-weight: 600;
}
.first-footer h5 {
	font-weight: 800;
}
.first-footer a {
	color: rgb(0,82,88);
}
.first-footer a:hover {
	color: rgb(0,82,88);
}
.second-footer {
	padding: 50px 0 50px 0; background: rgb(60,60,60);
}
.second-footer h2 {
	color: rgb(255,255,255);
}
.second-footer a {
	color: rgb(255,255,255);
}
.mobile-top-header {
	display:block !important;	padding: 0 30px 0; background: rgb(135,170,188); z-index: 4; overflow:visible;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(255,255,255);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(255,255,255);
}
.btn {
	background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.footer-section {
	padding-top: 30px; text-align: center;
}
.footer-section img {
	max-width: 210px;	padding-bottom: 25px;
}
.service-cities h4 {
	font-size: 24px; font-weight: 600; color: rgb(255,255,255);
}
.service-cities a {
	font-size: 18px; line-height: 30px; color: rgb(255,255,255);
}
.top-header {
	background: rgb(12,32,63); display:none;
}
.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display:none;
}
.header-contact_info .navbar-brand {
	font-size:1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content:flex-start;
}
.top-header div[class*='col-'] { display:flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
  display:flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background:none; margin:0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size:inherit; line-height: inherit;
}
.alert h1,
.alert p {
	top: 2em; opacity: 0;  position:relative;
}
.alert h1 {
	margin-top: 0; color: #2b1663;
}
.custom-show {
    position: fixed; transform:scale(1,1); border: 0; background: white; border-radius:0; z-index: 1100; overflow: inherit; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu {
  text-align: center; position: fixed; height: 100%; width: 100%; display: block; padding-top: 6em; top: 100%; border: 0; background: linear-gradient(to top, rgb(10,150,160),rgb(52,201,218)); border-radius: 0; z-index: 1100; overflow: auto; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu .nav-link {
  font-size: 25px; color: #fff !important; font-family: 'Arial'; text-align: left; margin-left: 30px;
}
.mobile-menu-custom-show {
  top: 0%;
}
.mobile-menu-top-hero {
	background-size: cover; padding: 40px 0 0; top:0; left:0; width:100%; text-align: center;
}
.mobile-menu-top-hero h2 {
	padding:0 25px;
}
#mobile-menu-header {
  margin-top:0; background: #ffffff00; box-shadow: none;
}
#mobile-menu-header ul {
	list-style:none; padding:0 20px; margin-top: 8em; position: relative; width: inherit;
}
#mobile-menu-header ul li a {
	color:#ffffff; padding: 20px 20px;
}

}

/* ======================================== */
/* === Mobile CSS Section ================= */
/* ======================================== */
@media screen and (max-width: 690px) {
/***** Home Section *****/
.home-slider-image .container {
	padding: 150px 0 150px 0; overflow: hidden;
}
.home-slider-image .parallax {
	background-image: linear-gradient(rgb(0,0,0,0.6), rgb(0,0,0,0.6)), url("/img/home-slide-1.jpg"); min-height: auto; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover;
}
.home-slider-image h2 {
	font-size: 35px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.home-slider-image h5 {
	font-size: 30px; font-family: Montserrat; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.home-slider-image p {
	font-size: 20px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255); padding-bottom: 25px;
}
.home-slider-image i.paint {
	font-size: 65px; color: rgb(255,255,255);
}
.home-slider-image a {
	padding: 13px 35px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.6rem;
	font-size: 17px; text-shadow: 2px 2px 6px rgb(137,125,125); color: rgb(255,255,255);
}
.home-slider-image a:hover {
	color: rgb(255,255,255);
}
.home-section-1 {
	padding: 50px 0px; background: rgb(38,184,199);
}
.home-section-1 .pad {
	padding: 0;
}
.home-section-1 h1 {
	font-size: 28px; font-weight: 600; text-align: center; color: rgb(0,53,58);
}
.home-section-1 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(6,41,43);
}
.home-section-1 img {
	width: 100%; height: 100%; border-radius: 0.8rem; box-shadow: 1px 1px 10px 5px rgb(0,0,0);
}
.home-section-2 .container {
	padding: 125px 0 200px;
}
.home-section-2 .box {
	padding: 10px; background: rgba(255,255,255,0.8);
}
.home-section-2 .parallax {
	background-image: linear-gradient(to right, rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/hist3a-1.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat;  background-size: cover;
}
.home-section-2 h2 {
	font-size: 45px; font-family: font; font-weight: 900; text-align: center; color: rgb(12,12,12);
}
.home-section-2 p {
	font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(12,12,12);
}
.home-section-2 a {
	display: flex; flex-direction: column; padding: 13px 20px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)); border: 1px solid rgb(255,255,255); border-radius: 0.8rem;
	font-size: 15px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.home-section-2 a:hover {
	background: rgb(255,255,255); color: rgb(20,113,121);
}
.home-section-3 .container {
	padding: 0 0 300px 0;
}
.home-section-3 .parallax {
	background-image: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/parallax2a.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.home-section-3 .box {
	background: rgba(0,0,0,0.8);
}
.home-section-3 h3 {
	padding: 10px 0; font-size: 40px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.home-section-3 p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.home-section-4 .container {
	padding: 0 0 300px 0;
}
.home-section-4 .parallax {
	background-image: linear-gradient(to right, rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/parallax3-mobile.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat;  background-size: cover;
}
.home-section-4 .box {
	padding: 10px; background: rgba(255,255,255,0.8);
}
.home-section-4 h2 {
	padding: 10px 0; font-size: 40px; font-family: font; font-weight: 900; text-align: center; color: rgb(12,12,12);
}
.home-section-4 p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(12,12,12);
}
.home-section-5 .container {
	padding: 0 0 300px 0;
}
.home-section-5 .parallax {
	background-image: linear-gradient(to left, rgb(0,0,0,0.5), rgb(0,0,0,0.5), rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.3), rgb(0,0,0,0.2), rgb(0,0,0,0.2), rgb(0,0,0,0.2)), url("/img/exterior-painting/003.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.home-section-5 .box {
	background: rgba(0,0,0,0.8);
}
.home-section-5 h3 {
	padding: 10px 0; font-size: 30px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.home-section-5 p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.home-section-5 ul {
	color: rgb(255,255,255);
}
.home-section-6 .container {
	padding: 0 0 300px 0;
}
.home-section-6 .parallax {
	background-image: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/parallax5.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat;  background-size: cover;
}
.home-section-6 .box {
	padding: 10px; background: rgba(255,255,255,0.8);
}
.home-section-6 h2 {
	padding: 10px 0; font-size: 35px; font-family: font; font-weight: 900; text-align: center; color: rgb(12,12,12);
}
.home-section-6 p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(12,12,12);
}
.home-section-7 .container {
	padding: 0 0 300px 0;
}
.home-section-7 .parallax {
	background-image: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0)), url(/img/parallax6.jpg); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.home-section-7 .box {
	background: rgba(0,0,0,0.8);
}
.home-section-7 h3 {
	padding: 10px 0; font-size: 33px; font-weight: 800; text-align: center; text-transform: capitalize; color: rgb(255,255,255);
}
.home-section-7 p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.home-section-8 {
	padding: 75px 25px; background-image: linear-gradient(to left, rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/parallax7.jpg); min-height: auto;background-position: top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;color: #fff; font-family: 'font'; text-align: center;
}
.home-section-8 .background {
	padding: 10px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; box-shadow: 1px 1px 10px 1px #000;
}
.home-section-8 h2 {
	font-size: 28px; font-family: font; font-weight: 800; color: rgb(255,255,255);
}
.home-section-8 h4 {
	font-size: 23px; font-family: Montserrat; font-weight: 800; color: rgb(255,255,255);
}
.home-section-8 h5 {
	font-size: 22px; font-family: font; color: rgb(255,255,255); text-indent: 0; text-align: center;
}
.home-section-8 h6 {
	font-size: 16px; font-family: font; color: rgb(255,255,255); text-indent: 0; text-align: center;
}
.home-section-8 p {
	font-size: 17px; text-align: center;; color: rgb(255,255,255);
}
.modal-body h3.title {
	padding: 10px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; width: 78%; box-shadow: 1px 1px 10px 1px #000; font-size: 1.65rem; color: rgb(255,255,255);
}
.modal-body h4.title {
	padding: 5px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; width: 69% /* nice */; box-shadow: 1px 1px 10px 1px #000; font-size: 19px; color: rgb(255,255,255);
}
.modal-body h5.title {
	padding: 5px; background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)) !important; width: 74%; box-shadow: 1px 1px 10px 1px #000; font-size: 19px; color: rgb(255,255,255);
}
.modal-body strong.title {
	font-size: 25px; text-shadow: 1px 1px 1px rgb(0,0,0);
}
.modal-body li.list {
	padding-right: 15px; font-size: 25px; list-style-type: '▸';
}
.modal-body p.content {
	font-size: 15px; text-align: justify; color: rgb(12,12,12);
}

/***** General Services Section *****/
.general-services {
	background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/services-page-header-bg.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; padding: 25% 0px 30px 0px; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';	
}
.general-services h1 {
	font-size: 2.5rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255);
}
.general-services h3 {
	font-size: 3rem; font-weight: 600; line-height: 67px; letter-spacing: -1.5px; color: rgb(255,255,255);
}
.general-services p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.general-services .animated p {
	font-weight: 600;
}
.general-services li {
	list-style-type: '';
}
.exterior-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.interior-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.plaster-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.deck-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.carpentry-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
.additional-services .box {
	background: rgba(0,0,0,0.8); margin-top: -24px;
}
#services .animated h3 {
	padding: 10px 0; color: #fff; font-size: 1.5rem; font-weight:600; text-align: center; line-height: 67px; letter-spacing:-1.5px;
}
#services .animated p {
	padding: 10px 15px; color: rgb(255,255,255); font-weight: 600; font-family: 'font'; font-size: 17px; text-align: justify;
}
#services .section-divider {
	padding: 0 0 300px 0;
}
#services .general-services ul {
	padding-left: 0rem;
}
#services .general-services li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv001.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv002.jpg) right -2em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv003.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv004.jpg) right -4em no-repeat; background-size: cover, 69% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/gen-serv005.jpg) right -4em no-repeat; background-size: cover, 69% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .general-services li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius:10px; position:relative; left:0; transition:all .30s ease;
}
#services .general-services li a:hover {
	color:#ffffff;
}
#services .general-services li:hover a {
	margin-left:10px; padding-left:0px;
}
#services .general-services li a svg {
	transition:all .20s ease;
}
#services .general-services li a:hover svg {
	right:5px;
}
#services .exterior-services {
  background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(/img/parallax-services001.jpg); min-height: auto; background-position: top !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .interior-services {
	background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(/img/parallax-services006b.jpg); min-height: auto; background-position: top !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .plaster-services {
	background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%)), url("/img/parallax-services002a-2.jpg"); min-height: auto; background-position: right !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .deck-services {
	background-image: linear-gradient(to right, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%)), url("/img/parallax-services003a-2a.jpg"); min-height: auto; background-position: top !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .carpentry-services {
	background-image: linear-gradient(to left, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%)), url("/img/parallax-services004a-2.jpg"); min-height: auto; background-position: top !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
#services .additional-services {
	background-image: linear-gradient(to right, rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%), rgb(0,0,0,0%)), url("/img/parallax-services005a.jpg"); min-height: auto; background-position: left !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}

/***** Interior Services Section *****/
.interior {
	padding: 25% 0px 70px 0px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/interior-bg.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';		
}
.interior h1 {
	font-size: 2rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255)
}
.interior p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.interior li {
	list-style-type: '';
}
#services .interior ul {
	padding-left: 0rem;
}
#services .interior li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius:10px; position:relative; left:0; transition:all .30s ease;
}
#services .interior li:hover a {
	margin-left:10px; padding-left:50px;
}
#services .interior li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/rp2-bg-a.jpg) right -1em no-repeat; background-size: cover, 52% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior001.jpg) right -1em no-repeat; background-size: cover, 52% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior002a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior003.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .interior li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-interior004a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.residential-interior-painting .container {
	padding: 0 0 300px 0;
}
.residential-interior-painting .parallax {
	background-image: url("/img/rp2-bg-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
	padding: 50px 25px; 
}
.residential-interior-painting .box {
	background: rgba(0,0,0,0.8);
}
.residential-interior-painting h2 {
	padding: 10px 0; font-size: 25px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.residential-interior-painting p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.interior-historical-restoration .container {
	padding: 0 0 300px 0;
}
.interior-historical-restoration .parallax {
	background-image: url("/img/parallax-interior001-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
	padding: 0 25px;
}
.interior-historical-restoration .box {
	background: rgba(0,0,0,0.8);
}
.interior-historical-restoration h2 {
	padding: 10px 0; font-size: 25px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.interior-historical-restoration p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.plaster-repair .container {
	padding: 0 0 300px 0;
}
.plaster-repair .parallax {
	background-image: url("/img/parallax-interior002-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.plaster-repair .box {
	background: rgba(0,0,0,0.8);
	padding: 0 25px;
}
.plaster-repair h2 {
	padding: 10px 0; font-size: 35px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.plaster-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.drywall-repair .container {
	padding: 0 0 300px 0;
}
.drywall-repair .parallax {
	background-image: url("/img/parallax-interior003-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
	padding: 0 25px;
}
.drywall-repair .box {
	background: rgba(0,0,0,0.8);
}
.drywall-repair h2 {
	padding: 10px 0; font-size: 35px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.drywall-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.cabinet-spraying .container {
	padding: 0 0 300px 0;
}
.cabinet-spraying .parallax {
	background-image: url("/img/parallax-interior004-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
	padding: 0 25px;
}
.cabinet-spraying .box {
	background: rgba(0,0,0,0.8);
}
.cabinet-spraying h2 {
	padding: 10px 0; font-size: 30px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.cabinet-spraying p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}

/***** Exterior Services Section *****/
.exterior {
	padding: 25% 0px 70px 0px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/parallax-exterior001.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';		
}
.exterior h1 {
	font-size: 2rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255)
}
.exterior p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.exterior li {
	list-style-type: '';
}
#services .exterior ul {
	padding-left: 0rem;
}
#services .exterior li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius:10px; position:relative; left:0; transition:all .30s ease;
}
#services .exterior li:hover a {
	margin-left:10px; padding-left:50px;
}
#services .exterior li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/rp1-bg.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(2) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/hist3a.jpg) right -1em no-repeat; background-size: cover, 62% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(3) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-exterior002.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(4) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-exterior003a.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .exterior li:nth-child(5) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-carpentry006c-2.jpg) right -1em no-repeat; background-size: cover, 52% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.residential-exterior-painting .container {
	padding: 0 0 300px 0;
}
.residential-exterior-painting .parallax {
	background-image: url("/img/rp1-bg-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.residential-exterior-painting .box {
	background: rgba(0,0,0,0.8);
	padding: 0 25px; 
}
.residential-exterior-painting h2 {
	padding: 10px 0; font-size: 30px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.residential-exterior-painting p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.exterior-historical-restoration .container {
	padding: 0 0 300px 0;
}
.exterior-historical-restoration .parallax {
	background-image: url("/img/hist3-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.exterior-historical-restoration .box {
	background: rgba(0,0,0,0.8);
	padding: 0 25px; 
}
.exterior-historical-restoration h2 {
	padding: 10px 0; font-size: 30px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.exterior-historical-restoration p {
	padding: 10px 15px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.stucco-repair .container {
	padding: 0 0 300px 0;
}
.stucco-repair .parallax {
	background-image: url("/img/parallax-exterior002-2a.jpg"); min-height: auto; background-position: left !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.stucco-repair .box {
	background: rgba(0,0,0,0.8);
	padding: 0 25px; 

}
.stucco-repair h2 {
	padding: 10px 0; font-size: 35px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.stucco-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.stucco-painting .container {
	padding: 0 0 300px 0;
}
.stucco-painting .parallax {
	background-image: url("/img/parallax-exterior003-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.stucco-painting .box {
	background: rgba(0,0,0,0.8);
	padding: 0 25px; 

}
.stucco-painting h2 {
	padding: 10px 0; font-size: 30px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.stucco-painting p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.deck-porch-fence-staining-painting .container {
	padding: 0 0 300px 0;
}
.deck-porch-fence-staining-painting .parallax {
	background-image: url("/img/parallax-carpentry006c-2.jpg"); min-height: auto; background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.deck-porch-fence-staining-painting .box {
	background: rgba(0,0,0,0.8);
	
	padding: 0 25px; 

}
.deck-porch-fence-staining-painting h2 {
	padding: 10px 0; font-size: 25px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.deck-porch-fence-staining-painting p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}

/***** Carpentry Services Section *****/
.carpentry {
	padding: 25% 0px 70px 0px; background-image: linear-gradient(to left, rgb(0,0,0,1), rgb(0,0,0,0.5), rgb(0,0,0,0.3), rgb(0,0,0,0.4), rgb(0,0,0,0.4)), url(/img/car1a-bg.jpg); min-height: auto;background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover; color: #fff; font-family: 'font';		
}
.carpentry h1 {
	font-size: 2.25rem; font-family: font; font-weight: 700; text-align: center; color: rgb(255,255,255)
}
.carpentry p {
	font-size: 17px; text-align: justify; color: rgb(255,255,255);
}
.carpentry li {
	list-style-type: '';
}
#services .carpentry ul {
	padding-left: 0rem;
}
#services .carpentry li a {
	padding: 10px 40px; display: block; margin: 0 0 4px; border-radius: 10px; position: relative; left :0; transition: all .30s ease;
}
#services .carpentry li:hover a {
	margin-left: 10px; padding-left: 50px;
}
#services .carpentry li:nth-child(1) a {
	background: linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv001.jpg) right -1em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(2) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv002.jpg) right -2em no-repeat; background-size: cover, 56% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(3) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv003.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(4) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/carpentry-serv004.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
#services .carpentry li:nth-child(5) a {
	background:linear-gradient(to right, rgb(0,33,35) 65%, #25b7c600), url(/img/parallax-carpentry006.jpg) right 0em no-repeat; background-size: cover, 45% !important;
	font-size: 24px; font-family: font; font-weight: 600; color: rgb(255,255,255);
}
.general-carpentry-services .container {
	padding: 0 0 300px 0;
}
.general-carpentry-services .parallax {
	background-image: url("/img/parallax-carpentry002-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.general-carpentry-services .box {
	background: rgba(0,0,0,0.8);
	padding: 0 25px; 

}
.general-carpentry-services h2 {
	padding: 15px 0; font-size: 30px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.general-carpentry-services p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.interior-trim .container {
	padding: 25px 0 300px 0;
}
.interior-trim .parallax {
	background-image: url("/img/parallax-carpentry003-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.interior-trim .box {
	background: rgba(0,0,0,0.8); margin-top: -25px;
	padding: 0 25px; 

}
.interior-trim h2 {
	padding: 15px 0; font-size: 35px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.interior-trim p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.exterior-trim .container {
	padding: 25px 0 300px 0;
}
.exterior-trim .parallax {
	background-image: url("/img/parallax-carpentry004-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.exterior-trim .box {
	background: rgba(0,0,0,0.8); margin-top: -25px; 	padding: 0 25px; 

}
.exterior-trim h2 {
	padding: 15px 0; font-size: 35pxs; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.exterior-trim p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.siding-eve-repair .container {
	padding: 25px 0 300px 0;
}
.siding-eve-repair .parallax {
	background-image: url("/img/parallax-carpentry005-2.jpg"); min-height: auto; background-position:top !important; background-attachment: fixed; background-position: bottom; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.siding-eve-repair .box {
	background: rgba(0,0,0,0.8); margin-top: -25px;
		padding: 0 25px; 

}
.siding-eve-repair h2 {
	padding: 15px 0; font-size: 30px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.siding-eve-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.deck-porch-repair .container {
	padding: 25px 0 300px 0;
}
.deck-porch-repair .parallax {
	background-image: url("/img/parallax-carpentry006b.jpg"); min-height: auto; background-position: bottom !important; background-attachment: fixed; overflow: hidden; background-repeat: no-repeat; background-size: cover;
}
.deck-porch-repair .box {
	background: rgba(0,0,0,0.8); margin-top: -25px; 	padding: 0 25px; 

}
.deck-porch-repair h2 {
	padding: 15px 0; font-size: 30px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.deck-porch-repair p {
	padding: 10px 15px; font-size: 17px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}

/***** Areas We Service Section *****/
.areas-we-service-toc {
	padding: 150px 15px; background: linear-gradient(rgb(0,102,113), rgb(0,177,193)); text-align: center;
}
.areas-we-service-toc h1 {
	font-size: 25px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.areas-we-service-toc p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.areas-we-service-toc ul {
}
.areas-we-service-toc li {
	font-size: 20px; font-family: font; font-weight: 600; color: rgb(255,255,255); 	list-style-type: none; 

}
.areas-we-service-toc hr {
	background: rgb(255,255,255);
}
.areas-we-service:nth-child(odd) {
	padding: 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.areas-we-service:nth-child(even) {
	padding: 75px 0; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.areas-we-service h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.areas-we-service p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.areas-we-service iframe {
	width: 100%; height: 430px; border: 0; border-radius: 0.8rem; box-shadow: 1px 1px 10px 5px rgb(0,0,0);
}
.areas-we-service a.learn-more {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 13px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}

/***** SEO Pages *****/
/*** Oak Park, IL ***/
.oak-park {
	padding: 75px 0px 240px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));         text-align: center;
}
.oak-park h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.oak-park h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.oak-park h6 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park ul {
	padding: 0; list-style-type: none; 
}
.oak-park li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.oak-park p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.oak-park iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.oak-park-carpentry {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.oak-park-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.oak-park-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.oak-park-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.oak-park-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.oak-park-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 12px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.oak-park-deck-fence {
	padding: 50px 5px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.oak-park-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.oak-park-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.oak-park-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.oak-park-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.oak-park-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.oak-park-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.oak-park-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 12px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.oak-park-plaster-drywall {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.oak-park-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.oak-park-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.oak-park-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.oak-park-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.oak-park-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.oak-park-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 12px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.oak-park-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** River Forest, IL ***/
.river-forest {
	padding: 75px 0px 240px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.river-forest h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.river-forest h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.river-forest h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.river-forest h6 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.river-forest p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.river-forest a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.river-forest iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.river-forest-carpentry {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.river-forest-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.river-forest-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.river-forest-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.river-forest-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.river-forest-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.river-forest-deck-fence {
	padding: 50px 5px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.river-forest-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.river-forest-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.river-forest-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.river-forest-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.river-forest-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.river-forest-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.river-forest-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255); display: inline-flex; 
}
.river-forest-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.river-forest-plaster-drywall {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.river-forest-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.river-forest-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.river-forest-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.river-forest-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.river-forest-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.river-forest-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.river-forest-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** Hinsdale, IL ***/
.hinsdale {
	padding: 75px 0px 240px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.hinsdale h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.hinsdale h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.hinsdale h6 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.hinsdale p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.hinsdale a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.hinsdale iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.hinsdale-carpentry {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.hinsdale-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.hinsdale-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.hinsdale-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.hinsdale-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.hinsdale-deck-fence {
	padding: 50px 5px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.hinsdale-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.hinsdale-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.hinsdale-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.hinsdale-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.hinsdale-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.hinsdale-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.hinsdale-plaster-drywall {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.hinsdale-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.hinsdale-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.hinsdale-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/*** Hinsdale, IL ***/
.burr-ridge {
	padding: 75px 0px 240px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge h1 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.burr-ridge h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge h4 {
	font-size: 18px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge h6 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge li {
	font-size: 15px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.burr-ridge a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.burr-ridge iframe {
	width: 100%; height: 100%; border: 0; border-radius: 0.8rem;
}
.burr-ridge-carpentry {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge-carpentry h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.burr-ridge-carpentry h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge-carpentry h4 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-carpentry h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.burr-ridge-carpentry h6 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-carpentry p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.burr-ridge-carpentry a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge-carpentry a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.burr-ridge-deck-fence {
	padding: 50px 5px; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge-deck-fence h2 {
	font-size: 33px; font-family: 'font'; text-align: left; font-weight: 600; color: rgb(255,255,255);
}
.burr-ridge-deck-fence h3 {
	color: #fff; font-family: 'font'; font-size: 25px;
}
.burr-ridge-deck-fence h4 {
	color: #fff; font-family: 'font';
}
.burr-ridge-deck-fence h5 {
	color: #fff; font-family: 'font'; text-align: left; text-indent: 55px; font-size: 19px;
}
.burr-ridge-deck-fence h6 {
	color: #fff; font-family: 'font';
}
.burr-ridge-deck-fence p {
	color: rgb(255,255,255); font-size: 16px; font-family: 'font'; text-align: justify; font-weight: 600;
}
.burr-ridge-deck-fence a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge-deck-fence a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}
.burr-ridge-plaster-drywall {
	padding: 50px 5px; background: linear-gradient(to left, rgb(26,51,61), rgb(43,87,100));
}
.burr-ridge-plaster-drywall h2 {
	font-size: 33px; font-family: font; font-weight: 600; text-align: left; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall h3 {
	font-size: 25px; font-family: font; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall h4 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall h5 {
	font-size: 19px; font-family: font; text-align: left; color: rgb(255,255,255); text-indent: 55px;
}
.burr-ridge-plaster-drywall h6 {
	font-family: font; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall p {
	font-size: 16px; font-family: font; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall a.contact {
	padding: 10px 20px; background: transparent; border: 1px solid rgb(255,255,255); border-radius: 1.5rem;
	font-size: 18px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.burr-ridge-plaster-drywall a.contact:hover {
	background: rgb(255,255,255); border: 1px solid rgb(12,12,12); border-radius: 0.8rem; color: rgb(34,68,79);
}

/***** Gallery Sections *****/
.gallery1 {
	padding: 150px 0 50px 0; background: linear-gradient(rgb(0,102,113),rgb(0,177,193));
}
.gallery1 h1 {
	font-size: 50px; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.gallery1 span {
	font-size: 18px; font-weight: 500;
}
.gallery2 {
	padding: 75px 0 75px 0; background: rgb(255,255,255);
}
.gallery2 h2 {
	margin: 0 0 30px; font-size: 2.5em; font-weight: 800; text-align: center; text-shadow: 0 6px 12px #0000003d; text-transform: uppercase; color: rgb(0,161,175);
}

/***** Testimonials *****/
.testimonials {
	background: linear-gradient(rgb(26,51,61), rgb(43,87,100)); padding: 125px 0 75px 0;
}
.testimonials h1 {
	text-align: center; color: rgb(255,255,255); font-weight: 600; font-size: 55px;
}
.testimonials h5 {
	text-align: center; color: rgb(255,255,255); font-weight: 400; font-size: 35px; padding-bottom: 30px;
}
.testimonials h4 {
	color: rgb(255,255,255); text-align: center;
}
.testimonials .pad {
	padding: 0px;
}
.testimonials .carousel {
	--current-slide: 0; position: relative; overflow: hidden;
}
.testimonials .carousel-button {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; padding: 0; margin: 0.1rem; height: 40px; width: 40px; border-radius: 100%; line-height: 0.9; color: rgb(83,82,82); background-color: transparent; border: none; font-size: 1.5rem; cursor: pointer; transition: color 0.1s;
}
.testimonials .carousel-button:hover {
	color: rgba(0, 0, 0, 0.5); border: none;
}
.testimonials .carousel-button.active {
	border: none !important;
}
.testimonials .carousel-button_next {
	right: 0; border: none;
}
.testimonials .slides {
	display: flex; transition: transform 0.5s; transform: translateX(calc(-100% * var(--current-slide)));
}
.testimonials .slide {
	flex: 0 0 100%; padding: 0px 50px 0px 50px;
}
.testimonials span {
	color: rgb(255,255,255);
}
.testimonials .slide p {
	color: rgb(255,255,255); text-align: center; font-size: 17px; font-weight: 600; font-family: 'font';
}
.publications {
	padding: 75px 0; background: linear-gradient(to right,rgb(10,113,125,0.67),rgb(9,106,113));
}
.publications h4 {
	font-weight: 600; font-size: 18px; text-align: left; color: rgb(255,255,255); padding-bottom: 30px;
}
.publications p {
	color: rgb(255,255,255); font-size: 16px; text-align: justify; font-weight: 600; font-family: 'font';
}
.publications a.learn-more {
	padding: 13px 20px; background: rgb(0,0,0,0); color: rgb(255,255,255); border: 1px solid rgb(255,255,255); border-radius: 7px; display: flex; flex-direction: column;
	font-size: 18px; font-weight: 600; font-family: 'font'; color: rgb(255,255,255);
}
.publications a.learn-more:hover {
	color: rgb(20,113,121); background: rgb(255,255,255);
}

/***** Contact Page *****/
.contact1 {
	background: rgb(255,255,255);	padding: 150px 0 0px 0;
}
.contact1 .pad {
	padding-top: 75px;
}
.contact1 h1 {
	text-align: left; font-weight: 600; color: rgb(37,37,37);
}
.contact1 h2 {
	color: rgb(51,51,51); text-align: left; font-size: 20px; font-weight: 500;
}
.contact1 p {
	color: rgb(51,51,51); text-align: left; font-size: 20px; font-weight: 500;
}
.contact2 {
	background: rgb(204,204,204);
}
.contact2 h3 {
	text-align: left; color: rgb(7,131,142); font-size: 30px; font-weight: 700;
}
.contact2 .box {
	padding: 100px 0 0 0px;
}
.contact2 span {
	color: rgb(90,90,90); font-size: 1.5rem; font-weight: 500;
}

/***** Misc. Pages *****/
.painted-lady {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.painted-lady h1 {
	font-size: 35px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.painted-lady h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.painted-lady h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.painted-lady img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.painted-lady p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.painted-lady span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.painted-lady .space {
	padding-top: 20px;
}
.old-but-not-out {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.old-but-not-out h1 {
	font-size: 35px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.old-but-not-out h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.old-but-not-out h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.old-but-not-out img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.old-but-not-out p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.old-but-not-out span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.old-but-not-out .space {
	padding-top: 20px;
}
.to-paint-or-not-to-paint {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.to-paint-or-not-to-paint h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.to-paint-or-not-to-paint p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.to-paint-or-not-to-paint span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.to-paint-or-not-to-paint .space {
	padding-top: 20px;
}
.color-them-award-winners {
	padding: 150px 0 75px 0; background: linear-gradient(to right, rgb(26,51,61), rgb(43,87,100));
}
.color-them-award-winners h1 {
	font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.color-them-award-winners h4 {
	padding-top: 25px; font-size: 22px; font-weight: 800; text-align: left; color: rgb(255,255,255);
}
.color-them-award-winners h5 {
	font-size: 18px; font-family: font2; font-weight: 600; text-align: center; color: rgb(255,255,255);
}
.color-them-award-winners img {
	width: 100%; height: 100%; border-radius: 10px; box-shadow: 1px 1px 10px 5px rgb(255,255,255);
}
.color-them-award-winners p {
	font-size: 16px; font-family: font2; font-weight: 600; text-align: justify; color: rgb(255,255,255);
}
.color-them-award-winners span {
	font-size: 14px; font-style: italic; font-weight: 600; text-align: center;
}
.color-them-award-winners .space {
	padding-top: 20px;
}

/***** Sections On Every Page *****/
.modal-dialog {
  max-width: 1600px; top: 40px; margin: 1.75rem auto;
}
#services a.learn-more {
	padding: 20px; background: linear-gradient(to top, rgb(10,150,160),rgb(52,201,218)); border-radius: 0.8rem;
	font-size: 24px; font-weight: 600; text-align: center; text-transform: uppercase; color: rgb(255,255,255);
}
.area-map {
	padding-top: 92px;
}
.area-map iframe {
	width: 100%; height: 450px; margin-bottom:-7px;
}
.common-paint-issues {
	padding: 75px 0; background: rgb(255,255,255);
}
.common-paint-issues h4 {
	font-size: 30px; font-weight: 800; text-align: center; color: rgb(30,30,30);
}
.common-paint-issues h5 {
	padding-bottom: 30px; font-size: 20px; font-family: font; font-weight: 600; text-align: center; color: rgb(30,30,30);
}
.common-paint-issues a.color-options {
	padding: 13px 30px; background: rgb(0,40,43); border: 1px solid rgb(136,136,136); border-radius: 1.5rem;
	font-size: 13px; font-family: font; font-weight: 800; text-align: center; color: rgb(17,173,187);
}
.home-contact {
	padding: 100px 0; background: linear-gradient(rgb(0,102,113), rgb(0,177,193));
}
.home-contact h4 {
	padding-bottom: 30px; font-size: 45px; font-weight: 800; text-align: center; color: rgb(255,255,255);
}
.first-footer {
	padding: 40px 0 25px 0; background: rgb(193,193,193);
}
.first-footer ul {
	display: flex; flex-direction: row; text-decoration: none; list-style: none;
}
.first-footer li {
	color: rgb(4,67,72); padding: 0 15px; font-size: 20px; font-family: 'font'; font-weight: 600;
}
.first-footer h5 {
	font-weight: 800;
}
.first-footer a {
	color: rgb(0,82,88);
}
.first-footer a:hover {
	color: rgb(0,82,88);
}
.second-footer {
	padding: 50px 0 50px 0; background: rgb(60,60,60);
}
.second-footer h2 {
	color: rgb(255,255,255);
}
.second-footer a {
	color: rgb(255,255,255);
}
.mobile-top-header {
	display:block !important;	padding: 0 30px 0; background: rgb(135,170,188); z-index: 4; overflow:visible;
}
.header-contact_info a {
	color: rgb(255,255,255); margin: 0;
}
.top-header a, .top-header i, .top-header p {
	color: rgb(255,255,255);
}
.top-header-animate a, .top-header-animate i, .top-header-animate p {
	color: rgb(255,255,255);
}
.btn {
	background: linear-gradient(to top, rgb(10,150,160), rgb(52,201,218)); width: 50%; padding: 10px 0px; color: #ffffff; cursor: pointer; outline: none; border: none;
}
.footer-section {
	padding-top: 30px; text-align: center;
}
.footer-section p {
    color: rgb(255,255,255);
    text-align: center;
    font-family: 'Arial';
    font-size: 15px;
    line-height: 30px;
}
.footer-section img {
	max-width: 210px;	padding-bottom: 25px;
}
.service-cities h4 {
	font-size: 24px; font-weight: 600; color: rgb(255,255,255);
}
.service-cities h3 {
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    font-family: 'Arial';
    text-decoration: underline;
    color: rgb(255,255,255);
    line-height: 45px;
}

.service-cities a {
	font-size: 18px; line-height: 30px; color: rgb(255,255,255);
}
.top-header {
	background: rgb(12,32,63); display:none;
}
.header-contact_info {
	font-size: 1.5em;
}
.navbar-scroll {
	display:none;
}
.header-contact_info .navbar-brand {
	font-size:1.3em;
}
.top-header div[class*='col-']:first-child {
	justify-content:flex-start;
}
.top-header div[class*='col-'] { display:flex; justify-content: left; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(3) {
  display:flex; justify-content: flex-end; width: 33.333%; padding: 15px 0;
}
.top-header div[class*='col-']:nth-child(2) {
	background:none; margin:0; display: flex; justify-content: center; align-items: center;
}
.top-header div[class*='col-']:nth-child(1) a {
	font-size: 1.5em;
}
.top-header div[class*='col-']:nth-child(2) p {
	font-size:inherit; line-height: inherit;
}
.alert h1,
.alert p {
	top: 2em; opacity: 0;  position:relative;
}
.alert h1 {
	margin-top: 0; color: #2b1663;
}
.custom-show {
    position: fixed; transform:scale(1,1); border: 0; background: white; border-radius:0; z-index: 1100; overflow: inherit; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu {
  text-align: center; position: fixed; height: 100%; width: 100%; display: block; padding-top: 6em; top: 100%; border: 0; background: linear-gradient(to top, rgb(10,150,160),rgb(52,201,218)); border-radius: 0; z-index: 1100; overflow: auto; -webkit-transition-property: all; -webkit-transition-duration: .30s; -webkit-transition-timing-function: ease-in-out; transition-property: all; transition-duration: .30s; transition-timing-function: ease-in-out;
}
.mobile-menu .nav-link {
  font-size: 25px; color: #fff !important; font-family: 'Arial'; text-align: left; margin-left: 30px;
}
.mobile-menu-custom-show {
  top: 0%;
}
.mobile-menu-top-hero {
	background-size: cover; padding: 40px 0 0; top:0; left:0; width:100%; text-align: center;
}
.mobile-menu-top-hero h2 {
	padding:0 25px;
}
#mobile-menu-header {
  margin-top:0; background: #ffffff00; box-shadow: none;
}
#mobile-menu-header ul {
	list-style:none; padding:0 20px; margin-top: 8em; position: relative; width: inherit;
}
#mobile-menu-header ul li a {
	color:#ffffff; padding: 20px 20px;
}
  
}

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